.elementor-3655 .elementor-element.elementor-element-7e06b96{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}/* Start custom CSS for container, class: .elementor-element-7e06b96 *//* ==============================
   ESTILOS GENERALES DE LA PÁGINA
   ============================== */
body {
    font-family: 'Nunito', 'Poppins', sans-serif !important;
    color: #1b1b1b;
}

/* ==============================
   TÍTULOS Y SUBTÍTULOS
   ============================== */
.credito-title {
    font-size: 36px;
    font-weight: 800;
    color: #001C54;
    text-align: center;
    margin-bottom: 10px;
}

.credito-subtitle {
    font-size: 18px;
    color: #333;
    line-height: 1.55;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 40px auto;
}

/* ==============================
   CONTENEDOR PRINCIPAL
   ============================== */
.credito-container {
    width: 100%;
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
}

/* ==============================
   TARJETA DEL FORMULARIO
   ============================== */
.credito-card {
    background: #ffffff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    border: 1px solid #f0f0f0;
}

/* ==============================
   GRID DEL FORMULARIO (CF7)
   ============================== */
.cf7-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 20px;
}

.cf7-full {
    grid-column: span 2;
}

/* ==============================
   LABELS
   ============================== */
.cf7-grid label {
    font-weight: 600;
    font-size: 15px;
    color: #001C54;
    margin-bottom: 6px;
    display: block;
}

/* ==============================
   INPUTS, TEXTAREAS, SELECTS
   ============================== */
.cf7-grid input,
.cf7-grid select,
.cf7-grid textarea {
    width: 100%;
    padding: 14px 18px;
    background: #f9fafc;
    border: 1px solid #d7dbe5;
    border-radius: 10px;
    font-size: 15px;
    color: #333;
    transition: all 0.25s ease;
}

/* Hover */
.cf7-grid input:hover,
.cf7-grid select:hover,
.cf7-grid textarea:hover {
    border-color: #0066cc;
}

/* Focus */
.cf7-grid input:focus,
.cf7-grid select:focus,
.cf7-grid textarea:focus {
    border-color: #0055bb;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(0,102,204,0.15);
    outline: none;
}

/* ==============================
   SELECT: FLECHA MODERNA
   ============================== */
.cf7-grid select {
    appearance: none;
    background-image: url('data:image/svg+xml;utf8,<svg fill="%230055BB" height="24" viewBox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"><path d="M7 10l5 5 5-5z"/></svg>');
    background-repeat: no-repeat;
    background-size: 18px;
    background-position: right 16px center;
}

/* ==============================
   CHECKBOX
   ============================== */
.wpcf7-list-item {
    margin-left: 0 !important;
}

.wpcf7-list-item-label {
    margin-left: 8px;
}

/* ==============================
   BOTÓN ENVIAR
   ============================== */
.form-submit input[type="submit"] {
    width: 100%;
    padding: 16px;
    background: #0055BB;
    color: #fff;
    border: none;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    letter-spacing: 0.5px;
    transition: all 0.25s ease;
    box-shadow: 0 6px 14px rgba(0,85,187,0.3);
}

.form-submit input[type="submit"]:hover {
    background: #003F8A;
    transform: translateY(-2px);
}

/* ==============================
   RESPONSIVE
   ============================== */
@media (max-width: 768px) {
    .cf7-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }
    .cf7-full {
        grid-column: span 1;
    }
    .credito-card {
        padding: 25px;
    }
    .credito-title {
        font-size: 30px;
    }
}
/* Alinear checkbox + texto en una sola línea */
.wpcf7-list-item {
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    margin: 0 !important;
}

/* Tamaño y estilo del checkbox */
.wpcf7-list-item input[type="checkbox"] {
    width: 18px;
    height: 18px;
    border-radius: 4px;
    border: 2px solid #0055BB;
    cursor: pointer;
}

/* Texto */
.wpcf7-list-item-label {
    font-size: 15px;
    color: #333;
}

/* Cuando está marcado */
.wpcf7-list-item input[type="checkbox"]:checked {
    accent-color: #0055BB; /* Hace el check azul corporativo */
}

/* Eliminar fondo heredado de Elektra */
.cf7-grid select {
    background-image: none !important;
    background-color: #f9fafc !important;
}

/* Añadir solo nuestra flecha */
.cf7-grid select {
    background-image: url('data:image/svg+xml;utf8,<svg fill="%230055BB" height="24" viewBox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"><path d="M7 10l5 5 5-5z"/></svg>') !important;
    background-repeat: no-repeat !important;
    background-position: right 16px center !important;
    background-size: 18px !important;
}/* End custom CSS */