     :root {
    --primary-color: #2E7D32;
    --primary-dark: #1B5E20;
    --primary-light: #4CAF50;
    --secondary-color: #FFB300;
    --secondary-dark: #FF8F00;
    --secondary-light: #FFC107;
    --dark-color: #263238;
    --light-color: #F5F5F5;
    --gray-color: #ECEFF1;
    --gray-dark: #B0BEC5;
    --text-color: #37474F;
    --text-light: #546E7A;
    --white: #FFFFFF;
    --black: #000000;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Poppins', sans-serif;
            line-height: 1.6;
            color: var(--text-color);
        }

        body.menu-open {
            overflow: hidden;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            width: 100%;
        }

        /* Top Bar */
        .top-bar {
            background: var(--dark-color);
            color: var(--white);
            padding: 8px 0;
            font-size: 0.9rem;
            width: 100%;
        }

        .top-bar-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 10px;
        }

        .contact-info-top i {
            margin-right: 8px;
            color: var(--secondary-color);
        }

        .language-selector {
            display: flex;
            gap: 5px;
        }

        .language-selector a {
            color: var(--white);
            text-decoration: none;
            padding: 4px 12px;
            border-radius: 4px;
            transition: var(--transition);
        }

        .language-selector a.active {
            background: var(--secondary-color);
            color: var(--dark-color);
            font-weight: 600;
        }

        /* Header */
        .header {
            background: var(--white);
            box-shadow: var(--shadow);
            position: sticky;
            top: 0;
            z-index: 1000;
            width: 100%;
        }

        .navbar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 0;
            width: 100%;
        }

        /* Logo Container - Controla o tamanho do logo */
        .logo-container {
            width: 150px;
            height: 60px;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            flex-shrink: o;
        }

        .logo-container img {
           width: auto;
           height: auto;
           max-width: 100%;
           max-height: 100%;
           object-fit: contain;
           display: block;
        }

        .footer .logo-container img {
            max-width: 100%;
            max-height: 100%;
            object-fit: contain;
        }

        /* Menu */
        .nav-menu {
            display: flex;
            list-style: none;
            gap: 2rem;
            margin: 0;
            padding: 0;
        }

        .nav-menu li {
            position: relative;
        }

        .nav-menu a {
            text-decoration: none;
            color: var(--dark-color);
            font-weight: 500;
            transition: var(--transition);
            font-size: 0.95rem;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            padding: 5px 0;
            position: relative;
        }

        .nav-menu a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 0;
            height: 2px;
            background: var(--primary-color);
            transition: var(--transition);
        }

        .nav-menu a:hover::after,
        .nav-menu a.active::after {
            width: 100%;
        }

        .nav-menu a:hover {
            color: var(--primary-color);
        }

        /* Hamburger */
        .hamburger {
            display: none;
            cursor: pointer;
            padding: 10px;
            z-index: 1001;
        }

        .bar {
            display: block;
            width: 25px;
            height: 3px;
            margin: 5px auto;
            background: var(--dark-color);
            transition: all 0.3s ease-in-out;
            border-radius: 3px;
        }

        /* Hero Section com Imagem de Fundo */
        .hero {
          min-height: 80vh;
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    overflow: hidden;
}

        /* Fallback caso a imagem não carregue */
        .hero.error {
            background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
        }

        .hero-background {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 1;
    }

    .hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Cobre todo o espaço sem distorcer */
    object-position: center;
    display: block;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Ajuste a opacidade aqui (0.3 a 0.7) */
    z-index: 2;
}

        .hero-content {
    position: relative;
    z-index: 3;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

.hero h1 {
    font-size: clamp(2rem, 5vw, 4rem);
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    animation: fadeInUp 1s ease;
}

.hero p {
    font-size: clamp(1rem, 2vw, 1.3rem);
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
    animation: fadeInUp 1s ease 0.2s both;
}

/* Fallback APENAS se a imagem não carregar */
.hero.error .hero-background {
    display: none;
}

.hero.error .hero-overlay {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
}

        /* Buttons */
        .btn-primary {
            display: inline-block;
            padding: 1rem 2.5rem;
            background: var(--secondary-color);
            color: var(--dark-color);
            text-decoration: none;
            border-radius: 50px;
            font-weight: 600;
            transition: var(--transition);
            border: 2px solid transparent;
            animation: fadeInUp 1s ease 0.4s both;
        }

        .btn-primary:hover {
            background: var(--secondary-dark);
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(255,179,0,0.3);
        }

        /* Sections */
        section {
            padding: 80px 0;
            width: 100%;
        }

        section:nth-child(even) {
            background-color: var(--light-color);
        }

        .section-title {
            text-align: center;
            font-size: clamp(1.8rem, 4vw, 2.5rem);
            margin-bottom: 3rem;
            color: var(--dark-color);
            position: relative;
        }

        .section-title::after {
            content: '';
            display: block;
            width: 80px;
            height: 4px;
            background: var(--secondary-color);
            margin: 1rem auto;
            border-radius: 2px;
        }

        /* About Section */
        .about-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: start;
        }

        .mission-vision-values {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }

        .mission, .vision, .values {
            background: var(--white);
            padding: 2rem;
            border-radius: var(--border-radius);
            border-left: 4px solid var(--primary-color);
            box-shadow: var(--shadow);
        }

        .mission h4, .vision h4, .values h4 {
            color: var(--primary-color);
            margin-bottom: 1rem;
            font-size: 1.3rem;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .values-list {
            list-style: none;
            margin-top: 1rem;
        }

        .values-list li {
            margin-bottom: 0.5rem;
            display: flex;
            align-items: flex-start;
            gap: 10px;
        }

        .values-list i {
            color: var(--secondary-color);
        }

        /* Cards */
        .image-card {
            background: var(--white);
            border-radius: var(--border-radius);
            overflow: hidden;
            box-shadow: var(--shadow);
            border: 1px solid rgba(0,0,0,0.05);
            aspect-ratio: 16/9;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, #e0e0e0, #f5f5f5);
            color: var(--text-color);
            padding: 20px;
            text-align: center;
        }

        .about-images-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1.5rem;
        }

        .about-images-grid .image-card:nth-child(3) {
            grid-column: span 2;
        }

        /* Estatísticas */
        .estatisticas {
            background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
            color: var(--white);
        }

        .estatisticas .section-title {
            color: var(--white);
        }

        .estatisticas .section-title::after {
            background: var(--white);
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
        }

        .stat-card {
            text-align: center;
            padding: 2rem;
            background: rgba(255,255,255,0.1);
            border-radius: var(--border-radius);
            border: 1px solid rgba(255,255,255,0.2);
            backdrop-filter: blur(10px);
            transition: var(--transition);
        }

        .stat-card:hover {
            transform: translateY(-5px);
            background: rgba(255,255,255,0.15);
        }

        .stat-number {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--secondary-color);
            margin-bottom: 0.5rem;
        }

        .stat-label {
            font-size: 1rem;
            opacity: 0.9;
        }

        /* Contact Section */
        .contact-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }

        .contact-info h3 {
            color: var(--primary-color);
            margin-bottom: 1.5rem;
            font-size: 1.5rem;
        }

        .contact-details {
            margin-top: 2rem;
        }

        .contact-item {
            display: flex;
            gap: 1rem;
            margin-bottom: 1.5rem;
            align-items: flex-start;
        }

        .contact-item i {
            color: var(--secondary-color);
            font-size: 1.3rem;
            min-width: 30px;
        }

        .contact-item a {
            color: var(--text-color);
            text-decoration: none;
            transition: color 0.3s;
        }

        .contact-item a:hover {
            color: var(--primary-color);
        }

        /* Footer */
        .footer {
            background: var(--dark-color);
            color: var(--white);
            padding: 4rem 0 2rem;
            width: 100%;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
            margin-bottom: 2rem;
        }

        .footer-links ul {
            list-style: none;
            margin-top: 1rem;
        }

        .footer-links li {
            margin-bottom: 0.5rem;
        }

        .footer-links a {
            color: var(--white);
            text-decoration: none;
            opacity: 0.8;
            transition: all 0.3s;
        }

        .footer-links a:hover {
            opacity: 1;
            color: var(--secondary-color);
            transform: translateX(5px);
        }

        .social-icons {
            margin-top: 1rem;
        }

        .social-icons a {
            color: var(--white);
            font-size: 1.5rem;
            margin-right: 1rem;
            transition: all 0.3s;
            display: inline-block;
        }

        .social-icons a:hover {
            color: var(--secondary-color);
            transform: translateY(-3px);
        }

        .footer-bottom {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid rgba(255,255,255,0.1);
        }

        /* WhatsApp Float Button */
        .whatsapp-float {
            position: fixed;
            bottom: 30px;
            right: 30px;
            background: #25D366;
            color: var(--white);
            width: 60px;
            height: 60px;
            border-radius: 50%;
            text-align: center;
            font-size: 30px;
            line-height: 60px;
            box-shadow: 0 4px 10px rgba(37,211,102,0.3);
            transition: all 0.3s;
            z-index: 100;
            text-decoration: none;
            animation: pulse 2s infinite;
        }

        .whatsapp-float:hover {
            transform: scale(1.1);
            animation: none;
        }

        /* Animações */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes pulse {
            0% {
                box-shadow: 0 0 0 0 rgba(37,211,102,0.7);
            }
            70% {
                box-shadow: 0 0 0 15px rgba(37,211,102,0);
            }
            100% {
                box-shadow: 0 0 0 0 rgba(37,211,102,0);
            }
        }

        /* Media Queries - Mobile */
        @media screen and (max-width: 768px) {
            .hamburger {
                display: block !important;
            }

            .nav-menu {
                position: fixed;
                left: -100%;
                top: 80px;
                flex-direction: column;
                background: var(--white);
                width: 100%;
                height: calc(100vh - 80px);
                text-align: center;
                transition: left 0.3s ease-in-out;
                box-shadow: 0 10px 20px rgba(0,0,0,0.1);
                padding: 2rem 0;
                gap: 0;
                overflow-y: auto;
                z-index: 1000;
                display: flex !important;
            }

            .nav-menu.active {
                left: 0;
            }

            .nav-menu li {
                margin: 1.5rem 0;
                width: 100%;
            }

            .nav-menu a {
                font-size: 1.1rem;
                display: block;
                padding: 10px;
                width: 100%;
            }

            .nav-menu a::after {
                display: none;
            }

            .hamburger.active .bar:nth-child(2) {
                opacity: 0;
            }

            .hamburger.active .bar:nth-child(1) {
                transform: translateY(8px) rotate(45deg);
            }

            .hamburger.active .bar:nth-child(3) {
                transform: translateY(-8px) rotate(-45deg);
            }

            .about-content,
            .contact-content,
            .footer-content {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .about-images-grid {
                order: -1;
            }

            .stats-grid {
                grid-template-columns: 1fr;
                gap: 1rem;
            }

            .hero {
                min-height: 60vh;
                background-attachment: scroll; /* Remove parallax em mobile */
            }

            .top-bar-content {
                flex-direction: column;
                text-align: center;
            }

            .logo-container {
                width: 120px;
                height: 50px;
            }

            .whatsapp-float {
                width: 50px;
                height: 50px;
                font-size: 25px;
                line-height: 50px;
                bottom: 20px;
                right: 20px;
            }
        }

        @media screen and (max-width: 480px) {
            .logo-container {
                width: 100px;
                height: 40px;
            }

            .hero h1 {
                font-size: 1.8rem;
            }

            .btn-primary {
                padding: 0.8rem 1.5rem;
                font-size: 0.9rem;
            }

            .stat-number {
                font-size: 2rem;
            }

            .section-title {
                font-size: 1.8rem;
            }
        }

        /* ========== MENU DROPDOWN ========== */
.nav-menu li {
    position: relative;
}

/* Estilo do dropdown */
.nav-menu .dropdown {
    position: relative;
}

.nav-menu .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--white);
    min-width: 220px;
    box-shadow: var(--shadow-lg);
    border-radius: 12px;
    padding: 0.8rem 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    border: 1px solid rgba(0,0,0,0.05);
    margin-top: 10px;
}

