/* ==========================================================================
   FORMAÇÃO & MENTORIA CHEF KAKÁ GOMES — DIAGNÓSTICO EXCLUSIVO VSL
   Design System: Dark Luxury & High-Converting Orange Direct Response
   ========================================================================== */

:root {
    --bg-base: #09090b;
    --bg-surface: #111115;
    --bg-surface-elevated: #18181f;
    --bg-card: rgba(24, 24, 30, 0.75);
    --bg-card-hover: rgba(32, 32, 40, 0.9);

    --border-subtle: rgba(255, 255, 255, 0.08);
    --border-orange-subtle: rgba(255, 107, 0, 0.28);
    --border-orange-glow: rgba(255, 107, 0, 0.55);
    --border-focus: #ff6b00;

    --text-primary: #f8fafc;
    --text-secondary: #94a3b8;
    --text-muted: #64748b;

    /* Predominant Orange Brand Palette */
    --accent-orange: #ff6b00;
    --accent-orange-bright: #ff7d1a;
    --accent-orange-light: #ff9d4d;
    --accent-orange-dark: #e05300;
    --accent-orange-bg: rgba(255, 107, 0, 0.12);
    --accent-orange-glow: rgba(255, 107, 0, 0.45);

    /* Legacy CSS Variable Compatibility */
    --accent-gold: var(--accent-orange);
    --accent-gold-light: var(--accent-orange-light);
    --accent-gold-bg: var(--accent-orange-bg);
    --border-gold-subtle: var(--border-orange-subtle);
    --border-gold-glow: var(--border-orange-glow);

    --cta-primary: #ff6b00;
    --cta-primary-hover: #ff7d1a;
    --cta-primary-dark: #ea580c;
    --cta-primary-glow: rgba(255, 107, 0, 0.45);

    --cta-green: var(--cta-primary);
    --cta-green-hover: var(--cta-primary-hover);
    --cta-green-glow: var(--cta-primary-glow);

    --danger-red: #ef4444;
    --danger-bg: rgba(239, 68, 68, 0.08);
    --danger-border: rgba(239, 68, 68, 0.25);

    --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 20px;
    --radius-full: 9999px;

    --transition-smooth: 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
    background-color: var(--bg-base);
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
}

body {
    min-height: 100vh;
    background-color: var(--bg-base);
    color: var(--text-primary);
    overflow-x: hidden;
    position: relative;
}

/* Radiant Orange Ambient Lighting */
body::before {
    content: '';
    position: fixed;
    top: -150px;
    left: 50%;
    transform: translateX(-50%);
    width: 900px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 107, 0, 0.12) 0%, rgba(9, 9, 11, 0) 70%);
    pointer-events: none;
    z-index: 0;
}

.site-container {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ==========================================================================
   1. ALERT / TOP NOTIFICATION BAR
   ========================================================================== */
.top-notice-bar {
    background: linear-gradient(90deg, rgba(255, 107, 0, 0.12) 0%, rgba(255, 107, 0, 0.25) 50%, rgba(255, 107, 0, 0.12) 100%);
    border-bottom: 1px solid var(--border-orange-subtle);
    padding: 11px 16px;
    text-align: center;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: var(--accent-orange-light);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.top-notice-dot {
    width: 8px;
    height: 8px;
    background-color: var(--accent-orange);
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 10px var(--accent-orange);
    animation: pulseDot 2s infinite;
}

@keyframes pulseDot {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.3); opacity: 0.6; }
}

/* ==========================================================================
   2. HEADER & LOGO (CHEF KAKÁ GOMES)
   ========================================================================== */
.main-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0 16px;
}

.brand-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.brand-name {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    color: #ffffff;
}

.brand-sub {
    font-size: 0.78rem;
    color: var(--accent-orange-light);
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    padding-left: 12px;
    border-left: 1px solid rgba(255, 255, 255, 0.15);
}

.header-status-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    background: rgba(255, 107, 0, 0.1);
    border: 1px solid rgba(255, 107, 0, 0.3);
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--accent-orange-bright);
}

.status-pulse-dot {
    width: 6px;
    height: 6px;
    background-color: var(--accent-orange);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--accent-orange);
}

/* ==========================================================================
   3. HERO & VSL SECTION
   ========================================================================== */
