 /* --- Reset e Estilos Globais --- */
        :root {
            --primary-green: #4CAF50;
            --light-green-bg: #F1F8E9;
            --light-green-accent: #C8E6C9;
            --dark-green: #388E3C;
            --text-dark: #212121;
            --text-light: #757575;
            --background-white: #FFFFFF;
            --background-grey: #FAFAFA;
            --border-color: #E0E0E0;
            --shadow-light: 0 4px 15px rgba(0, 0, 0, 0.07);
            --shadow-medium: 0 8px 25px rgba(0, 0, 0, 0.12);
            --shadow-heavy: 0 12px 35px rgba(0, 0, 0, 0.15);
            
            /* Variáveis para tema escuro */
            --dark-bg-primary: #121212;
            --dark-bg-secondary: #1e1e1e;
            --dark-text-primary: #f5f5f5;
            --dark-text-secondary: #b0b0b0;
            --dark-border: #333333;
            --dark-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
        }

        /* Modo escuro */
        body.dark-theme {
            --text-dark: var(--dark-text-primary);
            --text-light: var(--dark-text-secondary);
            --background-white: var(--dark-bg-primary);
            --background-grey: var(--dark-bg-secondary);
            --border-color: var(--dark-border);
            --shadow-light: var(--dark-shadow);
            --shadow-medium: 0 8px 25px rgba(0, 0, 0, 0.4);
            --shadow-heavy: 0 12px 35px rgba(0, 0, 0, 0.5);
            --light-green-bg: #1a331a;
            --light-green-accent: #2a4d2a;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
            scroll-padding-top: 90px;
        }

        body {
            font-family: 'Inter', sans-serif;
            color: var(--text-dark);
            background-color: var(--background-white);
            overflow-x: hidden;
            line-height: 1.6;
            opacity: 0;
            animation: pageLoad 0.6s ease-out 0.1s forwards;
            transition: background-color 0.3s ease, color 0.3s ease;
        }

        @keyframes pageLoad {
            to {
                opacity: 1;
            }
        }

        .container {
            max-width: 1140px;
            margin: 0 auto;
            padding: 0 20px;
        }

        section {
            padding: 100px 0;
            position: relative;
            overflow: hidden;
            transition: background-color 0.3s ease;
        }

        h1, h2, h3 {
            font-weight: 800;
            color: var(--text-dark);
            line-height: 1.2;
            transition: color 0.3s ease;
        }

        h1 {
            font-size: clamp(2.8rem, 5vw, 4rem);
            margin-bottom: 20px;
        }

        h2 {
            font-size: clamp(2.2rem, 4vw, 3rem);
            margin-bottom: 25px;
            text-align: center;
        }
        
        h3 {
            font-size: 1.4rem;
            margin-bottom: 10px;
        }

        p {
            font-size: 1.1rem;
            line-height: 1.7;
            color: var(--text-light);
            margin-bottom: 1em;
            transition: color 0.3s ease;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background-color: var(--primary-green);
            color: var(--background-white);
            padding: 16px 32px;
            border-radius: 12px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1rem;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            border: none;
            cursor: pointer;
            box-shadow: var(--shadow-light);
            position: relative;
            overflow: hidden;
        }

        .btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
            transition: left 0.6s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .btn::after {
            content: '';
            position: absolute;
            inset: 0;
            border-radius: 12px;
            padding: 2px;
            background: linear-gradient(45deg, var(--primary-green), var(--dark-green));
            opacity: 0;
            transition: opacity 0.4s ease;
            z-index: -1;
        }

        .btn:hover {
            background-color: var(--dark-green);
            transform: translateY(-4px) scale(1.02);
            box-shadow: 0 16px 40px rgba(76, 175, 80, 0.3);
        }

        .btn:hover::before {
            left: 100%;
        }

        .btn:hover::after {
            opacity: 1;
        }
        
        .btn:active {
            transform: translateY(-2px) scale(0.98);
            box-shadow: var(--shadow-medium);
        }

        .btn:focus {
            outline: 2px solid var(--dark-green);
            outline-offset: 3px;
        }

        /* --- Animações de Scroll Aprimoradas --- */
        .fade-in {
            opacity: 0;
            transform: translateY(40px);
            transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), 
                        transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
            will-change: opacity, transform;
        }
        
        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* --- Header / Navegação --- */
        header {
            width: 100%;
            padding: 30px 0;
            position: fixed;
            top: 0;
            left: 0;
            background-color: rgba(255, 255, 255, 0.9);
            backdrop-filter: blur(20px) saturate(180%);
            -webkit-backdrop-filter: blur(20px) saturate(180%);
            z-index: 1000;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            border-bottom: 1px solid transparent;
        }
        
        body.dark-theme header {
            background-color: rgba(18, 18, 18, 0.9);
        }
        
        header.scrolled {
            padding: 20px 0;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
            background-color: rgba(255, 255, 255, 0.95);
            border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        }
        
        body.dark-theme header.scrolled {
            background-color: rgba(18, 18, 18, 0.95);
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        }

        .navbar {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo {
            display: flex;
            align-items: center;
            text-decoration: none;
            transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .logo:hover {
            transform: scale(1.03);
        }

        .logo img {
            width: 60px;
            height: auto;
            margin-right: 15px;
            transition: transform 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
            filter: drop-shadow(0 2px 8px rgba(76, 175, 80, 0.2));
        }

        .logo:hover img {
            transform: rotate(8deg) scale(1.1);
        }

        .logo-text {
            font-size: 1.5rem;
            font-weight: 800;
            line-height: 1;
            color: var(--text-dark);
            transition: color 0.3s ease;
        }
        
        .logo-text span {
            display: block;
            font-size: 0.9rem;
            font-weight: 500;
            color: var(--text-light);
            letter-spacing: 0.5px;
        }

        .nav-menu {
            display: flex;
            align-items: center;
            gap: 40px;
        }

        .nav-links {
            list-style: none;
            display: flex;
            gap: 35px;
        }

        .nav-links a {
            text-decoration: none;
            color: var(--text-dark);
            font-weight: 600;
            transition: color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            padding: 5px 0;
        }
        
        .nav-links a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 3px;
            bottom: -2px;
            left: 50%;
            background: linear-gradient(90deg, var(--primary-green), var(--dark-green));
            transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1), left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            border-radius: 2px;
        }

        .nav-links a:hover {
            color: var(--primary-green);
        }
        
        .nav-links a:hover::after {
            width: 100%;
            left: 0;
        }

        .nav-links a:focus {
            outline: none;
            color: var(--primary-green);
        }

        /* --- Botão de Alternância de Tema --- */
        .theme-toggle {
            background: none;
            border: none;
            cursor: pointer;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--text-dark);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .theme-toggle:hover {
            background-color: rgba(76, 175, 80, 0.1);
            transform: scale(1.1);
        }

        .theme-toggle:focus {
            outline: 2px solid var(--primary-green);
            outline-offset: 2px;
        }

        .theme-toggle i {
            font-size: 1.2rem;
            transition: transform 0.5s ease;
        }

        .theme-toggle .fa-sun {
            position: absolute;
            opacity: 0;
            transform: rotate(90deg);
        }

        body.dark-theme .theme-toggle .fa-moon {
            opacity: 0;
            transform: rotate(-90deg);
        }

        body.dark-theme .theme-toggle .fa-sun {
            opacity: 1;
            transform: rotate(0);
        }

        /* --- Menu Mobile --- */
        .hamburger {
            display: none;
            flex-direction: column;
            justify-content: space-between;
            width: 30px;
            height: 21px;
            background: transparent;
            border: none;
            cursor: pointer;
            padding: 0;
            z-index: 10;
        }

        .hamburger span {
            width: 100%;
            height: 3px;
            background-color: var(--text-dark);
            border-radius: 3px;
            transition: all 0.3s ease;
            transform-origin: left;
        }

        .hamburger.active span:nth-child(1) {
            transform: rotate(45deg);
        }

        .hamburger.active span:nth-child(2) {
            opacity: 0;
        }

        .hamburger.active span:nth-child(3) {
            transform: rotate(-45deg);
        }

        /* --- Seção Hero Aprimorada --- */
        #hero {
            padding-top: 190px;
            padding-bottom: 120px;
            overflow: hidden;
            position: relative;
            /* Cor de fundo ajustada */
            background: linear-gradient(135deg, #E8F5E9 0%, #DCEAD9 100%); 
            transition: background 0.3s ease;
        }
        
        body.dark-theme #hero {
            background: linear-gradient(135deg, #1a331a 0%, #152015 100%);
        }
        
        .hero-background-shape {
            position: absolute;
            top: 0;
            right: 0;
            width: 70%;
            height: 100%;
            z-index: 0;
            overflow: hidden;
            animation: float 8s ease-in-out infinite;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0) rotate(0deg); }
            50% { transform: translateY(-20px) rotate(2deg); }
        }
        
        .hero-background-shape svg {
            position: absolute;
            top: -10%;
            left: 10%;
            width: 100%;
            height: auto;
            animation: morphing 10s ease-in-out infinite;
        }

        @keyframes morphing {
            0%, 100% { transform: translate(480px, 300px) rotate(-15deg) scale(1.2); }
            50% { transform: translate(500px, 280px) rotate(-12deg) scale(1.25); }
        }
        
        .hero-content {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 40px;
            position: relative;
            z-index: 1;
        }

        .hero-text {
            flex: 0 0 50%;
            padding-right: 20px;
        }

        .hero-text h1 {
            animation: slideInLeft 0.8s cubic-bezier(0.4, 0, 0.2, 1);
        }

        @keyframes slideInLeft {
            from {
                opacity: 0;
                transform: translateX(-40px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }
        
        .hero-text .subtitle {
            font-size: 1.25rem;
            margin: 25px 0 35px;
            max-width: 480px;
            animation: slideInLeft 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.2s both;
        }

        .hero-text .btn {
            animation: slideInLeft 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.4s both;
        }
        
        /* CÓDIGO MODIFICADO: Efeito de animação para a imagem do velho */
        .hero-illustration-wrapper {
            position: absolute;
            bottom: -80px; /* Ajuste para a imagem ser maior */
            right: -10%;
            width: 800px; /* Aumenta a largura da imagem */
            height: auto;
            z-index: 0;
            transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
            animation: 
                slideInRight 1s cubic-bezier(0.4, 0, 0.2, 1) 0.3s both,
                breathe 8s ease-in-out infinite; /* Animação de respiração */
            /* Adiciona um clip-path para um formato mais orgânico */
            clip-path: ellipse(80% 90% at 90% 50%);
        }

        @keyframes slideInRight {
            from {
                opacity: 0;
                transform: translateX(60px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        /* Nova animação de "respiração" */
        @keyframes breathe {
            0%, 100% {
                transform: translateX(0) scale(1) rotate(0deg);
            }
            25% {
                transform: translateX(-5px) scale(1.01) rotate(0.5deg);
            }
            50% {
                transform: translateX(0) scale(1) rotate(0deg);
            }
            75% {
                transform: translateX(5px) scale(1.01) rotate(-0.5deg);
            }
        }
        
        .hero-illustration-wrapper:hover {
            transform: translateY(-15px) scale(1.02);
        }
        
        /* EFEITO DE LUZ ESVERDEADA SUAVE NO TEMA CLARO */
        .hero-illustration-wrapper img {
            width: 100%;
            height: auto;
            display: block;
            /* Efeito de luz esverdeada suave para tema claro */
            filter: drop-shadow(0 0 40px rgba(76, 175, 80, 0.25)) 
                    brightness(1.05) 
                    contrast(1.05)
                    saturate(1.1);
            transition: filter 0.4s ease;
            /* Remove qualquer fundo branco da imagem */
            mix-blend-mode: multiply;
        }

        /* EFEITO DE SOMBRA NORMAL NO TEMA ESCURO */
        body.dark-theme .hero-illustration-wrapper img {
            filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.4)) 
                    brightness(0.9) 
                    contrast(1.1)
                    saturate(1.2);
            mix-blend-mode: normal;
        }

        .hero-illustration-wrapper:hover img {
            /* Intensifica a luz esverdeada no hover - tema claro */
            filter: drop-shadow(0 0 50px rgba(76, 175, 80, 0.4)) 
                    brightness(1.08) 
                    contrast(1.1)
                    saturate(1.15);
        }
        
        body.dark-theme .hero-illustration-wrapper:hover img {
            /* Sombra mais intensa no hover - tema escuro */
            filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.5)) 
                    brightness(0.95) 
                    contrast(1.15)
                    saturate(1.25);
        }
        
        /* --- Seção Ofertas Aprimorada (CÓDIGO MODIFICADO) --- */
        #ofertas {
            background-color: var(--background-grey);
            position: relative;
        }

        #ofertas::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23c8e6c9' fill-opacity='0.2' fill-rule='evenodd'/%3E%3C/svg%3E");
            opacity: 0.5;
            z-index: 0;
            animation: patternMove 20s linear infinite;
        }

        body.dark-theme #ofertas::before {
            background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%232a4d2a' fill-opacity='0.2' fill-rule='evenodd'/%3E%3C/svg%3E");
        }

        @keyframes patternMove {
            0% { background-position: 0 0; }
            100% { background-position: 100px 100px; }
        }
        
        .offers-main-layout {
            display: grid;
            grid-template-columns: 1.2fr 1fr;
            gap: 60px;
            align-items: center;
            position: relative;
            z-index: 1;
        }

        .offers-cards-stack {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 25px; /* Adiciona espaço entre os blocos */
        }

        .offer-card {
            background: var(--light-green-bg);
            padding: 20px;
            border-radius: 16px;
            box-shadow: var(--shadow-light);
            text-align: left;
            transition: transform 0.3s ease-out, box-shadow 0.3s ease-out; /* Transição mais suave */
            display: flex;
            flex-direction: column;
            gap: 10px;
        }
        
        .offer-card:hover {
            transform: translateY(-6px); /* Efeito de elevação mais suave */
            box-shadow: var(--shadow-medium); /* Sombra mais sutil */
        }
        
        .offer-card .top-row {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 10px;
        }
        
        .offer-card .icon-wrapper {
            background: var(--light-green-bg);
            border-radius: 50%;
            width: 60px;
            height: 60px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
        }

        .offer-card:hover .icon-wrapper {
            transform: scale(1.1) rotate(5deg);
            background: var(--light-green-accent);
        }

        .offer-card .icon-wrapper i {
            font-size: 1.8rem;
            color: var(--dark-green);
            transition: transform 0.4s ease, color 0.3s ease;
        }

        .offer-card:hover .icon-wrapper i {
            transform: scale(1.1);
            color: var(--primary-green);
        }
        
        .offer-card .rate {
            font-size: 2.2rem;
            font-weight: 700;
            color: var(--dark-green);
            line-height: 1;
            transition: color 0.3s ease;
        }

        .offer-card:hover .rate {
            color: var(--primary-green);
        }

        .offer-card .offer-details h3 {
            font-size: 1.2rem;
            margin: 0;
            transition: color 0.3s ease;
        }

        .offer-card:hover .offer-details h3 {
            color: var(--primary-green);
        }

        .offer-card .offer-details p {
            font-size: 0.9rem;
            margin: 5px 0 0;
        }

        .offer-card.full-width {
            grid-column: span 2;
        }

        .offers-description {
            text-align: left;
        }
        
        .offers-description h2 {
            text-align: left;
            margin-bottom: 20px;
        }

        .offers-description .btn {
            margin-top: 20px;
        }

        /* --- FIM DO CÓDIGO MODIFICADO --- */

        /* --- Seção Especialistas Aprimorada --- */
        #especialistas {
            position: relative;
            overflow: hidden;
        }

        .specialists-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            align-items: center;
            gap: 80px;
        }
        
        .specialists-text h2 {
            text-align: left;
        }
        
        .specialists-text .btn {
            margin-top: 30px;
        }
        
        .specialists-image {
            position: relative;
            transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .specialists-image:hover {
            transform: scale(1.04) rotate(-1deg);
        }
        
        .specialists-image img {
            width: 100%;
            max-width: 500px;
            border-radius: 20px;
            box-shadow: var(--shadow-medium);
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .specialists-image:hover img {
            box-shadow: 0 25px 60px rgba(76, 175, 80, 0.25);
            border-radius: 24px;
        }
        
        .specialists-image::after {
            content: '\f0c0';
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            position: absolute;
            font-size: 2.5rem;
            color: var(--primary-green);
            bottom: 20px;
            right: 20px;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: var(--shadow-light);
            transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
        }

        body.dark-theme .specialists-image::after {
            background: rgba(30, 30, 30, 0.95);
        }

        .specialists-image:hover::after {
            transform: scale(1.2) rotate(360deg);
            background: var(--primary-green);
            color: white;
            box-shadow: 0 10px 30px rgba(76, 175, 80, 0.4);
        }
        
        /* --- Seção Como Solicitar Aprimorada --- */
        #como-solicitar {
            background-color: var(--background-grey);
            position: relative;
        }
        
        #como-solicitar .container > p {
            text-align: center; 
            max-width: 600px; 
            margin: -20px auto 60px;
        }

        .steps-container {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 40px;
            margin-top: 80px;
        }
        
        .step-card {
            background: var(--background-white);
            padding: 30px;
            border-radius: 20px;
            text-align: center;
            box-shadow: var(--shadow-light);
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
            border-top: 4px solid var(--primary-green);
        }

        .step-card:hover {
            transform: translateY(-15px) scale(1.02);
            box-shadow: 0 20px 50px rgba(76, 175, 80, 0.25);
            border-top-width: 6px;
        }
        
        .step-card::before {
            content: attr(data-step);
            position: absolute;
            top: -20px;
            left: -10px;
            font-size: 8rem;
            font-weight: 800;
            color: var(--light-green-bg);
            z-index: 0;
            line-height: 1;
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .step-card:hover::before {
            color: var(--light-green-accent);
            transform: scale(1.1) rotate(5deg);
        }
        
        .step-card-content {
            position: relative;
            z-index: 1;
        }
        
        .step-card h3 {
            font-size: 1.3rem;
            transition: color 0.3s ease;
        }

        .step-card:hover h3 {
            color: var(--primary-green);
        }
        
        .step-card p {
            font-size: 1rem;
        }
        
        /* --- Seção Líderes Aprimorada --- */
        #lideres .container > p {
            text-align: center; 
            max-width: 600px; 
            margin: -20px auto 60px;
        }
        
        .leaders-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 30px;
        }

        .leader-card {
            text-align: center;
            transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .leader-card:hover {
            transform: translateY(-12px);
        }
        
        .leader-avatar {
            width: 160px;
            height: 160px;
            border-radius: 50%;
            margin: 0 auto 20px;
            background-color: #e5e0d5; 
            overflow: hidden;
            box-shadow: var(--shadow-medium);
            transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
        }

        .leader-avatar::before {
            content: '';
            position: absolute;
            inset: -10px;
            background: conic-gradient(from 180deg at 50% 50%, var(--primary-green), var(--dark-green), var(--primary-green));
            animation: rotate 3s linear infinite;
            opacity: 0;
            transition: opacity 0.4s ease;
        }

        .leader-card:hover .leader-avatar::before {
            opacity: 1;
        }

        .leader-card:hover .leader-avatar {
            transform: scale(1.08);
            box-shadow: 0 20px 50px rgba(76, 175, 80, 0.3);
        }

        .leader-avatar::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(76, 175, 80, 0.3), transparent);
            border-radius: 50%;
            opacity: 0;
            transition: opacity 0.4s ease;
            z-index: 1;
        }

        .leader-card:hover .leader-avatar::after {
            opacity: 1;
        }

        .leader-avatar img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            z-index: 2;
        }

        .leader-card:hover .leader-avatar img {
            transform: scale(1.15);
        }

        .leader-card h3 {
            font-size: 1.25rem;
            margin-bottom: 5px;
            transition: color 0.3s ease;
        }

        .leader-card:hover h3 {
            color: var(--primary-green);
        }

        .leader-card span {
            color: var(--text-light);
            font-size: 1rem;
            transition: color 0.3s ease;
        }

        .leader-card:hover span {
            color: var(--dark-green);
        }

        /* --- Footer --- */
        footer {
            background-color: var(--text-dark);
            color: #ccc;
            padding: 80px 0;
            font-size: 0.95rem;
        }
        
        body.dark-theme footer {
            background-color: #0a0a0a;
        }
        
        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 50px;
        }
        
        .footer-about p {
            color: #ccc;
        }

        .footer-social {
            margin-top: 20px;
            display: flex;
            gap: 15px;
        }
        
        .footer-social a {
            color: white;
            font-size: 1.3rem;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.1);
            position: relative;
            overflow: hidden;
        }

        .footer-social a::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(45deg, var(--primary-green), var(--dark-green));
            transform: scale(0);
            transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            border-radius: 50%;
        }

        .footer-social a i {
            position: relative;
            z-index: 1;
            transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
        }
        
        .footer-social a:hover::before {
            transform: scale(1);
        }

        .footer-social a:hover {
            transform: translateY(-5px) rotate(360deg);
            box-shadow: 0 8px 20px rgba(76, 175, 80, 0.4);
        }

        .footer-social a:hover i {
            transform: scale(1.2);
        }
        
        .footer-column h3 {
            color: white;
            margin-bottom: 20px;
            font-size: 1.2rem;
        }
        
        .footer-column p {
            color: #ccc;
        }

        .copyright {
            text-align: center;
            margin-top: 60px;
            padding-top: 30px;
            border-top: 1px solid #444;
            color: #aaa;
        }
        
        /* --- CORREÇÃO: YALDABAOTH em negrito no footer --- */
        footer .logo-text {
            color: white;
        }
        
        footer .logo-text strong {
            color: white;
            font-weight: 800;
        }
        
        footer .logo-text span {
            color: #ccc;
        }
        
        body.dark-theme footer .logo-text {
            color: var(--dark-text-primary);
        }
        
        body.dark-theme footer .logo-text strong {
            color: var(--dark-text-primary);
        }
        
        body.dark-theme footer .logo-text span {
            color: var(--dark-text-secondary);
        }
        
        /* --- Botão Voltar ao Topo Aprimorado --- */
        #scrollTopBtn {
            position: fixed;
            bottom: 25px;
            right: 25px;
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, var(--primary-green), var(--dark-green));
            color: white;
            border: none;
            border-radius: 50%;
            font-size: 1.2rem;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 8px 25px rgba(76, 175, 80, 0.4);
            opacity: 0;
            visibility: hidden;
            transform: translateY(30px) scale(0.8);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            z-index: 999;
        }

        #scrollTopBtn::before {
            content: '';
            position: absolute;
            inset: -3px;
            background: linear-gradient(45deg, var(--primary-green), var(--dark-green), var(--primary-green));
            border-radius: 50%;
            z-index: -1;
            animation: rotate 3s linear infinite;
            opacity: 0;
            transition: opacity 0.4s ease;
        }

        #scrollTopBtn:hover::before {
            opacity: 1;
        }

        #scrollTopBtn.show {
            opacity: 1;
            visibility: visible;
            transform: translateY(0) scale(1);
        }

        #scrollTopBtn:hover {
            transform: translateY(-8px) scale(1.1);
            box-shadow: 0 15px 40px rgba(76, 175, 80, 0.5);
        }

        #scrollTopBtn:hover i {
            animation: bounceArrow 0.6s ease infinite;
        }

        @keyframes bounceArrow {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-5px); }
        }

        #scrollTopBtn:active {
            transform: translateY(-5px) scale(0.95);
        }

        #scrollTopBtn:focus {
            outline: 2px solid var(--dark-green);
            outline-offset: 3px;
        }
        
        /* --- Media Queries --- */
        @media (max-width: 992px) {
            .offers-main-layout {
                grid-template-columns: 1fr;
            }
            .offers-description { text-align: center; }
            .offers-description h2 { text-align: center; }
            .specialists-content { grid-template-columns: 1fr; text-align: center; }
            .specialists-text h2 { text-align: center; }
            .specialists-image { order: -1; }
            .leaders-grid { grid-template-columns: 1fr 1fr; }
            .footer-grid { grid-template-columns: 1fr 1fr; }
            .footer-about { grid-column: 1 / -1; text-align: center; }
            .footer-social { justify-content: center; }

            .hero-background-shape { width: 100%; }
            .hero-illustration-wrapper { 
                right: 50%;
                transform: translateX(50%);
                bottom: -20px;
                width: 500px;
                clip-path: none; /* Remove o clip-path em telas menores */
            }
        }
        
        @media (max-width: 768px) {
            section { padding: 60px 0; }
            h1 { font-size: 2.5rem; }
            h2 { font-size: 2rem; }
            .nav-menu { 
                display: none; 
                position: fixed;
                top: 0;
                right: 0;
                width: 70%;
                height: 100vh;
                background: var(--background-white);
                flex-direction: column;
                justify-content: center;
                align-items: center;
                transform: translateX(100%);
                transition: transform 0.3s ease;
                box-shadow: -5px 0 15px rgba(0,0,0,0.1);
            }
            .nav-menu.active {
                display: flex;
                transform: translateX(0);
            }
            .nav-links {
                flex-direction: column;
                gap: 30px;
                text-align: center;
            }
            .hamburger {
                display: flex;
            }
            .hero-content { flex-direction: column; text-align: center; }
            .hero-text { flex: 0 0 auto; max-width: 100%; }
            .hero-illustration-wrapper { display: none; }
            .steps-container, .footer-grid { grid-template-columns: 1fr; }
            .offer-card { flex-direction: column; text-align: center; }
            .offer-card .top-row { justify-content: center; }
        }

        /* --- Melhorias de Acessibilidade --- */
        @media (prefers-reduced-motion: reduce) {
            *, *::before, *::after {
                animation-duration: 0.01ms !important;
                animation-iteration-count: 1 !important;
                transition-duration: 0.01ms !important;
            }
            .hero-illustration-wrapper {
                animation: slideInRight 1s cubic-bezier(0.4, 0, 0.2, 1) 0.3s both; /* Remove a animação de "respiração" */
            }
        }

        .sr-only {
            position: absolute;
            width: 1px;
            height: 1px;
            padding: 0;
            margin: -1px;
            overflow: hidden;
            clip: rect(0, 0, 0, 0);
            white-space: nowrap;
            border: 0;
        }

        /* --- Efeito de Cursor Personalizado --- */
        @media (hover: hover) and (pointer: fine) {
            .btn, .offer-card, .step-card, .leader-card, .nav-links a {
                cursor: default;
            }
        }