/* Pitch Deck Specific Styles */

/* Base Reset & Snap Setup */
html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    overflow: hidden; /* Hide main body scroll */
}

.pitch-container {
    width: 100%;
    height: 100vh;
    scroll-snap-type: y mandatory;
    overflow-y: scroll;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none;  /* Internet Explorer 10+ */
    scroll-behavior: smooth;
}

.pitch-container::-webkit-scrollbar { 
    display: none; /* Safari and Chrome */
}

.pitch-slide {
    position: relative;
    width: 100%;
    height: 100vh;
    scroll-snap-align: start;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--bg-base);
    overflow: hidden;
}

/* Header Minimal */
.pitch-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 40px;
    z-index: 100;
    background: linear-gradient(to bottom, rgba(10, 10, 12, 0.9) 0%, rgba(10, 10, 12, 0) 100%);
    pointer-events: none; /* Let clicks pass through the gradient */
}

.pitch-header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    pointer-events: auto; /* Re-enable clicks on header items */
}

.pitch-header .logo-img {
    height: 48px;
}

.btn-sm {
    padding: 10px 24px;
    font-size: 0.9rem;
}

/* Side Navigation (Dots) */
.pitch-nav {
    position: fixed;
    right: 40px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 100;
}

.pitch-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.pitch-nav a {
    display: block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.pitch-nav a.active {
    background-color: var(--primary);
    transform: scale(1.4);
    box-shadow: 0 0 10px var(--primary-glow);
}

.pitch-nav a:hover {
    background-color: rgba(255, 255, 255, 0.8);
}

/* Slide 1: Hero Video / Image */
.slide-hero {
    background-color: var(--black);
}

.bg-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translateX(-50%) translateY(-50%);
    z-index: 0;
    opacity: 0.6;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(10, 10, 12, 0.95) 0%, rgba(10, 10, 12, 0.7) 100%);
    z-index: 1;
}

.slide-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    text-align: center;
    padding: 0 20px;
}

.slide-hero .slide-content {
    max-width: 900px;
    text-align: center; /* Center for the hero */
}

.slide-hero h1 {
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.slide-hero h2 {
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--text-secondary);
    line-height: 1.4;
    margin-bottom: 24px;
}

.slide-hero p {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    font-size: 0.9rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0) translateX(-50%); }
    40% { transform: translateY(-10px) translateX(-50%); }
    60% { transform: translateY(-5px) translateX(-50%); }
}

/* Animations for Slides */
.scroll-reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1s cubic-bezier(0.2, 0.8, 0.2, 1), transform 1s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.scroll-reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* ── 768px: Teléfonos grandes y landscape ── */
@media (max-width: 768px) {
    .slide-overlay {
        background: linear-gradient(to bottom, rgba(10, 10, 12, 0.95) 0%, rgba(10, 10, 12, 0.85) 40%, rgba(10, 10, 12, 0.95) 100%);
    }
    
    .pitch-header { padding: 14px 20px; }
    .pitch-nav { display: none; }

    .slide-hero h1 { font-size: 2.5rem; }
    .slide-hero h2 { font-size: 1.1rem; }
    .slide-hero p  { font-size: 0.95rem; }

    .slide-title       { font-size: 1.85rem; line-height: 1.25; }
    .slide-description { font-size: 1rem; margin-bottom: 28px; }

    /* Dashboard: ocultar sidebar estrecha */
    .mockup-sidebar { display: none; }
    .dashboard-mockup { height: 280px; }

    /* Funnel: reducir contracción para evitar ilegibilidad */
    .funnel-step.step-2 { width: 90%; }
    .funnel-step.step-3 { width: 80%; }
    .funnel-step.step-4 { width: 68%; }

    /* Process */
    .timeline-step { padding: 20px; }
    .step-number { font-size: 2rem; }

    /* Closing */
    .slide-closing .slide-title { font-size: 2rem !important; }
    .closing-logo { height: 48px; margin-bottom: 28px; }

    /* Split content */
    .split-content { padding: 8px 20px 36px; }

    /* AI/Funnel wrapper */
    .funnel-wrapper { padding: 24px 20px; }
}

/* Shared Text Styles */
.slide-label {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary);
    margin-bottom: 24px;
    font-weight: 600;
}

.slide-title {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 24px;
    color: var(--text-primary);
}

.slide-description {
    font-size: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 40px;
}

.text-center { text-align: center; margin-left: auto; margin-right: auto; }
.blur-text { max-width: 800px; }

/* Delay classes for staggered animations */
.delay-1 { transition-delay: 200ms; }
.delay-2 { transition-delay: 400ms; }
.delay-3 { transition-delay: 600ms; }
.delay-4 { transition-delay: 800ms; }
.delay-5 { transition-delay: 1000ms; }
.delay-6 { transition-delay: 1200ms; }

/* SLIDE 2: Split Layout / Problem */
.split-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
    height: 100vh;
}

.split-image {
    background-size: cover;
    background-position: center;
    position: relative;
    height: 100%;
}

.image-overlay-problem {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(to right, rgba(10, 10, 12, 0.4), var(--bg-base));
}

.split-content {
    padding: 100px 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: var(--bg-base);
}

