/* Reset e configurações gerais */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-green: #2c5530;
    --secondary-green: #4a7c59;
    --light-green: #e8f5e9;
    --accent-green: #81c784;
    --dark-text: #333333;
    --light-text: #666666;
    --white: #ffffff;
    --light-gray: #f8f9fa;
    --medium-gray: #e9ecef;
    --shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    --shadow-strong: 0 10px 30px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s ease;
    --transition-slow: all 0.5s ease;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--dark-text);
    background-color: var(--white);
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
}

/* =============== HEADER - LAYOUT DESKTOP =============== */
/* DESKTOP: Logo à ESQUERDA, Menu à DIREITA */
/* =============== HEADER =============== */
.main-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    background-color: var(--white);
    box-shadow: var(--shadow);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition);
}

/* Logo - Simplificado */
.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    min-width: fit-content;
}

.logo:hover {
    opacity: 0.9;
}

/* Logo Icon - Apenas imagem quadrada */


.logo-icon img {
    width: 50%;
    height: 40%;
    object-fit: cover;
    display: block;
}


.company-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-left: 15px;
}

.company-info strong {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-green);
    letter-spacing: 0.5px;
    line-height: 1.2;
    white-space: nowrap;
    margin-bottom: 2px;
}

.company-info p {
    font-size: 0.75rem;
    color: var(--light-text);
    line-height: 1.2;
    white-space: nowrap;
    letter-spacing: 0.3px;
    font-weight: 400;
    margin: 0;
    opacity: 0.9;
    font-style: italic; /* Adiciona itálico */
}

/* Responsividade */
@media (max-width: 1024px) {
    .company-info strong {
        font-size: 1.1rem;
    }
    
    .company-info p {
        font-size: 0.7rem;
    }
}

@media (max-width: 768px) {
    .company-info {
        margin-left: 10px;
    }
    
    .company-info strong {
        font-size: 1rem;
        letter-spacing: 0.4px;
    }
    
    .company-info p {
        font-size: 0.65rem;
        letter-spacing: 0.2px;
    }
}

@media (max-width: 480px) {
    .company-info {
        margin-left: 8px;
    }
    
    .company-info strong {
        font-size: 0.9rem;
        letter-spacing: 0.3px;
    }
    
    .company-info p {
        font-size: 0.6rem;
        letter-spacing: 0.1px;
    }
}

/* Opcional: Aumentar peso do itálico */
.company-info p {
    font-style: italic;
    /* font-family: 'Georgia', serif;  Opcional: usar fonte serif para itálico mais elegante */
}




/* Restante do CSS permanece igual... */

/* Menu Toggle (Hamburguer) - VISÍVEL APENAS NO MOBILE */
.menu-toggle {
    display: none; /* Escondido por padrão */
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 24px;
    cursor: pointer;
    z-index: 1001;
    background: none;
    border: none;
    padding: 0;
    position: relative;
}

.menu-toggle .bar {
    width: 100%;
    height: 3px;
    background-color: var(--primary-green);
    border-radius: 2px;
    transition: var(--transition);
}

/* Animação do hamburguer para X */
.menu-toggle.active .bar:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.menu-toggle.active .bar:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active .bar:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

/* =============== NAVEGAÇÃO PRINCIPAL - DESKTOP =============== */
/* Menu à DIREITA no desktop */
.main-nav {
    display: flex;
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.main-nav a {
    text-decoration: none;
    color: var(--primary-green);
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    padding: 0.5rem 0;
    position: relative;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 5px;
}

.main-nav a:hover {
    color: var(--secondary-green);
}

.main-nav a.active {
    color: var(--secondary-green);
}

.main-nav a.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--secondary-green);
}

/* Dropdown - DESKTOP */
.dropdown {
    position: relative;
}

.dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 200px;
    background-color: var(--white);
    box-shadow: var(--shadow-strong);
    border-radius: 8px;
    z-index: 1000;
    padding: 0.5rem 0;
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.dropdown:hover .dropdown-content {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.dropdown-content a {
    display: block;
    padding: 0.8rem 1.5rem;
    color: var(--dark-text);
    font-weight: 500;
    border-bottom: 1px solid var(--medium-gray);
    transition: var(--transition);
}

.dropdown-content a:last-child {
    border-bottom: none;
}

.dropdown-content a:hover {
    background-color: var(--light-green);
    color: var(--primary-green);
    padding-left: 2rem;
}

/* Menu Overlay */
.menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 998;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.menu-overlay.active {
    display: block;
    opacity: 1;
}

/* =============== MENU MOBILE - LADO ESQUERDO =============== */
@media (max-width: 768px) {
    /* MOSTRA o hamburguer no mobile */
    .menu-toggle {
        display: flex;
        order: -1; /* Hamburguer à esquerda no mobile */
    }
    
    /* Ajuste do header no mobile */
    .main-header {
        justify-content: flex-start; /* Alinha à esquerda */
        padding: 1rem;
    }
    
    /* Logo centralizado no mobile */
    .logo {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        margin: 0;
    }
    
    /* Menu mobile - Abrindo da ESQUERDA */
    .main-nav {
        position: fixed;
        top: 0;
        left: -100%;
        width: 280px;
        height: 100vh;
        background-color: var(--white);
        padding: 5rem 1.5rem 2rem;
        transition: left 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        box-shadow: 5px 0 25px rgba(0, 0, 0, 0.15);
        overflow-y: auto;
        z-index: 999;
    }
    
    .main-nav.active {
        left: 0;
    }
    
    /* Animação dos itens do menu */
    .main-nav.active ul li {
        opacity: 0;
        transform: translateX(-20px);
        animation: slideInLeft 0.5s ease forwards;
    }
    
    .main-nav.active ul li:nth-child(1) { animation-delay: 0.1s; }
    .main-nav.active ul li:nth-child(2) { animation-delay: 0.15s; }
    .main-nav.active ul li:nth-child(3) { animation-delay: 0.2s; }
    .main-nav.active ul li:nth-child(4) { animation-delay: 0.25s; }
    .main-nav.active ul li:nth-child(5) { animation-delay: 0.3s; }
    
    @keyframes slideInLeft {
        to {
            opacity: 1;
            transform: translateX(0);
        }
    }
    
    .main-nav ul {
        flex-direction: column;
        gap: 0;
        width: 100%;
    }
    
    .main-nav li {
        width: 100%;
        border-bottom: 1px solid var(--medium-gray);
    }
    
    .main-nav a {
        padding: 1.2rem 0;
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        font-size: 1rem;
    }
    
    /* Dropdown mobile */
    .dropdown-content {
        position: static;
        display: none;
        box-shadow: none;
        padding-left: 1.5rem;
        opacity: 1;
        transform: none;
        background-color: var(--light-green);
        border-radius: 0;
        margin: 0.5rem 0;
        animation: none;
    }
    
    .dropdown.active .dropdown-content {
        display: block;
    }
    
    .dropdown-content a {
        padding: 0.8rem 1.5rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    }
}

/* =============== CONTEÚDO PRINCIPAL =============== */
/* Seção Hero */
.hero-section {
    padding: 8rem 2rem 4rem;
    background: linear-gradient(135deg, var(--light-green) 0%, var(--white) 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-image-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-strong);
    position: relative;
    height: 400px;
}

.image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--secondary-green) 0%, var(--primary-green) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-align: center;
    padding: 2rem;
    transition: var(--transition);
}

.image-placeholder:hover {
    transform: scale(1.02);
}

.image-placeholder i {
    font-size: 4rem;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.image-placeholder p {
    font-size: 0.9rem;
    opacity: 0.8;
    font-style: italic;
}

.hero-content {
    padding-right: 2rem;
}

.main-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--primary-green);
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.5px;
}

.description-text {
    font-size: 1.1rem;
    color: var(--light-text);
    margin-bottom: 2.5rem;
    max-width: 500px;
    line-height: 1.8;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: var(--secondary-green);
    color: var(--white);
    padding: 1rem 2.5rem;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: var(--transition);
    border: 2px solid var(--secondary-green);
}

.cta-button:hover {
    background-color: transparent;
    color: var(--secondary-green);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(74, 124, 89, 0.3);
}

.cta-button i {
    transition: transform 0.3s ease;
}

.cta-button:hover i {
    transform: translateX(5px);
}

/* Seção Feature */
.feature-section {
    max-width: 1200px;
    margin: 6rem auto;
    padding: 0 2rem;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.feature-section.visible {
    opacity: 1;
    transform: translateY(0);
}

.feature-container {
    display: flex;
    gap: 4rem;
    align-items: center;
    margin-bottom: 4rem;
}

.feature-image-wrapper {
    flex: 1;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-strong);
    height: 400px;
}

.feature-headline-content {
    flex: 1;
}

.small-title {
    font-size: 0.9rem;
    color: var(--secondary-green);
    font-weight: 600;
    letter-spacing: 1.5px;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.large-title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-green);
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.feature-description {
    color: var(--light-text);
    font-size: 1.1rem;
    line-height: 1.7;
}

.feature-bottom-content {
    background-color: var(--light-green);
    border-radius: 15px;
    padding: 3rem;
    border-left: 5px solid var(--secondary-green);
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.8s ease;
}

.feature-bottom-content.visible {
    transform: translateY(0);
    opacity: 1;
}