.hero-section {
    padding: 30px 0 60px;
    text-align: center;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: var(--bg-surface-elevated);
    border: 1px solid var(--border-orange-subtle);
    border-radius: var(--radius-full);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--accent-orange-light);
    margin-bottom: 20px;
}

.hero-main-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4.5vw, 3.4rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: #ffffff;
    max-width: 920px;
    margin: 0 auto 20px;
}

.hero-main-title em {
    font-style: normal;
    background: linear-gradient(135deg, #ffffff 0%, #ff9d4d 50%, #ff6b00 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: clamp(1rem, 1.8vw, 1.25rem);
    color: var(--text-secondary);
    max-width: 760px;
    margin: 0 auto 36px;
    line-height: 1.6;
}

/* VSL Player Cinema Frame */
.vsl-frame-wrapper {
    position: relative;
    max-width: 880px;
    margin: 0 auto 36px;
    border-radius: var(--radius-lg);
    background: var(--bg-surface);
    padding: 10px;
    border: 1px solid var(--border-orange-subtle);
    box-shadow: 0 25px 60px -15px rgba(0, 0, 0, 0.9), 0 0 45px rgba(255, 107, 0, 0.15);
    transition: var(--transition-smooth);
}

.vsl-frame-wrapper:hover {
    border-color: var(--border-orange-glow);
    box-shadow: 0 30px 80px -15px rgba(0, 0, 0, 0.95), 0 0 60px rgba(255, 107, 0, 0.25);
}

.vsl-video-container {
    position: relative;
    width: 100%;
    padding-top: 56.25%; /* 16:9 Ratio */
    background: #000000;
    border-radius: var(--radius-md);
    overflow: hidden;
}

.vsl-video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* CTA Buttons — High Impact Radiant Orange */
.cta-action-area {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin-top: 20px;
}

.btn-primary-vsl {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    max-width: 540px;
    padding: 20px 32px;
    background: linear-gradient(135deg, #ff6b00 0%, #e05300 100%);
    color: #ffffff;
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 800;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    text-decoration: none;
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    box-shadow: 0 12px 30px rgba(255, 107, 0, 0.42), 0 0 20px rgba(255, 107, 0, 0.22);
    transition: var(--transition-smooth);
}

.btn-primary-vsl:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 36px rgba(255, 107, 0, 0.58), 0 0 30px rgba(255, 107, 0, 0.35);
    background: linear-gradient(135deg, #ff7d1a 0%, #ea580c 100%);
}

.btn-primary-vsl:active {
    transform: translateY(0);
}

.cta-subtext {
    font-size: 0.85rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 8px;
}

/* ==========================================================================
   4. CONTRAST MATRIX ("ROTINA DO IMPROVISO" VS "GESTOR DE BRIGADAS")
   ========================================================================== */
.section-contrast {
    padding: 70px 0;
    border-top: 1px solid var(--border-subtle);
}

.section-header-center {
    text-align: center;
    max-width: 740px;
    margin: 0 auto 50px;
}

.section-eyebrow {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent-orange);
    margin-bottom: 12px;
    display: block;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.01em;
    color: #ffffff;
}

.contrast-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}

.contrast-card {
    border-radius: var(--radius-lg);
    padding: 36px 32px;
    position: relative;
    backdrop-filter: blur(16px);
    transition: var(--transition-smooth);
}

.contrast-card.card-danger {
    background: linear-gradient(180deg, rgba(239, 68, 68, 0.05) 0%, rgba(20, 10, 10, 0.6) 100%);
    border: 1px solid var(--danger-border);
}

.contrast-card.card-success {
    background: linear-gradient(180deg, rgba(255, 107, 0, 0.08) 0%, rgba(20, 16, 14, 0.85) 100%);
    border: 1px solid var(--border-orange-glow);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6), 0 0 35px rgba(255, 107, 0, 0.12);
}

.card-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.card-badge.badge-danger {
    background: rgba(239, 68, 68, 0.15);
    color: #fca5a5;
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.card-badge.badge-success {
    background: rgba(255, 107, 0, 0.18);
    color: var(--accent-orange-light);
    border: 1px solid var(--border-orange-subtle);
}

.card-contrast-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 12px;
}

.card-contrast-desc {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: 24px;
    line-height: 1.6;
}

.contrast-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.contrast-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.95rem;
    color: #cbd5e1;
    line-height: 1.5;
}

