body{

background-color: #093649;

}

.whatsapp-cta {
    margin: 2rem auto 0;
    display: flex;
    justify-content: center;
}

.whatsapp-cta a {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.9rem 1.75rem;
    border-radius: 9999px;
    background: linear-gradient(135deg, #0f9d58, #34d399);
    color: #ffffff;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    box-shadow: 0 10px 25px rgba(15, 157, 88, 0.35);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.whatsapp-cta a:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(52, 211, 153, 0.4);
}

.whatsapp-cta span {
    font-size: 0.95rem;
}

@media (min-width: 1025px) {
    .app-logo {
        max-height: 160px;
    }
}

/* Tarjeta central del hero */
.hero-card {
    width: 100%;
    max-width: 640px;
    margin: 0 auto;
    padding: 2rem 1.5rem;
    background: radial-gradient(circle at top, rgba(12, 90, 120, 0.6), rgba(4, 33, 51, 0.9));
    border: 1px solid rgba(135, 206, 235, 0.3);
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
    position: relative;
    overflow: hidden;
}

.hero-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), transparent 60%);
    opacity: 0.6;
}

.hero-card::after {
    content: '';
    position: absolute;
    top: -30%;
    left: 10%;
    width: 80%;
    height: 160%;
    background: radial-gradient(circle, rgba(135, 206, 235, 0.25), transparent 60%);
    z-index: 0;
}

.hero-line,
.hero-sentence {
    position: relative;
    z-index: 1;
    color: #e0f4ff;
    font-size: clamp(1.5rem, 3vw, 1.8rem);
    font-weight: 400;
    line-height: 1.5;
    margin: 0.25rem 0;
}

.hero-highlight {
    font-weight: 700;
    display: inline-block;
}

.hero-highlight.gold {
    color: #ffd86b;
}

.hero-highlight.green {
    color: #7fff8b;
    text-decoration: underline;
    text-decoration-thickness: 3px;
    text-underline-offset: 4px;
}

.hero-subline {
    position: relative;
    z-index: 1;
    margin-top: 1rem;
    font-size: clamp(0.9rem, 2.5vw, 1.2rem);
    letter-spacing: 0.3em;
    color: #ffffff;
    text-transform: uppercase;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding: 0.75rem 0;
}

.hero-note {
    margin-top: 1.5rem;
    font-size: clamp(0.9rem, 2.2vw, 1.1rem);
    color: #9fd6ff;
}

.hero-note span {
    color: #ffffff;
    font-weight: 700;
}

/* Color para textos destacados */
.text-highlight {
    color: #79ff79;
}

/* Tarjetas del menú de videos */
.menu-card {
    min-height: 75px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0.35rem;
    padding: 1.25rem 1rem;
}

.menu-date {
    font-size: 0.9rem;
    letter-spacing: 0.08em;
}

.menu-title {
    font-size: 1.1rem !important;
    line-height: 1.3;
    min-height: 2.6em; /* fuerza dos líneas constantes */
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

@media (min-width: 768px) {
    .menu-card {
        min-height: 110px;
    }

    .menu-title {
        font-size: 1.1rem !important;
    }
}

/* Título principal con degradado */
.title-gradient {
    background: linear-gradient(135deg, #87CEEB, #FFFFFF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 20px rgba(135, 206, 235, 0.5);
}

/* Texto verde resaltado y subrayado */
.text-green-highlight {
    color: #7FFF00;
    text-decoration: underline;
}

/* Texto amarillo para regalo */
.text-yellow-gift {
    color: #FFFF00;
}

/* Overlay oscuro - Eliminado al quitar video de fondo */

.btn-cierre,.btn-cierre2,.btn-cierre3{

    position: relative;
}
.btn-cierre::after,
.btn-cierre2::after,
.btn-cierre3::after{
    content: attr(data-date);
    position: absolute;
    background-color: #ff2600b3;
    top: 0;
    right: -50px;
    color: white;
    width: 200px;
    transform: rotate(17deg) ;
    text-align: center;
    padding: 3px;
    font-weight: bold;
    
}

/* Velo negro sobre el video */
.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0);
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: opacity 0.3s ease;
    z-index: 10;
}

.video-overlay-locked {
    pointer-events: none;
}

/* Contenedor del botón de play */
.play-button-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.lock-icon {
    width: 75px;
    height: 75px;
    border-radius: 50%;
    background: rgba(9, 54, 73, 0.75);
    color: #82ffe5;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.45);
}