.bottom-content-text h3 {
    font-size: 1.8rem;
    color: var(--primary-green);
    margin-bottom: 1rem;
}

.bottom-content-text p {
    color: var(--light-text);
    margin-bottom: 2rem;
    max-width: 800px;
    line-height: 1.7;
    font-size: 1.05rem;
}

.cta-button-small {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: var(--primary-green);
    color: var(--white);
    padding: 0.8rem 2rem;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    transition: var(--transition);
}

.cta-button-small:hover {
    background-color: var(--secondary-green);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(44, 85, 48, 0.3);
}

/* Seção Serviços */
.services-section {
    max-width: 1200px;
    margin: 8rem auto;
    padding: 0 2rem;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.services-section.visible {
    opacity: 1;
    transform: translateY(0);
}

.services-header {
    text-align: center;
    margin-bottom: 4rem;
}

.services-header h2 {
    font-size: 2.8rem;
    color: var(--primary-green);
    font-weight: 800;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.services-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background-color: var(--secondary-green);
    border-radius: 2px;
}

.services-subtitle {
    color: var(--light-text);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.service-card {
    background-color: var(--white);
    border-radius: 15px;
    padding: 2.5rem;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(20px);
}

.service-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(to right, var(--primary-green), var(--secondary-green));
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-strong);
    border-color: var(--secondary-green);
}

.service-icon {
    width: 60px;
    height: 60px;
    background-color: var(--light-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-green);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background-color: var(--secondary-green);
    color: var(--white);
    transform: scale(1.1);
}

.service-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--light-gray);
    margin-bottom: 1rem;
    position: absolute;
    right: 2rem;
    top: 2rem;
    opacity: 0.5;
}

.service-card h3 {
    font-size: 1.5rem;
    color: var(--primary-green);
    margin-bottom: 1rem;
    font-weight: 700;
}

.service-description {
    color: var(--light-text);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.service-features {
    list-style: none;
}

.service-features li {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--light-text);
    transition: var(--transition);
}

.service-features li:hover {
    color: var(--primary-green);
    transform: translateX(5px);
}

.service-features i {
    color: var(--secondary-green);
    font-size: 0.9rem;
}

/* Seção Formulários */
.forms-section {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--secondary-green) 100%);
    padding: 6rem 2rem;
    margin-top: 6rem;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.forms-section.visible {
    opacity: 1;
    transform: translateY(0);
}

.forms-container {
    max-width: 800px;
    margin: 0 auto;
    background-color: var(--white);
    border-radius: 15px;
    padding: 4rem;
    box-shadow: var(--shadow-strong);
}

.forms-container h2 {
    font-size: 2.5rem;
    color: var(--primary-green);
    text-align: center;
    margin-bottom: 1rem;
}

.forms-subtitle {
    color: var(--light-text);
    text-align: center;
    margin-bottom: 3rem;
    font-size: 1.1rem;
    line-height: 1.7;
}

.contact-form {
    display: grid;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--primary-green);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 1rem;
    border: 2px solid var(--medium-gray);
    border-radius: 8px;
    font-size: 1rem;
    transition: var(--transition);
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary-green);
    box-shadow: 0 0 0 3px rgba(74, 124, 89, 0.1);
}

.submit-button {
    background: linear-gradient(to right, var(--primary-green), var(--secondary-green));
    color: var(--white);
    border: none;
    padding: 1.2rem 2.5rem;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 1rem;
}

.submit-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(44, 85, 48, 0.3);
}

.submit-button:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none !important;
    box-shadow: none !important;
}

/* Footer */
.main-footer {
    background-color: var(--primary-green);
    color: var(--white);
    padding-top: 4rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h3 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: var(--light-green);
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--accent-green);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.footer-logo i {
    font-size: 2rem;
    color: var(--accent-green);
}

.footer-description {
    opacity: 0.8;
    line-height: 1.7;
    font-size: 0.95rem;
}

.contact-info p,
.schedule-info p {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 10px;
    opacity: 0.9;
}

.contact-info i,
.schedule-info i {
    color: var(--accent-green);
    width: 20px;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
}

.social-links a:hover {
    background-color: var(--accent-green);
    transform: translateY(-3px);
}

.newsletter {
    margin-top: 2rem;
}

.newsletter p {
    margin-bottom: 1rem;
    opacity: 0.9;
    font-size: 0.9rem;
}

.newsletter-form {
    display: flex;
    gap: 10px;
}

.newsletter-form input {
    flex: 1;
    padding: 0.8rem;
    border: none;
    border-radius: 5px;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--white);
    font-size: 0.9rem;
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.newsletter-form button {
    background-color: var(--accent-green);
    color: var(--white);
    border: none;
    width: 45px;
    border-radius: 5px;
    cursor: pointer;
    transition: var(--transition);
    font-size: 1rem;
}