.problem-list {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.problem-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.problem-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(227, 6, 19, 0.1);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.problem-item h4 {
    font-size: 1.2rem;
    margin-bottom: 8px;
    color: white;
}

.problem-item p {
    color: var(--text-secondary);
    font-size: 1rem;
    margin: 0;
    line-height: 1.5;
}

/* SLIDE 3: Dashboard Mockup */
.slide-solution .slide-content { max-width: 1000px; }

.dashboard-mockup {
    margin-top: 60px;
    background: #111114;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 500px;
}

.dashboard-header {
    background: #1A1A1E;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.dashboard-header .dots {
    display: flex;
    gap: 8px;
    margin-right: 20px;
}

.dashboard-header .dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #333;
}
.dashboard-header .dots span:nth-child(1) { background: #FF5A52; }
.dashboard-header .dots span:nth-child(2) { background: #E6C029; }
.dashboard-header .dots span:nth-child(3) { background: #53C22B; }

.url-bar {
    background: #000;
    border-radius: 6px;
    padding: 6px 16px;
    font-size: 0.8rem;
    color: var(--text-muted);
    flex-grow: 1;
    text-align: center;
    max-width: 400px;
    margin: 0 auto;
}

.dashboard-body {
    display: flex;
    flex: 1;
}

.mockup-sidebar {
    width: 200px;
    background: #151518;
    padding: 24px;
    border-right: 1px solid rgba(255, 255, 255, 0.05);
}

.mockup-line {
    height: 12px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 6px;
    margin-bottom: 16px;
}
.mockup-line.short { width: 60%; }
.mockup-line.medium { width: 80%; }

.mockup-main {
    flex: 1;
    padding: 30px;
    display: flex;
    gap: 30px;
}

.mockup-hero {
    width: 300px;
    height: 100%;
    border-radius: 12px;
    background-size: cover;
    background-position: center;
}

.mockup-content {
    flex: 1;
}

.mockup-content h4 {
    font-size: 1.5rem;
    color: white;
    margin-bottom: 16px;
}

.mockup-badges {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.mockup-badges .badge {
    background: rgba(255, 255, 255, 0.1);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    color: var(--text-secondary);
}

.mockup-content p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 30px;
}

.mockup-action {
    display: inline-block;
    background: var(--primary);
    color: white;
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 500;
}

/* SLIDE 4: Timeline */
/* ── Slide background images ─────────────────────── */
.slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(10, 10, 12, 0.88) 0%,
        rgba(10, 10, 12, 0.78) 40%,
        rgba(10, 10, 12, 0.88) 100%
    );
    z-index: 0;
    pointer-events: none;
}
.slide-benefits,
.slide-process,
.slide-business,
.slide-commission,
.slide-cases {
    background-size: cover;
    background-position: center;
}
.slide-benefits .slide-content,
.slide-process .slide-content,
.slide-business .slide-content,
.slide-commission .slide-content,
.slide-cases .slide-content {
    position: relative;
    z-index: 1;
}
.slide-benefits  { background-image: url('./assets/img-beneficios.jpg'); }
.slide-process   { background-image: url('./assets/img-proceso.jpg'); background-position: 60% center; }
.slide-business  { background-image: url('./assets/img-modelo-comercial.jpg'); }
.slide-commission { background-image: url('./assets/img-incluye.jpg'); background-position: center 30%; }
.slide-cases     { background-image: url('./assets/img-casos-reales.jpg'); background-position: center 40%; }

.slide-process .slide-content { max-width: 1200px; }

.process-timeline {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
    text-align: left;
}

.timeline-step {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 16px;
    position: relative;
    transition: transform 0.3s ease;
}

.timeline-step:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.04);
}

.step-number {
    font-size: 3rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.05);
    position: absolute;
    top: 20px;
    right: 20px;
    line-height: 1;
}

.timeline-step h4 {
    font-size: 1.25rem;
    color: white;
    margin-bottom: 12px;
    position: relative;
    z-index: 1;
}

.timeline-step p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
    position: relative;
    z-index: 1;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .split-layout {
        grid-template-columns: 1fr;
        height: auto; /* fix: era 100vh, causaba overflow en mobile */
    }
    .split-image {
        display: none; /* Hide image on mobile to focus on problem text */
    }
    .split-content {
        padding: 8px 24px 40px; /* slide padding-top:100px ya cubre el header */
    }
    .process-timeline {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .slide-title { font-size: 2rem; }
    .slide-description { font-size: 1.1rem; }
    .dashboard-mockup { height: 340px; }
    .mockup-main { flex-direction: column; }
    .mockup-hero { width: 100%; height: 140px; }
    .mockup-sidebar { width: 160px; }
    /* Cases */
    .case-card { padding: 24px; }
    /* Benefits */
    .benefit-card { padding: 28px 22px; }
}


/* SLIDE 5: Business Model — Híbrido */
.slide-business {
    height: 100vh;
    padding: 0 20px;
    align-items: center;
}
.slide-business .slide-content {
    max-width: 1100px;
    width: 100%;
}

