* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Nunito Sans', Arial, sans-serif;
            line-height: 1.6;
            color: var(--color-text-dark);
            overflow-x: hidden;
        }

        html { overflow-x: hidden; }

        /* Header */
        .header {
            position: fixed;
            top: 0;
            width: 100%;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            z-index: 1000;
            padding: 0.6rem 0; /* reduz para não crescer demais */
            transition: all 0.3s ease;
        }

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 1.2rem; /* leve ajuste para comportar a logo maior */
}

/* Ajuste do link do brand para não limitar a imagem escalada */
.navbar-brand {
    display: flex;
    align-items: center;
    padding: 0; /* remove possíveis paddings do bootstrap */
}

.logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--color-primary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Controla imagens dentro do brand (Bootstrap) */
.navbar-brand img.logo {
    height: 60px;
    max-height: 60px;
    width: auto;
    transform: scale(1.65) translateY(2px); /* maior, centrado, sem afetar altura do header */
    transform-origin: left center;
    will-change: transform;
    image-rendering: -webkit-optimize-contrast;
}

        .nav-menu {
            display: flex;
            list-style: none;
            gap: 2rem;
        }

        .nav-menu a {
            text-decoration: none;
            color: #333;
            font-weight: 500;
            transition: color 0.3s ease;
            position: relative;
        }

        .nav-menu a:hover {
            color: var(--color-primary);
        }

        .nav-menu a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
            transition: width 0.3s ease;
        }

.nav-menu a:hover::after {
    width: 100%;
}

/* Hover moderno nos itens do menu (desktop) */
@media (min-width: 992px) {
    .navbar-nav .nav-link {
        position: relative;
        border-radius: 10px;
        padding: 8px 12px;
        transition: background 0.25s ease, color 0.25s ease;
    }
    .navbar-nav .nav-link:hover {
        background: rgba(73, 157, 169, 0.12);
        color: var(--color-primary-dark);
    }
}

        .cta-button {
            background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
            color: white;
            padding: 0.8rem 1.5rem;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(73, 157, 169, 0.3);
        }

        .cta-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(123, 154, 124, 0.4);
        }

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(135deg, var(--azul-claro-acinzentado), var(--gelo));
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

        .hero::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(73, 157, 169, 0.1) 0%, transparent 50%);
        animation: float 6s ease-in-out infinite;
        }

/* Camada de imagem para hero com fade/parallax */
.hero .hero-bg {
    position: absolute;
    inset: 0;
    background: url('../img/fundo-hero.webp') center/cover no-repeat;
    opacity: 0.85;
    transition: opacity 0.6s ease, transform 0.4s ease;
    z-index: 0;
}
.hero .hero-bg + .hero-bg {
    /* camadas adicionais começam por baixo e invisíveis */
    opacity: 0;
}

