@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&family=Lexend+Deca:wght@100..900&display=swap');


/* Reset y configuración base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'DM Sans', sans-serif;
    background-color: rgb(251, 249, 245);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.main-section {
    display: flex;
    padding-bottom: 50px;
}

/* Barra superior azul */
.top-bar {
    background-color: #3b44ac;
    height: 50px;
    width: 100%;
}

/* Header principal */
.main-header {
    background-color: rgb(251, 249, 245);
    z-index: 1000;
    margin-bottom: 50px;
}

.header-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 70px 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 90px;
}

/* Logo */
.logo-section {
    flex-shrink: 0;
}

.logo-link {
    display: inline-block;
    line-height: 0;
}

.logo-img {
    height: 100px;
    width: auto;
    display: block;
}

/* Navegación */
.main-nav {
    flex: 1;
    display: flex;
    justify-content: center;
    margin: 0 20px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 15px;
    align-items: center;
}

.nav-item {
    position: relative;
}

.nav-link {
    color: #1F242E;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: color 0.3s ease;
    white-space: nowrap;
}

    .nav-link:hover {
        color: #3b44ac;
    }

.dropdown-icon {
    font-size: 10px;
    transition: transform 0.3s ease;
}

.nav-item.has-dropdown:hover .dropdown-icon {
    transform: rotate(180deg);
}

/* Sección derecha: redes sociales y botón */
.header-actions {
    display: flex;
    align-items: center;
    gap: 25px;
    flex-shrink: 0;
}

/* Redes sociales */
.social-links {
    display: flex;
    gap: 15px;
    align-items: center;
}

.social-icon {
    color: #1F242E;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.3s ease;
    text-decoration: none;
}

    .social-icon:hover {
        color: #3b44ac;
    }

    .social-icon svg {
        width: 20px;
        height: 20px;
    }

/* Botón Campus Virtual */
.btn-campus {
    background-color: #3b44ac;
    color: #ffffff;
    padding: 10px 30px;
    border-radius: 0px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 400;
    transition: background-color 0.3s ease, transform 0.2s ease;
    white-space: nowrap;
}

    .btn-campus:hover {
        background-color: rgb(102, 142, 163);
        transform: translateY(-1px);
        text-decoration: none;
        color: #FFF;
    }

    .btn-campus:active {
        transform: translateY(0);
    }

/* Botón hamburguesa - oculto por defecto */
.mobile-menu-toggle {
    display: none;
}

/* ============================================
   SISTEMA DE FORMULARIOS - GRID FLEXIBLE
   ============================================ */

/* Fila contenedora */

.form-general-holder {
    background-color: #FFF;
    padding: 40px;
    border: solid 1px rgba(230, 231, 232, 1);
}

.form-general-header, .form-general-body, .form-general-inputs, .form-general-accion, .form-general-banner {
    width: 100%;
    margin: 0 auto;
}

    .form-general-header h2 {
        font-size: 24px;
        font-weight: 800;
    }

    .form-general-header h2 small {
        font-size: 12px;
        font-weight: 600;
        color: #dc3545;
    }

    .form-general-header h3 {
        font-size: 20px;
        font-weight: 600;
    }

.form-general-body article {
    font-size: 13px;
    font-weight: 400;
    color: #616161;
    padding-top: 20px;
    padding-bottom: 20px;
}

.form-general-row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(210, 211, 212, 0.5);
}

    .form-general-row:last-child {
        border-bottom: none;
        margin-bottom: 0;
        padding-bottom: 0;
    }

    .form-general-row ul {
        list-style: none;
    }

        .form-general-row ul li {
            font-size: 14px;
            border: solid 1px rgba(0, 0, 0, 0.1);
            padding: 10px;
            margin: 20px;
            background-color: rgb(251, 249, 245);
        }

        .form-general-row ul li strong {
            padding-right: 20px;
        }

/* Columnas del sistema */
.form-general-col100 {
    flex: 0 0 100%;
    max-width: 100%;
}

.form-general-col50 {
    flex: 0 0 calc(50% - 10px);
    max-width: calc(50% - 10px);
}

.form-general-col33 {
    flex: 0 0 calc(33.333% - 13.333px);
    max-width: calc(33.333% - 13.333px);
}