/* Activation intro card */
.activation-intro {
    background: linear-gradient(145deg, #1A1A1E, #111114);
    border: 1px solid rgba(227, 6, 19, 0.15);
    border-radius: 20px;
    padding: 32px 40px;
    margin-top: 32px;
    display: flex;
    align-items: center;
    gap: 48px;
}
.activation-formula {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-shrink: 0;
}
.formula-part {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}
.formula-part i { color: var(--primary); width: 24px; height: 24px; }
.formula-part span { font-size: 0.95rem; font-weight: 600; color: white; white-space: nowrap; }
.formula-plus { color: var(--primary); font-size: 2rem; font-weight: 800; line-height: 1; }
.activation-intro > p { color: var(--text-secondary); font-size: 1rem; line-height: 1.6; margin: 0; }

/* Plan cards */
.activation-plans {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 24px;
}
.plan-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 16px;
    padding: 28px 24px;
    text-align: center;
    transition: all 0.3s ease;
}
.plan-card:hover { background: rgba(255,255,255,0.04); transform: translateY(-4px); }
.plan-card.plan-featured {
    background: linear-gradient(145deg, rgba(227,6,19,0.12), rgba(227,6,19,0.04));
    border-color: rgba(227,6,19,0.4);
    box-shadow: 0 0 40px rgba(227,6,19,0.08);
}
.plan-badge {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-muted);
    margin-bottom: 14px;
}
.plan-featured .plan-badge { color: var(--primary); }
.plan-price-wrap {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 10px;
    margin-bottom: 4px;
}
.plan-price { font-size: 2rem; font-weight: 800; color: white; }
.plan-featured .plan-price { color: var(--primary); }
.plan-regular {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-decoration: line-through;
    opacity: 0.7;
}
.plan-label { font-size: 0.75rem; color: var(--text-muted); display: block; margin-bottom: 14px; }
.plan-divider { height: 1px; background: rgba(255,255,255,0.06); margin: 14px 0; }
.plan-descriptor { font-size: 0.9rem; color: var(--text-secondary); line-height: 1.6; margin: 0; }

/* Includes section */
.includes-section { margin-top: 24px; }
.includes-title {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-muted);
    font-weight: 600;
    margin-bottom: 14px;
    text-align: center;
}
.includes-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}
.include-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.04);
    border-radius: 10px;
    padding: 12px 14px;
}
.include-item i { color: var(--primary); width: 14px; height: 14px; flex-shrink: 0; margin-top: 2px; }
.include-item span { font-size: 0.82rem; color: var(--text-secondary); line-height: 1.4; }

/* Trust block */
.trust-block {
    margin-top: 20px;
    background: linear-gradient(135deg, rgba(227,6,19,0.18), rgba(227,6,19,0.07));
    border: 1px solid rgba(227,6,19,0.35);
    border-radius: 14px;
    padding: 20px 28px;
    display: flex;
    align-items: center;
    gap: 16px;
}
.trust-block.scroll-reveal { transform: translateY(30px) scale(0.98); }
.trust-block.scroll-reveal.active { transform: translateY(0) scale(1); }
.trust-block i { color: var(--primary); width: 26px; height: 26px; flex-shrink: 0; }
.trust-block p { margin: 0; font-size: 0.98rem; font-weight: 600; color: white; line-height: 1.4; }

