/* Estilos para la página de revelación */
.baby-reveal {
    text-align: center;
    padding: 40px 20px;
    background: linear-gradient(145deg, #fff5f8 0%, #f0f8ff 100%);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.baby-reveal h1 {
    font-size: 3.5rem;
    color: #2c3e50;
    margin-bottom: 0;
    letter-spacing: 2px;
    font-family: 'Arial', sans-serif;
}

.baby-reveal h2 {
    font-size: 2.5rem;
    color: #e74c6f;
    margin-top: 0;
    font-weight: 300;
    border-bottom: 3px dashed #f1c40f;
    display: inline-block;
    padding-bottom: 10px;
}

.baby-reveal .video-wrapper {
    margin: 30px 0;
    width: 100%;
    display: flex;
    justify-content: center;
}

.baby-reveal .countdown {
    font-size: 1.3rem;
    background: white;
    padding: 15px 40px;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    margin: 20px 0;
}

.baby-reveal .family-poll {
    background: rgba(255,255,255,0.8);
    padding: 20px 40px;
    border-radius: 20px;
    backdrop-filter: blur(5px);
    margin-top: 20px;
    border: 1px solid #ecf0f1;
}

/* Efecto de brillo y animación para darle alegría */
.baby-reveal h1::after {
    content: " ✨";
    animation: destello 1.5s infinite alternate;
}

@keyframes destello {
    0% { opacity: 0.3; transform: scale(0.9); }
    100% { opacity: 1; transform: scale(1.2); }
}

.navbar {
    display: none !important;
}

/* Elimina el espacio que ocupaba el header */
.header-wrapper {
    min-height: 0 !important;
    padding: 0 !important;
    margin: 0 !important;
}