.contrast-icon-wrap {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
}

.contrast-card.card-danger .contrast-icon-wrap {
    background: rgba(239, 68, 68, 0.15);
    color: #f87171;
}

.contrast-card.card-success .contrast-icon-wrap {
    background: rgba(255, 107, 0, 0.2);
    color: var(--accent-orange-bright);
}

/* ==========================================================================
   5. DELIVERABLES SECTION (AQUI VOCÊ TERÁ ACESSO... - 4 CARDS BRANCOS)
   ========================================================================== */
.section-deliverables {
    padding: 70px 24px 80px;
    background: linear-gradient(180deg, #ff6b00 0%, #f05a00 50%, #ea580c 100%);
    border-radius: var(--radius-lg);
    margin: 60px 0;
    box-shadow: 0 20px 60px rgba(255, 107, 0, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.deliverables-header-title {
    font-family: var(--font-heading);
    font-size: clamp(2.1rem, 4vw, 3rem);
    font-weight: 800;
    color: #ffffff;
    text-align: center;
    margin-bottom: 40px;
    letter-spacing: -0.01em;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.25);
}

.deliverables-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 800px;
    margin: 0 auto;
}

.deliverable-card-white {
    background: #ffffff;
    border-radius: 18px;
    padding: 40px 24px 34px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.16), 0 2px 6px rgba(0, 0, 0, 0.06);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.deliverable-card-white:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.25);
}

.deliverable-icon-wrap {
    margin-bottom: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 84px;
}

.deliverable-icon-wrap svg {
    display: block;
}

.deliverable-card-title {
    font-family: var(--font-heading);
    font-size: 1.18rem;
    font-weight: 800;
    line-height: 1.35;
    color: #ea580c;
    letter-spacing: 0.01em;
    text-transform: uppercase;
    max-width: 280px;
}

/* Fallback legacy classes */
.deliverable-card {
    background: var(--bg-surface);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: 32px;
}

/* ==========================================================================
   6. SOCIAL PROOF / REAL TESTIMONIALS
   ========================================================================== */
.section-testimonials {
    padding: 80px 0;
    border-top: 1px solid var(--border-subtle);
}

.testimonials-stat-banner {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 8px 20px;
    background: rgba(255, 107, 0, 0.1);
    border: 1px solid var(--border-orange-subtle);
    border-radius: var(--radius-full);
    margin-bottom: 24px;
    color: var(--accent-orange-light);
    font-size: 0.9rem;
    font-weight: 600;
}

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

.testimonial-video-card {
    background: var(--bg-surface);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: var(--transition-smooth);
}

.testimonial-video-card:hover {
    border-color: var(--border-orange-subtle);
    transform: translateY(-4px);
    box-shadow: 0 16px 30px rgba(0, 0, 0, 0.7);
}

.test-video-embed {
    position: relative;
    width: 100%;
    padding-top: 56.25%; /* 16:9 */
    background: #000000;
}

.test-video-embed iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.test-content-wrap {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
    justify-content: space-between;
}

.test-quote {
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-style: italic;
    margin-bottom: 16px;
    line-height: 1.5;
}

.test-author-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 12px;
    border-top: 1px solid var(--border-subtle);
}

.test-author-name {
    font-size: 0.85rem;
    font-weight: 700;
    color: #ffffff;
}

.test-author-role {
    font-size: 0.75rem;
    color: var(--accent-orange-bright);
}

/* ==========================================================================
   7. MENTOR SECTION (CHEF KAKÁ GOMES)
   ========================================================================== */
.section-mentor {
    padding: 80px 0;
    border-top: 1px solid var(--border-subtle);
}

.mentor-card-layout {
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 48px;
    align-items: center;
    background: var(--bg-surface);
    border: 1px solid var(--border-orange-subtle);
    border-radius: var(--radius-lg);
    padding: 48px;
    position: relative;
    overflow: hidden;
}

.mentor-image-container {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.7);
    aspect-ratio: 4 / 5;
    background: #141418;
}

.mentor-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
}

.mentor-info-col {
    display: flex;
    flex-direction: column;
}

.mentor-badge {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent-orange);
    margin-bottom: 10px;
}

.mentor-name {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 20px;
    line-height: 1.1;
}

.mentor-bullets {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 28px;
}

.mentor-bullets li {
    font-size: 0.95rem;
    color: #cbd5e1;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    line-height: 1.5;
}