/* Commission at close */
.commission-close {
    margin-top: 20px;
    background: linear-gradient(145deg, #1A1A1E, #111114);
    border: 1px solid rgba(227, 6, 19, 0.3);
    border-radius: 20px;
    padding: 36px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    box-shadow: 0 0 60px rgba(227, 6, 19, 0.06);
}
.commission-close-left { display: flex; flex-direction: column; gap: 8px; }
.commission-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary);
    font-weight: 700;
}
.commission-close strong {
    font-size: 2.4rem;
    color: white;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.5px;
}
.commission-sub { font-size: 0.95rem; color: var(--text-secondary); }
.commission-icon {
    width: 72px;
    height: 72px;
    background: rgba(227, 6, 19, 0.1);
    border: 1px solid rgba(227, 6, 19, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.commission-icon i { width: 32px; height: 32px; color: var(--primary); }

/* SLIDE 6: Commission / Result */
.slide-commission .slide-content {
    max-width: 800px;
    width: 100%;
    display: flex;
    flex-direction: column;
}
.slide-commission .slide-title { margin-bottom: 40px; }
.slide-commission .trust-block { margin-top: 0; margin-bottom: 20px; }
.slide-commission .commission-close { margin-top: 0; }

/* Legal note */
.legal-note {
    text-align: center;
    font-size: 0.72rem;
    color: var(--text-muted);
    margin-top: 14px;
    opacity: 0.55;
}

/* SLIDE 6: AI Agent */
.split-layout.reverse .split-content {
    order: 2;
}
.split-layout.reverse .split-image {
    order: 1;
}
.benefit-list {
    list-style: none;
    padding: 0; margin: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.benefit-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.5;
}
.benefit-list i {
    color: var(--primary);
    flex-shrink: 0;
    margin-top: 2px;
}

.chat-container {
    background-image: url('./assets/technology-integrated-everyday-life.jpg');
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
}
.chat-container::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(10, 10, 12, 0.85); /* Dark overlay */
}
.chat-mockup {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 450px;
    background: rgba(20, 20, 25, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 30px 20px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.6);
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.chat-message {
    display: flex;
    flex-direction: column;
    max-width: 85%;
}
.chat-message.user {
    align-self: flex-end;
}
.chat-message.user p {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    padding: 14px 18px;
    border-radius: 16px;
    border-bottom-right-radius: 4px;
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}
.chat-message.ai {
    align-self: flex-start;
    flex-direction: row;
    gap: 12px;
    max-width: 95%;
}
.ai-avatar {
    width: 32px; height: 32px;
    border-radius: 8px;
    background: #000;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.ai-avatar img { width: 20px; }
.ai-bubble p {
    background: rgba(227, 6, 19, 0.1);
    border: 1px solid rgba(227, 6, 19, 0.2);
    color: white;
    padding: 14px 18px;
    border-radius: 16px;
    border-top-left-radius: 4px;
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}
.ai-bubble strong { color: var(--primary); }

/* SLIDE 7: Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 60px;
}
.benefit-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 40px 30px;
    border-radius: 16px;
    text-align: left;
    transition: all 0.3s ease;
}
.benefit-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(227, 6, 19, 0.3);
    transform: translateY(-5px);
}
.benefit-card i {
    color: var(--primary);
    width: 36px; height: 36px;
    margin-bottom: 20px;
}
.benefit-card h4 {
    font-size: 1.3rem;
    color: white;
    margin-bottom: 12px;
}
.benefit-card p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

/* SLIDE 8: Closing CTA */
.slide-closing {
    background-image: url('./assets/life-style.jpg');
    background-size: cover;
    background-position: center;
}
.slide-closing .video-overlay {
    background: linear-gradient(to top, rgba(10, 10, 12, 1) 0%, rgba(10, 10, 12, 0.8) 100%);
}
.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
}

@media (max-width: 992px) {
    .split-layout.reverse .split-content { order: 1; }
    .split-layout.reverse .split-image { order: 2; height: 380px; display: flex; }
    .benefits-grid { grid-template-columns: 1fr; gap: 16px; margin-top: 24px; }
    .slide-closing .slide-title { font-size: 2.4rem !important; }
    .activation-intro { flex-direction: column; gap: 20px; padding: 24px 20px; }
    .activation-plans { grid-template-columns: 1fr; gap: 14px; }
    .includes-grid { grid-template-columns: repeat(2, 1fr); }
    .commission-close { flex-direction: column; align-items: flex-start; gap: 12px; }
    .cta-buttons { flex-direction: column; align-items: center; }
    .chat-mockup { max-width: 100%; padding: 20px 15px; }
    .funnel-step { padding: 12px 16px; }
    .funnel-number { font-size: 1.3rem; }
    .pitch-slide { height: auto; min-height: 100vh; padding: 100px 0; }
    .pitch-container { scroll-snap-type: none; overflow-y: auto; }
}

/* Hero Actions */
.hero-actions {
    margin-top: 2rem;
}

/* Slide 8: Closing — Buttons CTA */
.cta-buttons {
    display: flex;
    gap: 24px;
    justify-content: center;
    margin-top: 40px;
}

/* Slide 8: Closing — Outline button on dark background */
.slide-closing .btn-outline {
    padding: 16px 40px;
    font-size: 1.1rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    border-radius: 8px;
    font-weight: 500;
}

/* Slide 8: Closing — Primary button size */
.slide-closing .btn-primary {
    padding: 16px 40px;
    font-size: 1.1rem;
    border-radius: 8px;
}

/* Slide 8: Closing — Title override */
.slide-closing .slide-title {
    font-size: 4rem;
    max-width: 900px;
    color: white;
}

/* Slide 8: Closing — Description color */
.slide-closing .slide-description {
    color: rgba(255, 255, 255, 0.7);
}

/* Slide 8: Closing — Logo */
.closing-logo {
    height: 60px;
    margin-bottom: 40px;
    opacity: 0.8;
}

/* Slide 8: Closing — Content z-index */
.slide-closing .slide-content {
    z-index: 2;
    position: relative;
}

/* AI Funnel Graphic Styles */
.funnel-wrapper {
    background-image: url('./assets/technology-integrated-everyday-life.jpg');
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    height: 100%;
}
.funnel-wrapper::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(10, 10, 12, 0.85); /* Dark overlay */
}
.funnel-container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 450px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}
.funnel-step {
    background: rgba(20, 20, 25, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 16px 24px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
}
.funnel-step .funnel-info {
    display: flex;
    align-items: center;
    gap: 12px;
}
.funnel-icon {
    width: 36px; height: 36px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    color: var(--text-secondary);
}
.funnel-text {
    font-size: 0.95rem;
    color: white;
    font-weight: 500;
}
.funnel-number {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-muted);
}
/* Widths for Funnel Shape */
.funnel-step.step-1 { width: 100%; }
.funnel-step.step-2 { width: 85%; }
.funnel-step.step-3 { width: 70%; }
.funnel-step.step-4 { 
    width: 55%; 
    background: linear-gradient(135deg, rgba(227, 6, 19, 0.2), rgba(227, 6, 19, 0.05));
    border-color: rgba(227, 6, 19, 0.5);
}
.funnel-step.step-4 .funnel-icon {
    background: var(--primary);
    color: white;
}
.funnel-step.step-4 .funnel-number {
    color: var(--primary);
}