.form-general-col25 {
    flex: 0 0 calc(25% - 15px);
    max-width: calc(25% - 15px);
}

.form-general-wrapbox {
    width: 100%;
    border: solid 1px rgba(0, 0, 0, 0.1);
    padding: 20px;
}

/* Labels de formulario */
.form-general-inputs label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #1F242E;
    margin-bottom: 8px;
}

.form-general-alert-free {
    width: 90%;
    padding: 10px 20px;
    margin-top: 20px;
    border-radius: 10px;
    background-color: rgba(23, 166, 61, 0.2);
    color: rgba(14, 107, 39, 1);
}
/* Inputs de texto */
.form-general-inputs input[type="text"],
.form-general-inputs input[type="email"],
.form-general-inputs input[type="tel"],
.form-general-inputs input[type="number"],
.form-general-inputs input[type="date"],
.form-general-inputs select,
.form-general-inputs textarea {
    width: 100%;
    height: 50px;
    padding: 12px 20px;
    border: solid 1px rgba(210, 211, 212, 1);
    color: #1F242E;
    font-size: 14px;
    font-weight: 400;
    font-family: 'DM Sans', sans-serif;
    background-color: #ffffff;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

    .form-general-inputs input[type="text"]:focus,
    .form-general-inputs input[type="email"]:focus,
    .form-general-inputs input[type="tel"]:focus,
    .form-general-inputs input[type="number"]:focus,
    .form-general-inputs input[type="date"]:focus,
    .form-general-inputs select:focus,
    .form-general-inputs textarea:focus {
        outline: none;
        border-color: #3b44ac;
        box-shadow: 0 0 0 3px rgba(59, 68, 172, 0.1);
    }

/* Textarea */
.form-general-inputs textarea {
    height: 120px;
    resize: vertical;
    min-height: 80px;
    max-height: 300px;
}

/* Select */
.form-general-inputs select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%231F242E' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    padding-right: 40px;
}

/* Placeholders */
.form-general-inputs input::placeholder,
.form-general-inputs textarea::placeholder {
    color: #9E9E9E;
    font-weight: 400;
}

/* Estados de validación */
.form-general-inputs input.error,
.form-general-inputs select.error,
.form-general-inputs textarea.error {
    border-color: #dc3545;
}

.form-general-inputs input.success,
.form-general-inputs select.success,
.form-general-inputs textarea.success {
    border-color: #28a745;
}

/* Mensaje de error */
.form-error-message {
    color: #dc3545;
    font-size: 12px;
    margin-top: 5px;
    display: block;
}

/* Mensaje de ayuda */
.form-help-text {
    color: #616161;
    font-size: 12px;
    margin-top: 5px;
    display: block;
}

.form-general-text {
    color: #3b44ac;
}

.red-text {
    color: #dc3545;
}
.green-text {
    color: green;
}
.orange-text {
    color: orange;
}

/* ============================================
   RESPONSIVE - TABLET
   ============================================ */
@media (max-width: 992px) {
    .form-general-row {
        gap: 15px;
        margin-bottom: 15px;
        padding-bottom: 15px;
    }

    .form-general-col50 {
        flex: 0 0 calc(50% - 7.5px);
        max-width: calc(50% - 7.5px);
    }

    .form-general-col33 {
        flex: 0 0 calc(50% - 7.5px);
        max-width: calc(50% - 7.5px);
    }

    .form-general-col25 {
        flex: 0 0 calc(50% - 7.5px);
        max-width: calc(50% - 7.5px);
    }
}

/* ============================================
   RESPONSIVE - MOBILE
   ============================================ */
