/* EsEspecial.com.ar - Embudo de Ventas & Movimiento Emocional */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,600;0,700;0,800;1,400;1,600;1,700&family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

:root {
    --rose-primary: #e11d48;
    --rose-dark: #be123c;
    --rose-deep: #881337;
    --rose-light: #ffe4e6;
    --rose-ultra-light: #fff1f2;
    --gold-accent: #d97706;
    --gold-light: #fef3c7;
    --gold-glow: rgba(217, 119, 6, 0.35);
    --dark-neutral: #0f172a;
    --text-body: #334155;
    --font-serif: 'Playfair Display', Georgia, serif;
    --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    color: var(--text-body);
    background-color: #fffafb;
    line-height: 1.7;
    overflow-x: hidden;
    position: relative;
}

.font-serif {
    font-family: var(--font-serif);
}

.text-rose {
    color: var(--rose-primary) !important;
}

.bg-rose-subtle {
    background-color: var(--rose-light) !important;
}

.text-gold {
    color: var(--gold-accent) !important;
}

.bg-romantic {
    background: radial-gradient(circle at 10% 15%, #ffe4e6 0%, #fff1f2 35%, #ffffff 80%);
    min-height: 100vh;
}

/* ================= CORAZONES Y DESTELLOS FLOTANTES EN MOVIMIENTO ================= */
.floating-hearts-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 5;
    overflow: hidden;
}

.floating-heart {
    position: absolute;
    bottom: -60px;
    font-size: 1.6rem;
    opacity: 0.6;
    filter: drop-shadow(0 3px 6px rgba(225, 29, 72, 0.3));
    animation: floatUpMotion linear infinite;
    pointer-events: none;
}

@keyframes floatUpMotion {
    0% {
        transform: translateY(0) rotate(0deg) scale(0.8);
        opacity: 0;
    }
    10% {
        opacity: 0.75;
    }
    85% {
        opacity: 0.65;
    }
    100% {
        transform: translateY(-115vh) rotate(360deg) scale(1.3);
        opacity: 0;
    }
}

/* ================= BANNERS MARQUESINAS EN MOVIMIENTO CONTINUO INFINITO ================= */
.running-banner {
    background: linear-gradient(90deg, #9f1239 0%, #e11d48 50%, #be123c 100%);
    color: #ffffff;
    overflow: hidden;
    white-space: nowrap;
    box-shadow: 0 4px 15px rgba(159, 18, 57, 0.35);
    padding: 12px 0;
    font-size: 0.9rem;
    font-weight: 800;
    letter-spacing: 1.2px;
    position: relative;
    z-index: 105;
}

.running-banner-gold {
    background: linear-gradient(90deg, #b45309 0%, #d97706 50%, #92400e 100%);
    color: #ffffff;
    overflow: hidden;
    white-space: nowrap;
    box-shadow: 0 4px 15px rgba(180, 83, 9, 0.35);
    padding: 11px 0;
    font-size: 0.88rem;
    font-weight: 800;
    letter-spacing: 1.2px;
    position: relative;
    z-index: 105;
}

.running-track {
    display: flex;
    width: max-content;
    animation: marqueeContinuous 26s linear infinite;
}

.running-track:hover {
    animation-play-state: paused;
}

.running-content {
    display: inline-block;
    padding-right: 40px;
}

@keyframes marqueeContinuous {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* ================= GRADIENTE DE TEXTO EN MOVIMIENTO ================= */
.text-gradient {
    background: linear-gradient(90deg, #9f1239, #e11d48, #d97706, #be123c, #9f1239);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientShift 7s ease infinite;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* ================= BOTONES CON MOVIMIENTO Y SHIMMER ================= */
.btn-rose-gradient {
    background: linear-gradient(135deg, #e11d48 0%, #be123c 100%);
    color: #ffffff !important;
    border: none;
    transition: all 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(225, 29, 72, 0.35);
}

.btn-rose-gradient::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(60deg, transparent 30%, rgba(255, 255, 255, 0.4) 50%, transparent 70%);
    transform: rotate(30deg);
    animation: shimmerButton 3.5s infinite;
}

@keyframes shimmerButton {
    0% { transform: translateX(-100%) rotate(30deg); }
    25% { transform: translateX(100%) rotate(30deg); }
    100% { transform: translateX(100%) rotate(30deg); }
}

.btn-rose-gradient:hover {
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 14px 28px rgba(225, 29, 72, 0.45);
}

.btn-gold-gradient {
    background: linear-gradient(135deg, #d97706 0%, #b45309 100%);
    color: #ffffff !important;
    border: none;
    transition: all 0.35s ease;
    box-shadow: 0 6px 20px rgba(217, 119, 6, 0.35);
    position: relative;
    overflow: hidden;
}

.btn-gold-gradient:hover {
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 14px 28px rgba(217, 119, 6, 0.45);
    color: #fff;
}

.btn-outline-rose {
    border: 2px solid var(--rose-primary);
    color: var(--rose-primary);
    background: transparent;
    transition: all 0.3s ease;
}

.btn-outline-rose:hover {
    background: var(--rose-primary);
    color: #ffffff !important;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(225, 29, 72, 0.25);
}

/* ================= PULSOS Y ONDAS DE ATENCIÓN ================= */
.pulse-heart {
    display: inline-block;
    animation: pulseHeartAnim 2.2s infinite;
}

@keyframes pulseHeartAnim {
    0% { transform: scale(1); }
    14% { transform: scale(1.12); }
    28% { transform: scale(1); }
    42% { transform: scale(1.12); }
    70% { transform: scale(1); }
    100% { transform: scale(1); }
}

.pulse-glow {
    animation: pulseGlowAnim 2.5s infinite;
}

@keyframes pulseGlowAnim {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(225, 29, 72, 0.5);
    }
    50% {
        box-shadow: 0 0 0 14px rgba(225, 29, 72, 0);
    }
}

/* ================= SECCIÓN EL MOVIMIENTO ================= */
.movimiento-box {
    background: linear-gradient(135deg, #4c0519 0%, #881337 50%, #9f1239 100%);
    color: #ffffff;
    border-radius: 28px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 45px rgba(136, 19, 55, 0.35);
}

.movimiento-box::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(225, 29, 72, 0.25) 0%, transparent 70%);
    border-radius: 50%;
    animation: orbFloat 9s ease-in-out infinite alternate;
}

@keyframes orbFloat {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(-40px, 40px) scale(1.2); }
}

.movimiento-step-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 20px;
    padding: 24px;
    height: 100%;
    transition: all 0.3s ease;
}

.movimiento-step-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-6px);
    border-color: rgba(255, 228, 230, 0.4);
}

