
div.wpcf7 {
    box-shadow: 1px 1px 5px var(--gris-claro);
    padding: 1.5rem;
    max-width: 35rem;
    margin: auto;
    background: linear-gradient(135deg, #fdecb5 0%, #f9dedd 100%);
}

form{
    overflow: hidden;
    max-width: 100%;
    margin: auto;
}
form p{
    font-family: sans-serif;
    margin-bottom: 5px;
    font-size: 1.1rem;

}

label{
    display: block;
}

form input.wpcf7-text,
form textarea.wpcf7-textarea,
form input.wpcf7-email,
form select{
    border: 1px solid #ced4da;
    border-radius: 0.5rem;
    padding: 10px;
    width: 100%;
    max-height: 250px;
}

form select{
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23666' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 20px center; /* ← AQUÍ ESTÁ EL TRUCO */
    background-size: 12px 8px;
    padding-right: 50px; /* Aumenta el padding para que el texto no se superponga */
    
    /* Opcional: estilos base para que se vea bien */
    padding: 10px 50px 10px 15px;
    border: 2px solid #ddd;
    border-radius: 8px;
    cursor: pointer;
}

form input.wpcf7-submit{
    background-color: var(--gris-oscuro);
    border-color: transparent;
    border-radius: 0.5rem;
    color: var(--blanco);
    padding: 0.5rem 1rem;
    transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
    width: 100%;
}

form input.wpcf7-submit:hover{
    background-color: var(--prim);
    border-color: transparent;
    cursor: pointer;
}

.wpcf7-spinner{
    display: none;
}