/* Botón de play con animación */
.play-button {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #0ea5e9, #38bdf8, #7fff8b);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 0 30px rgba(56, 189, 248, 0.6), 0 0 50px rgba(15, 118, 110, 0.4);
    animation: pulse 2s infinite;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.play-button:hover {
    transform: scale(1.15);
    box-shadow: 0 0 40px rgba(56, 189, 248, 0.8), 0 0 60px rgba(127, 255, 139, 0.5);
}

/* Icono de play */
.play-icon {
    width: 35px;
    height: 35px;
    color: white;
    margin-left: 5px;
}

/* Texto debajo del botón */
.play-text {
    color: #c6f0ff;
    font-size: 18px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
    animation: fadeInOut 2s infinite;
}

/* Animación de pulso para el botón */
@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 30px rgba(255, 215, 0, 0.8);
    }
    50% {
        transform: scale(1.08);
        box-shadow: 0 0 50px rgba(255, 215, 0, 1);
    }
}

/* Animación de fade para el texto */
@keyframes fadeInOut {
    0%, 100% {
        opacity: 0.8;
    }
    50% {
        opacity: 1;
    }
}

/* Responsive: botón más pequeño en móviles */
@media (max-width: 768px) {
    .play-button {
        width: 65px;
        height: 65px;
    }
    
    .play-icon {
        width: 28px;
        height: 28px;
    }
    
    .play-text {
        font-size: 16px;
    }
}

/* Animación para el título dinámico que sube al centro de la imagen */
@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-up {
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
}

.delay-1 {
    animation-delay: 0.3s;
}

.delay-2 {
    animation-delay: 0.6s;
}

.delay-3 {
    animation-delay: 0.9s;
}

.delay-4 {
    animation-delay: 1.2s;
}

.delay-5 {
    animation-delay: 1.5s;
}

.delay-6 {
    animation-delay: 1.8s;
}

@keyframes fadeInScale {
    0% {
        opacity: 0;
        transform: translateY(150px) scale(0.7);
        filter: blur(10px);
    }
    60% {
        opacity: 1;
        transform: translateY(-15px) scale(1.1);
        filter: blur(0px);
    }
    80% {
        transform: translateY(5px) scale(0.95);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
        filter: blur(0px);
    }
}

/* Estilos para el texto del resultado dinámico en 2 líneas */
#result-text {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    line-height: 1.2 !important;
    max-width: 90%;
    word-wrap: break-word;
    hyphens: auto;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Estilos responsive para el texto del resultado dinámico */
@media (max-width: 768px) {
    #result-text {
        font-size: 1.25rem !important;
        line-height: 1.3 !important;
        max-width: 85%;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    #result-text {
        font-size: 1.75rem !important;
        line-height: 1.25 !important;
        max-width: 88%;
    }
}

@media (min-width: 1025px) {
    #result-text {
        font-size: 2rem !important;
        line-height: 1.2 !important;
    }
}

/* ============================================
   ESTILOS MEJORADOS PARA HERO HEADLINE
   ============================================ */

/* Logo de la aplicación */
.app-logo {
    max-width: 100%;
    width: auto;
    height: auto;
    max-height: 150px;
    margin-bottom: 1rem;
    filter: drop-shadow(0 0 30px rgba(135, 206, 235, 0.6));
    animation: logoGlow 3s ease-in-out infinite;
    transition: transform 0.3s ease;
}

.app-logo:hover {
    transform: scale(1.05);
}

@keyframes logoGlow {
    0%, 100% { 
        filter: drop-shadow(0 0 20px rgba(135, 206, 235, 0.5));
    }
    50% { 
        filter: drop-shadow(0 0 40px rgba(135, 206, 235, 0.9)) drop-shadow(0 0 60px rgba(255, 255, 255, 0.3));
    }
}