/* ================= CARDS DE PLANES CON MOVIMIENTO HOVER ================= */
.plan-master-card {
    border-radius: 22px;
    background: #ffffff;
    border: 2px solid #fecdd3;
    transition: all 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.plan-master-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: var(--rose-primary) !important;
    box-shadow: 0 22px 40px rgba(225, 29, 72, 0.22) !important;
}

.plan-featured {
    border: 2.5px solid var(--rose-primary) !important;
    background: #fffcfd !important;
    box-shadow: 0 15px 35px rgba(225, 29, 72, 0.15);
}

.plan-vip {
    border: 2.5px solid #d97706 !important;
    background: #fffdfa !important;
    box-shadow: 0 15px 35px rgba(217, 119, 6, 0.15);
}

/* ================= WHATSAPP FLOTANTE CON RADAR ================= */
.whatsapp-float {
    position: fixed;
    width: 65px;
    height: 65px;
    bottom: 26px;
    right: 26px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: #FFF;
    border-radius: 50%;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.45);
    z-index: 1050;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
    animation: radarWave 2.8s infinite;
}

@keyframes radarWave {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { box-shadow: 0 0 0 18px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

.whatsapp-float:hover {
    transform: scale(1.12);
    color: #FFF;
}

.whatsapp-tooltip {
    position: fixed;
    bottom: 38px;
    right: 100px;
    background: #ffffff;
    color: #0f172a;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.84rem;
    font-weight: 700;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
    z-index: 1040;
    display: flex;
    align-items: center;
    gap: 6px;
    animation: floatTooltip 3s ease-in-out infinite;
}

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

/* ================= COUNTDOWN TIMER CON MOVIMIENTO ================= */
.countdown-container {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(8px);
    border: 1px solid #fecdd3;
    border-radius: 22px;
    padding: 16px 26px;
    display: inline-flex;
    gap: 18px;
    box-shadow: 0 8px 24px rgba(225, 29, 72, 0.1);
}

.countdown-box {
    text-align: center;
}

.countdown-num {
    font-size: 1.85rem;
    font-weight: 800;
    color: var(--rose-deep);
    font-family: var(--font-serif);
    line-height: 1;
}

.countdown-label {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    color: #64748b;
    letter-spacing: 0.5px;
}

/* ================= LIVE NOTIFICATION TOAST ================= */
.sales-toast {
    position: fixed;
    bottom: 24px;
    left: 24px;
    background: #ffffff;
    border-left: 4px solid var(--rose-primary);
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.14);
    padding: 14px 18px;
    z-index: 1030;
    display: flex;
    align-items: center;
    gap: 12px;
    max-width: 360px;
    animation: toastSlide 0.5s ease;
    transition: opacity 0.5s, transform 0.5s;
}

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

/* ================= GRILLA 100 CASILLEROS ================= */
.casillero-card {
    border-radius: 14px;
    transition: all 0.25s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    min-height: 92px;
    background: #ffffff;
    border: 1px solid #fecdd3;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    user-select: none;
}

.casillero-card:hover:not(.casillero-ocupado) {
    transform: translateY(-6px) scale(1.06);
    border-color: var(--rose-primary) !important;
    box-shadow: 0 12px 24px rgba(225, 29, 72, 0.25) !important;
    background: #fff1f2;
}

.casillero-numero {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--rose-deep);
}

.casillero-precio {
    font-size: 0.8rem;
    font-weight: 700;
    color: #059669;
}

.casillero-ocupado {
    background: #f1f5f9 !important;
    border: 1px solid #cbd5e1 !important;
    opacity: 0.55;
    cursor: not-allowed;
}

.casillero-reservado {
    background: #fef3c7 !important;
    border: 1px solid #fde68a !important;
    cursor: not-allowed;
}

/* ================= OPCIONES DEL MODAL ================= */
.btn-precio-opcion {
    border: 2px solid #e2e8f0;
    background: #ffffff;
    transition: all 0.25s ease;
    cursor: pointer;
    border-radius: 14px;
}

.btn-precio-opcion:hover {
    border-color: var(--rose-primary);
    background: #fff5f7;
    transform: translateY(-2px);
}

.btn-precio-opcion.active-option {
    border-color: var(--rose-primary) !important;
    background: #fff1f2 !important;
    box-shadow: 0 8px 22px rgba(225, 29, 72, 0.2);
}

.trust-badge {
    padding: 10px 18px;
    background: #ffffff;
    border: 1px solid #fee2e2;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.testimonial-card {
    background: #ffffff;
    border-radius: 18px;
    padding: 24px;
    border: 1px solid #fee2e2;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.04);
    height: 100%;
}

.stars {
    color: #f59e0b;
    font-size: 1.1rem;
}
