/* Landing Page Styles */
:root {
    --primary-color: #00a651; /* Verde principal */
    --primary-dark: #008c44;
    --primary-light: #e6f7ee;
    --secondary-color: #222222; /* Preto secundário */
    --accent-color: #ffcc00; /* Amarelo para destaque */
    --accent-dark: #e6b800;
    --success-color: #66cc99;
    --danger-color: #dc3545;
    --light-gray: #e5e5e5;
    --lighter-gray: #f8f9fa;
    --dark-gray: #1a1a1a; /* Preto mais escuro */
    --text-color: #333;
    --text-light: #6c757d;
    --white: #ffffff;
    --border-radius: 8px;
    --box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

/* Base Styles */
body {
    font-family: "Roboto", Arial, sans-serif;
    margin: 0;
    padding: 0;
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--white);
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Montserrat", sans-serif;
    margin-top: 0;
    line-height: 1.2;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--primary-dark);
}

img {
    max-width: 100%;
    height: auto;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: var(--border-radius);
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-size: 1rem;
    gap: 8px;
    position: relative;
    overflow: hidden;
}

.btn::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 5px;
    height: 5px;
    background: rgba(255, 255, 255, 0.3);
    opacity: 0;
    border-radius: 100%;
    transform: scale(1, 1) translate(-50%);
    transform-origin: 50% 50%;
}

.btn:hover::after {
    animation: ripple 1s ease-out;
}

@keyframes ripple {
    0% {
        transform: scale(0, 0);
        opacity: 0.5;
    }
    100% {
        transform: scale(20, 20);
        opacity: 0;
    }
}

.btn-sm {
    padding: 8px 16px;
    font-size: 0.875rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    box-shadow: 0 4px 10px rgba(0, 166, 81, 0.2);
    color: var(--white);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
    box-shadow: 0 6px 15px rgba(0, 166, 81, 0.3);
    transform: translateY(-2px);
    color: var(--white);
}

.btn-outline {
    background-color: transparent;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
}

.btn-outline:hover {
    box-shadow: 0 4px 10px rgba(0, 166, 81, 0.1);
    transform: translateY(-2px);
    background-color: var(--primary-light);
}

/* Section Styles */
section {
    padding: 80px 0;
    position: relative;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--secondary-color);
    font-weight: 700;
}

.section-description {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto 40px;
}

/* Header */
.site-header {
    background-color: var(--secondary-color);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo img {
    height: 40px;
}

.logo span {
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--white);
}

.main-nav ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 20px;
}

.main-nav a {
    color: var(--white);
    font-weight: 500;
    padding: 8px 12px;
    border-radius: var(--border-radius);
}

.main-nav a:hover {
    color: var(--accent-color);
    background-color: rgba(0, 166, 81, 0.1);
}

/* Adicionar estilo para o link ativo na navegação */
.main-nav a.active {
    color: var(--accent-color);
    background-color: rgba(0, 166, 81, 0.1);
}

/* Adicionar/modificar os estilos do hero para torná-lo mais moderno */

/* Hero Section - Layout em grid */
.hero {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--dark-gray) 100%);
    color: var(--white);
    padding: 80px 0 100px;
    position: relative;
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

/* Texto com gradiente */
.gradient-text {
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
    position: relative;
}

.gradient-text::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    border-radius: 2px;
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 30px;
    opacity: 0.9;
    max-width: 500px;
}

/* Botão com efeito de brilho */
.btn-glow {
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(0, 166, 81, 0.5);
    transition: all 0.3s ease;
}

.btn-glow:hover {
    box-shadow: 0 0 30px rgba(0, 166, 81, 0.8);
}

.btn-glow::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(to bottom right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.1) 100%);
    transform: rotate(30deg);
    transition: all 0.5s ease;
}

.btn-glow:hover::before {
    transform: rotate(0deg);
}

.hero-image {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Carrossel do Hero com tamanho fixo */
.hero-carousel {
    position: relative;
    width: 100%;
    max-width: 500px;
    height: 350px; /* Altura fixa para o carrossel */
    margin: 0 auto;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    background-color: var(--white);
}

.carousel-item {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--white);
    transition: all 0.5s ease;
}

.carousel-item.active {
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeIn 0.5s ease forwards;
}

