@charset 'utf-8';
/*
Theme Name:Wisemove-child
Theme URI: http://wisemove.axiomthemes.com/
Description: Hampton - Multipurpose and Multiskin Responsive Wordpress theme
Author: AxiomThemes
Author URI:  http://axiomthemes.com/
Template: wisemove
Version: 1.0
License: GNU General Public License
License URI: license.txt
Tags: flexible-header, accessibility-ready, custom-background, custom-colors, custom-header, custom-menu, featured-image-header, featured-images, full-width-template, microformats, post-formats, theme-options, threaded-comments, translation-ready
Text Domain: wisemove
*/

/* =Theme customization starts here */

/* Estilos extraídos del formulario de contacto - https://www.mudanzascontrol.com/contacto-test/ */

/* --- Contenedor Principal del Formulario --- */
form.wpcf7-form {
    background-color: rgb(151, 182, 40);
    font-family: "Metropolis", sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: rgb(0, 0, 0);
    padding: 20px;
    width: 100%;
    max-width: 406px;
    box-sizing: border-box;
    margin: 0 auto;
}

/* --- Campos de Entrada (Inputs) --- */
form.wpcf7-form input[type="text"],
form.wpcf7-form input[type="email"],
form.wpcf7-form input[type="tel"],
form.wpcf7-form input[type="url"],
form.wpcf7-form input[type="date"] {
    background-color: rgb(255, 255, 255) !important;
    color: rgb(0, 0, 0);
    border: none;
    border-radius: 4px;
    padding: 17px 22.4px 20px;
    margin-bottom: 15px;
    width: 100%;
    height: auto;
    box-sizing: border-box;
    font-family: "Metropolis", sans-serif;
    font-size: 16px;
    outline: none;
}

/* Estado Focus para Inputs */
form.wpcf7-form input:focus {
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
}

/* --- Área de Texto (Textarea) --- */
form.wpcf7-form textarea {
    background-color: rgb(255, 255, 255) !important;
    color: rgb(0, 0, 0);
    border: none;
    border-radius: 4px;
    padding: 22.4px;
    width: 100%;
    height: 236px;
    box-sizing: border-box;
    font-family: "Metropolis", sans-serif;
    font-size: 16px;
    resize: vertical;
    outline: none;
}

/* --- Etiquetas (Labels) --- */
form.wpcf7-form label {
    color: rgb(255, 255, 255);
    font-family: "Metropolis", sans-serif;
    font-size: 16px;
    font-weight: 400;
    display: inline-block;
    margin-bottom: 5px;
}

/* --- Botón de Envío (Submit) --- */
form.wpcf7-form input[type="submit"].wpcf7-form-control.wpcf7-submit.sc_button_default2 {
    background-color: rgb(255, 255, 255) !important;
    color: #788f22 !important;
    font-family: "Metropolis", sans-serif;
    font-size: 18px;
    font-weight: 600;
    border: none;
    border-radius: 5px;
    padding: 20px 40px;
    margin-top: 30px;
    width: auto;
    min-width: 260px;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease;
    -webkit-appearance: none;
    /* Reset para iOS */
    appearance: none;
}

/* Estado Hover del Botón */
form.wpcf7-form input[type="submit"].wpcf7-form-control.wpcf7-submit.sc_button_default2:hover {
    background-color: #788f22 !important;
    color: rgb(255, 255, 255) !important;
}

/* --- Placeholders (Texto de ayuda dentro de los inputs) --- */
form.wpcf7-form ::placeholder {
    color: rgba(0, 0, 0, 0.6);
    /* Negro semitransparente */
    opacity: 1;
}

/* --- Enlaces (Links) --- */
form.wpcf7-form a {
    color: rgb(255, 255, 255);
    text-decoration: none;
    transition: all 0.3s ease;
}

form.wpcf7-form a:hover {
    color: rgb(255, 255, 255) !important;
    text-decoration: underline !important;
}

/* --- Mensajes de Respuesta (Éxito y Error) --- */
div.wpcf7-response-output {
    border-width: 2px !important;
    border-style: solid !important;
    border-radius: 4px !important;
    padding: 15px !important;
    margin: 20px 0 !important;
    font-weight: 600 !important;
    text-align: center !important;
}

/* Éxito - Verde */
form.wpcf7-form.sent div.wpcf7-response-output,
div.wpcf7-mail-sent-ok {
    background-color: #d4edda !important;
    border-color: #c3e6cb !important;
    color: #155724 !important;
}

/* Error - Rojo */
form.wpcf7-form.invalid div.wpcf7-response-output,
form.wpcf7-form.failed div.wpcf7-response-output,
div.wpcf7-validation-errors,
div.wpcf7-mail-sent-ng {
    background-color: #f8d7da !important;
    border-color: #f5c6cb !important;
    color: #721c24 !important;
}