/* ===== RESET ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* ===== BASE ===== */
body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #fde2e4, #fff1c1, #e0f4f1);
    min-height: 100vh;
    overflow-x: hidden;
}

/* ===== CORAZONES ===== */
.hearts span {
    position: absolute;
    font-size: 22px;
    animation: float 10s linear infinite;
    opacity: 0.8;
}

.hearts span:nth-child(1) { left: 10%; animation-duration: 12s; }
.hearts span:nth-child(2) { left: 30%; animation-duration: 9s; }
.hearts span:nth-child(3) { left: 50%; animation-duration: 11s; }
.hearts span:nth-child(4) { left: 70%; animation-duration: 10s; }
.hearts span:nth-child(5) { left: 90%; animation-duration: 13s; }

@keyframes float {
    0% { bottom: -50px; transform: translateX(0); }
    50% { transform: translateX(20px); }
    100% { bottom: 110%; transform: translateX(-20px); }
}

/* ===== ESTRELLITAS ===== */
.stars span {
    position: absolute;
    font-size: 18px;
    animation: sparkle 14s linear infinite;
    opacity: 0.7;
}

.stars span:nth-child(1) { left: 15%; animation-duration: 16s; }
.stars span:nth-child(2) { left: 35%; animation-duration: 12s; }
.stars span:nth-child(3) { left: 55%; animation-duration: 18s; }
.stars span:nth-child(4) { left: 75%; animation-duration: 14s; }
.stars span:nth-child(5) { left: 90%; animation-duration: 20s; }

@keyframes sparkle {
    0% { bottom: -40px; transform: rotate(0deg); }
    100% { bottom: 110%; transform: rotate(360deg); }
}

/* ===== CONTENEDOR ===== */
.container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

/* ===== CARD ===== */
.card {
    background-color: #ffffff;
    max-width: 520px;
    padding: 45px 35px;
    border-radius: 30px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    animation: popIn 1s ease;
}

@keyframes popIn {
    from { transform: scale(0.9); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.logo {
    max-width: 180px;
    margin-bottom: 20px;
}

h1 {
    font-family: 'Baloo 2', cursive;
    font-size: clamp(1.8rem, 6vw, 2.4rem);
    color: #f28482;
    margin-bottom: 15px;
}

.main-text {
    font-size: clamp(1rem, 4.5vw, 1.2rem);
    color: #6b7280;
    margin-bottom: 20px;
    line-height: 1.7;
}

.highlight {
    font-family: 'Baloo 2', cursive;
    font-size: clamp(1.1rem, 5vw, 1.3rem);
    color: #84a59d;
    background-color: #fef6e4;
    padding: 14px;
    border-radius: 18px;
    margin-bottom: 20px;
}

.coming-soon {
    font-size: 1.05rem;
    color: #9ca3af;
    margin-bottom: 25px;
}

.signature {
    font-size: 1rem;
    color: #f28482;
}

/* ===== BOTÓN WHATSAPP ===== */
.whatsapp-button {
    position: fixed;
    bottom: 22px;
    right: 22px;
    width: 72px;
    height: 72px;
    background-color: #25D366;
    color: white;
    font-size: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
    transition: transform 0.3s ease;
    z-index: 999;
}

.whatsapp-button:hover {
    transform: scale(1.12);
}

/* ===== MOBILE FIRST FORZADO ===== */
@media (max-width: 768px) {

    .card {
        width: 100%;
        max-width: 100%;
        min-height: 90vh;
        padding: 40px 25px;
        border-radius: 0;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .logo {
        max-width: 200px;
    }
}