/* Seta do dropdown */
.nav-menu .dropdown-menu::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid var(--white);
}

/* Mostrar dropdown ao passar o mouse */
.nav-menu .dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    margin-top: 0;
}

/* Itens do dropdown */
.nav-menu .dropdown-menu li {
    margin: 0;
    width: 100%;
}

.nav-menu .dropdown-menu a {
    padding: 0.8rem 1.5rem;
    display: block;
    text-align: left;
    font-size: 0.9rem;
    text-transform: none;
    color: var(--text-color);
    transition: var(--transition);
}

.nav-menu .dropdown-menu a:hover {
    background: var(--light-color);
    color: var(--primary-color);
    padding-left: 2rem;
}

.nav-menu .dropdown-menu a::after {
    display: none;
}

/* Indicador de dropdown (seta para baixo) */
.nav-menu .dropdown > a {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.nav-menu .dropdown > a i {
    font-size: 0.8rem;
    transition: transform 0.3s;
}

.nav-menu .dropdown:hover > a i {
    transform: rotate(180deg);
}

/* Mobile - ajustes */
@media (max-width: 768px) {
    .nav-menu .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        box-shadow: none;
        padding: 0;
        margin: 0;
        min-width: 100%;
        transform: none;
        display: none;
    }
    
    .nav-menu .dropdown-menu::before {
        display: none;
    }
    
    .nav-menu .dropdown.active .dropdown-menu {
        display: block;
    }
    
    .nav-menu .dropdown > a i {
        margin-left: auto;
    }


    .nav-menu .dropdown {
        width: 100%;
        text-align: center;
    }

    .nav-menu .dropdown > a {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important; /* Centraliza o texto */
        gap: 0.5rem;
        width: 100%;
        text-align: center;
    }
     .nav-menu .dropdown > a i {
        margin-left: 0 !important; /* Remove o margin-left que puxava para esquerda */
        position: relative;
        top: 1px;
    }

    .nav-menu .dropdown-menu {
        text-align: center;
        padding: 0.5rem 0 !important;
    }

    .nav-menu .dropdown-menu a {
        justify-content: center !important;
        text-align: center !important;
        padding: 0.8rem !important;
    }

    .nav-menu .dropdown-menu a i {
        display: none; /* Esconde os ícones no mobile para não poluir */
    }
    .nav-menu a {
        text-align: center !important;
        justify-content: center !important;
    }
}