.newsletter-form button:hover {
    background-color: var(--secondary-green);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem;
    text-align: center;
}

.footer-bottom p {
    opacity: 0.7;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.footer-links a {
    color: var(--white);
    text-decoration: none;
    opacity: 0.8;
    transition: var(--transition);
    font-size: 0.9rem;
}

.footer-links a:hover {
    opacity: 1;
    color: var(--accent-green);
}

/* =============== RESPONSIVIDADE GERAL =============== */
@media (max-width: 1024px) {
    .hero-container {
        gap: 3rem;
    }
    
    .main-title {
        font-size: 3rem;
    }
    
    .large-title {
        font-size: 2.5rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
    
    .main-nav ul {
        gap: 1.5rem;
    }
}

/* MOBILE - abaixo de 768px */
@media (max-width: 768px) {
    /* MOSTRA o hamburguer no mobile */
    .menu-toggle {
        display: flex !important; /* Força a exibição no mobile */
        order: -1; /* Hamburguer à esquerda no mobile */
    }
    
    /* Ajuste do header no mobile */
    .main-header {
        justify-content: flex-start; /* Alinha à esquerda */
        padding: 1rem;
    }
    
    /* Logo centralizado no mobile */
    .logo {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        margin: 0;
    }
    
    /* Menu mobile - Abrindo da ESQUERDA */
    .main-nav {
        position: fixed;
        top: 0;
        left: -100%;
        width: 280px;
        height: 100vh;
        background-color: var(--white);
        padding: 5rem 1.5rem 2rem;
        transition: left 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        box-shadow: 5px 0 25px rgba(0, 0, 0, 0.15);
        overflow-y: auto;
        z-index: 999;
    }
    
    .main-nav.active {
        left: 0;
    }
    
    /* Animação dos itens do menu */
    .main-nav.active ul li {
        opacity: 0;
        transform: translateX(-20px);
        animation: slideInLeft 0.5s ease forwards;
    }
    
    .main-nav.active ul li:nth-child(1) { animation-delay: 0.1s; }
    .main-nav.active ul li:nth-child(2) { animation-delay: 0.15s; }
    .main-nav.active ul li:nth-child(3) { animation-delay: 0.2s; }
    .main-nav.active ul li:nth-child(4) { animation-delay: 0.25s; }
    .main-nav.active ul li:nth-child(5) { animation-delay: 0.3s; }
    
    @keyframes slideInLeft {
        to {
            opacity: 1;
            transform: translateX(0);
        }
    }
    
    .main-nav ul {
        flex-direction: column;
        gap: 0;
        width: 100%;
    }
    
    .main-nav li {
        width: 100%;
        border-bottom: 1px solid var(--medium-gray);
    }
    
    .main-nav a {
        padding: 1.2rem 0;
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        font-size: 1rem;
    }
    
    /* Dropdown mobile */
    .dropdown-content {
        position: static;
        display: none;
        box-shadow: none;
        padding-left: 1.5rem;
        opacity: 1;
        transform: none;
        background-color: var(--light-green);
        border-radius: 0;
        margin: 0.5rem 0;
        animation: none;
    }
    
    .dropdown.active .dropdown-content {
        display: block;
    }
    
    .dropdown-content a {
        padding: 0.8rem 1.5rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    }
    
    /* Ajustes de conteúdo para mobile */
    .hero-section {
        padding: 6rem 1rem 3rem;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .hero-content {
        padding-right: 0;
        text-align: center;
    }
    
    .main-title {
        font-size: 2.5rem;
    }
    
    .description-text {
        font-size: 1rem;
        margin-left: auto;
        margin-right: auto;
    }
    
    .feature-container {
        flex-direction: column;
        gap: 2rem;
    }
    
    .feature-image-wrapper,
    .hero-image-container {
        height: 300px;
    }
    
    .services-header h2 {
        font-size: 2.2rem;
    }
    
    .forms-container {
        padding: 2rem;
    }
    
    .forms-container h2 {
        font-size: 2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .footer-section h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-logo {
        justify-content: center;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .contact-info p,
    .schedule-info p {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-section {
        padding: 5rem 1rem 2rem;
    }
    
    .main-title {
        font-size: 2rem;
    }
    
    .large-title {
        font-size: 1.8rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .service-card {
        padding: 2rem;
    }
    
    .feature-bottom-content {
        padding: 2rem;
    }
    
    .forms-section {
        padding: 4rem 1rem;
    }
    
    .main-nav {
        width: 250px;
    }
    
    .footer-bottom {
        padding: 1.5rem;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }
}

/* Animações de scroll */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Scrollbar personalizada */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--light-gray);
}

::-webkit-scrollbar-thumb {
    background: var(--secondary-green);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-green);
}