@media (max-width: 768px) {
    .form-general-row {
        gap: 15px;
        margin-bottom: 15px;
        padding-bottom: 15px;
    }

    .form-general-col50,
    .form-general-col33,
    .form-general-col25 {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .form-general-inputs input[type="text"],
    .form-general-inputs input[type="email"],
    .form-general-inputs input[type="tel"],
    .form-general-inputs input[type="number"],
    .form-general-inputs input[type="date"],
    .form-general-inputs select,
    .form-general-inputs textarea {
        height: 45px;
        padding: 10px 15px;
        font-size: 16px; /* Evita zoom automático en iOS */
    }

    .form-general-inputs textarea {
        height: 100px;
    }

    .form-general-inputs label {
        font-size: 13px;
        margin-bottom: 6px;
    }
}

/* ============================================
   RESPONSIVE - MOBILE PEQUEÑO
   ============================================ */
@media (max-width: 480px) {
    .form-general-holder {
        padding: 20px;
    }

    .form-general-row {
        gap: 12px;
        margin-bottom: 12px;
        padding-bottom: 12px;
    }
}

.input-minusc {
    text-transform: lowercase;
}

.form-general-accion {
    text-align: center;
    padding-top: 30px;
}

    .form-general-accion a {
        background-color: #3b44ac;
        color: #ffffff;
        padding: 10px 30px;
        border-radius: 0px;
        text-decoration: none;
        font-size: 16px;
        font-weight: 400;
        transition: background-color 0.3s ease, transform 0.2s ease;
        white-space: nowrap;
    }

    .form-general-accion a:hover {
        background-color: rgb(102, 142, 163);
        transform: translateY(-1px);
        text-decoration: none;
        color: #FFF;
    }

.form-general-banner img {
    width: 100%;
}

/* Fin de formularios */

/* Responsive */
@media (max-width: 1200px) {
    .header-container {
        padding: 0 30px;
    }

    .nav-menu {
        gap: 25px;
    }

    .nav-link {
        font-size: 15px;
    }
}

@media (max-width: 992px) {
    .header-container {
        padding: 0 20px;
        height: 80px;
    }

    .logo-img {
        height: 50px;
    }

    .nav-menu {
        gap: 20px;
    }

    .nav-link {
        font-size: 14px;
    }

    .btn-campus {
        padding: 10px 20px;
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    .top-bar {
        height: 40px;
    }

    .header-container {
        padding: 20px;
        height: auto;
        position: relative;
    }

    .logo-img {
        height: 60px;
    }

    /* Botón hamburguesa */
    .mobile-menu-toggle {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        width: 30px;
        height: 24px;
        background: none;
        border: none;
        cursor: pointer;
        padding: 0;
        z-index: 1001;
        position: relative;
    }

    .hamburger-line {
        width: 100%;
        height: 3px;
        background-color: #1F242E;
        transition: all 0.3s ease;
        border-radius: 2px;
    }

    /* Animación del botón hamburguesa cuando está activo */
    .mobile-menu-toggle.active .hamburger-line:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }

    .mobile-menu-toggle.active .hamburger-line:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-toggle.active .hamburger-line:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }

    /* Menú de navegación en mobile */
    .main-nav {
        display: block;
        position: fixed;
        top: 90px;
        left: 0;
        right: 0;
        background-color: rgb(251, 249, 245);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease, padding 0.4s ease;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        margin: 0;
        z-index: 999;
    }

        .main-nav.active {
            max-height: 500px;
            padding: 20px 0;
        }

    .nav-menu {
        flex-direction: column;
        gap: 0;
        align-items: stretch;
    }

    .nav-item {
        border-bottom: 1px solid rgba(31, 36, 46, 0.1);
    }

        .nav-item:last-child {
            border-bottom: none;
        }

    .nav-link {
        padding: 15px 20px;
        display: flex;
        justify-content: space-between;
        font-size: 16px;
    }

    /* Ocultar acciones del header en mobile */
    .header-actions {
        display: none;
    }
}

/* Tablets pequeñas */
@media (max-width: 600px) {
    .header-container {
        padding: 15px;
    }

    .logo-img {
        height: 70px;
    }

    .main-nav {
        top: 80px;
    }
}



/* ============================================
   FOOTER STYLES - CEBITEPAL
   ============================================ */

/* Footer principal */
.main-footer {
    background-color: #3b44ac;
    color: #ffffff;
    width: 100%;
}

/* ============================================
   FILA 1: Logo y Frase
   ============================================ */
.footer-row-1 {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding: 60px 0;
}

    .footer-row-1 .footer-container {
        max-width: 1440px;
        margin: 0 auto;
        padding: 0 50px;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 60px;
        align-items: center;
    }

.footer-logo-section {
    display: flex;
    justify-content: flex-start;
}

