/* 
Theme Name: Hello Elementor Child
Theme URI: https://github.com/elementor/hello-theme-child/
Description: Hello Elementor Child is a child theme of Hello Elementor, created by Elementor team
Author: Elementor Team
Author URI: https://elementor.com/
Template: hello-elementor
Version: 2.0.0
Text Domain: hello-elementor-child
License: GNU General Public License v3 or later.
License URI: https://www.gnu.org/licenses/gpl-3.0.html
Tags: flexible-header, custom-colors, custom-menu, custom-logo, editor-style, featured-images, rtl-language-support, threaded-comments, translation-ready
*/

/* Add your custom styles here */

/* -------------------------------------------------
   Contact Form 7 – Contenedores (p, label) + Campos
   ------------------------------------------------- */

/* 1️⃣ Que cada <p> sea block y ocupe todo el ancho */
.wpcf7-form p {
    margin: 0 0 1rem;      /* espacio vertical entre filas (ajusta) */
    width: 100%;
}

/* 2️⃣ Que el <label> sea block y también 100% */
.wpcf7-form label {
    display: block;        /* fuerza block */
    width: 100%;
    margin-bottom: .25rem; /* separación entre label y campo */
    font-weight: 600;      /* opcional, para mejor legibilidad */
}

/* -------------------------------------------------
   Campos (input, textarea) – Full‑width + Radio 10px
   ------------------------------------------------- */
.wpcf7-form .wpcf7-form-control {
    width: 100%;
    box-sizing: border-box;   /* incluye padding & border en el 100% */
    border-radius: 10px;
    padding: .75rem 1rem;      /* ajuste de espacio interno */
    border: 1px solid #ced4da;
    background: #fff;
    color: #212529;
    font-size: 1rem;
    line-height: 1.5;
}

/* Focus – resaltado */
.wpcf7-form .wpcf7-form-control:focus {
    outline: none;
    border-color: #3b82f6;                    /* azul primary (cámbialo) */
    box-shadow: 0 0 0 3px rgba(59,130,246,.15);
}

/* Errores (CF7 añade .wpcf7-not-valid) */
.wpcf7-form .wpcf7-not-valid {
    border-color: #dc2626;
    background-color: #fee2e2;
}

/* Botón de envío – mismo radio */
.wpcf7-form .wpcf7-submit {
    display: inline-block;
    padding: .75rem 1.5rem;
    border-radius: 10px;
    background: #3b82f6;
    color: #fff;
    border: none;
    cursor: pointer;
    transition: background .2s ease;
}
.wpcf7-form .wpcf7-submit:hover {
    background: #2563eb;
}

.wpcf7-form .wpcf7-acceptance {
	border: none!important;
}