.elementor-2564 .elementor-element.elementor-element-f7e45e7{--display:flex;}/* Start custom CSS for html, class: .elementor-element-024f401 *//* Formulario Contenedor */
.custom-contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px; /* Espacio vertical de 20px entre filas */
    width: 100%;
    max-width: 600px; /* Ajusta este ancho según tu diseño en Elementor */
    box-sizing: border-box;
}

/* Filas con múltiples columnas (útil para futuros formularios) */
.custom-contact-form .form-row {
    display: flex;
    gap: 20px; /* Espacio horizontal de 20px entre columnas */
    width: 100%;
}

.custom-contact-form .form-row .form-group {
    flex: 1;
}

/* Contenedor de cada campo */
.custom-contact-form .form-group {
    display: flex;
    flex-direction: column;
}

/* Etiquetas (Labels) */
.custom-contact-form label {
    font-family: 'Roboto', sans-serif;
    font-size: 15px;
    font-weight: 600; /* Seminegrita */
    color: #065096;
    margin-bottom: 10px; /* Espaciado de 10px con su caja de texto */
}

/* Cajas de entrada de datos (Inputs y Textarea) */
.custom-contact-form input[type="text"],
.custom-contact-form input[type="email"],
.custom-contact-form textarea {
    font-family: 'Roboto', sans-serif;
    font-size: 15px;
    font-weight: 600; /* Seminegrita */
    color: #54595F;
    background-color: #FFFFFF; /* Fondo blanco */
    border: 1px solid #54595F; /* Borde estipulado */
    padding: 12px 15px; /* Espacio interno cómodo para escribir */
    border-radius: 0px; /* Bordes rectos por defecto */
    transition: border-color 0.3s ease;
    width: 100%;
    box-sizing: border-box;
}

/* Enfoque de las cajas (opcional pero recomendado para accesibilidad) */
.custom-contact-form input:focus,
.custom-contact-form textarea:focus {
    outline: none;
    border-color: #065096; /* Cambia al color corporativo al hacer clic */
}

/* Ajuste específico para el área de mensaje */
.custom-contact-form textarea {
    resize: vertical;
    min-height: 120px;
}

/* Grupo del Checkbox de Privacidad */
.custom-contact-form .form-checkbox {
    flex-direction: row;
    align-items: center;
    gap: 10px;
}

.custom-contact-form .form-checkbox input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: #065096; /* El check interno se vuelve azul */
}

.custom-contact-form .form-checkbox label {
    margin-bottom: 0; /* Quitamos el margen inferior en los checkboxes */
    cursor: pointer;
}

.custom-contact-form .form-checkbox label a {
    color: #065096;
    text-decoration: underline;
}

/* Botón de Enviar */
.custom-contact-form .btn-submit {
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    font-weight: 600;
    background-color: #065096;
    color: #FFFFFF;
    border: none;
    padding: 15px 35px;
    width: fit-content; /* Se adapta al texto o puedes usar 100% si lo quieres ancho completo */
    cursor: pointer;
    border-radius: 0 40px 0 0; /* Radio específico: esquina superior derecha */
    transition: background-color 0.3s ease, transform 0.1s ease;
}

.custom-contact-form .btn-submit:hover {
    background-color: #043d73; /* Un tono un pelín más oscuro al pasar el cursor */
}

.custom-contact-form .btn-submit:active {
    transform: scale(0.98); /* Pequeño efecto de hundido al pulsar */
}

/* Contenedor de las etiquetas en línea */
.custom-tags-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px; /* Separación entre botones */
    width: 100%;
}

/* Esconder el checkbox nativo de HTML */
.tag-button input[type="checkbox"] {
    display: none !important;
}

/* Diseño del botón en estado desactivado (Por defecto) */
.tag-button span {
    display: inline-flex;
    align-items: center;
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #54595F;
    background-color: #FFFFFF;
    border: 1px solid #54595F;
    padding: 8px 14px;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.2s ease;
    user-select: none;
}

/* Ocultar la X cuando el botón NO está seleccionado */
.tag-button span .tag-x {
    display: none;
}

/* DISEÑO DEL BOTÓN CUANDO ESTÁ SELECCIONADO (Activo) */
.tag-button input[type="checkbox"]:checked + span {
    background-color: #2491CF !important;
    color: #FFFFFF !important;
    border-color: #2491CF !important;
}

/* Mostrar la X con el formato "Texto | X" al estar seleccionado */
.tag-button input[type="checkbox"]:checked + span .tag-x {
    display: inline-block;
    font-style: normal;
    font-weight: bold;
    font-size: 15px;
    margin-left: 10px;
    padding-left: 10px;
    border-left: 1px solid rgba(255, 255, 255, 0.4); /* Línea vertical | */
    line-height: 1;
}

/* Pequeño efecto hover decorativo */
.tag-button span:hover {
    border-color: #065096;
    color: #065096;
}
.tag-button input[type="checkbox"]:checked + span:hover {
    background-color: #e11d1d !important;
    color: #FFFFFF !important;
}/* End custom CSS */