/* TIPOGRAFÍA MODERNA */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&display=swap');

body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    background: #ffffff;
    color: #111;
    text-align: center;
}

/* HERO */
.hero img {
    width: 100%;
    height: 260px;
    object-fit: cover;
}

/* COUNTDOWN */
.countdown {
    margin: 25px 0 10px;
    font-size: 16px;
    color: #666;
}

/* TITULO */
.titulo {
    font-size: 30px;
    margin-bottom: 20px;
    font-weight: 600;
}

.rosa { color: #e11d48; }
.azul { color: #2563eb; }

/* OPCIONES */
.opciones {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    padding: 10px;
}

.card {
    width: 220px;
    background: #ffffff;
    border-radius: 16px;
    padding: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: 0.3s;
}

.card:hover {
    transform: translateY(-5px);
}

.card img {
    width: 100%;
    border-radius: 12px;
}

/* BOTONES */
button {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 10px;
    margin-top: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.2s;
}

.nena button {
    background: #e11d48;
    color: white;
}

.nene button {
    background: #2563eb;
    color: white;
}

button:hover {
    opacity: 0.9;
}

/* FORMULARIO PRO */
.formulario {
    display: none;
    margin-top: 12px;
    text-align: left;
}

/* INPUTS */
.formulario input,
.formulario textarea {
    width: 100%;
    padding: 12px;
    margin-top: 8px;
    border-radius: 10px;
    border: 1px solid #ddd;
    font-family: 'Poppins';
    font-size: 14px;
    transition: 0.2s;
}

/* FOCUS EFECTO */
.formulario input:focus,
.formulario textarea:focus {
    border-color: #2563eb;
    outline: none;
    box-shadow: 0 0 0 2px rgba(37,99,235,0.1);
}

/* TEXTAREA */
.formulario textarea {
    resize: none;
    height: 70px;
}

/* BOTÓN CONFIRMAR */
.formulario button {
    margin-top: 10px;
    background: #111;
    color: white;
}

/* RESULTADOS */
.resultados {
    margin: 40px auto;
    padding: 20px;
    max-width: 500px;
}

.fila {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 12px 0;
}

.progress {
    width: 60%;
    height: 10px;
    background: #eee;
    border-radius: 10px;
    margin: 0 10px;
    overflow: hidden;
}

#barra-nena {
    height: 100%;
    background: #e11d48;
    width: 0%;
    transition: 0.5s;
}

#barra-nene {
    height: 100%;
    background: #2563eb;
    width: 0%;
    transition: 0.5s;
}

/* MENSAJES */
#mensajes {
    max-width: 500px;
    margin: 20px auto;
    text-align: left;
}

#mensajes div {
    background: #f8f8f8;
    padding: 12px;
    border-radius: 10px;
    margin-bottom: 10px;
    font-size: 14px;
}