/* ==========================================================================
           SISTEMA VISUAL BIO-MESH MODERN (Vitaramae Consultoria Ambiental)
           ========================================================================== */
        :root {
            /* Fundo e Superfícies Glassmorphism */
            --bg-dark: #07100b;
            --surface-glass: rgba(255, 255, 255, 0.04);
            --surface-glass-hover: rgba(255, 255, 255, 0.08);
            --surface-strong: rgba(255, 255, 255, 0.1);
            --border-glass: rgba(154, 205, 50, 0.22);
            --border-subtle: rgba(255, 255, 255, 0.1);

            /* Paleta Bio-Ambiental */
            --lime: #9ACD32;              /* Verde-limão energético de destaque */
            --lime-hover: #b2e642;
            --lime-glow: rgba(154, 205, 50, 0.38);
            --forest-deep: #133b20;        /* Verde profundo de apoio */
            --forest-mid: #1d5631;
            
            /* Orbs do Mesh Gradient */
            --mesh-1: #144d29;
            --mesh-2: #22c55e;
            --mesh-3: #9acd32;
            --mesh-4: #0d9488;

            /* Tipografia */
            --text-light: #f4f8f5;
            --text-muted: rgba(244, 248, 245, 0.72);
            --font-display: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
            --font-body: 'Inter', system-ui, -apple-system, sans-serif;

            /* Dimensões & Raios */
            --radius-sm: 10px;
            --radius-md: 16px;
            --radius-lg: 22px;
            --radius-pill: 9999px;
        }

        /* RESET & BASE */
        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            background-color: var(--bg-dark);
            color: var(--text-light);
            font-family: var(--font-body);
            font-size: 1rem;
            line-height: 1.65;
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
        }

        /* ACESSIBILIDADE */
        a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
            outline: 2px solid var(--lime);
            outline-offset: 3px;
        }

        /* BIO-MESH BACKGROUND ORBS */
        .mesh-wrapper {
            position: fixed;
            top: 0;
            left: 0;
            width: 100vw;
            height: 100vh;
            z-index: -1;
            overflow: hidden;
            pointer-events: none;
        }

        .mesh-orb {
            position: absolute;
            border-radius: 50%;
            filter: blur(100px);
            opacity: 0.32;
            animation: orbFloat 22s infinite alternate ease-in-out;
        }

        .mesh-orb-1 {
            top: -15%;
            left: 15%;
            width: 600px;
            height: 600px;
            background: var(--mesh-1);
        }

        .mesh-orb-2 {
            top: 35%;
            right: -10%;
            width: 520px;
            height: 520px;
            background: var(--mesh-2);
            animation-delay: -6s;
            opacity: 0.25;
        }

        .mesh-orb-3 {
            bottom: -15%;
            left: 5%;
            width: 650px;
            height: 650px;
            background: var(--mesh-3);
            animation-delay: -12s;
            opacity: 0.22;
        }

        .mesh-orb-4 {
            top: 60%;
            left: 45%;
            width: 480px;
            height: 480px;
            background: var(--mesh-4);
            animation-delay: -18s;
            opacity: 0.18;
        }

        @keyframes orbFloat {
            0% { transform: translate(0, 0) scale(1); }
            50% { transform: translate(50px, 35px) scale(1.08); }
            100% { transform: translate(-40px, 60px) scale(0.92); }
        }

        /* CONTAINERS & SEÇÕES */
        .container {
            max-width: 1180px;
            margin: 0 auto;
            padding: 0 24px;
        }

        section {
            padding: 90px 0;
            position: relative;
        }

        /* HEADER FROSTED GLASS */
        header {
            position: sticky;
            top: 0;
            z-index: 100;
            background: rgba(7, 16, 11, 0.78);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            border-bottom: 1px solid var(--border-subtle);
        }

        .header-wrap {
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 80px;
        }

        .brand-link {
            display: flex;
            align-items: center;
            gap: 14px;
            text-decoration: none;
        }

        .brand-logo {
            width: 46px;
            height: 46px;
            object-fit: contain;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.08);
            padding: 2px;
            border: 1px solid var(--border-glass);
        }

        .brand-text-wrap {
            display: flex;
            flex-direction: column;
        }

        .brand-name {
            font-family: var(--font-display);
            font-size: 1.35rem;
            font-weight: 800;
            color: var(--text-light);
            letter-spacing: -0.02em;
            line-height: 1.1;
        }

        .brand-tagline {
            font-size: 0.72rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.08em;
            color: var(--lime);
        }

        /* NAVEGAÇÃO DESKTOP & MOBILE HAMBURGER */
        nav {
            display: flex;
            align-items: center;
            gap: 28px;
        }

        nav a {
            color: var(--text-muted);
            text-decoration: none;
            font-size: 0.95rem;
            font-weight: 500;
            transition: color 0.2s ease;
        }

        nav a:hover {
            color: var(--lime);
        }

        /* BOTÃO HAMBURGUER (MOBILE) */
        .btn-hamburger {
            display: none;
            background: rgba(255, 255, 255, 0.08);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-sm);
            width: 44px;
            height: 44px;
            padding: 10px;
            flex-direction: column;
            justify-content: space-around;
            cursor: pointer;
            z-index: 150;
            transition: all 0.2s ease;
        }

        .btn-hamburger span {
            display: block;
            width: 100%;
            height: 2px;
            background-color: var(--text-light);
            border-radius: 2px;
            transition: all 0.3s ease;
        }

        .btn-hamburger.active span:nth-child(1) {
            transform: translateY(7px) rotate(45deg);
            background-color: var(--lime);
        }

        .btn-hamburger.active span:nth-child(2) {
            opacity: 0;
        }

        .btn-hamburger.active span:nth-child(3) {
            transform: translateY(-7px) rotate(-45deg);
            background-color: var(--lime);
        }

        /* GAVETA DO MENU MOBILE */
        .mobile-menu-drawer {
            position: fixed;
            top: 0;
            right: -100%;
            width: 280px;
            height: 100vh;
            background: rgba(7, 16, 11, 0.98);
            border-left: 1px solid var(--border-glass);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            padding: 90px 28px 40px 28px;
            display: flex;
            flex-direction: column;
            gap: 24px;
            z-index: 140;
            transition: right 0.35s cubic-bezier(0.16, 1, 0.3, 1);
            box-shadow: -10px 0 30px rgba(0, 0, 0, 0.6);
        }

        .mobile-menu-drawer.open {
            right: 0;
        }

        .mobile-menu-drawer a {
            color: var(--text-light);
            text-decoration: none;
            font-size: 1.15rem;
            font-weight: 600;
            font-family: var(--font-display);
            padding: 8px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
            transition: color 0.2s ease;
        }

        .mobile-menu-drawer a:hover {
            color: var(--lime);
        }

        .mobile-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100vw;
            height: 100vh;
            background: rgba(0, 0, 0, 0.7);
            backdrop-filter: blur(4px);
            z-index: 130;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }

        .mobile-overlay.active {
            opacity: 1;
            visibility: visible;
        }

        /* BOTÃO FLUTUANTE DE WHATSAPP */
        .whatsapp-float {
            position: fixed;
            bottom: 28px;
            left: 28px;
            z-index: 99;
            width: 58px;
            height: 58px;
            background: #25D366;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #FFFFFF;
            font-size: 1.9rem;
            text-decoration: none;
            box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45);
            transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .whatsapp-float:hover {
            transform: scale(1.1) translateY(-3px);
            box-shadow: 0 10px 30px rgba(37, 211, 102, 0.65);
        }

        /* SCROLL REVEAL (MICRO-INTERAÇÕES SUTIS) */
        .reveal {
            opacity: 0;
            transform: translateY(28px);
            transition: opacity 0.65s cubic-bezier(0.16, 1, 0.3, 1), transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
            will-change: opacity, transform;
        }

        .reveal.revealed {
            opacity: 1;
            transform: translateY(0);
        }

        @media (prefers-reduced-motion: reduce) {
            .reveal {
                opacity: 1;
                transform: none;
                transition: none;
            }
        }

        /* BOTÕES */
        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            font-family: var(--font-display);
            font-weight: 700;
            font-size: 1rem;
            padding: 15px 30px;
            border-radius: var(--radius-pill);
            text-decoration: none;
            border: none;
            cursor: pointer;
            transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .btn-lime {
            background-color: var(--lime);
            color: #051009;
            box-shadow: 0 4px 22px var(--lime-glow);
        }

        .btn-lime:hover {
            background-color: var(--lime-hover);
            transform: translateY(-2px);
            box-shadow: 0 6px 30px rgba(154, 205, 50, 0.6);
        }

        .btn-glass {
            background: var(--surface-glass);
            color: var(--text-light);
            border: 1px solid var(--border-subtle);
            backdrop-filter: blur(12px);
        }

        .btn-glass:hover {
            background: var(--surface-strong);
            border-color: var(--lime);
            transform: translateY(-2px);
        }

        .btn-header {
            padding: 10px 22px;
            font-size: 0.9rem;
        }

        /* CARDS GLASSMORPHISM */
        .card {
            background: var(--surface-glass);
            border: 1px solid var(--border-subtle);
            backdrop-filter: blur(18px);
            -webkit-backdrop-filter: blur(18px);
            border-radius: var(--radius-lg);
            padding: 32px;
            transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .card:hover {
            background: var(--surface-glass-hover);
            border-color: var(--border-glass);
            transform: translateY(-4px);
            box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
        }

        /* TIPOGRAFIA & CABEÇALHOS */
        h1, h2, h3 {
            font-family: var(--font-display);
            color: var(--text-light);
            letter-spacing: -0.025em;
            line-height: 1.15;
        }

        h1 {
            font-size: 3.5rem;
            font-weight: 800;
            margin-bottom: 24px;
            background: linear-gradient(180deg, #FFFFFF 20%, #d8f3dc 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        h2 {
            font-size: 2.3rem;
            font-weight: 700;
            margin-bottom: 16px;
            text-align: center;
        }

        .section-header {
            max-width: 720px;
            margin: 0 auto 56px auto;
            text-align: center;
        }

        .section-desc {
            font-size: 1.1rem;
            color: var(--text-muted);
        }

        .eyebrow {
            font-family: var(--font-display);
            font-size: 0.78rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            color: var(--lime);
            margin-bottom: 12px;
            display: inline-block;
        }

        /* HERO SECTION */
        .hero {
            padding: 80px 0 100px 0;
        }

        .hero-grid {
            display: grid;
            grid-template-columns: 1.25fr 0.75fr;
            gap: 48px;
            align-items: center;
        }

        .hero-subheadline {
            font-size: 1.2rem;
            color: var(--text-muted);
            margin-bottom: 36px;
            max-width: 660px;
            line-height: 1.65;
        }

        .hero-actions {
            display: flex;
            align-items: center;
            gap: 18px;
            flex-wrap: wrap;
            margin-bottom: 28px;
        }

        .hero-microcopy {
            display: flex;
            gap: 20px;
            flex-wrap: wrap;
            font-size: 0.88rem;
            color: var(--text-muted);
        }

        .hero-microcopy span {
            display: flex;
            align-items: center;
            gap: 6px;
        }

        /* HERO VISUAL FRAME */
        .hero-visual-wrap {
            position: relative;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 20px;
        }

        .hero-visual-card {
            width: 320px;
            height: 320px;
            background: radial-gradient(circle at center, rgba(154, 205, 50, 0.16) 0%, rgba(255, 255, 255, 0.03) 70%);
            border: 2px solid var(--border-glass);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 0 60px rgba(154, 205, 50, 0.22);
            backdrop-filter: blur(12px);
            padding: 0; /* Remove padding para a logo preencher tudo */
            overflow: hidden; /* Garante recorte perfeito nas bordas */
            animation: pulseGlow 8s infinite alternate ease-in-out;
            position: relative;
        }

        @keyframes pulseGlow {
            0% { box-shadow: 0 0 40px rgba(154, 205, 50, 0.18); }
            100% { box-shadow: 0 0 80px rgba(154, 205, 50, 0.4); }
        }

        .hero-visual-card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 50%;
            display: block;
            transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .hero-visual-card:hover img {
            transform: scale(1.05);
        }

        .hero-badge-tag {
            background: rgba(11, 28, 18, 0.85);
            border: 1px solid var(--lime);
            color: var(--lime);
            font-size: 0.82rem;
            font-weight: 700;
            padding: 8px 20px;
            border-radius: var(--radius-pill);
            text-transform: uppercase;
            letter-spacing: 0.08em;
            box-shadow: 0 4px 18px rgba(0, 0, 0, 0.4);
            backdrop-filter: blur(10px);
        }

        /* DORES SECTION */
        .dores-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            gap: 24px;
        }

        .dor-card {
            display: flex;
            flex-direction: column;
            gap: 12px;
            border-left: 3px solid rgba(154, 205, 50, 0.4);
        }

        .dor-card:hover {
            border-left-color: var(--lime);
        }

        .dor-icon {
            font-size: 1.8rem;
            margin-bottom: 4px;
        }

        .dor-title {
            font-size: 1.2rem;
            font-weight: 700;
            color: var(--text-light);
        }

        .dor-desc {
            font-size: 0.95rem;
            color: var(--text-muted);
            line-height: 1.6;
        }

        .dores-banner {
            margin-top: 40px;
            text-align: center;
            background: linear-gradient(90deg, rgba(19, 59, 32, 0.5) 0%, rgba(154, 205, 50, 0.15) 50%, rgba(19, 59, 32, 0.5) 100%);
            border: 1px solid var(--border-glass);
            padding: 24px;
            border-radius: var(--radius-md);
            font-size: 1.2rem;
            font-weight: 700;
            color: var(--text-light);
            backdrop-filter: blur(10px);
        }

        .dores-banner strong {
            color: var(--lime);
        }

        /* SERVIÇOS SECTION */
        .servicos-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(330px, 1fr));
            gap: 24px;
        }

        .servico-card {
            display: flex;
            gap: 20px;
            align-items: flex-start;
        }

        .servico-icon-box {
            background: rgba(154, 205, 50, 0.1);
            border: 1px solid var(--border-glass);
            width: 54px;
            height: 54px;
            border-radius: var(--radius-md);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            flex-shrink: 0;
        }

        .servico-card h3 {
            font-size: 1.2rem;
            margin-bottom: 8px;
            color: var(--text-light);
        }

        /* AUTORIDADE & STATS */
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 24px;
            margin-bottom: 48px;
        }

        .stat-card {
            text-align: center;
            padding: 36px 24px;
        }

        .stat-number {
            font-family: var(--font-display);
            font-size: 3.2rem;
            font-weight: 800;
            color: var(--lime);
            line-height: 1;
            margin-bottom: 8px;
            text-shadow: 0 0 25px rgba(154, 205, 50, 0.35);
        }

        .stat-label {
            font-size: 0.9rem;
            font-weight: 600;
            color: var(--text-muted);
            text-transform: uppercase;
            letter-spacing: 0.06em;
        }

        .depoimento-card {
            max-width: 840px;
            margin: 0 auto;
            text-align: center;
            padding: 44px 36px;
            background: radial-gradient(circle at center, rgba(19, 59, 32, 0.4) 0%, rgba(255, 255, 255, 0.03) 80%);
            border: 1px solid var(--border-glass);
        }

        .depoimento-quote {
            font-size: 1.25rem;
            font-style: italic;
            margin-bottom: 24px;
            color: var(--text-light);
            line-height: 1.65;
        }

        .depoimento-author {
            font-weight: 700;
            color: var(--lime);
            font-size: 1.05rem;
        }

        .depoimento-role {
            font-size: 0.88rem;
            color: var(--text-muted);
        }

        /* COMO FUNCIONA (PASSOS) */
        .steps-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
            gap: 24px;
        }

        .step-card {
            position: relative;
        }

        .step-num {
            font-family: var(--font-display);
            font-size: 2.6rem;
            font-weight: 800;
            color: var(--lime);
            opacity: 0.8;
            margin-bottom: 12px;
            line-height: 1;
        }

        .step-card h3 {
            font-size: 1.2rem;
            margin-bottom: 8px;
        }

        /* FORMULÁRIO B2B DE ALTA CONVERSÃO */
        .form-section {
            background: radial-gradient(circle at center bottom, rgba(19, 59, 32, 0.4) 0%, transparent 70%);
        }

        .form-container {
            max-width: 720px;
            margin: 0 auto;
        }

        .form-card {
            padding: 44px 40px;
            background: rgba(11, 24, 16, 0.7);
            border: 1px solid var(--border-glass);
            box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
        }

        .form-group {
            margin-bottom: 22px;
        }

        .form-group label {
            display: block;
            font-size: 0.9rem;
            font-weight: 600;
            margin-bottom: 8px;
            color: var(--text-light);
        }

        .form-control {
            width: 100%;
            padding: 14px 18px;
            background: rgba(0, 0, 0, 0.45);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-md);
            color: var(--text-light);
            font-family: var(--font-body);
            font-size: 1rem;
            outline: none;
            transition: all 0.2s ease;
        }

        .form-control:focus {
            border-color: var(--lime);
            box-shadow: 0 0 0 3px rgba(154, 205, 50, 0.25);
            background: rgba(0, 0, 0, 0.6);
        }

        select.form-control option {
            background-color: #07100b;
            color: var(--text-light);
        }

        .form-checkbox {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            font-size: 0.85rem;
            color: var(--text-muted);
            margin-bottom: 28px;
        }

        .form-checkbox input {
            margin-top: 4px;
            accent-color: var(--lime);
            width: 16px;
            height: 16px;
        }

        .btn-submit {
            width: 100%;
            padding: 18px;
            font-size: 1.15rem;
            position: relative;
        }

        .btn-submit:disabled {
            opacity: 0.7;
            cursor: not-allowed;
            transform: none !important;
            box-shadow: none !important;
        }

        /* ESTADOS DE VALIDAÇÃO DOS CAMPOS */
        .form-control.is-invalid {
            border-color: #ef4444 !important;
            box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.25) !important;
        }

        .invalid-feedback {
            color: #f87171;
            font-size: 0.8rem;
            margin-top: 6px;
            display: none;
            font-weight: 500;
        }

        .form-control.is-invalid + .invalid-feedback {
            display: block;
        }

        /* TOAST NOTIFICATION */
        .toast-container {
            position: fixed;
            bottom: 24px;
            right: 24px;
            z-index: 1000;
            display: flex;
            flex-direction: column;
            gap: 12px;
            pointer-events: none;
        }

        .toast {
            pointer-events: auto;
            background: rgba(11, 24, 16, 0.95);
            border: 1px solid var(--border-glass);
            border-radius: var(--radius-md);
            padding: 16px 20px;
            color: var(--text-light);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
            backdrop-filter: blur(14px);
            display: flex;
            align-items: center;
            gap: 12px;
            font-size: 0.95rem;
            transform: translateY(20px);
            opacity: 0;
            transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
            max-width: 380px;
        }

        .toast.show {
            transform: translateY(0);
            opacity: 1;
        }

        .toast-error {
            border-color: rgba(239, 68, 68, 0.4);
        }

        .toast-icon {
            font-size: 1.2rem;
        }

        /* FOOTER */
        footer {
            border-top: 1px solid var(--border-subtle);
            background: rgba(5, 12, 8, 0.9);
            padding: 60px 0 36px 0;
            font-size: 0.9rem;
            color: var(--text-muted);
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 1.4fr 1fr 1fr;
            gap: 40px;
            margin-bottom: 40px;
        }

        .footer-brand {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 14px;
        }

        .footer-brand img {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.08);
            border: 1px solid var(--border-glass);
            padding: 2px;
        }

        .footer-brand-title {
            font-family: var(--font-display);
            font-weight: 700;
            font-size: 1.2rem;
            color: var(--text-light);
        }

        .footer-links-list {
            list-style: none;
        }

        .footer-links-list li {
            margin-bottom: 10px;
        }

        .footer-links-list a {
            color: var(--text-muted);
            text-decoration: none;
            transition: color 0.2s ease;
        }

        .footer-links-list a:hover {
            color: var(--lime);
        }

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.08);
            padding-top: 24px;
            text-align: center;
            font-size: 0.85rem;
        }

        /* RESPONSIVIDADE */
        @media (max-width: 860px) {
            nav {
                display: none;
            }

            .btn-hamburger {
                display: flex;
            }

            .header-wrap .btn-header {
                display: none;
            }
        }

        @media (max-width: 900px) {
            .hero-grid {
                grid-template-columns: 1fr;
                gap: 40px;
                text-align: center;
            }

            .hero-subheadline {
                margin-left: auto;
                margin-right: auto;
            }

            .hero-actions {
                justify-content: center;
            }

            .hero-microcopy {
                justify-content: center;
            }

            .footer-grid {
                grid-template-columns: 1fr;
                gap: 30px;
            }
        }

        @media (max-width: 650px) {
            h1 {
                font-size: 2.4rem;
            }

            h2 {
                font-size: 1.8rem;
            }

            section {
                padding: 60px 0;
            }

            .form-card {
                padding: 28px 20px;
            }

            .hero-visual-card {
                width: 270px;
                height: 270px;
            }

            .hero-visual-card img {
                width: 130px;
                height: 130px;
            }
        }