.mentor-bullet-dot {
    flex-shrink: 0;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--accent-orange);
    margin-top: 7px;
}

.mentor-social-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--accent-orange-light);
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition-smooth);
}

.mentor-social-link:hover {
    color: #ffffff;
}

/* ==========================================================================
   8. FOOTER
   ========================================================================== */
.main-footer {
    padding: 40px 0;
    border-top: 1px solid var(--border-subtle);
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.footer-brand {
    font-family: var(--font-heading);
    font-weight: 800;
    letter-spacing: 3px;
    color: #ffffff;
    margin-bottom: 8px;
}

/* ==========================================================================
   9. MODAL DE CAPTURA CONVERSACIONAL (ESTILO TYPEBOT) & AGENDA GOOGLE
   ========================================================================== */
.modal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.88);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.modal-backdrop.active {
    opacity: 1;
    visibility: visible;
}

.modal-card {
    background: #111116;
    border: 1px solid var(--border-orange-glow);
    border-radius: var(--radius-lg);
    width: 100%;
    max-width: 520px;
    max-height: 94vh;
    overflow-y: auto;
    padding: 32px 30px;
    position: relative;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.95), 0 0 45px rgba(255, 107, 0, 0.22);
    transform: translateY(20px) scale(0.97);
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1), max-width 0.3s ease;
}

.modal-backdrop.active .modal-card {
    transform: translateY(0) scale(1);
}

/* Expansão suave na etapa da agenda */
.modal-card.step-calendar-active {
    max-width: 680px;
    padding: 28px 24px 24px;
}

.modal-close-btn {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: var(--text-secondary);
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-smooth);
    z-index: 10;
}

.modal-close-btn:hover {
    background: rgba(255, 255, 255, 0.18);
    color: #ffffff;
}

/* Barra de Navegação Superior do Typebot */
.typebot-header-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
    padding-right: 36px;
    min-height: 28px;
}

.typebot-back-btn {
    background: none;
    border: none;
    color: var(--text-secondary);
    font-size: 0.84rem;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 4px 8px;
    border-radius: var(--radius-sm);
    transition: var(--transition-smooth);
    visibility: hidden;
}

.typebot-back-btn.visible {
    visibility: visible;
}

.typebot-back-btn:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.08);
}

.typebot-step-count {
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--accent-orange-light);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.typebot-progress-track {
    width: 100%;
    height: 5px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 999px;
    overflow: hidden;
    margin-bottom: 24px;
}

.typebot-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #ff6b00, #ff9d4d);
    border-radius: 999px;
    transition: width 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Animação e Layout das Etapas */
.typebot-step {
    display: none;
}