.footer-logo {
    height: 120px;
    width: auto;
}

.footer-tagline-section {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    font-family: "Lexend Deca", sans-serif;
}

.footer-tagline {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    color: #ffffff;
    text-align: left;
    margin: 0;
}

/* ============================================
   FILA 2: Información en 4 columnas
   ============================================ */
.footer-row-2 {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding: 60px 0;
}

    .footer-row-2 .footer-container {
        max-width: 1440px;
        margin: 0 auto;
        padding: 0 50px;
        display: grid;
        grid-template-columns: 2fr 1.5fr 1fr 1fr;
        gap: 40px;
    }

.footer-col {
    display: flex;
    flex-direction: column;
}

/* Columna 1: Texto descriptivo */
.footer-col-about {
    gap: 20px;
}

.footer-about-text {
    font-size: 14px;
    line-height: 1.6;
    color: #ffffff;
    margin: 0;
    font-family: "Lexend Deca", sans-serif;
}

.footer-contact-btn {
    background-color: rgba(102, 142, 163, 1);
    color: #ffffff;
    padding: 12px 30px;
    border-radius: 0px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: background-color 0.3s ease, transform 0.2s ease;
    display: inline-block;
    align-self: flex-start;
}

    .footer-contact-btn:hover {
        background-color: rgba(102, 142, 163, 0.8);
        transform: translateY(-1px);
        text-decoration: none;
        color: #ffffff;
    }

/* Columna 2: Dirección y Email */
.footer-col-contact {
    gap: 20px;
}

.footer-address {
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
    font-family: "Lexend Deca", sans-serif;
}

    .footer-address strong {
        font-weight: 600;
    }

.footer-email {
    font-size: 14px;
    line-height: 1.6;
    color: #000;
}

    .footer-email strong {
        font-weight: 600;
    }

    .footer-email a {
        color: #000;
        text-decoration: none;
        transition: opacity 0.3s ease;
        font-family: "Lexend Deca", sans-serif;
    }

        .footer-email a:hover {
            opacity: 0.8;
            text-decoration: underline;
        }

/* Columna 3: Links */
.footer-col-links {
    gap: 15px;
}

.footer-col-title {
    font-size: 16px;
    font-weight: 700;
    margin: 0 0 10px 0;
    color: #ffffff;
}

.footer-links-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

    .footer-links-list li a {
        color: #ffffff;
        text-decoration: none;
        font-size: 14px;
        transition: opacity 0.3s ease;
    }

        .footer-links-list li a:hover {
            opacity: 0.8;
        }

/* Columna 4: Redes Sociales */
.footer-col-social {
    gap: 15px;
}

.footer-social-links {
    display: flex;
    gap: 15px;
}

.footer-social-icon {
    color: #ffffff;
    font-size: 24px;
    transition: opacity 0.3s ease, transform 0.2s ease;
    text-decoration: none;
}

    .footer-social-icon:hover {
        opacity: 0.8;
        transform: translateY(-2px);
    }

/* ============================================
   FILA 3: Copyright
   ============================================ */
.footer-row-3 {
    padding: 30px 0;
}

    .footer-row-3 .footer-container {
        max-width: 1440px;
        margin: 0 auto;
        padding: 0 50px;
        display: flex;
        justify-content: center;
        align-items: center;
    }

.footer-copyright {
    text-align: center;
}

    .footer-copyright p {
        font-size: 13px;
        margin: 0;
        color: rgba(255, 255, 255, 0.8);
    }

    .footer-copyright p a {
        color: #FFF;
    }

/* ============================================
   RESPONSIVE - TABLET
   ============================================ */
@media (max-width: 992px) {
    .footer-row-1 {
        padding: 40px 0;
    }

        .footer-row-1 .footer-container {
            padding: 0 30px;
            gap: 40px;
        }

    .footer-logo {
        height: 100px;
    }

    .footer-tagline {
        font-size: 36px;
    }

    .footer-row-2 {
        padding: 40px 0;
    }

        .footer-row-2 .footer-container {
            padding: 0 30px;
            grid-template-columns: 1fr 1fr;
            gap: 30px;
        }

    .footer-col-about {
        grid-column: 1 / -1;
    }
}