/* Funnel Animation Logic */
.funnel-container .funnel-step {
    opacity: 0;
    transform: translateY(20px) scale(0.95);
}
.scroll-reveal.active .funnel-step.step-1 { opacity: 1; transform: translateY(0) scale(1); transition-delay: 300ms; }
.scroll-reveal.active .funnel-step.step-2 { opacity: 1; transform: translateY(0) scale(1); transition-delay: 600ms; }
.scroll-reveal.active .funnel-step.step-3 { opacity: 1; transform: translateY(0) scale(1); transition-delay: 900ms; }
.scroll-reveal.active .funnel-step.step-4 { opacity: 1; transform: translateY(0) scale(1); transition-delay: 1200ms; }

/* SLIDE 9: Casos Reales */
.slide-cases .slide-content { max-width: 1100px; width: 100%; }
.cases-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 32px;
}
.case-card {
    background: linear-gradient(145deg, #1A1A1E, #111114);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 36px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    transition: transform 0.3s ease, border-color 0.3s ease;
}
.case-card:hover {
    transform: translateY(-4px);
    border-color: rgba(227, 6, 19, 0.3);
}
.case-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}
.case-logo {
    height: 36px;
    max-width: 180px;
    object-fit: contain;
    object-position: left center;
}
.case-icon {
    width: 36px;
    height: 36px;
    background: rgba(227, 6, 19, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    flex-shrink: 0;
}
.case-icon i { width: 18px; height: 18px; }
.case-name { font-size: 1rem; font-weight: 700; color: white; }
.case-metrics {
    display: flex;
    gap: 24px;
    align-items: flex-end;
}
.case-metric-primary,
.case-metric-secondary {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.case-metric-primary .metric-value {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
    letter-spacing: -1px;
}
.case-metric-secondary .metric-value {
    font-size: 2rem;
    font-weight: 800;
    color: white;
    line-height: 1;
}
.metric-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}
.case-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--text-secondary);
}
.case-meta i { width: 14px; height: 14px; color: var(--primary); flex-shrink: 0; }
.case-timing {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(227, 6, 19, 0.12);
    border: 1px solid rgba(227, 6, 19, 0.3);
    border-radius: 6px;
    padding: 5px 10px;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.75);
    width: fit-content;
}
.case-timing i { width: 13px; height: 13px; color: var(--primary); flex-shrink: 0; }
.case-timing strong { color: var(--primary); font-weight: 700; }
.case-text {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    padding-top: 16px;
}
.cases-insight {
    margin-top: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
    justify-content: center;
    color: var(--text-muted);
    font-size: 0.85rem;
}
.cases-insight i { width: 16px; height: 16px; color: var(--primary); flex-shrink: 0; }

@media (max-width: 992px) {
    .cases-grid { grid-template-columns: 1fr; }
    .case-metric-primary .metric-value { font-size: 2.2rem; }
}