.hero .hero-container,
.hero .hero-content,
.hero .hero-image {
    position: relative;
    z-index: 2;
}

        @keyframes float {
            0%, 100% { transform: translateY(0px) rotate(0deg); }
            50% { transform: translateY(-20px) rotate(180deg); }
        }

        .hero-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
            display: grid;
            grid-template-columns: 1fr;
            gap: 2rem;
            align-items: center;
            position: relative;
            z-index: 2;
        }

        .hero-content h1 {
            font-size: 2.5rem;
            font-weight: 700;
            color: #333;
            margin-bottom: 1.5rem;
            line-height: 1.2;
        }

        .hero-content .highlight {
            background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero-content p {
            font-size: 1.3rem;
            color: #666;
            margin-bottom: 2rem;
            line-height: 1.8;
        }

        .hero-buttons {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
        }

        .btn-primary {
            background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
            color: white;
            padding: 1rem 2rem;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            box-shadow: 0 6px 20px rgba(73, 157, 169, 0.3);
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(73, 157, 169, 0.4);
        }

        .btn-secondary {
            background: transparent;
            color: var(--color-primary);
            padding: 1rem 2rem;
            border: 2px solid var(--color-primary);
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }

        .btn-secondary:hover {
            background: var(--color-primary);
            color: white;
            transform: translateY(-2px);
        }

        /* Removida imagem frontal do hero */

        /* Pilares Section */
        .pilares {
            padding: 6rem 0;
            background: white;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        .section-title {
            text-align: center;
            margin-bottom: 4rem;
        }

        .section-title h2 {
            font-size: 2.8rem;
            color: #333;
            margin-bottom: 1rem;
        }

        .section-title p {
            font-size: 1.2rem;
            color: #666;
            max-width: 600px;
            margin: 0 auto;
        }

        .pilares-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2rem;
        }

        .pilar-card {
            background: white;
            padding: 3rem 2rem;
            border-radius: 20px;
            text-align: center;
            transition: all 0.3s ease;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            border: 1px solid rgba(123, 154, 124, 0.1);
            position: relative;
            overflow: hidden;
        }

        .pilar-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, #7B9A7C, #B8A9C9);
        }

        .pilar-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 25px 50px rgba(123, 154, 124, 0.15);
        }

        .pilar-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, #7B9A7C, #B8A9C9);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 2rem;
            font-size: 2rem;
            color: white;
        }

        .pilar-card h3 {
            font-size: 1.8rem;
            color: #333;
            margin-bottom: 1rem;
        }

        .pilar-card p {
            color: #666;
            margin-bottom: 2rem;
            line-height: 1.7;
        }

        .pilar-link {
            color: #7B9A7C;
            text-decoration: none;
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            transition: all 0.3s ease;
        }

        .pilar-link:hover {
            color: #B8A9C9;
            transform: translateX(5px);
        }

        /* Depoimentos */
        .depoimentos {
            padding: 6rem 0;
            background: linear-gradient(135deg, rgba(123, 154, 124, 0.05), rgba(184, 169, 201, 0.05));
        }

        .depoimentos-slider {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2rem;
        }

        .depoimento-card {
            background: white;
            padding: 2.5rem;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            transition: transform 0.3s ease;
        }

        .depoimento-card:hover {
            transform: translateY(-5px);
        }

        .depoimento-texto {
            font-style: italic;
            color: #555;
            margin-bottom: 2rem;
            line-height: 1.8;
            position: relative;
        }

        .depoimento-texto::before {
            content: '"';
            font-size: 4rem;
            color: #7B9A7C;
            position: absolute;
            top: -20px;
            left: -10px;
            opacity: 0.3;
        }

        .depoimento-autor {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .autor-foto {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: linear-gradient(135deg, #7B9A7C, #B8A9C9);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: bold;
            font-size: 1.5rem;
        }

        .autor-info h4 {
            color: #333;
            margin-bottom: 0.25rem;
        }

        .autor-info span {
            color: #666;
            font-size: 0.9rem;
        }

        /* CTA Section */
        .cta-section {
            padding: 6rem 0;
            background: linear-gradient(135deg, #7B9A7C, #B8A9C9);
            color: white;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .cta-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>') repeat;
            animation: sparkle 20s linear infinite;
        }

        @keyframes sparkle {
            0% { transform: translateX(0) translateY(0); }
            100% { transform: translateX(-100px) translateY(-100px); }
        }

        .cta-content {
            position: relative;
            z-index: 2;
        }

        .cta-content h2 {
            font-size: 3rem;
            margin-bottom: 1rem;
        }

        .cta-content p {
            font-size: 1.3rem;
            margin-bottom: 2rem;
            opacity: 0.9;
        }

        .btn-white {
            background: white;
            color: #7B9A7C;
            padding: 1.2rem 2.5rem;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
        }

        .btn-white:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
        }

        /* Footer */
        .footer {
            background: #333;
            color: white;
            padding: 3rem 0 1rem;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }

        .footer-section h3 {
            color: #7B9A7C;
            margin-bottom: 1rem;
        }

        .footer-section p, .footer-section a {
            color: #ccc;
            text-decoration: none;
            line-height: 1.8;
        }

        .footer-section a:hover {
            color: #7B9A7C;
        }

        .social-icons {
            display: flex;
            gap: 1rem;
            margin-top: 1rem;
        }

        .social-icons a {
            width: 40px;
            height: 40px;
            background: #7B9A7C;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }

        .social-icons a:hover {
            background: #B8A9C9;
            transform: translateY(-2px);
        }

        .footer-bottom {
            border-top: 1px solid #555;
            padding-top: 2rem;
            text-align: center;
            color: #999;
        }

        /* Mobile Menu */
        .mobile-menu-toggle {
            display: none;
            flex-direction: column;
            cursor: pointer;
            padding: 0.5rem;
        }

        .mobile-menu-toggle span {
            width: 25px;
            height: 3px;
            background: #333;
            margin: 3px 0;
            transition: 0.3s;
            border-radius: 2px;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .mobile-menu-toggle {
                display: flex;
            }

            .nav-menu {
                position: fixed;
                top: 80px;
                left: -100%;
                flex-direction: column;
                background: white;
                width: 100%;
                padding: 2rem;
                box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
                transition: left 0.3s ease;
            }

            .nav-menu.active {
                left: 0;
            }

            /* Evita corte do conteúdo do hero em telas pequenas */
            .hero {
                height: auto; /* permite crescer conforme o texto */
                min-height: 100svh; /* cobre a altura útil do viewport mobile */
                padding: 5rem 1rem 1.5rem; /* reduz top/bottom para caber sem rolagem extra */
                overflow: visible; /* garante que múltiplas linhas não sejam ocultadas */
            }

            .hero-container {
                grid-template-columns: 1fr;
                gap: 2rem;
                text-align: center;
            }

            .hero-content h1 {
                font-size: 2rem; /* reduz para caber melhor em mobile */
                line-height: 1.25;
                overflow-wrap: anywhere; /* quebra palavras longas para evitar corte horizontal */
                word-break: break-word;
            }

            .cta-content h2 {
                font-size: 2rem;
            }

            .pilares-grid {
                grid-template-columns: 1fr;
            }

            .hero-buttons {
                justify-content: center;
            }
        }

        /* Animations */
        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.6s ease;
        }

        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* Loading Animation */
        .loading-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, #7B9A7C, #B8A9C9);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 9999;
            transition: opacity 0.5s ease;
        }

        .loading-spinner {
            width: 60px;
            height: 60px;
            border: 4px solid rgba(255, 255, 255, 0.3);
            border-top: 4px solid white;
            border-radius: 50%;
            animation: spin 1s linear infinite;
        }

        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }