/* --- ESTILOS GLOBALES PARA TODOS LOS FORMULARIOS DE CONTACT FORM 7 v2 --- */

/* 1. CONTENEDOR PRINCIPAL (.wpcf7) */
.wpcf7 {
    max-width: 500px;
    margin: 0 auto;
}

.wpcf7 label {
    display: none;
}

/* 2. ESTILO UNIFICADO PARA CAMPOS DE TEXTO, EMAIL Y MENÚS DESPLEGABLES */
.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 select {
    width: 100%;
    background-color: #ffffff;
    border: 1px solid #dcdcdc;
    border-radius: 50px;
    /* Bordes totalmente redondeados */
    padding: 15px 25px;
    margin-bottom: 15px;
    font-size: 16px;
    color: #555;
    /* Color de texto gris para el placeholder */
    box-sizing: border-box;
    transition: all 0.3s ease;

    /* Ocultamos la flecha por defecto del navegador */
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;

    /* Añadimos nuestra propia flecha */
    background-image: url('data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%23a1a1a1%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.4-5.4-13z%22%2F%3E%3C%2Fsvg%3E');
    background-repeat: no-repeat;
    background-position: right 25px top 50%;
    background-size: .65em auto;
}

/* 3. ESTILO PARA EL CAMPO DE MENSAJE (TEXTAREA) */
.wpcf7 textarea {
    width: 100%;
    background-color: #ffffff;
    border: 1px solid #dcdcdc;
    border-radius: 15px;
    /* Menos redondeado, como en el diseño */
    padding: 15px 25px;
    margin-bottom: 15px;
    font-size: 16px;
    color: #333;
    box-sizing: border-box;
    transition: all 0.3s ease;
    min-height: 150px;
    /* Altura mínima */
    resize: vertical;
    /* Permite al usuario hacerlo más alto */
    font-family: inherit;
    /* Hereda la fuente del resto del sitio */
}

/* 4. EFECTOS FOCUS (AL HACER CLIC) */
.wpcf7 input[type="text"]:focus,
.wpcf7 input[type="email"]:focus,
.wpcf7 select:focus,
.wpcf7 textarea:focus {
    outline: none;
    border-color: #3069FE;
    box-shadow: 0 0 0 3px rgba(48, 105, 254, 0.2);
}

/* 5. ESTILO DEL BOTÓN DE ENVÍO (SIN CAMBIOS) */
.wpcf7 input[type="submit"] {
    width: 100%;
    background-color: #3069FE;
    color: #ffffff;
    border: none;
    border-radius: 50px;
    padding: 15px 30px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    position: relative;
    text-align: left;
    /* Cambiado a 'left' para que coincida con el botón "Enviar" */
    transition: all 0.3s ease;
}

.wpcf7 input[type="submit"]:hover {
    background-color: #2554cc;
}

.wpcf7 input[type="submit"]::after {
    font-family: "Font Awesome 5 Free";
    content: "\f35d";
    font-weight: 900;
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 16px;
}