@media (max-width: 600px) {
    .includes-grid { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════════════════════
   480px — Teléfonos pequeños (iPhone SE, Galaxy A, etc.)
══════════════════════════════════════════════════ */
@media (max-width: 480px) {

    /* ── Base slides ── */
    .pitch-slide { padding: 80px 0 40px; }

    /* ── Slide 1: Hero ── */
    .slide-hero h1 {
        font-size: 1.9rem;
        letter-spacing: -0.5px;
        line-height: 1.15;
    }
    .slide-hero h2 { font-size: 0.95rem; margin-bottom: 14px; }
    .slide-hero p  { font-size: 0.875rem; }
    .scroll-indicator { bottom: 14px; font-size: 0.75rem; }
    .scroll-indicator i { width: 14px; height: 14px; }

    /* ── Tipografía compartida ── */
    .slide-label       { font-size: 0.72rem; margin-bottom: 10px; }
    .slide-title       { font-size: 1.5rem; line-height: 1.2; margin-bottom: 14px; }
    .slide-description { font-size: 0.9rem; line-height: 1.55; margin-bottom: 18px; }

    /* ── Slide 2: Problema ── */
    .split-content { padding: 8px 18px 28px; }
    .problem-list  { gap: 18px; }
    .problem-icon  { width: 40px; height: 40px; border-radius: 10px; }
    .problem-item h4 { font-size: 0.95rem; margin-bottom: 4px; }
    .problem-item p  { font-size: 0.85rem; }

    /* ── Slide 3: Dashboard — ocultar en phones ── */
    .dashboard-mockup { display: none; }

    /* ── Slide 4: Funnel IA ── */
    .funnel-wrapper { padding: 12px 12px 16px; }
    .funnel-step    { padding: 10px 12px; border-radius: 10px; }
    .funnel-step.step-2 { width: 93%; }
    .funnel-step.step-3 { width: 85%; }
    .funnel-step.step-4 { width: 74%; }
    .funnel-text   { font-size: 0.78rem; line-height: 1.35; }
    .funnel-text span { font-size: 0.72rem !important; }
    .funnel-number { font-size: 1.1rem; }
    .funnel-icon   { width: 28px; height: 28px; border-radius: 6px; }
    .funnel-icon i { width: 14px; height: 14px; }

    /* ── Slide 5: Beneficios ── */
    .benefits-grid { gap: 12px; margin-top: 16px; }
    .benefit-card  { padding: 18px 14px; }
    .benefit-card h4 { font-size: 1.05rem; margin-bottom: 6px; }
    .benefit-card p  { font-size: 0.85rem; }
    .benefit-card i  { width: 28px; height: 28px; margin-bottom: 14px; }

    /* ── Slide 6: Proceso ── */
    .process-timeline { gap: 10px; margin-top: 16px; }
    .timeline-step    { padding: 14px 14px 14px 16px; }
    .timeline-step h4 { font-size: 0.95rem; margin-bottom: 4px; }
    .timeline-step p  { font-size: 0.82rem; line-height: 1.4; margin: 0; }
    .step-number      { font-size: 1.7rem; top: 8px; right: 10px; }

    /* ── Slide 7: Modelo Comercial ── */
    .activation-intro  { padding: 16px 14px; gap: 12px; }
    .formula-part span { font-size: 0.82rem; }
    .formula-plus      { font-size: 1.4rem; }
    .activation-intro > p { font-size: 0.875rem; line-height: 1.5; }
    .activation-plans  { gap: 10px; margin-top: 14px; }
    .plan-card         { padding: 18px 14px; }
    .plan-price        { font-size: 1.65rem; }
    .plan-descriptor   { font-size: 0.82rem; }
    .plan-badge        { font-size: 0.62rem; }

    /* ── Slide 8: Qué Incluye ── */
    .includes-grid    { gap: 8px; }
    .include-item     { padding: 10px 12px; }
    .include-item span { font-size: 0.78rem; }
    .trust-block      { padding: 14px 14px; gap: 10px; }
    .trust-block p    { font-size: 0.875rem; }
    .commission-close { padding: 18px 14px; gap: 10px; }
    .commission-close strong { font-size: 1.75rem; }
    .commission-sub   { font-size: 0.82rem; }
    .commission-icon  { width: 52px; height: 52px; }
    .commission-icon i { width: 26px; height: 26px; }

    /* ── Slide 9: Casos Reales ── */
    .cases-grid  { gap: 12px; margin-top: 16px; }
    .case-card   { padding: 18px; gap: 12px; border-radius: 14px; }
    .case-metric-primary .metric-value  { font-size: 1.9rem; }
    .case-metric-secondary .metric-value { font-size: 1.35rem; }
    .metric-label { font-size: 0.65rem; }
    .case-metrics { gap: 16px; }
    .cases-insight { font-size: 0.75rem; gap: 8px; }

    /* ── Slide 10: Cierre ── */
    .closing-logo { height: 38px; margin-bottom: 18px; }
    .slide-closing .slide-title { font-size: 1.6rem !important; }
    .cta-buttons   { margin-top: 20px; gap: 10px; }
    .slide-closing .btn-primary { padding: 14px 28px; font-size: 0.95rem; }

    /* ── Slide 11: Booking ── */
    .booking-slide-inner { padding: 60px 16px 48px; gap: 28px; }
    .bk-slide-title { font-size: 1.7rem; }
    .bk-slide-desc  { font-size: 0.875rem; }
    .bk-widget      { padding: 18px 14px 24px; }
    .bk-day-grid    { gap: 3px; }
    .bk-day-btn     { padding: 9px 2px; border-radius: 8px; }
    .bk-day-name    { font-size: 0.55rem; }
    .bk-day-num     { font-size: 0.95rem; }
    .bk-time-grid   { grid-template-columns: repeat(3, 1fr); gap: 6px; }
    .bk-form-grid   { grid-template-columns: 1fr; }
    .bk-steps       { margin-bottom: 20px; }
    .bk-step span   { display: none; } /* solo mostrar números en phones */
}


/* ═══════════════════════════════════════════════════════════════
   BOOKING SLIDE — Slide 11: Flujo 3 pasos
═══════════════════════════════════════════════════════════════ */

.slide-booking {
    background: #070810;
    justify-content: flex-start;
    align-items: flex-start;
    overflow: auto;
    height: auto;
    min-height: 100vh;
    padding: 0;
    scroll-snap-align: start;
    position: relative;
}

/* Imagen de fondo */
.slide-booking-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.18;
    z-index: 0;
    filter: saturate(0.4);
}

/* Overlay degradado oscuro */
.slide-booking-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(7, 8, 16, 0.92) 0%,
        rgba(7, 8, 16, 0.75) 55%,
        rgba(7, 8, 16, 0.88) 100%
    );
    z-index: 1;
}

.booking-slide-inner {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 80px 40px 80px;
    display: grid;
    grid-template-columns: 1fr 672px;
    gap: 64px;
    align-items: center;
    min-height: 100vh;
    box-sizing: border-box;
}

/* ── Columna de texto ── */
.bk-slide-text { padding-right: 8px; }