/* ============================================
   RESPONSIVE - MOBILE
   ============================================ */
@media (max-width: 768px) {
    .footer-row-1 {
        padding: 30px 0;
    }

        .footer-row-1 .footer-container {
            padding: 0 20px;
            grid-template-columns: 1fr;
            gap: 30px;
            text-align: center;
        }

    .footer-logo-section {
        justify-content: center;
    }

    .footer-logo {
        height: 80px;
    }

    .footer-tagline-section {
        justify-content: center;
    }

    .footer-tagline {
        font-size: 28px;
        text-align: center;
    }

    .footer-row-2 {
        padding: 30px 0;
    }

        .footer-row-2 .footer-container {
            padding: 0 20px;
            grid-template-columns: 1fr;
            gap: 30px;
        }

    .footer-col-about {
        grid-column: 1;
        text-align: center;
    }

    .footer-about-text {
        font-size: 13px;
    }

    .footer-contact-btn {
        align-self: center;
    }

    .footer-col-contact,
    .footer-col-links,
    .footer-col-social {
        text-align: center;
    }

    .footer-links-list {
        align-items: center;
    }

    .footer-social-links {
        justify-content: center;
    }

    .footer-row-3 .footer-container {
        padding: 0 20px;
    }

    .footer-copyright p {
        font-size: 12px;
    }
}

/* ============================================
   RESPONSIVE - MOBILE PEQUEÑO
   ============================================ */
@media (max-width: 480px) {
    .footer-tagline {
        font-size: 24px;
    }

    .footer-logo {
        height: 70px;
    }
}

/* ============================================
   Resultado de pago
   ============================================ */

.resultado-pago-ok, .resultado-pago-bd, .resultado-pago-wr{
    width: 100%;
    text-align: center;
    padding: 20px;
    color: #FFF;
    margin-top: 10px;
}

.resultado-pago-ok i, .resultado-pago-bd i, .resultado-pago-wr i{
    font-size: 40px;
}


.resultado-pago-ok {
    background-color: green;
}

.resultado-pago-bd {
    background-color: red;
}

.resultado-pago-wr {
    background-color: orange;
}

