/*
=====================================  FOOTER
=====================================  */
.footer-section::before {
    background-color: transparent !important;
}

.footer-widgets-wrapper .single-footer-widget .widget-head h5 {
    /* 	color: #121315; */
}

.footer-widgets-wrapper .single-footer-widget .footer-content p {
    /*     color: #121315; */
}

.footer-content {
    color: #e73b38 !important;
}

.footer-content p {
    color: #e73b38 !important;
}

.menu-footer-menu-1-container ul li a,
.menu-footer-menu-2-container ul li a,
.menu-footer-menu-3-container ul li a {
    color: #e73b38 !important;
}


/* 
=====================================
FORMULARIO CONTACTO
===================================== 
*/

/* ---------- INPUTS NATIVOS ---------- */
.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 input[type="tel"],
.wpcf7 input[type="number"],
.wpcf7 input[type="url"],
.wpcf7 input[type="date"],
.wpcf7 input[type="file"],
.wpcf7 textarea {
    background-color: #ffffff;
    border: 1px solid #000000;
    color: #000000;
    border-radius: 4px;
    padding: 0.5rem 0.75rem;
    width: 100%;
    box-shadow: none;
}

/* Altura consistente (excepto textarea y file) */
.wpcf7 input:not([type="file"]),
.wpcf7 select {
    height: calc(2.5rem + 2px);
}

/* Textarea */
.wpcf7 textarea {
    min-height: 120px;
    resize: vertical;
}

/* Focus */
.wpcf7 input:focus,
.wpcf7 textarea:focus {
    outline: none;
    border-color: #000000;
    box-shadow: none;
}

/* ---------- NICE SELECT (SELECTS) ---------- */
.wpcf7 .nice-select.wpcf7-form-control {
    background-color: #ffffff;
    border: 1px solid #000000;
    color: #000000;
    border-radius: 4px;
    height: calc(2.5rem + 2px);
    line-height: 2.5rem;
    padding-left: 0.75rem;
    padding-right: 2.5rem;
    box-shadow: none;
    width: 100%;
}

/* Texto actual */
.wpcf7 .nice-select .current {
    color: #000000;
}

/* Flecha */
.wpcf7 .nice-select:after {
    border-bottom: 2px solid #000000;
    border-right: 2px solid #000000;
    height: 7px;
    width: 7px;
    right: 15px;
    margin-top: -4px;
}

/* Dropdown */
.wpcf7 .nice-select .list {
    background-color: #ffffff;
    border: 1px solid #000000;
    border-radius: 4px;
    margin-top: 4px;
    box-shadow: none;
    max-height: 220px;
    overflow-y: auto;
}

/* Opciones */
.wpcf7 .nice-select .option {
    color: #000000;
    padding: 8px 12px;
}

/* Hover opción */
.wpcf7 .nice-select .option:hover,
.wpcf7 .nice-select .option.focus {
    background-color: #f2f2f2;
}

/* Seleccionada */
.wpcf7 .nice-select .option.selected {
    background-color: #000000;
    color: #ffffff;
}

/* ---------- CHECKBOX / RADIO ---------- */
.wpcf7 input[type="checkbox"],
.wpcf7 input[type="radio"] {
    accent-color: #000000;
}

/* ---------- VALIDACIÓN CF7 ---------- */
.wpcf7 .wpcf7-not-valid {
    border-color: #000000;
}

/* ---------- BOTÓN ---------- */
.wpcf7 input[type="submit"] {
    background-color: #000000;
    color: #ffffff;
    border: 1px solid #000000;
    padding: 10px 20px 40px 21px;
    /* border-radius: 8px; */
    border-radius: 35px !important;
    padding: 15px 21px !important;
    height: auto !important;

    cursor: pointer;
    display: inline-block;
}

.wpcf7 input[type="submit"]:hover {
    /* background-color: #ffffff;
    color: #000000; */
}

/* CHECKBOXES EN LISTA VERTICAL */

/* Contenedor del grupo de checkboxes */
.wpcf7 .wpcf7-form-control.wpcf7-checkbox {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

/* Cada opción */
.wpcf7 .wpcf7-form-control.wpcf7-checkbox .wpcf7-list-item {
    margin: 0;
    display: flex;
    align-items: center;
}

/* Label */
.wpcf7 .wpcf7-form-control.wpcf7-checkbox .wpcf7-list-item-label {
    margin-left: 0.5rem;
}

/* Checkbox */
.wpcf7 input[type="checkbox"] {
    width: 16px;
    height: 16px;
    accent-color: #000000;
}


.wpcf7 .nice-select:after {
    display: none;
}

/* ASTERISCO CAMPOS OBLIGATORIOS */

.wpcf7 form .form-label.is-required::after {
    content: " *";
    color: red;
    font-weight: 700;
}


/* Estilos para el formulario de WhatsApp */
#send-whatsapp {
    transition: background-color 0.3s ease;
}

#send-whatsapp:hover {
    background-color: #128C7E !important;
}