/* Honeypot — invisível para humanos, acessível a leitores de tela */
.honeypot {
    position: absolute !important;
    left: -9999px !important;
    width: 1px !important;
    height: 1px !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

/* Inline styles extracted */
.extracted-style-1 { text-align: center; margin-top: 16px; }
.extracted-style-2 { margin-bottom: 36px; }
.extracted-style-3 { color: var(--lime); text-decoration: underline; }
.extracted-style-4 { margin-top: -18px; margin-bottom: 20px; }
.extracted-style-5 { line-height: 1.6; }
.extracted-style-6 { margin-top: 12px; font-size: 0.82rem; color: rgba(244, 248, 245, 0.5); }
.extracted-style-7 { color: var(--lime); margin-bottom: 16px; font-family: var(--font-display); }
.extracted-style-8 { color: var(--lime); margin-bottom: 16px; font-family: var(--font-display); }
.extracted-style-9 { margin-top: 10px; }

/* Inline styles from dist/obrigado.html */
:root {
            --bg-dark: #07100b;
            --surface-glass: rgba(255, 255, 255, 0.04);
            --border-glass: rgba(154, 205, 50, 0.25);
            --lime: #9ACD32;
            --lime-hover: #b2e642;
            --lime-glow: rgba(154, 205, 50, 0.38);
            --text-light: #f4f8f5;
            --text-muted: rgba(244, 248, 245, 0.72);
            --font-display: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
            --font-body: 'Inter', system-ui, -apple-system, sans-serif;
            --radius-md: 16px;
            --radius-lg: 22px;
            --radius-pill: 9999px;
        }

        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        body {
            background-color: var(--bg-dark);
            color: var(--text-light);
            font-family: var(--font-body);
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            padding: 24px;
            position: relative;
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
        }

        /* MESH ORBS DECORATIVOS */
        .mesh-wrapper {
            position: fixed;
            top: 0;
            left: 0;
            width: 100vw;
            height: 100vh;
            z-index: -1;
            overflow: hidden;
            pointer-events: none;
        }

        .mesh-orb {
            position: absolute;
            border-radius: 50%;
            filter: blur(100px);
            opacity: 0.32;
        }

        .mesh-orb-1 {
            top: -10%;
            left: 20%;
            width: 500px;
            height: 500px;
            background: #144d29;
        }

        .mesh-orb-2 {
            bottom: -10%;
            right: 15%;
            width: 550px;
            height: 550px;
            background: #9acd32;
            opacity: 0.22;
        }

        /* CARD CENTRAL DE AGRADECIMENTO */
        .thank-you-card {
            background: rgba(11, 24, 16, 0.75);
            border: 1px solid var(--border-glass);
            border-radius: var(--radius-lg);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            max-width: 620px;
            width: 100%;
            padding: 48px 40px;
            text-align: center;
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
            position: relative;
            z-index: 10;
        }

        .logo-circle {
            width: 90px;
            height: 90px;
            margin: 0 auto 24px auto;
            border-radius: 50%;
            border: 2px solid var(--border-glass);
            overflow: hidden;
            box-shadow: 0 0 30px rgba(154, 205, 50, 0.25);
        }

        .logo-circle img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .success-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(154, 205, 50, 0.16);
            border: 1px solid var(--lime);
            color: var(--lime);
            font-size: 0.85rem;
            font-weight: 700;
            padding: 6px 16px;
            border-radius: var(--radius-pill);
            text-transform: uppercase;
            letter-spacing: 0.06em;
            margin-bottom: 20px;
        }

        h1 {
            font-family: var(--font-display);
            font-size: 2.3rem;
            font-weight: 800;
            line-height: 1.2;
            margin-bottom: 16px;
            background: linear-gradient(180deg, #FFFFFF 20%, #d8f3dc 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        p.desc {
            font-size: 1.05rem;
            color: var(--text-muted);
            line-height: 1.65;
            margin-bottom: 32px;
        }

        /* BOX DE PRÓXIMOS PASSOS */
        .next-steps {
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: var(--radius-md);
            padding: 22px;
            text-align: left;
            margin-bottom: 36px;
        }

        .next-steps h3 {
            font-size: 1rem;
            color: var(--lime);
            margin-bottom: 12px;
            display: flex;
            align-items: center;
            gap: 8px;
            font-family: var(--font-display);
        }

        .step-item {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            margin-bottom: 10px;
            font-size: 0.92rem;
            color: var(--text-muted);
        }

        .step-item:last-child {
            margin-bottom: 0;
        }

        .step-icon {
            color: var(--lime);
            font-weight: 700;
        }

        /* BOTÕES DE RETORNO / CONTATO RÁPIDO */
        .actions-wrap {
            display: flex;
            gap: 16px;
            justify-content: center;
            flex-wrap: wrap;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            font-family: var(--font-display);
            font-weight: 700;
            font-size: 0.95rem;
            padding: 14px 26px;
            border-radius: var(--radius-pill);
            text-decoration: none;
            transition: all 0.2s ease;
        }

        .btn-lime {
            background-color: var(--lime);
            color: #051009;
            box-shadow: 0 4px 20px var(--lime-glow);
        }

        .btn-lime:hover {
            background-color: var(--lime-hover);
            transform: translateY(-2px);
        }

        .btn-glass {
            background: var(--surface-glass);
            color: var(--text-light);
            border: 1px solid rgba(255, 255, 255, 0.15);
        }

        .btn-glass:hover {
            border-color: var(--lime);
            transform: translateY(-2px);
        }

        @media (max-width: 600px) {
            .thank-you-card {
                padding: 32px 20px;
            }
            h1 {
                font-size: 1.8rem;
            }
            .actions-wrap {
                flex-direction: column;
            }
        }

/* Inline styles from dist/privacidade.html */
:root {
            --bg-dark: #07100b;
            --surface-glass: rgba(255, 255, 255, 0.04);
            --border-glass: rgba(154, 205, 50, 0.22);
            --border-subtle: rgba(255, 255, 255, 0.1);
            --lime: #9ACD32;
            --text-light: #f4f8f5;
            --text-muted: rgba(244, 248, 245, 0.72);
            --font-display: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
            --font-body: 'Inter', system-ui, -apple-system, sans-serif;
            --radius-md: 16px;
            --radius-lg: 22px;
            --radius-pill: 9999px;
        }

        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        body {
            background-color: var(--bg-dark);
            color: var(--text-light);
            font-family: var(--font-body);
            line-height: 1.7;
            padding: 40px 24px;
            -webkit-font-smoothing: antialiased;
        }

        .container {
            max-width: 860px;
            margin: 0 auto;
        }

        header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 48px;
            padding-bottom: 24px;
            border-bottom: 1px solid var(--border-subtle);
        }

        .brand-link {
            display: flex;
            align-items: center;
            gap: 12px;
            text-decoration: none;
            color: var(--text-light);
            font-family: var(--font-display);
            font-weight: 800;
            font-size: 1.3rem;
        }

        .brand-logo {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            border: 1px solid var(--border-glass);
            object-fit: cover;
        }

        .btn-back {
            background: var(--surface-glass);
            color: var(--text-light);
            border: 1px solid var(--border-subtle);
            padding: 10px 20px;
            border-radius: var(--radius-pill);
            text-decoration: none;
            font-size: 0.9rem;
            font-weight: 600;
            transition: all 0.2s ease;
        }

        .btn-back:hover {
            border-color: var(--lime);
            color: var(--lime);
        }

        .policy-card {
            background: rgba(11, 24, 16, 0.75);
            border: 1px solid var(--border-glass);
            border-radius: var(--radius-lg);
            padding: 48px 40px;
            backdrop-filter: blur(16px);
            box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
        }

        h1 {
            font-family: var(--font-display);
            font-size: 2.4rem;
            color: var(--text-light);
            margin-bottom: 12px;
            line-height: 1.2;
        }

        .last-update {
            font-size: 0.88rem;
            color: var(--lime);
            margin-bottom: 32px;
            text-transform: uppercase;
            letter-spacing: 0.06em;
            font-weight: 600;
        }

        h2 {
            font-family: var(--font-display);
            font-size: 1.35rem;
            color: var(--lime);
            margin-top: 36px;
            margin-bottom: 14px;
        }

        p {
            color: var(--text-muted);
            margin-bottom: 16px;
            font-size: 0.98rem;
        }

        ul {
            margin-left: 24px;
            margin-bottom: 20px;
            color: var(--text-muted);
        }

        li {
            margin-bottom: 8px;
        }

        footer {
            margin-top: 48px;
            text-align: center;
            font-size: 0.85rem;
            color: rgba(244, 248, 245, 0.5);
        }

        @media (max-width: 600px) {
            .policy-card {
                padding: 30px 20px;
            }
            h1 {
                font-size: 1.8rem;
            }
        }