/* Contenedor general que ya tienes */
.accion-financiacion-tabla-holder {
    border: solid 1px rgba(221, 221, 221, 1);
    border-radius: 1px;
    background-color: rgba(251, 249, 245, 1);
    padding: 20px;
    margin-bottom: 30px;
    max-width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

/* Tabla principal */
.accion-financiacion-tabla {
    width: 100%;
    min-width: 650px; /* ajusta a gusto: 600, 700, etc. */
    border-collapse: collapse;
    border-spacing: 0;
    font-size: 0.95rem;
    background-color: #ffffff;
}

    /* Encabezados */
    .accion-financiacion-tabla thead tr {
        background: rgba(64, 38, 184, 1); /* color morado que vienes usando */
        color: #ffffff;
    }

    .accion-financiacion-tabla thead th {
        padding: 0.75rem 0.9rem;
        text-align: left;
        font-weight: 600;
        white-space: nowrap;
        border-bottom: 2px solid rgba(0, 0, 0, 0.08);
    }

    /* Celdas del cuerpo */
    .accion-financiacion-tabla tbody td {
        padding: 0.65rem 0.9rem;
        border-top: 1px solid rgba(0, 0, 0, 0.05);
        vertical-align: middle;
        text-align: center;
        white-space: nowrap;
    }

    /* Filas alternadas */
    .accion-financiacion-tabla tbody tr:nth-child(odd) {
        background-color: #ffffff;
    }

    .accion-financiacion-tabla tbody tr:nth-child(even) {
        background-color: #f7f7f7;
    }

    /* Hover */
    .accion-financiacion-tabla tbody tr:hover {
        background-color: #ece9fb; /* un lilita muy suave */
    }

    /* Alineación para columnas numéricas (opcional) */
    .accion-financiacion-tabla .accion-financiacion-col-num {
        text-align: right;
    }

    /* Fila de total en la tabla de financiación */
    .accion-financiacion-tabla .accion-financiacion-total-row {
        background-color: #f0e9ff; /* lila muy suave */
        font-weight: 600;
        border-top: 2px solid rgba(64, 38, 184, 1);
    }

    .accion-financiacion-tabla .accion-financiacion-total-label {
        text-align: right;
        text-transform: uppercase;
        letter-spacing: 0.03em;
        color: #333333;
    }


/* Responsivo: ajustar tipografía y padding en móviles */
@media (max-width: 768px) {
    .accion-financiacion-tabla-holder {
        padding: 12px;
        width: 316px;
    }

    .accion-financiacion-tabla thead th,
    .accion-financiacion-tabla tbody td {
        padding: 0.55rem 0.6rem;
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .accion-financiacion-tabla thead th,
    .accion-financiacion-tabla tbody td {
        padding: 0.45rem 0.5rem;
        font-size: 0.8rem;
    }
}

.contratos-frame-holder, .firma-financiacion-holder {
    border: solid 1px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    padding: 80px;
    min-height: 500px;
    overflow-y: auto;
    box-shadow: 0px 0px 6px 3px rgba(0, 0, 0, 0.2);
}

    .contratos-frame-holder iframe {
        width: 100%;
        height: 600px;
        border: none;
        border-radius: 10px;
    }

.contratos-frame {
    font-size: 1em;
    color: rgba(0, 0, 0, 0.8);
}

    .contratos-frame h1 {
        font-size: 1.5em;
        font-weight: 600;
        margin-bottom: 10px;
        text-align: center;
        color: rgba(64, 38, 184, 1);
        text-transform: uppercase;
        margin-bottom: 50px;
    }

    .contratos-frame h2 {
        font-size: 1.2em;
        font-weight: 600;
        margin-bottom: 10px;
        color: rgba(64, 38, 184, 1);
        text-transform: uppercase;
        margin-top: 40px;
        margin-bottom: 10px;
    }

    .contratos-frame h3 {
        font-size: 1.1em;
        font-weight: 600;
        margin-bottom: 10px;
        color: rgba(64, 38, 184, 1);
        text-transform: uppercase;
    }



    .contratos-frame p, .contratos-frame ul, .contratos-frame ol {
        font-size: 0.8em;
    }

    .contratos-frame p {
        line-height: 28px;
    }

.fr-firma-qr {
    font-family: 'Courier New', Courier, monospace;
    font-size: 12px;
    color: #ff0000;
    font-weight: normal;
    letter-spacing: 0.5px;
}

.firma-financiacion-holder {
    width: 90%;
    margin: 0 auto;
    border: solid 1px rgba(50, 168, 82, 1);
}

.firma-financiacion-text {
    margin-bottom: 20px;
}

    .firma-financiacion-text p {
        font-size: 16px;
        line-height: 28px;
    }

.firma-financiacion-input input {
    border: solid 1px #c49433;
    height: 80px;
    font-size: 50px;
    padding: 20px;
    color: #c49433;
    text-align: center;
    margin-bottom: 20px;
}


.accion-financiacion {
    margin: 0 auto;
}

    .accion-financiacion a {
        background-color: rgba(64, 38, 184, 1);
        color: #f1c40f;
        display: block;
        text-align: center;
        border-radius: 10px;
        padding-top: 10px;
        padding-bottom: 10px;
        text-transform: uppercase;
        font-weight: 600;
    }

        .accion-financiacion a i {
            padding-right: 10px;
        }

        .accion-financiacion a:hover {
            background-color: #c49433;
            color: rgba(64, 38, 184, 1);
            text-decoration: none;
            transition: all 0.3s ease;
        }


.hint-text {
    font-size: 11px;
    color: #dc3545;
}

    .hint-text i {
        color: #dc3545;
        padding-right: 5px;
    }



.formatoCompromiso {
    width: 100%;
    color: rgba(0, 0, 0, 0.8);
    line-height: 28px;
    border: solid 1px rgba(0, 0, 0, 0.1);
    padding: 20px;
    max-height: 60vh;
    overflow-y: auto;
    margin-bottom: 50px;
}

    .formatoCompromiso p, .formatoCompromiso li {
        font-size: 14px;
    }

    .formatoCompromiso img {
        width: 150px;
        padding-top: 30px;
    }

    .formatoCompromiso b, .formatoCompromiso strong {
        color: #3B44AC;
        font-size: 14px;
    }