/* Responsive para el logo */
@media (max-width: 768px) {
    .app-logo {
        max-height: 100px;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .app-logo {
        max-height: 120px;
    }
}

/* Contenedor principal */
.hero-headline {
    display: flex;
    flex-direction: column;
    align-items: center;
    /* gap: 1.5rem; */
    padding: .5rem 1rem;
    max-width: 1000px;
    margin: 0 auto;
}

/* Título APP EXTRA CASH */
.app-title {
    font-size: clamp(2.5rem, 7vw, 5rem);
    font-weight: 900;
    background: linear-gradient(135deg, #87CEEB 0%, #FFFFFF 50%, #87CEEB 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    text-shadow: 0 0 40px rgba(135, 206, 235, 0.6);
    animation: titleGlow 3s ease-in-out infinite;
    margin-bottom: 0.5rem;
}

@keyframes titleGlow {
    0%, 100% { 
        filter: drop-shadow(0 0 20px rgba(135, 206, 235, 0.6));
        transform: scale(1);
    }
    50% { 
        filter: drop-shadow(0 0 40px rgba(135, 206, 235, 0.9)) drop-shadow(0 0 60px rgba(255, 255, 255, 0.4));
        transform: scale(1.02);
    }
}

/* Texto principal de la headline */
.headline-text {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    font-size: clamp(1.1rem, 2.5vw, 1.8rem);
    line-height: 1.6;
}

/* Partes de texto normales */
.headline-part {
    color: #FFFFFF;
    font-weight: 400;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    letter-spacing: 0.02em;
}

/* Badges destacados - Estilo suave y plano */
.highlight-badge {
    display: inline;
    padding: 0;
    border-radius: 0;
    font-weight: 600;
    font-size: 1em;
    text-transform: none;
    letter-spacing: 0;
    box-shadow: none;
    transition: none;
    cursor: default;
    background: none;
}

.highlight-badge:hover {
    transform: none;
    box-shadow: none;
}

/* Badge dorado - 3 clics */
.highlight-badge.gold {
    background: none;
    color: #FFD700;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
    font-weight: 700;
}

.highlight-badge.gold:hover {
    box-shadow: none;
    transform: none;
}

/* Badge verde - U$S 1.000 */
.highlight-badge.green {
    background: none;
    color: #7FFF00;
    text-decoration: underline;
    text-underline-offset: 2px;
    text-decoration-thickness: 2px;
    text-decoration-color: #7FFF00;
    font-weight: 700;
    text-shadow: 0 0 10px rgba(127, 255, 0, 0.3);
}

.highlight-badge.green::before {
    display: none;
}

.highlight-badge.green:hover {
    box-shadow: none;
    transform: none;
}

/* Subheadline */
.subheadline {
    font-size: clamp(1rem, 2vw, 1.5rem);
    font-weight: 700;
    color: #FFFFFF;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    text-shadow: 0 0 20px rgba(135, 206, 235, 0.8), 0 2px 10px rgba(0, 0, 0, 0.5);
    padding: 0.8rem 1.5rem;
    border-top: 2px solid rgba(135, 206, 235, 0.3);
    border-bottom: 2px solid rgba(135, 206, 235, 0.3);
    animation: subheadlineGlow 2s ease-in-out infinite alternate;
}

@keyframes subheadlineGlow {
    0% { 
        text-shadow: 0 0 20px rgba(135, 206, 235, 0.8), 0 2px 10px rgba(0, 0, 0, 0.5);
        border-color: rgba(135, 206, 235, 0.3);
    }
    100% { 
        text-shadow: 0 0 30px rgba(135, 206, 235, 1), 0 2px 10px rgba(0, 0, 0, 0.5);
        border-color: rgba(135, 206, 235, 0.6);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .hero-headline {
        gap: 1rem;
        padding: 1.5rem 0.5rem;
    }
    
    .headline-text {
        flex-direction: column;
        gap: 0.3rem;
        font-size: clamp(1.2rem, 5vw, 1.6rem); /* Más grande */
        line-height: 1.4;
    }
    
    .headline-part {
        font-size: 1.1em; /* Más grande */
        line-height: 1.3;
    }
    
    .highlight-badge {
        margin: 0.2rem 0;
        font-size: 1.2em; /* Más grande */
    }
    
    .subheadline {
        letter-spacing: 0.1em;
        padding: 0.5rem 1rem;
        font-size: clamp(1rem, 4vw, 1.3rem); /* Más grande */
    }
    
    .app-logo {
        max-height: 110px;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .app-title {
        font-size: clamp(3rem, 5vw, 4rem);
    }
    
    .app-logo {
        max-height: 140px;
    }
    
    /* Ajustes específicos para el menú en tablets */
    nav ul {
        flex-direction: row !important;
        gap: 0.25rem !important;
    }
    
    nav li {
        flex: 1;
    }
    
    nav li div {
        font-size: 0.85rem !important;
        padding: 0.75rem 0.5rem !important;
        min-height: 80px;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    
    nav li .text-sm {
        font-size: 0.75rem !important;
        margin-bottom: 0.25rem !important;
    }
}
