section {
    font-family: 'Poppins', Arial, sans-serif;
    font-size: 1.8rem;
    font-weight: 600;
    color: #000;
    text-shadow: #fff 0 0 5px;
    background-color: rgba(239, 222, 196, 0.9);
    border-radius: 15px;
    margin: 15px 15px;
    box-shadow: inset 0 0 15px #000;
    overflow: hidden;
    transition: all 0.5s ease;
    max-width: 100%;
    text-align: center;
    justify-content: center;
}

/* ✔️ FORMULARIO DE CONTACTO */

#contact-form {
    text-align: center;
    justify-content: center;
    width: 100%;
}

#formato {
    text-align: center;
    justify-content: center;
    font-size: 2.5rem;
}

    .contform {
        display: flex;
        flex-wrap: wrap;
        grid-template-columns: 1fr 1fr;
        gap: 40px;
        max-width: 100%;
        margin: 15px 15px;
        justify-content: center;
    }
    
    .form-group {
    min-width: 45%;
    flex-wrap: wrap ;
}
 
    
@media ( max-width: 800px ) {
    .contform {
        display: flex;
        align-content: center;
        grid-template-columns: 1fr;
        flex-direction: column;
        max-width: 100%;
        margin: 15px 15px;
        justify-content: center;
    }
    .form-group {
    min-width: 90%;
    }
}
    
#descr {
    display: inline-block;
    place-content: center;
    width: 100%;
}

/* ✔️ Asegura que los elementos grandes ocupen ambas columnas */

label {
    display: block;
    margin-bottom: 5px;
    font-size: 1.7rem;
    font-weight: 600;
}

input, select  {
    background-color: rgba(0, 0, 0, 0.6);
    color: #fff;
    height: 50px;
    width: 100%;
    font-size: 1.2rem;
    border: 2px solid #ccc;
    border-radius: 8px;
    transition: all 0.3s ease;
}

textarea {
    background-color: rgba(0, 0, 0, 0.6);
    color: #fff;
    height: 100px;
    width: 90%;
    font-size: 1.2rem;
    border: 2px solid #ccc;
    border-radius: 8px;
    transition: all 0.3s ease;
}

input:focus,
select:focus {
    border-color: #ff3741;
    outline: none;
    box-shadow: 0 0 5px #ff3741;
}

select option {
    background-color: rgba(0, 0, 0, 0.8);
    color: #fff;
}

textarea #descripcion {
    display: inline-block;
    width: 90%;
    min-height: 200px;
}

/* ✔️ PLACEHOLDERS */

input::placeholder,
textarea::placeholder {
    color: #ffffff;
    opacity: 0.8;
    font-style: italic;
}

/* Botón ENVIAR */

#enviar {
    background-color: #ff5555;
    border: none;
    border-radius: 10px;
    width:50%;
    box-shadow: 0 0 15px #000;
    font-size: 1.8rem;
    color: black;
    margin-top: 30px;
}

#enviar:hover {
    background-color: #b80000;
    width:50%;
    box-shadow: inset 0 0 15px #fff;
    color: white;
    font-size: 1.8rem;
    transform: scale(1.05);
}