.carousel-image {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    padding: 20px;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.carousel-controls {
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    z-index: 10;
}

.carousel-control {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.carousel-control:hover {
    background-color: var(--primary-dark);
    transform: scale(1.1);
}

.carousel-indicators {
    display: flex;
    gap: 10px;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.indicator.active {
    background-color: var(--white);
    transform: scale(1.2);
}

/* Adicionar partículas flutuantes no fundo do hero */
.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at 20% 30%, rgba(0, 166, 81, 0.1) 0%, transparent 10%),
    radial-gradient(circle at 80% 70%, rgba(255, 204, 0, 0.1) 0%, transparent 15%);
    opacity: 0.5;
}

/* Responsividade para o hero */
@media (max-width: 992px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .hero-content {
        text-align: center;
        margin: 0 auto;
    }

    .hero h1 {
        font-size: 2.8rem;
    }

    .hero p {
        margin: 0 auto 30px;
    }

    .gradient-text::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .hero-carousel {
        max-width: 450px;
        height: 300px;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 60px 0 100px;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .hero-carousel {
        max-width: 400px;
        height: 280px;
    }
}

@media (max-width: 576px) {
    .hero {
        padding: 40px 0 100px;
    }

    .hero h1 {
        font-size: 1.8rem;
    }

    .hero p {
        font-size: 1.1rem;
    }

    .hero-carousel {
        max-width: 320px;
        height: 240px;
    }

    .carousel-controls {
        bottom: 10px;
    }

    .carousel-control {
        width: 30px;
        height: 30px;
    }
}

/* Como Funciona Section */
.como-funciona {
    background-color: var(--white);
}

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.step {
    text-align: center;
    padding: 30px;
    border-radius: var(--border-radius);
    background-color: var(--white);
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    border: 1px solid var(--light-gray);
}

.step:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-color);
}

.step-icon {
    position: relative;
    width: 80px;
    height: 80px;
    background-color: var(--primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.step-icon i {
    font-size: 2rem;
    color: var(--primary-color);
}

.step-number {
    position: absolute;
    top: -5px;
    right: -5px;
    width: 30px;
    height: 30px;
    background-color: var(--accent-color);
    color: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
}

.step h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.step p {
    color: var(--text-light);
}

/* Benefícios Section */
.beneficios {
    background-color: var(--primary-light);
    position: relative;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.benefit {
    background-color: var(--white);
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    border: 1px solid var(--light-gray);
    position: relative;
    overflow: hidden;
}

.benefit::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background-color: var(--primary-color);
    transform: translateY(-100%);
    transition: transform 0.3s ease;
}

.benefit:hover::before {
    transform: translateY(0);
}

.benefit:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-color);
}

.benefit-icon {
    width: 60px;
    height: 60px;
    background-color: var(--primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.benefit-icon i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.benefit h3 {
    font-size: 1.25rem;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.benefit p {
    color: var(--text-light);
    margin: 0;
}

.beneficios-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    line-height: 0;
}

.beneficios-wave svg path {
    fill: var(--lighter-gray);
}

/* Gerador Section */
.gerador {
    background-color: var(--lighter-gray);
    padding-bottom: 100px;
}

.generator-container {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.generator-form {
    width: 100%;
}

.form-card {
    background-color: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    overflow: hidden;
    border: 1px solid var(--light-gray);
    transition: all 0.3s ease;
}

.form-card:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.form-header {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 20px;
    display: flex;
    align-items: center;
}

.form-header h3 {
    margin: 0;
    font-size: 1.25rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.form-body {
    padding: 30px;
}

.form-footer {
    padding: 20px 30px;
    background-color: var(--lighter-gray);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.form-status {
    flex: 1;
}

.error-message {
    color: var(--danger-color);
    font-size: 0.9rem;
    padding: 8px 12px;
    background-color: rgba(220, 53, 69, 0.1);
    border-radius: var(--border-radius);
    display: inline-block;
}

.form-group {
    margin-bottom: 25px;
}

.form-group:last-child {
    margin-bottom: 0;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 500;
    color: var(--secondary-color);
}

.select-wrapper {
    position: relative;
}

.select-wrapper select {
    appearance: none;
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--light-gray);
    border-radius: var(--border-radius);
    background-color: var(--white);
    font-size: 1rem;
    color: var(--text-color);
    cursor: pointer;
}

.select-arrow {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    color: var(--text-light);
}

/* Widget Type Selector */
.widget-type-selector {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.widget-type-option {
    flex: 1;
    min-width: 150px;
}

.widget-type-option input[type="radio"] {
    display: none;
}

.widget-type-label {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    border: 2px solid var(--light-gray);
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.widget-type-label::after {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 166, 81, 0.1), transparent);
    transition: all 0.6s ease;
}

.widget-type-label:hover::after {
    left: 100%;
}

.widget-type-icon {
    width: 50px;
    height: 50px;
    background-color: var(--lighter-gray);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    transition: var(--transition);
}

.widget-type-icon i {
    font-size: 1.5rem;
    color: var(--text-light);
    transition: var(--transition);
}

.widget-type-label span {
    font-weight: 500;
    color: var(--text-color);
}

.widget-type-option input[type="radio"]:checked + .widget-type-label {
    border-color: var(--primary-color);
    background-color: var(--primary-light);
}

.widget-type-option input[type="radio"]:checked + .widget-type-label .widget-type-icon {
    background-color: var(--primary-color);
}

.widget-type-option input[type="radio"]:checked + .widget-type-label .widget-type-icon i {
    color: var(--white);
}

/* Columns Grid */
.columns-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 15px;
}

.column-option {
    position: relative;
}

.column-option input[type="checkbox"] {
    position: absolute;
    opacity: 0;
}

.column-option label {
    display: flex;
    flex-direction: column;
    padding: 15px;
    border: 1px solid var(--light-gray);
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition);
    margin: 0;
    position: relative;
    overflow: hidden;
}

.column-option label::after {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 166, 81, 0.1), transparent);
    transition: all 0.6s ease;
}

