/* ========================================
           EDUCADOC LANDING PAGE - STYLES
           ======================================== */

        /* ========== VARIABLES ========== */
        :root {
            /* Palette based on user input */
            --teal-900: #181820;
            --teal-800: #00666E;
            --teal-700: #00666E;
            --teal-600: #00555C;
            --teal-500: #09B4C6;
            --teal-400: #09B4C6;
            --teal-300: #09B4C6;
            --teal-200: #09B4C6;
            --teal-100: #EEF0F2;
            --teal-50: #F7FAFA;

            --lime-400: #FFAA00;
            --lime-500: #E69900;

            --dark: #181820;
            --dark-soft: #262F3A;

            --green-500: #22c55e;
            --white: #ffffff;

            --gray-50: #EEF0F2;
            --gray-100: #E0E4E8;
            --gray-200: #D0D6DC;
            --gray-300: #9AA6B5;
            --gray-400: #546881;
            --gray-500: #546881;
            --gray-600: #262F3A;

            --gold: #FFAA00;
            --red-soft: #F44D40;

            --font-display: 'Clash Display', sans-serif;
            --font-body: 'Inter', sans-serif;

            --radius: 16px;
            --radius-sm: 10px;
            --radius-lg: 24px;

            --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06);
            --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.08);
            --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.12);
            --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.16);
        }

        /* ========== RESET ========== */
        *,
        *::before,
        *::after {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }

        body {
            font-family: var(--font-body);
            color: var(--dark);
            background: var(--white);
            line-height: 1.6;
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
        }

        /* ========== UTILITY ========== */
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 24px;
        }

        .container-lg {
            max-width: 1320px;
            margin: 0 auto;
            padding: 0 24px;
        }

        /* ========== NAV ========== */
        nav {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 100;
            background: rgba(255, 255, 255, 0.85);
            backdrop-filter: blur(20px) saturate(180%);
            -webkit-backdrop-filter: blur(20px) saturate(180%);
            border-bottom: 1px solid rgba(10, 61, 61, 0.06);
            transition: all 0.3s ease;
            
            /* CORREÇÃO 1: Adiciona suporte a área segura (notch do iPhone/Android) */
            padding-top: env(safe-area-inset-top);
        }

        nav.scrolled {
            background: rgba(255, 255, 255, 0.95);
            box-shadow: var(--shadow-sm);
        }

        .nav-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 72px;
            max-width: 1320px;
            margin: 0 auto;
            padding: 0 24px;
        }

        /* CORREÇÃO 2: Movi .nav-logo para ANTES das classes de hide/show para respeitar a cascata do CSS */
        .nav-logo {
            display: flex;
            align-items: center;
            gap: 10px;
            text-decoration: none;
            color: var(--teal-800);
            font-family: var(--font-body);
            font-weight: 700;
            font-size: 1.35rem;
        }

        .nav-logo svg {
            width: 36px;
            height: 36px;
        }

        /* Agora .logo-mobile vem DEPOIS de .nav-logo, garantindo que o display: none funcione no Desktop */
        .logo-mobile {
            display: none;
        }

        .logo-desktop {
            display: block;
        }

        .nav-links {
            display: flex;
            align-items: center;
            gap: 32px;
            list-style: none;
        }

        .nav-links a {
            text-decoration: none;
            color: var(--gray-500);
            font-size: 0.9rem;
            font-weight: 500;
            transition: color 0.2s;
        }

        .nav-links a:hover {
            color: var(--teal-700);
        }

        /* ========== BUTTONS ========== */
        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            padding: 12px 28px;
            border-radius: 50px;
            font-family: var(--font-body);
            font-weight: 600;
            font-size: 0.9rem;
            text-decoration: none;
            transition: all 0.3s ease;
            cursor: pointer;
            border: none;
        }

        .btn-primary {
            background: var(--teal-700);
            color: var(--white);
            box-shadow: 0 2px 12px rgba(15, 107, 107, 0.3);
        }

        .btn-primary:hover {
            background: var(--teal-800);
            box-shadow: 0 4px 20px rgba(15, 107, 107, 0.4);
            transform: translateY(-1px);
        }

        .btn-secondary {
            background: transparent;
            color: var(--teal-700);
            border: 2px solid var(--teal-200);
        }

        .btn-secondary:hover {
            background: var(--teal-50);
            border-color: var(--teal-400);
        }

        .btn-lime {
            background: var(--lime-400);
            color: var(--dark);
            box-shadow: 0 2px 12px rgba(200, 230, 49, 0.3);
        }

        .btn-lime:hover {
            background: var(--lime-500);
            transform: translateY(-1px);
        }

        .btn-white {
            background: var(--white);
            color: var(--teal-800);
            box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
        }

        .btn-white:hover {
            transform: translateY(-1px);
            box-shadow: var(--shadow-md);
        }

        .btn-lg {
            padding: 16px 36px;
            font-size: 1rem;
        }

        .nav-cta {
            display: flex;
            gap: 12px;
            align-items: center;
        }

        .mobile-toggle {
            display: none;
            background: none;
            border: none;
            cursor: pointer;
        }

        /* ========== HERO ========== */
        .hero {
            position: relative;
            padding: 140px 0 80px;
            overflow: hidden;
            background: linear-gradient(165deg, var(--white) 0%, var(--teal-50) 40%, var(--teal-100) 100%);
        }

        .hero::before {
            content: '';
            position: absolute;
            top: -200px;
            right: -200px;
            width: 600px;
            height: 600px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(15, 107, 107, 0.06) 0%, transparent 70%);
        }

        .hero::after {
            content: '';
            position: absolute;
            bottom: -100px;
            left: -150px;
            width: 400px;
            height: 400px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(200, 230, 49, 0.1) 0%, transparent 70%);
        }

        .hero-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
            position: relative;
            z-index: 1;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: var(--white);
            border: 1px solid var(--teal-200);
            border-radius: 50px;
            padding: 6px 16px 6px 8px;
            font-size: 0.82rem;
            color: var(--teal-700);
            font-weight: 500;
            margin-bottom: 24px;
            box-shadow: var(--shadow-sm);
        }

        .hero-badge .dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: var(--green-500);
            animation: pulse-dot 2s infinite;
        }

        @keyframes pulse-dot {
            0%, 100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.5); }
            50% { box-shadow: 0 0 0 6px rgba(34, 197, 94, 0); }
        }

        .hero h1 {
            font-family: var(--font-display);
            font-size: 3.2rem;
            font-weight: 700;
            line-height: 1.15;
            color: var(--dark);
            margin-bottom: 20px;
            letter-spacing: -0.02em;
        }

        .hero h1 em {
            font-style: italic;
            color: var(--teal-700);
            text-decoration: underline;
            text-decoration-color: var(--lime-400);
            text-underline-offset: 6px;
            text-decoration-thickness: 3px;
            margin-right: 0.2em;
        }

        .hero-sub {
            font-size: 1.15rem;
            color: var(--gray-500);
            line-height: 1.7;
            margin-bottom: 32px;
            max-width: 500px;
        }

        .hero-actions {
            display: flex;
            gap: 14px;
            flex-wrap: wrap;
            margin-bottom: 40px;
        }

        .hero-proof {
            display: flex;
            align-items: center;
            gap: 14px;
            padding: 14px 20px;
            background: var(--white);
            border-radius: var(--radius);
            box-shadow: var(--shadow-md);
            width: fit-content;
        }

        .hero-proof-avatars {
            display: flex;
        }

        .hero-proof-avatars span {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            border: 2px solid var(--white);
            margin-left: -10px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.7rem;
            font-weight: 600;
            color: var(--white);
        }

        .hero-proof-avatars span:first-child {
            margin-left: 0;
        }

        .hero-proof-text {
            font-size: 0.85rem;
            color: var(--gray-500);
        }

        .hero-proof-text strong {
            color: var(--dark);
            display: block;
        }

        .hero-visual {
            position: relative;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .hero-phone {
            width: 300px;
            height: 620px;
            background: var(--dark);
            border-radius: 40px;
            position: relative;
            overflow: hidden;
            box-shadow: var(--shadow-xl), 0 0 0 1px rgba(255, 255, 255, 0.1);
            border: 6px solid #1a1a2e;
        }

        .hero-phone-screen {
            width: 100%;
            height: 100%;
            background: linear-gradient(180deg, var(--teal-800) 0%, var(--teal-900) 100%);
            border-radius: 34px;
            padding: 50px 20px 20px;
            display: flex;
            flex-direction: column;
        }

        .phone-header {
            color: var(--white);
            margin-bottom: 20px;
        }

        .phone-header small {
            opacity: 0.6;
            font-size: 0.75rem;
        }

        .phone-header h3 {
            font-size: 1.1rem;
            font-weight: 600;
            margin-top: 4px;
        }

        .phone-card {
            background: rgba(255, 255, 255, 0.1);
            border-radius: 14px;
            padding: 16px;
            margin-bottom: 12px;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.08);
        }

        .phone-card-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 8px;
        }

        .phone-card-tag {
            font-size: 0.65rem;
            font-weight: 600;
            text-transform: uppercase;
            padding: 3px 8px;
            border-radius: 6px;
            letter-spacing: 0.05em;
        }

        .tag-cardio {
            background: rgba(229, 115, 115, 0.2);
            color: #ef9a9a;
        }

        .tag-neuro {
            background: rgba(129, 212, 250, 0.2);
            color: #81d4fa;
        }

        .tag-orto {
            background: rgba(200, 230, 49, 0.2);
            color: var(--lime-400);
        }

        .phone-card-status {
            font-size: 0.65rem;
            color: rgba(255, 255, 255, 0.5);
        }

        .phone-card p {
            font-size: 0.78rem;
            color: rgba(255, 255, 255, 0.75);
            line-height: 1.5;
        }

        .phone-card-mentor {
            display: flex;
            align-items: center;
            gap: 8px;
            margin-top: 10px;
            padding-top: 10px;
            border-top: 1px solid rgba(255, 255, 255, 0.08);
        }

        .mentor-avatar {
            width: 28px;
            height: 28px;
            border-radius: 50%;
            background: var(--teal-500);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.65rem;
            color: var(--white);
            font-weight: 600;
        }

        .mentor-info {
            font-size: 0.72rem;
            color: rgba(255, 255, 255, 0.6);
        }

        .mentor-info strong {
            color: rgba(255, 255, 255, 0.9);
            display: block;
        }

        .phone-bottom-bar {
            margin-top: auto;
            background: var(--teal-600);
            border-radius: 14px;
            padding: 14px;
            text-align: center;
            color: var(--white);
            font-weight: 600;
            font-size: 0.85rem;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
        }

        .hero-float-card {
            position: absolute;
            background: var(--white);
            border-radius: var(--radius);
            padding: 16px 20px;
            box-shadow: var(--shadow-lg);
            animation: float 4s ease-in-out infinite;
        }

        .float-time {
            right: -20px;
            top: 120px;
        }

        .float-rating {
            left: -30px;
            bottom: 140px;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-8px); }
        }

        .float-card-label {
            font-size: 0.72rem;
            color: var(--gray-400);
            margin-bottom: 4px;
        }

        .float-card-value {
            font-size: 1.4rem;
            font-weight: 700;
            color: var(--dark);
        }

        .float-card-value .unit {
            font-size: 0.8rem;
            color: var(--gray-400);
            font-weight: 500;
        }

        .float-card-sub {
            font-size: 0.72rem;
            color: var(--teal-600);
            font-weight: 500;
        }

        /* ========== STATS BAR ========== */
        .stats-bar {
            background: var(--dark);
            padding: 48px 0;
            position: relative;
            overflow: hidden;
        }

        .stats-bar::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(90deg, var(--teal-900) 0%, var(--dark) 50%, var(--teal-900) 100%);
            opacity: 0.5;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 32px;
            position: relative;
            z-index: 1;
        }

        .stat-item {
            text-align: center;
        }

        .stat-number {
            font-family: var(--font-display);
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--white);
            line-height: 1.1;
        }

        .stat-number span {
            color: var(--lime-400);
        }

        .stat-label {
            color: var(--teal-300);
            font-size: 0.85rem;
            margin-top: 6px;
        }

        /* ========== SECTION COMMON ========== */
        .section-label {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-size: 0.78rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            color: var(--teal-600);
            margin-bottom: 16px;
        }

        .section-label::before {
            content: '';
            width: 24px;
            height: 2px;
            background: var(--teal-400);
        }

        .section-title {
            font-family: var(--font-display);
            font-size: 2.4rem;
            font-weight: 700;
            line-height: 1.2;
            color: var(--dark);
            margin-bottom: 20px;
            letter-spacing: -0.01em;
        }

        .section-subtitle {
            font-size: 1.05rem;
            color: var(--gray-500);
            max-width: 600px;
            line-height: 1.7;
            margin-bottom: 48px;
        }

        /* ========== PROBLEM ========== */
        .problem {
            padding: 100px 0;
            background: var(--white);
        }

        .problem-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
        }

        .problem-card {
            background: var(--gray-50);
            border-radius: var(--radius-lg);
            padding: 36px 28px;
            border: 1px solid var(--gray-100);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .problem-card:hover {
            border-color: var(--teal-200);
            box-shadow: var(--shadow-md);
            transform: translateY(-4px);
        }

        .problem-card-icon {
            width: 52px;
            height: 52px;
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
            font-size: 1.4rem;
        }

        .icon-red {
            background: rgba(232, 93, 93, 0.1);
            color: var(--red-soft);
        }

        .icon-gold {
            background: rgba(245, 200, 66, 0.1);
            color: var(--gold);
        }

        .icon-teal {
            background: rgba(15, 107, 107, 0.1);
            color: var(--teal-600);
        }

        .problem-card h3 {
            font-family: var(--font-display);
            font-size: 1.2rem;
            font-weight: 600;
            margin-bottom: 10px;
            color: var(--dark);
        }

        .problem-card p {
            font-size: 0.9rem;
            color: var(--gray-500);
            line-height: 1.65;
        }

        .problem-card .stat-highlight {
            display: inline-block;
            margin-top: 14px;
            padding: 6px 12px;
            background: rgba(15, 107, 107, 0.06);
            border-radius: 8px;
            font-weight: 600;
            font-size: 0.85rem;
            color: var(--teal-700);
        }

        /* ========== SOLUTION ========== */
        .solution {
            padding: 100px 0;
            position: relative;
            background: linear-gradient(180deg, var(--teal-50) 0%, var(--white) 100%);
        }

        .solution-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
        }

        .solution-features {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .feature-item {
            display: flex;
            gap: 18px;
            padding: 24px;
            border-radius: var(--radius);
            background: var(--white);
            border: 1px solid var(--gray-100);
            transition: all 0.3s ease;
        }

        .feature-item:hover {
            border-color: var(--teal-200);
            box-shadow: var(--shadow-md);
        }

        .feature-icon {
            width: 48px;
            height: 48px;
            min-width: 48px;
            border-radius: 12px;
            background: var(--teal-700);
            color: var(--white);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
        }

        .feature-content h4 {
            font-weight: 600;
            margin-bottom: 4px;
            color: var(--dark);
        }

        .feature-content p {
            font-size: 0.88rem;
            color: var(--gray-500);
        }

        .solution-visual {
            position: relative;
            display: flex;
            justify-content: center;
        }

        .solution-mockup {
            width: 100%;
            max-width: 460px;
            background: var(--white);
            border-radius: var(--radius-lg);
            box-shadow: var(--shadow-xl);
            overflow: hidden;
            border: 1px solid var(--gray-100);
        }

        .mockup-header {
            background: var(--teal-800);
            padding: 28px 24px 20px;
            color: var(--white);
        }

        .mockup-header h4 {
            font-size: 0.78rem;
            opacity: 0.6;
            margin-bottom: 4px;
        }

        .mockup-header h3 {
            font-size: 1.15rem;
        }

        .mockup-chat {
            padding: 20px;
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .chat-bubble {
            padding: 12px 16px;
            border-radius: 14px;
            font-size: 0.85rem;
            line-height: 1.55;
            max-width: 85%;
        }

        .chat-mentor {
            background: var(--teal-50);
            color: var(--teal-900);
            border-bottom-left-radius: 4px;
            align-self: flex-start;
        }

        .chat-user {
            background: var(--gray-50);
            color: var(--dark);
            border-bottom-right-radius: 4px;
            align-self: flex-end;
        }

        .chat-label {
            font-size: 0.7rem;
            font-weight: 600;
            color: var(--teal-600);
            margin-bottom: 4px;
        }

        .mockup-footer {
            padding: 16px 20px;
            border-top: 1px solid var(--gray-100);
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .mockup-input {
            flex: 1;
            background: var(--gray-50);
            border-radius: 10px;
            padding: 10px 14px;
            font-size: 0.82rem;
            color: var(--gray-400);
            border: 1px solid var(--gray-100);
        }

        .mockup-send {
            width: 38px;
            height: 38px;
            border-radius: 10px;
            background: var(--teal-600);
            color: var(--white);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        /* ========== HOW IT WORKS ========== */
        .how-it-works {
            padding: 100px 0;
            background: var(--white);
        }

        .how-it-works .section-title {
            text-align: center;
        }

        .how-it-works .section-subtitle {
            text-align: center;
            margin: 0 auto 60px;
        }

        .how-it-works .section-label {
            display: flex;
            justify-content: center;
        }

        .steps-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 24px;
        }

        .step-card {
            text-align: center;
            padding: 36px 24px;
            border-radius: var(--radius-lg);
            background: var(--gray-50);
            border: 1px solid var(--gray-100);
            position: relative;
        }

        .step-number {
            font-family: var(--font-display);
            font-size: 3rem;
            font-weight: 800;
            color: var(--teal-500);
            line-height: 1;
            margin-bottom: 16px;
        }

        .step-card h4 {
            font-weight: 600;
            margin-bottom: 8px;
            font-size: 1.05rem;
            color: var(--dark);
        }

        .step-card p {
            font-size: 0.85rem;
            color: var(--gray-500);
        }

        .step-arrow {
            position: absolute;
            right: -16px;
            top: 50%;
            transform: translateY(-50%);
            color: var(--teal-200);
            font-size: 1.2rem;
            z-index: 2;
        }

        /* ========== PRICING ========== */
        .pricing {
            padding: 100px 0;
            position: relative;
            background: linear-gradient(180deg, var(--dark) 0%, var(--teal-900) 100%);
            overflow: hidden;
        }

        .pricing::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 500px;
            height: 500px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(200, 230, 49, 0.05) 0%, transparent 70%);
        }

        .pricing .section-label {
            color: var(--teal-300);
            display: flex;
            justify-content: center;
        }

        .pricing .section-label::before {
            background: var(--teal-500);
        }

        .pricing .section-title {
            color: var(--white);
            text-align: center;
        }

        .pricing .section-subtitle {
            color: var(--teal-300);
            text-align: center;
            margin: 0 auto 60px;
            max-width: 650px;
        }

        .pricing-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
            position: relative;
            z-index: 1;
        }

        .pricing-card {
            background: rgba(255, 255, 255, 0.05);
            border-radius: var(--radius-lg);
            padding: 40px 32px;
            border: 1px solid rgba(255, 255, 255, 0.08);
            backdrop-filter: blur(10px);
            transition: all 0.3s ease;
            display: flex;
            flex-direction: column;
        }

        .pricing-card:hover {
            border-color: rgba(255, 255, 255, 0.15);
        }

        .pricing-card.featured {
            background: var(--white);
            border: 2px solid var(--lime-400);
            box-shadow: 0 0 60px rgba(200, 230, 49, 0.15);
            transform: scale(1.03);
        }

        .pricing-card.featured .pricing-card-name {
            color: var(--teal-700);
        }

        .pricing-card.featured .pricing-card-price {
            color: var(--dark);
        }

        .pricing-card.featured .pricing-card-desc {
            color: var(--gray-500);
        }

        .pricing-card.featured .pricing-feature {
            color: var(--gray-600);
        }

        .pricing-card.featured .pricing-feature svg {
            color: var(--teal-600);
        }

        .pricing-tag {
            display: inline-block;
            padding: 4px 12px;
            border-radius: 6px;
            font-size: 0.7rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.08em;
            margin-bottom: 16px;
            width: fit-content;
        }

        .tag-free {
            background: rgba(93, 211, 211, 0.15);
            color: var(--teal-300);
        }

        .tag-premium {
            background: var(--lime-400);
            color: var(--dark);
        }

        .tag-avulsa {
            background: rgba(255, 255, 255, 0.1);
            color: var(--teal-200);
        }

        .pricing-card-name {
            font-family: var(--font-display);
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--white);
            margin-bottom: 8px;
        }

        .pricing-card-desc {
            font-size: 0.88rem;
            color: var(--teal-300);
            margin-bottom: 24px;
            line-height: 1.5;
        }

        .pricing-card-price {
            font-family: var(--font-display);
            font-size: 2.8rem;
            font-weight: 800;
            color: var(--white);
            margin-bottom: 4px;
            line-height: 1;
        }

        .pricing-card-price .currency {
            font-size: 1.2rem;
            vertical-align: super;
        }

        .pricing-card-price .period {
            font-size: 0.85rem;
            font-weight: 400;
            color: var(--teal-300);
        }

        .pricing-card.featured .pricing-card-price .period {
            color: var(--gray-400);
        }

        .pricing-divider {
            width: 100%;
            height: 1px;
            margin: 24px 0;
            background: rgba(255, 255, 255, 0.08);
        }

        .pricing-card.featured .pricing-divider {
            background: var(--gray-200);
        }

        .pricing-features {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 12px;
            flex: 1;
        }

        .pricing-feature {
            display: flex;
            align-items: flex-start;
            gap: 10px;
            font-size: 0.88rem;
            color: rgba(255, 255, 255, 0.75);
        }

        .pricing-feature svg {
            min-width: 18px;
            color: var(--teal-400);
            margin-top: 2px;
        }

        .pricing-card-cta {
            margin-top: 32px;
            width: 100%;
            text-align: center;
        }

        .pricing-card-cta .btn {
            width: 100%;
        }

        /* ========== MENTORS ========== */
        .mentors {
            padding: 100px 0;
            background: var(--white);
        }

        .mentor-highlight-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .mentor-text .section-title {
            margin-bottom: 20px;
        }

        .mentor-text p {
            font-size: 1rem;
            color: var(--gray-500);
            line-height: 1.7;
            margin-bottom: 16px;
        }

        .mentor-stats-row {
            display: flex;
            gap: 32px;
            margin-top: 32px;
        }

        .mentor-stat {
            text-align: center;
        }

        .mentor-stat-num {
            font-family: var(--font-display);
            font-size: 2rem;
            font-weight: 700;
            color: var(--teal-700);
        }

        .mentor-stat-label {
            font-size: 0.82rem;
            color: var(--gray-400);
        }

        .mentor-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 16px;
        }

        .mentor-card {
            background: var(--gray-50);
            border-radius: var(--radius);
            padding: 24px;
            text-align: center;
            border: 1px solid var(--gray-100);
            transition: all 0.3s ease;
        }

        .mentor-card:hover {
            border-color: var(--teal-200);
            box-shadow: var(--shadow-md);
        }

        .mentor-card-photo {
            width: 72px;
            height: 72px;
            border-radius: 50%;
            object-fit: cover;
            object-position: top center;
            /* Focus on face */
            margin: 0 auto 12px;
            display: block;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        }

        .mentor-card-avatar {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: var(--teal-700);
            color: var(--white);
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 12px;
            font-weight: 700;
            font-size: 1.1rem;
        }

        .mentor-card h5 {
            font-weight: 600;
            font-size: 0.9rem;
            margin-bottom: 4px;
        }

        .mentor-card p {
            font-size: 0.78rem;
            color: var(--teal-600);
        }

        /* ========== TESTIMONIALS ========== */
        .testimonials {
            padding: 100px 0;
            background: linear-gradient(180deg, var(--teal-50) 0%, var(--white) 100%);
        }

        .testimonials .section-title {
            text-align: center;
        }

        .testimonials .section-subtitle {
            text-align: center;
            margin: 0 auto 60px;
        }

        .testimonials .section-label {
            display: flex;
            justify-content: center;
        }

        .testimonial-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
        }

        .testimonial-card {
            background: var(--white);
            border-radius: var(--radius-lg);
            padding: 32px;
            border: 1px solid var(--gray-100);
            box-shadow: var(--shadow-sm);
            display: flex;
            flex-direction: column;
        }

        .testimonial-stars {
            display: flex;
            gap: 3px;
            color: var(--gold);
            margin-bottom: 16px;
        }

        .testimonial-card blockquote {
            font-size: 0.95rem;
            color: var(--gray-600);
            line-height: 1.7;
            flex: 1;
            font-style: italic;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-top: 20px;
            padding-top: 16px;
            border-top: 1px solid var(--gray-100);
        }

        .testimonial-avatar {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: var(--teal-100);
            color: var(--teal-700);
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 0.85rem;
        }

        .testimonial-name {
            font-weight: 600;
            font-size: 0.88rem;
        }

        .testimonial-role {
            font-size: 0.78rem;
            color: var(--gray-400);
        }

        /* ========== FAQ ========== */
        .faq {
            padding: 100px 0;
            background: var(--white);
        }

        .faq .section-title {
            text-align: center;
        }

        .faq .section-subtitle {
            text-align: center;
            margin: 0 auto 60px;
        }

        .faq .section-label {
            display: flex;
            justify-content: center;
        }

        .faq-list {
            max-width: 740px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .faq-item {
            border: 1px solid var(--gray-100);
            border-radius: var(--radius);
            overflow: hidden;
            transition: all 0.3s;
        }

        .faq-item:hover {
            border-color: var(--teal-200);
        }

        .faq-question {
            width: 100%;
            padding: 20px 24px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            cursor: pointer;
            background: none;
            border: none;
            font-family: var(--font-body);
            font-size: 0.95rem;
            font-weight: 600;
            color: var(--dark);
            text-align: left;
        }

        .faq-question svg {
            transition: transform 0.3s;
            min-width: 20px;
            color: var(--teal-500);
        }

        .faq-item.open .faq-question svg {
            transform: rotate(45deg);
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease;
        }

        .faq-answer-inner {
            padding: 0 24px 20px;
            font-size: 0.9rem;
            color: var(--gray-500);
            line-height: 1.7;
        }

        .faq-item.open .faq-answer {
            max-height: 300px;
        }

        /* ========== CTA ========== */
        .final-cta {
            padding: 100px 0;
            position: relative;
            overflow: hidden;
            background: linear-gradient(135deg, var(--teal-800) 0%, var(--teal-900) 60%, var(--dark) 100%);
        }

        .final-cta::before {
            content: '';
            position: absolute;
            top: -100px;
            right: -100px;
            width: 400px;
            height: 400px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(200, 230, 49, 0.08) 0%, transparent 70%);
        }

        .final-cta-content {
            text-align: center;
            position: relative;
            z-index: 1;
            max-width: 700px;
            margin: 0 auto;
        }

        .final-cta h2 {
            font-family: var(--font-display);
            font-size: 2.6rem;
            font-weight: 700;
            color: var(--white);
            margin-bottom: 20px;
            line-height: 1.2;
        }

        .final-cta p {
            font-size: 1.1rem;
            color: var(--teal-200);
            margin-bottom: 36px;
            line-height: 1.7;
        }

        .final-cta-actions {
            display: flex;
            gap: 16px;
            justify-content: center;
            flex-wrap: wrap;
        }

        .store-badges {
            display: flex;
            gap: 16px;
            justify-content: center;
            margin-top: 32px;
        }

        .store-badge {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.15);
            border-radius: 12px;
            padding: 10px 20px;
            color: var(--white);
            text-decoration: none;
            font-size: 0.82rem;
            transition: all 0.3s;
        }

        .store-badge:hover {
            background: rgba(255, 255, 255, 0.18);
        }

        .store-badge strong {
            font-size: 0.95rem;
        }

        /* ========== FOOTER ========== */
        footer {
            background: var(--dark);
            padding: 60px 0 30px;
            color: rgba(255, 255, 255, 0.5);
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 40px;
            padding-bottom: 40px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        }

        .footer-brand p {
            font-size: 0.88rem;
            line-height: 1.6;
            margin-top: 12px;
            max-width: 300px;
        }

        .footer-col h5 {
            color: var(--white);
            font-size: 0.85rem;
            font-weight: 600;
            margin-bottom: 16px;
            text-transform: uppercase;
            letter-spacing: 0.08em;
        }

        .footer-col a {
            display: block;
            color: rgba(255, 255, 255, 0.5);
            text-decoration: none;
            font-size: 0.85rem;
            margin-bottom: 10px;
            transition: color 0.2s;
        }

        .footer-col a:hover {
            color: var(--teal-300);
        }

        .footer-bottom {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-top: 24px;
            font-size: 0.8rem;
        }

        .footer-bottom a {
            color: var(--teal-400);
            text-decoration: none;
        }

        /* ========== RESPONSIVE ========== */
        @media (max-width: 1024px) {
            .hero h1 {
                font-size: 2.6rem;
            }

            .hero-grid {
                gap: 40px;
            }

            .pricing-grid {
                gap: 16px;
            }

            .pricing-card.featured {
                transform: scale(1);
            }
        }

        @media (max-width: 768px) {
            /* ===== NAV MOBILE - CORRIGIDO ===== */
            
            /* CORREÇÃO 3: Ajuste de altura e padding para acomodar a safety area sem quebrar o layout */
            .nav-inner {
                height: auto; /* Permite crescer se necessário */
                min-height: 80px;
                padding: 10px 20px;
                align-items: center;
            }

            .logo-desktop {
                display: none;
            }

            .logo-mobile {
                display: block;
            }

            /* LOGO MAIOR NO MOBILE */
            .logo-mobile img {
                height: 56px !important;
                width: auto;
            }

            .nav-links {
                position: fixed;
                top: 80px; /* Considere ajustar isso se a barra ficar mais alta com a safety area */
                left: 0;
                right: 0;
                background: var(--white);
                flex-direction: column;
                padding: 24px;
                gap: 16px;
                border-bottom: 1px solid var(--gray-100);
                box-shadow: var(--shadow-md);
                transform: translateY(-150%);
                transition: transform 0.4s ease;
                display: flex;
                z-index: 99;
            }

            .nav-links.show {
                transform: translateY(0);
            }

            .nav-cta .btn-secondary {
                display: none;
            }

            /* BOTÃO AMARELO NO NAV MOBILE */
            .nav-cta .btn-primary {
                padding: 10px 18px;
                font-size: 0.82rem;
                white-space: nowrap;
                background: #FFAA00 !important;
                color: var(--dark) !important;
                box-shadow: 0 2px 12px rgba(255, 170, 0, 0.3);
            }

            .nav-cta .btn-primary:hover {
                background: #E69900 !important;
            }

            .mobile-toggle {
                display: block;
                color: var(--teal-800);
            }

            /* ===== HERO MOBILE ===== */
            .hero {
                padding: 110px 0 60px;
            }

            .hero-grid {
                grid-template-columns: 1fr;
                text-align: center;
                gap: 40px;
            }

            .hero h1 {
                font-size: 2rem;
                line-height: 1.15;
                margin-bottom: 16px;
            }

            .hero-badge {
                font-size: 0.75rem;
                padding: 5px 12px 5px 6px;
                margin-bottom: 20px;
            }

            .hero-sub {
                font-size: 0.95rem;
                margin: 0 auto 28px;
                line-height: 1.6;
            }

            .hero-actions {
                justify-content: center;
                gap: 12px;
            }

            .hero-proof {
                margin: 0 auto;
                padding: 12px 16px;
            }

            .hero-proof-avatars span {
                width: 32px;
                height: 32px;
            }

            .hero-proof-text {
                font-size: 0.8rem;
            }

            .hero-visual {
                display: flex;
                justify-content: center;
                margin-top: 16px;
            }

            .hero-phone {
                width: 260px;
                height: 540px;
            }

            .hero-float-card {
                padding: 12px 16px;
            }

            .float-time {
                right: -10px;
                top: 80px;
            }

            .float-rating {
                left: -20px;
                bottom: 100px;
            }

            /* ===== STATS MOBILE ===== */
            .stats-bar {
                padding: 40px 0;
            }

            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 24px 16px;
            }

            .stat-number {
                font-size: 1.8rem;
            }

            .stat-label {
                font-size: 0.78rem;
            }

            /* ===== SECTIONS MOBILE ===== */
            .section-title {
                font-size: 1.75rem;
                line-height: 1.2;
            }

            .section-subtitle {
                font-size: 0.95rem;
                margin-bottom: 36px;
            }

            .problem {
                padding: 70px 0;
            }

            .problem-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .problem-card {
                padding: 28px 24px;
            }

            .solution {
                padding: 70px 0;
            }

            .solution-grid {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .solution-visual {
                order: -1;
            }

            .feature-item {
                padding: 20px;
            }

            .feature-icon {
                width: 44px;
                height: 44px;
                min-width: 44px;
            }

            /* ===== HOW IT WORKS MOBILE ===== */
            .how-it-works {
                padding: 70px 0;
            }

            .steps-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 16px;
            }

            .step-card {
                padding: 28px 20px;
            }

            .step-number {
                font-size: 2.4rem;
            }

            .step-arrow {
                display: none;
            }

            /* ===== PRICING MOBILE ===== */
            .pricing {
                padding: 70px 0;
            }

            .pricing-grid {
                grid-template-columns: 1fr;
                max-width: 400px;
                margin: 0 auto;
                gap: 20px;
            }

            .pricing-card {
                padding: 32px 24px;
            }

            .pricing-card-price {
                font-size: 2.4rem;
            }

            /* ===== MENTORS MOBILE ===== */
            .mentors {
                padding: 70px 0;
            }

            .mentor-highlight-grid {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .mentor-stats-row {
                justify-content: center;
            }

            .mentor-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 12px;
                margin-top: 24px;
            }

            .mentor-card {
                padding: 20px 16px;
            }

            .mentor-card-photo {
                width: 60px;
                height: 60px;
            }

            /* ===== TESTIMONIALS MOBILE ===== */
            .testimonials {
                padding: 70px 0;
            }

            .testimonial-grid {
                grid-template-columns: 1fr;
                gap: 16px;
            }

            .testimonial-card {
                padding: 24px;
            }

            /* ===== FAQ MOBILE ===== */
            .faq {
                padding: 70px 0;
            }

            .faq-question {
                padding: 18px 20px;
                font-size: 0.9rem;
            }

            .faq-answer-inner {
                padding: 0 20px 18px;
                font-size: 0.85rem;
            }

            /* ===== FINAL CTA MOBILE ===== */
            .final-cta {
                padding: 70px 0;
            }

            .final-cta h2 {
                font-size: 1.9rem;
                line-height: 1.2;
            }

            .final-cta p {
                font-size: 1rem;
            }

            .final-cta-actions {
                flex-direction: column;
                align-items: center;
                gap: 12px;
            }

            .final-cta-actions .btn {
                width: 100%;
                max-width: 300px;
            }

            .store-badges {
                flex-direction: column;
                align-items: center;
                gap: 12px;
            }

            .store-badge {
                width: 100%;
                max-width: 220px;
                justify-content: center;
            }

            /* ===== FOOTER MOBILE ===== */
            .footer-grid {
                grid-template-columns: 1fr 1fr;
                gap: 32px;
            }

            .footer-brand {
                grid-column: 1 / -1;
            }

            .footer-bottom {
                flex-direction: column;
                gap: 12px;
                text-align: center;
            }
        }

        @media (max-width: 480px) {
            /* ===== NAV MOBILE SMALL ===== */
            /* Ajustado para segurança e conforto */
            .nav-inner {
                min-height: 72px;
                padding: 10px 16px;
            }

            /* LOGO AINDA MAIOR EM TELAS PEQUENAS */
            .logo-mobile img {
                height: 52px !important;
            }

            .nav-cta .btn-primary {
                padding: 8px 14px;
                font-size: 0.78rem;
            }
            
            /* Ajustar posição do menu dropdown se necessário */
            .nav-links {
                /* top: 90px; Se o menu ficar muito alto por causa do safety-area, ajustar aqui */
            }

            /* ===== HERO MOBILE SMALL ===== */
            .hero {
                padding: 100px 0 50px;
            }

            .container,
            .container-lg {
                padding: 0 16px;
            }

            .hero h1 {
                font-size: 1.75rem;
                line-height: 1.15;
                margin-bottom: 14px;
            }

            .hero-badge {
                font-size: 0.7rem;
                padding: 4px 10px 4px 5px;
                margin-bottom: 16px;
            }

            .hero-badge .dot {
                width: 6px;
                height: 6px;
            }

            .hero-sub {
                font-size: 0.9rem;
                line-height: 1.55;
                margin-bottom: 24px;
            }

            .hero-actions {
                flex-direction: column;
                align-items: center;
            }

            .hero-actions .btn {
                width: 100%;
            }

            .hero-proof {
                width: 100%;
                justify-content: center;
            }

            .hero-float-card {
                display: none;
            }

            /* ===== STATS MOBILE SMALL ===== */
            .stats-bar {
                padding: 32px 0;
            }

            .stats-grid {
                grid-template-columns: 1fr 1fr;
                gap: 20px 12px;
            }

            .stat-number {
                font-size: 1.5rem;
            }

            .stat-label {
                font-size: 0.72rem;
            }

            /* ===== SECTIONS MOBILE SMALL ===== */
            .section-label {
                font-size: 0.7rem;
            }

            .section-title {
                font-size: 1.5rem;
            }

            .section-subtitle {
                font-size: 0.88rem;
                margin-bottom: 32px;
            }

            .problem {
                padding: 56px 0;
            }

            .problem-card {
                padding: 24px 20px;
            }

            .problem-card h3 {
                font-size: 1.1rem;
            }

            .problem-card p {
                font-size: 0.85rem;
            }

            .solution {
                padding: 56px 0;
            }

            .feature-item {
                padding: 18px;
                gap: 14px;
            }

            .feature-icon {
                width: 40px;
                height: 40px;
                min-width: 40px;
            }

            .feature-content h4 {
                font-size: 0.95rem;
            }

            .feature-content p {
                font-size: 0.82rem;
            }

            /* ===== HOW IT WORKS MOBILE SMALL ===== */
            .how-it-works {
                padding: 56px 0;
            }

            .steps-grid {
                grid-template-columns: 1fr;
                gap: 14px;
            }

            .step-card {
                padding: 24px 20px;
            }

            .step-number {
                font-size: 2rem;
                margin-bottom: 12px;
            }

            .step-card h4 {
                font-size: 1rem;
            }

            .step-card p {
                font-size: 0.82rem;
            }

            /* ===== PRICING MOBILE SMALL ===== */
            .pricing {
                padding: 56px 0;
            }

            .pricing-card {
                padding: 28px 20px;
            }

            .pricing-card-name {
                font-size: 1.3rem;
            }

            .pricing-card-desc {
                font-size: 0.82rem;
            }

            .pricing-card-price {
                font-size: 2rem;
            }

            .pricing-feature {
                font-size: 0.82rem;
            }

            /* ===== MENTORS MOBILE SMALL ===== */
            .mentors {
                padding: 56px 0;
            }

            .mentor-grid {
                grid-template-columns: 1fr 1fr;
                gap: 10px;
            }

            .mentor-card {
                padding: 16px 12px;
            }

            .mentor-card-photo {
                width: 52px;
                height: 52px;
            }

            .mentor-card h5 {
                font-size: 0.8rem;
            }

            .mentor-card-avatar {
                width: 48px;
                height: 48px;
                font-size: 0.9rem;
            }

            /* ===== TESTIMONIALS MOBILE SMALL ===== */
            .testimonials {
                padding: 56px 0;
            }

            .testimonial-card {
                padding: 20px;
            }

            .testimonial-card blockquote {
                font-size: 0.88rem;
            }

            /* ===== FAQ MOBILE SMALL ===== */
            .faq {
                padding: 56px 0;
            }

            .faq-question {
                padding: 16px;
                font-size: 0.85rem;
            }

            .faq-answer-inner {
                padding: 0 16px 16px;
                font-size: 0.82rem;
            }

            /* ===== FINAL CTA MOBILE SMALL ===== */
            .final-cta {
                padding: 56px 0;
            }

            .final-cta h2 {
                font-size: 1.6rem;
            }

            .final-cta p {
                font-size: 0.92rem;
                margin-bottom: 28px;
            }

            /* ===== FOOTER MOBILE SMALL ===== */
            footer {
                padding: 48px 0 24px;
            }

            .footer-grid {
                grid-template-columns: 1fr;
                gap: 28px;
            }

            .footer-brand p {
                max-width: 100%;
            }

            .footer-col h5 {
                margin-bottom: 12px;
            }

            .footer-bottom {
                font-size: 0.75rem;
            }
        }

        /* ========== ANIMATIONS ========== */
        .fade-up {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.7s ease, transform 0.7s ease;
        }

        .fade-up.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .delay-1 {
            transition-delay: 0.1s;
        }

        .delay-2 {
            transition-delay: 0.2s;
        }

        .delay-3 {
            transition-delay: 0.3s;
        }

        .delay-4 {
            transition-delay: 0.4s;
        }

a.cta_button{-moz-box-sizing:content-box !important;-webkit-box-sizing:content-box !important;box-sizing:content-box !important;vertical-align:middle}.hs-breadcrumb-menu{list-style-type:none;margin:0px 0px 0px 0px;padding:0px 0px 0px 0px}.hs-breadcrumb-menu-item{float:left;padding:10px 0px 10px 10px}.hs-breadcrumb-menu-divider:before{content:'›';padding-left:10px}.hs-featured-image-link{border:0}.hs-featured-image{float:right;margin:0 0 20px 20px;max-width:50%}@media (max-width: 568px){.hs-featured-image{float:none;margin:0;width:100%;max-width:100%}}.hs-screen-reader-text{clip:rect(1px, 1px, 1px, 1px);height:1px;overflow:hidden;position:absolute !important;width:1px}

