#intro-datos {
    background: linear-gradient(135deg, #fff176, #ffca28, #ffb300);
    padding: 30px 20px;          /* mucho menos padding */
    border-radius: 30px;
    box-shadow: 0 10px 30px rgba(255, 193, 7, 0.5);
    max-width: 95%;              /* casi todo el ancho en móvil */
    margin: 30px auto;
    border: 6px solid #ffeb3b;
}

#intro-datos h2 {
    color: #d81b60;
    margin-bottom: 15px;
    font-size: 38px;
    font-family: 'Fredoka One', cursive;
    text-shadow: 3px 3px 0 #fff, 6px 6px 0 #ff5722;
    letter-spacing: 1px;
}

#intro-datos p {
    font-size: 20px;
    color: #333;
    margin-bottom: 20px;
    font-family: 'Chewy', cursive;
    line-height: 1.3;
}

#intro-datos label {
    display: block;
    text-align: left;
    margin: 15px 0 5px;
    font-weight: bold;
    color: #d81b60;
    font-size: 22px;
    font-family: 'Chewy', cursive;
}

#intro-datos input {
    width: 100%;
    padding: 12px;
    font-size: 18px;
    border: 3px solid #ffeb3b;
    border-radius: 18px;
    box-sizing: border-box;
    font-family: 'Chewy', cursive;
    background: #fffde7;
    color: #333;
}

#intro-datos input:focus {
    border-color: #ff5722;
    outline: none;
    box-shadow: 0 0 12px rgba(255, 87, 34, 0.5);
}

#intro-datos button {
    background: linear-gradient(135deg, #ff5722, #f50057);
    color: white;
    font-size: 26px;
    padding: 14px;
    width: 100%;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    margin-top: 20px;
    font-family: 'Fredoka One', cursive;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    box-shadow: 0 8px 20px rgba(244, 67, 54, 0.5);
    transition: all 0.3s;
}

#intro-datos button:hover {
    transform: scale(1.06);
    box-shadow: 0 12px 30px rgba(244, 67, 54, 0.7);
}

/* Responsive: formulario ultra compacto en móvil */
@media (max-width: 768px) {
    #intro-datos {
        padding: 25px 18px;
        margin: 20px auto;
        border-width: 5px;
        max-width: 94%;
    }

    #intro-datos h2 {
        font-size: 2.2rem;
        margin-bottom: 12px;
    }

    #intro-datos p {
        font-size: 1.2rem;
        margin-bottom: 15px;
    }

    #intro-datos label {
        font-size: 1.3rem;
        margin: 12px 0 4px;
    }

    #intro-datos input {
        font-size: 1.1rem;
        padding: 10px;
    }

    #intro-datos button {
        font-size: 1.5rem;
        padding: 12px;
        margin-top: 15px;
    }

    /* Espacio extra para que el teclado no tape el botón en iOS */
    #datos-form {
        padding-bottom: 120px;
    }
}

/* Muy pequeños (menos de 480px) */
@media (max-width: 480px) {
    #intro-datos {
        padding: 20px 15px;
    }

    #intro-datos h2 {
        font-size: 2rem;
    }

    #intro-datos p {
        font-size: 1.1rem;
    }

    #intro-datos label {
        font-size: 1.2rem;
    }

    #intro-datos input {
        font-size: 1rem;
        padding: 8px;
    }

    #intro-datos button {
        font-size: 1.4rem;
        padding: 10px;
    }
}