.column-option label:hover::after {
    left: 100%;
}

.column-name {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--secondary-color);
    margin-bottom: 5px;
}

.column-desc {
    font-size: 0.85rem;
    color: var(--text-light);
}

.column-option input[type="checkbox"]:checked + label {
    border-color: var(--primary-color);
    background-color: var(--primary-light);
}

/* Height Options */
.height-options {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.height-option {
    flex: 1;
}

.height-option input[type="radio"] {
    display: none;
}

.height-option label {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 15px;
    border: 1px solid var(--light-gray);
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition);
    margin: 0;
    position: relative;
    overflow: hidden;
}

.height-option label::after {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 166, 81, 0.1), transparent);
    transition: all 0.6s ease;
}

.height-option label:hover::after {
    left: 100%;
}

.height-option label i {
    font-size: 1.5rem;
    color: var(--text-light);
    margin-bottom: 10px;
    transition: var(--transition);
}

.height-option input[type="radio"]:checked + label {
    border-color: var(--primary-color);
    background-color: var(--primary-light);
}

.height-option input[type="radio"]:checked + label i {
    color: var(--primary-color);
}

.fixed-height-container {
    display: flex;
    align-items: center;
    gap: 10px;
}

.height-input {
    flex: 1;
    padding: 10px 15px;
    border: 1px solid var(--light-gray);
    border-radius: var(--border-radius);
    font-size: 1rem;
}

.height-unit {
    font-weight: 500;
    color: var(--text-light);
}

/* Preview Section */
.preview-section {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

/* Animação para a seção de preview */
.preview-animate {
    animation: previewFadeIn 0.5s ease-out;
}

@keyframes previewFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.code-container {
    margin-top: 2rem;
    background-color: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    overflow: hidden;
    border: 1px solid var(--light-gray);
}

.preview-container {
    margin-top: 2rem;
    background-color: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    overflow: hidden;
    border: 1px solid var(--light-gray);
}

.code-header,
.preview-header {
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 15px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.code-header h3,
.preview-header h3 {
    margin: 0;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Ajuste para o botão de copiar código */
#copy-code {
    min-width: auto;
    white-space: nowrap;
    margin-left: auto;
    padding: 8px 16px;
    font-size: 0.875rem;
    max-width: 100px;
}

.code-body,
.preview-body {
    padding: 20px;
}

.code-body textarea {
    width: 100%;
    height: 200px;
    padding: 15px;
    border: 1px solid var(--light-gray);
    border-radius: var(--border-radius);
    font-family: monospace;
    font-size: 0.9rem;
    background-color: var(--lighter-gray);
    resize: none;
}

.code-footer {
    padding: 15px 20px;
    background-color: var(--lighter-gray);
    border-top: 1px solid var(--light-gray);
}

.code-footer p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--text-light);
}

.preview-body {
    overflow: auto;
    background-color: var(--white);
}

/* Exemplos Section */
.exemplos {
    background-color: var(--white);
}

.examples-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.example {
    background-color: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid var(--light-gray);
}

.example:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-color);
}

.example-header {
    padding: 15px 20px;
    background-color: var(--primary-color);
    color: var(--white);
}

.example-header h3 {
    margin: 0;
    font-size: 1.2rem;
}