.bk-slide-label {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #e30613;
    margin-bottom: 18px;
}

.bk-slide-title {
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 800;
    line-height: 1.1;
    color: #e8e8ed;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.bk-slide-desc {
    font-size: 1rem;
    color: rgba(160,160,171,0.75);
    line-height: 1.75;
    max-width: 420px;
    margin-bottom: 32px;
}

.bk-slide-meta { display: flex; flex-direction: column; gap: 10px; }

.bk-meta-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.82rem;
    color: rgba(160,160,171,0.55);
}

.bk-meta-dot {
    width: 5px; height: 5px;
    border-radius: 50%;
    background: #e30613;
    flex-shrink: 0;
    opacity: 0.7;
}

/* ── Botón WhatsApp ── */
.bk-whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(37, 211, 102, 0.1);
    border: 1px solid rgba(37, 211, 102, 0.25);
    color: #25d366;
    padding: 7px 14px;
    border-radius: 100px;
    font-size: 0.78rem;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s, border-color 0.2s;
}
.bk-whatsapp-btn:hover {
    background: rgba(37, 211, 102, 0.18);
    border-color: rgba(37, 211, 102, 0.45);
}

/* ── Widget columna ── */
.bk-widget-wrap { /* just a positioning wrapper */ }

/* ── Widget card ── */
.bk-widget {
    background: #0e1018;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 24px;
    padding: 28px 28px 32px;
}

.bk-widget-head { margin-bottom: 24px; }
.bk-widget-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: #e8e8ed;
    margin-bottom: 4px;
}
.bk-widget-sub {
    font-size: 0.75rem;
    color: rgba(160,160,171,0.4);
}

/* ── Step indicator ── */
.bk-steps {
    display: flex;
    align-items: center;
    margin-bottom: 28px;
}
.bk-step {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}
.bk-step span {
    font-size: 0.75rem;
    font-weight: 500;
    color: rgba(255,255,255,0.25);
    transition: color 0.2s;
}
.bk-step-num {
    width: 24px; height: 24px;
    border-radius: 50%;
    background: rgba(255,255,255,0.06);
    color: rgba(255,255,255,0.3);
    font-size: 0.7rem;
    font-weight: 700;
    display: flex; align-items: center; justify-content: center;
    transition: background 0.2s, color 0.2s;
    flex-shrink: 0;
}
.bk-step-active .bk-step-num {
    background: #e30613;
    color: #fff;
}
.bk-step-active span { color: #e8e8ed; }
.bk-step-done .bk-step-num {
    background: rgba(74,222,128,0.2);
    color: #4ade80;
}
.bk-step-done .bk-step-num::after { content: '✓'; }
.bk-step-done .bk-step-num { font-size: 0; } /* hide number */
.bk-step-done .bk-step-num::after { font-size: 0.7rem; }
.bk-step-done span { color: rgba(255,255,255,0.35); }
.bk-step-line {
    flex: 1;
    height: 1px;
    background: rgba(255,255,255,0.07);
    margin: 0 10px;
    transition: background 0.3s;
}
.bk-step-line.bk-line-done { background: rgba(74,222,128,0.3); }

/* ── Paso 1: Selector de día ── */
.bk-week-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}
.bk-nav-btn {
    width: 32px; height: 32px;
    border-radius: 10px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.5);
    font-size: 1.1rem;
    line-height: 1;
    cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: all 0.18s;
}
.bk-nav-btn:hover:not(:disabled) {
    background: rgba(255,255,255,0.1);
    color: #fff;
}
.bk-nav-btn:disabled { opacity: 0.25; cursor: not-allowed; }
.bk-week-label {
    font-size: 0.875rem;
    font-weight: 500;
    color: rgba(255,255,255,0.7);
}

