/* ============================================
   Guest Landing Page — /mis-pedidos/ for guests
   ============================================
   Dark gradient hero with 3-step process cards,
   CTAs, and trust signals. Reuses banner aesthetic.
   ============================================ */

/* ========================================
   Hero Section
   ======================================== */

.bim-guest-landing {
    font-family: var(--bim-font);
}

.bim-guest-hero {
    position: relative;
    width: 100%;
    min-height: 100vh;
    background: linear-gradient(135deg, #1A1A1A 0%, #2a2a2a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Grid pattern overlay */
.bim-guest-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 40px 40px;
    opacity: 0.5;
    pointer-events: none;
}

/* Red radial glow */
.bim-guest-hero::after {
    content: '';
    position: absolute;
    bottom: -200px;
    left: -150px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(227, 30, 36, 0.1) 0%, transparent 60%);
    pointer-events: none;
}

.bim-guest-hero-inner {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
    padding: 4rem 2rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

/* ========================================
   Badge
   ======================================== */

.bim-guest-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    padding: 0.625rem 1.125rem;
    background: rgba(227, 30, 36, 0.15);
    border: 1px solid rgba(227, 30, 36, 0.3);
    border-radius: 100px;
    animation: bimFadeIn 0.6s ease forwards;
}

.bim-guest-badge .bim-badge-pulse {
    width: 8px;
    height: 8px;
    background: var(--bim-bolivia-red);
    border-radius: 50%;
    animation: bimBadgePulse 2s ease-in-out infinite;
}

.bim-guest-badge .bim-badge-text {
    font-family: var(--bim-font);
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--bim-bolivia-red);
}

/* ========================================
   Headline & Subtitle
   ======================================== */

.bim-guest-headline {
    font-family: var(--bim-font);
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 900;
    font-style: italic;
    line-height: 1.05;
    color: #ffffff;
    margin: 0;
    letter-spacing: -0.025em;
    text-transform: uppercase;
    animation: bimSlideUp 0.6s ease 0.1s both;
}

.bim-guest-headline-accent {
    color: var(--bim-bolivia-red);
}

.bim-guest-subtitle {
    font-size: clamp(0.9375rem, 1.5vw, 1.0625rem);
    font-weight: 400;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
    max-width: 600px;
    animation: bimSlideUp 0.6s ease 0.2s both;
}

/* ========================================
   3-Step Process Cards
   ======================================== */

.bim-guest-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    width: 100%;
    max-width: 800px;
    animation: bimSlideUp 0.6s ease 0.3s both;
}

.bim-guest-step {
    position: relative;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--bim-radius);
    padding: 2rem 1.25rem 1.5rem;
    text-align: center;
    transition: all var(--bim-transition-slow) ease;
}

.bim-guest-step:hover {
    background: rgba(255, 255, 255, 0.07);
    transform: translateY(-4px);
}

/* Step number badge */
.bim-guest-step-number {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    font-size: 0.6875rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

/* Step icon */
.bim-guest-step-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.bim-guest-step-icon .material-symbols-outlined {
    font-size: 28px;
}

/* Step text */
.bim-guest-step-title {
    font-size: var(--bim-text-base);
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.bim-guest-step-desc {
    font-size: var(--bim-text-sm);
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.5;
    margin: 0;
}

/* --- Red Step (Step 1) --- */
.bim-guest-step--red .bim-guest-step-icon {
    background: rgba(227, 30, 36, 0.15);
    border: 1px solid rgba(227, 30, 36, 0.3);
    color: var(--bim-bolivia-red);
}

.bim-guest-step--red .bim-guest-step-number {
    background: var(--bim-bolivia-red);
    color: #ffffff;
}

.bim-guest-step--red:hover {
    border-color: rgba(227, 30, 36, 0.25);
}

/* --- Yellow Step (Step 2) --- */
.bim-guest-step--yellow .bim-guest-step-icon {
    background: rgba(252, 209, 22, 0.12);
    border: 1px solid rgba(252, 209, 22, 0.3);
    color: var(--bim-bolivia-yellow);
}

.bim-guest-step--yellow .bim-guest-step-number {
    background: var(--bim-bolivia-yellow);
    color: #1A1A1A;
}

.bim-guest-step--yellow:hover {
    border-color: rgba(252, 209, 22, 0.25);
}

/* --- Green Step (Step 3) --- */
.bim-guest-step--green .bim-guest-step-icon {
    background: rgba(0, 122, 61, 0.15);
    border: 1px solid rgba(0, 122, 61, 0.3);
    color: var(--bim-bolivia-green-bright);
}

.bim-guest-step--green .bim-guest-step-number {
    background: var(--bim-bolivia-green);
    color: #ffffff;
}

.bim-guest-step--green:hover {
    border-color: rgba(0, 122, 61, 0.25);
}

/* ========================================
   CTA Buttons
   ======================================== */

.bim-guest-ctas {
    display: flex;
    gap: 1rem;
    align-items: center;
    animation: bimSlideUp 0.6s ease 0.4s both;
}

.bim-guest-cta-main {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.bim-guest-cta-main .material-symbols-outlined {
    font-size: 20px;
}

/* Outline variant for "Ya tengo cuenta" */
button.bim-guest-cta-login,
.bim-guest-cta-login {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1.125rem 2rem;
    background: transparent !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    color: rgba(255, 255, 255, 0.8) !important;
    font-size: var(--bim-text-base);
    font-weight: 600;
    border-radius: var(--bim-radius);
    cursor: pointer;
    transition: all var(--bim-transition-base) ease;
}

button.bim-guest-cta-login:hover,
.bim-guest-cta-login:hover {
    background: rgba(255, 255, 255, 0.08) !important;
    border-color: rgba(255, 255, 255, 0.35) !important;
    color: #ffffff !important;
}

.bim-guest-cta-login .material-symbols-outlined {
    font-size: 20px;
}

/* ========================================
   Trust Signals
   ======================================== */

.bim-guest-trust {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    animation: bimSlideUp 0.6s ease 0.5s both;
}

.bim-guest-trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: var(--bim-text-sm);
    font-weight: 500;
    color: rgba(255, 255, 255, 0.45);
}

.bim-guest-trust-item .material-symbols-outlined {
    font-size: 18px;
    color: rgba(252, 209, 22, 0.7);
}

/* ========================================
   Responsive
   ======================================== */

@media (max-width: 768px) {
    .bim-guest-hero-inner {
        padding: 3rem 1.25rem;
        gap: 1.5rem;
    }

    .bim-guest-steps {
        grid-template-columns: 1fr;
        max-width: 360px;
        gap: 1.25rem;
    }

    .bim-guest-step {
        padding: 1.5rem 1.25rem 1.25rem;
    }

    .bim-guest-ctas {
        flex-direction: column;
        width: 100%;
        max-width: 360px;
    }

    .bim-guest-cta-main,
    button.bim-guest-cta-login {
        width: 100%;
        justify-content: center;
    }

    .bim-guest-trust {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
    }
}

@media (max-width: 480px) {
    .bim-guest-headline {
        font-size: clamp(2rem, 8vw, 2.75rem);
    }

    .bim-guest-subtitle {
        font-size: 0.875rem;
    }
}