.typebot-step.active {
    display: block;
    animation: fadeInTypebotStep 0.3s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes fadeInTypebotStep {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.typebot-step-badge {
    display: inline-block;
    padding: 3px 10px;
    background: rgba(255, 107, 0, 0.12);
    border: 1px solid rgba(255, 107, 0, 0.32);
    border-radius: var(--radius-full);
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--accent-orange-bright);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.typebot-question {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.32;
    margin-bottom: 6px;
}

.typebot-question strong {
    color: var(--accent-orange-light);
}

.typebot-hint {
    font-size: 0.88rem;
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.45;
}

.typebot-input-wrap {
    margin-bottom: 16px;
}

.typebot-input {
    width: 100%;
    padding: 13px 16px;
    background: var(--bg-surface-elevated);
    border: 1.5px solid rgba(255, 255, 255, 0.14);
    border-radius: var(--radius-sm);
    color: #ffffff;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition-smooth);
}

.typebot-input:focus {
    outline: none;
    border-color: var(--accent-orange);
    box-shadow: 0 0 0 3px rgba(255, 107, 0, 0.25);
    background: #1c1c24;
}

.typebot-input::placeholder {
    color: var(--text-muted);
}

.btn-typebot-next {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 15px 24px;
    background: linear-gradient(135deg, #ff6b00 0%, #ea580c 100%);
    color: #ffffff;
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    border: none;
    border-radius: var(--radius-sm);
    cursor: pointer;
    box-shadow: 0 8px 24px rgba(255, 107, 0, 0.35);
    transition: var(--transition-smooth);
}

.btn-typebot-next:hover {
    background: linear-gradient(135deg, #ff7d1a 0%, #f05a00 100%);
    transform: translateY(-1px);
    box-shadow: 0 10px 28px rgba(255, 107, 0, 0.5);
}

.typebot-press-enter {
    font-size: 0.76rem;
    color: var(--text-muted);
    text-align: center;
    margin-top: 10px;
}

/* Opções de Escolha Rápida (Passos 4 e 5) */
.typebot-options-grid {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 12px;
}

.typebot-opt-btn {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 13px 16px;
    background: var(--bg-surface-elevated);
    border: 1.5px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-sm);
    color: #ffffff;
    font-family: var(--font-body);
    font-size: 0.94rem;
    text-align: left;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.typebot-opt-btn:hover {
    border-color: var(--accent-orange);
    background: rgba(255, 107, 0, 0.1);
    transform: translateX(3px);
}

.typebot-opt-btn.selected {
    border-color: var(--accent-orange);
    background: rgba(255, 107, 0, 0.2);
    box-shadow: 0 0 12px rgba(255, 107, 0, 0.3);
}

.typebot-opt-key {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--accent-orange-light);
    flex-shrink: 0;
}

.typebot-opt-text {
    flex: 1;
    font-weight: 500;
    line-height: 1.35;
}

.field-error-msg {
    font-size: 0.8rem;
    color: #f87171;
    display: none;
    margin-top: 6px;
    line-height: 1.35;
}

/* Etapa 6: Sucesso e Agenda Google Indexada */
.typebot-success-header {
    text-align: center;
    margin-bottom: 16px;
}

.success-badge-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 14px;
    background: rgba(16, 185, 129, 0.12);
    border: 1px solid rgba(16, 185, 129, 0.35);
    border-radius: var(--radius-full);
    font-size: 0.78rem;
    font-weight: 700;
    color: #34d399;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.typebot-success-title {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 4px;
    line-height: 1.25;
}

.typebot-success-desc {
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.4;
    max-width: 500px;
    margin: 0 auto;
}

.calendar-embed-wrapper {
    position: relative;
    width: 100%;
    height: 520px;
    background: #ffffff;
    border-radius: var(--radius-md);
    overflow: hidden;
    margin-bottom: 14px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.google-calendar-frame {
    width: 100%;
    height: 100%;
    border: 0;
}

.calendar-direct-action {
    display: flex;
    justify-content: center;
}

.btn-calendar-external {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 14px 20px;
    background: linear-gradient(135deg, #ff6b00 0%, #ea580c 100%);
    color: #ffffff;
    text-decoration: none;
    font-family: var(--font-heading);
    font-size: 0.92rem;
    font-weight: 800;
    letter-spacing: 0.5px;
    border-radius: var(--radius-sm);
    box-shadow: 0 8px 24px rgba(255, 107, 0, 0.35);
    transition: var(--transition-smooth);
    text-align: center;
}

.btn-calendar-external:hover {
    background: linear-gradient(135deg, #ff7d1a 0%, #f05a00 100%);
    transform: translateY(-1px);
    box-shadow: 0 12px 28px rgba(255, 107, 0, 0.5);
}

.modal-security-note {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-align: center;
    margin-top: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

/* ==========================================================================
   10. RESPONSIVE BREAKPOINTS
   ========================================================================== */
@media (max-width: 960px) {
    .contrast-grid,
    .deliverables-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .mentor-card-layout {
        grid-template-columns: 1fr;
        padding: 32px 24px;
        gap: 32px;
    }

    .mentor-image-container {
        max-width: 320px;
        margin: 0 auto;
    }
}

@media (max-width: 640px) {
    .site-container {
        padding: 0 16px;
    }

    .hero-section {
        padding: 20px 0 40px;
    }

    .hero-main-title {
        font-size: 1.85rem;
    }

    .vsl-frame-wrapper {
        padding: 6px;
    }

    .btn-primary-vsl {
        font-size: 1rem;
        padding: 16px 20px;
    }

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

    .deliverables-grid {
        grid-template-columns: 1fr;
    }

    .deliverable-card-white {
        padding: 30px 20px;
    }

    .modal-card {
        padding: 24px 18px;
    }

    .modal-card.step-calendar-active {
        padding: 20px 12px 18px;
    }

    .calendar-embed-wrapper {
        height: 480px;
    }
}