/* Grilla de 7 días */
.bk-day-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 6px;
    margin-bottom: 16px;
}
.bk-day-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 12px 4px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.08);
    background: rgba(255,255,255,0.03);
    cursor: pointer;
    transition: all 0.18s;
    gap: 4px;
}
.bk-day-btn:hover:not(:disabled) {
    border-color: rgba(227,6,19,0.4);
    background: rgba(227,6,19,0.08);
}
.bk-day-selected {
    background: #e30613 !important;
    border-color: #e30613 !important;
}
.bk-day-selected .bk-day-name { color: rgba(255,255,255,0.7) !important; }
.bk-day-selected .bk-day-num  { color: #fff !important; }
.bk-day-disabled {
    background: rgba(255,255,255,0.02) !important;
    border-color: rgba(255,255,255,0.04) !important;
    cursor: not-allowed;
}
.bk-day-name {
    font-size: 0.6rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(255,255,255,0.35);
    transition: color 0.18s;
}
.bk-day-btn:hover:not(:disabled) .bk-day-name { color: rgba(255,255,255,0.7); }
.bk-day-disabled .bk-day-name { color: rgba(255,255,255,0.12) !important; }
.bk-day-num {
    font-size: 1.1rem;
    font-weight: 800;
    color: #e8e8ed;
    line-height: 1;
    transition: color 0.18s;
}
.bk-day-btn:hover:not(:disabled) .bk-day-num { color: #fff; }
.bk-day-disabled .bk-day-num { color: rgba(255,255,255,0.15) !important; }
.bk-hint {
    font-size: 0.72rem;
    color: rgba(255,255,255,0.2);
    text-align: center;
    margin-top: 4px;
}

/* ── Paso 2: Franjas horarias ── */
.bk-back-btn {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: none;
    border: none;
    color: rgba(255,255,255,0.35);
    font-size: 0.75rem;
    cursor: pointer;
    padding: 0;
    margin-bottom: 16px;
    font-family: inherit;
    transition: color 0.18s;
}
.bk-back-btn:hover { color: rgba(255,255,255,0.7); }
.bk-step-date {
    font-size: 0.95rem;
    font-weight: 600;
    color: #e8e8ed;
    margin-bottom: 4px;
    text-transform: capitalize;
}
.bk-slot-hint {
    font-size: 0.75rem;
    color: rgba(160,160,171,0.4);
    margin-bottom: 14px;
}
.bk-period-title {
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(160,160,171,0.35);
    margin-bottom: 8px;
}
.bk-period-afternoon { margin-top: 16px; }
.bk-time-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
}
.bk-time-btn {
    padding: 12px 8px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.08);
    background: rgba(255,255,255,0.03);
    color: rgba(255,255,255,0.6);
    font-size: 0.875rem;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    transition: all 0.18s;
}
.bk-time-btn:hover:not(:disabled) {
    border-color: rgba(227,6,19,0.4);
    background: rgba(227,6,19,0.08);
    color: #fff;
}
.bk-time-selected {
    background: #e30613 !important;
    border-color: #e30613 !important;
    color: #fff !important;
}
.bk-time-disabled {
    opacity: 0.2;
    cursor: not-allowed;
}

/* ── Paso 3: Formulario ── */
.bk-summary {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(227,6,19,0.08);
    border: 1px solid rgba(227,6,19,0.2);
    border-radius: 12px;
    padding: 12px 16px;
    margin-bottom: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    color: #e8e8ed;
}
.bk-summary-icon { font-size: 1rem; }
.bk-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 12px;
}
.bk-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 12px;
}
.bk-field-full { grid-column: 1 / -1; }
.bk-field label {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(160,160,171,0.45);
}
.bk-field input,
.bk-field textarea {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    padding: 11px 14px;
    color: #e8e8ed;
    font-size: 0.875rem;
    font-family: inherit;
    outline: none;
    transition: border-color 0.2s;
    width: 100%;
    box-sizing: border-box;
}
.bk-field input:focus,
.bk-field textarea:focus { border-color: rgba(227,6,19,0.4); }
.bk-field input::placeholder,
.bk-field textarea::placeholder { color: rgba(160,160,171,0.25); }
.bk-field textarea { resize: vertical; min-height: 76px; }
.bk-submit-btn {
    width: 100%;
    background: linear-gradient(135deg, #e30613, #ff4d00);
    color: #fff;
    border: none;
    padding: 14px 24px;
    border-radius: 100px;
    font-size: 0.9rem;
    font-weight: 700;
    font-family: inherit;
    cursor: pointer;
    transition: opacity 0.2s, transform 0.2s;
    margin-top: 8px;
}
.bk-submit-btn:hover { opacity: 0.9; transform: translateY(-1px); }
.bk-submit-btn:disabled { opacity: 0.5; cursor: not-allowed; transform: none; }

/* ── Error inline ── */
.bk-error {
    background: rgba(227,6,19,0.08);
    border: 1px solid rgba(227,6,19,0.2);
    border-radius: 10px;
    padding: 12px 16px;
    font-size: 0.85rem;
    color: #ff6b6b;
    margin-bottom: 16px;
    display: none;
}

/* ── Estado de éxito ── */
.bk-success {
    text-align: center;
    padding: 24px 0 8px;
}
.bk-success-icon {
    width: 64px; height: 64px;
    background: rgba(74,222,128,0.1);
    border: 1px solid rgba(74,222,128,0.25);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.6rem;
    color: #4ade80;
}
.bk-success h3 {
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: 8px;
    color: #e8e8ed;
}
.bk-success #bkSuccessDetail {
    color: #e30613;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 8px;
}
.bk-success-hint {
    color: rgba(160,160,171,0.5);
    font-size: 0.82rem;
    line-height: 1.6;
    max-width: 340px;
    margin: 0 auto 20px;
}
.bk-success-new {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.6);
    padding: 10px 24px;
    border-radius: 100px;
    cursor: pointer;
    font-size: 0.85rem;
    font-weight: 600;
    font-family: inherit;
    transition: all 0.2s;
}
.bk-success-new:hover { background: rgba(255,255,255,0.1); color: #fff; }

/* ── Responsive booking ── */
@media (max-width: 960px) {
    .booking-slide-inner {
        grid-template-columns: 1fr;
        gap: 36px;
        padding: 80px 28px 64px;
        align-items: flex-start;
        min-height: unset;
    }
    .bk-slide-text { padding-right: 0; }
    .bk-slide-title { font-size: clamp(1.7rem, 4vw, 2.2rem); }
    .bk-day-grid { gap: 5px; }
}