.example-image {
    padding: 20px;
    background-color: var(--lighter-gray);
    text-align: center;
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Estilos para as imagens de exemplo */
.example-img {
    max-width: 100%;
    max-height: 200px;
    border-radius: var(--border-radius);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.example-footer {
    padding: 15px 20px;
    background-color: var(--white);
    border-top: 1px solid var(--light-gray);
    text-align: center;
}

/* FAQ Section */
.faq {
    background-color: var(--lighter-gray);
}

.faq-container {
    max-width: 800px;
    margin: 50px auto 0;
}

.faq-item {
    background-color: var(--white);
    border-radius: var(--border-radius);
    margin-bottom: 15px;
    box-shadow: var(--box-shadow);
    overflow: hidden;
    border: 1px solid var(--light-gray);
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.faq-question {
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-item.active .faq-question {
    background-color: var(--primary-light);
}

.faq-question h3 {
    margin: 0;
    font-size: 1.1rem;
    color: var(--secondary-color);
}

.faq-toggle {
    color: var(--primary-color);
    transition: var(--transition);
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item.active .faq-answer {
    padding: 0 20px 20px;
    max-height: 1000px;
}

/* Footer */
.site-footer {
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-logo img {
    height: 40px;
    margin-bottom: 15px;
}

.footer-logo p {
    margin: 0;
    font-size: 1.2rem;
    font-weight: 600;
}

.footer-links h4,
.footer-contact h4 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: var(--white);
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary-color);
}

.footer-contact p {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.7);
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-icon {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transform: rotate(0);
    transition: all 0.3s ease;
}

.social-icon:hover {
    transform: rotate(360deg);
    background-color: var(--primary-color);
    color: var(--white);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    margin: 0;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

/* Seção de depoimentos */
.depoimentos {
    background-color: var(--white);
    padding: 80px 0;
}

.testimonials-slider {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 50px;
}

.testimonial {
    flex: 1;
    min-width: 300px;
    background-color: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    padding: 30px;
    transition: all 0.5s ease;
    border: 1px solid var(--light-gray);
    position: relative;
}

.testimonial:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-color);
}

.testimonial::before {
    content: "\201C";
    font-family: Georgia, serif;
    font-size: 5rem;
    color: var(--primary-light);
    position: absolute;
    top: 10px;
    left: 20px;
    line-height: 1;
    opacity: 0.3;
}

.testimonial-content {
    position: relative;
    z-index: 1;
    margin-bottom: 20px;
}

.testimonial-content p {
    font-style: italic;
    color: var(--text-color);
    line-height: 1.6;
    margin: 0;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background-color: var(--primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.author-avatar i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.author-info h4 {
    margin: 0 0 5px;
    font-size: 1rem;
    color: var(--secondary-color);
}

.author-info p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--text-light);
}

/* Melhorias responsivas */
@media (max-width: 768px) {
    .hero {
        padding: 60px 0 100px;
    }

    .site-header {
        padding: 10px 0;
    }

    .header-content {
        flex-direction: column;
        gap: 15px;
    }

    .main-nav ul {
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero-content {
        text-align: center;
        margin: 0 auto 40px;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1.1rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .widget-type-selector {
        flex-direction: column;
    }

    .hero-carousel {
        max-width: 320px;
    }
}

@media (max-width: 576px) {
    section {
        padding: 60px 0;
    }

    .hero {
        padding: 40px 0 100px;
    }

    .hero h1 {
        font-size: 1.8rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .form-body {
        padding: 20px;
    }

    .height-options {
        flex-direction: column;
    }

    .columns-grid {
        grid-template-columns: 1fr;
    }

    .hero-carousel {
        max-width: 280px;
    }

    .carousel-controls {
        margin-top: 10px;
    }

    .carousel-control {
        width: 30px;
        height: 30px;
    }

    .form-footer {
        flex-direction: column;
        gap: 10px;
    }

    .form-status {
        order: 2;
        text-align: center;
        margin-top: 10px;
    }
}

/* Animações */
@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0px);
    }
}

/* Adicionar efeito de scroll suave para toda a página */
html {
    scroll-behavior: smooth;
}

/* Melhorar o estilo do formulário */
.select-wrapper select:focus,
.height-input:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 166, 81, 0.1);
    outline: none;
}
/* Corrigir os estilos do hero-wave e beneficios-wave */
.hero-wave,
.beneficios-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    line-height: 0;
    overflow: hidden;
}

.hero-wave svg,
.beneficios-wave svg {
    width: 100%;
    height: 100px;
    display: block;
}

.hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    line-height: 0;
}

.hero-wave svg path {
    fill: var(--white);
}