* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}



body {
    font-family: Arial, sans-serif;
    background-color: #ffffff;
    color: #333;
    font-family: 'Poppins', sans-serif;
    font-weight: bold;

}

.container-pri {
    text-align: center;
    background-color: #11315B;
    padding: 30px;
    border-radius: 10px;
    font-weight: bold;
}

.amount-pri {
    font-size: 4em;
    font-weight: bold;
    color: #38B6FF;
}

.currency-pri {
    font-size: 1.4em;
    color: #38B6FF;
    line-height: 2px;
}

.amount-value-pri {
    font-size: 1em;
}

.subtitle-pri {
    font-size: 0.9em;
}

.avatar {
    
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

.avatar-mobile {
    display: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
}


.cta-button-pri {
    background-color: #38B6FF;
    color: #FFFFFF;
    border: none;
    border-radius: 50px;
    padding: 10px 30px;
    font-size: 22px;
    cursor: pointer;
    margin-top: 20px;
    font-weight: bold;
}

.cta-button-pri:hover {
    background-color: #007ACC;
}

.footer-pri {
    margin-top: 20px;
    font-size: 0.8em;
}

.logo-pri {
    font-size: 3em;
    display: block;

}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1px;
}
/* Base del header */
.header-movil {
    background-color: white;
    padding: 10px 15px;
    width: 100%;
}
.header-movil .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
/* Logo */
.logo-mobile {
    height: 40px;
    width: auto;
}
/* Botón "Paga tu crédito" centrado */
.pay-button {
     display: none;
    
    background-color: #11315B;
    color: white;
    padding: 8px 16px;
    border-radius: 999px;
    font-weight: bold;
    text-decoration: none;
    font-size: 14px;
    white-space: nowrap;
}

/* Íconos a la derecha */
.header-icons {
    display: flex;
    align-items: center;
    gap: 10px;
}

.avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
}
#menu-btn i {
    font-size: 24px;
    color: #11315B;
}

header {

    color: white;
    font-weight: bold;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #FFFFFF;
}

header .logo img {
    height: 100px;
    width: 100px;

}

header nav ul {
    margin: 40px 0 0 0;
    list-style: none;
    display: flex;
    gap: 30px;
}

header nav ul li a {
    color: #808182;
    font-weight: 700;
    font-family: sans-serif;
    line-height: 1.39542023em;
    text-align: center;

    text-decoration: none;
}

.rounded-button {
    background-color: #38B6FF;
    color: #fff;
    border: none;
    border-radius: 20px;
    padding: 10px 20px;
    margin: 10px;
    font-size: 1em;
    cursor: pointer;
    text-align: center;
    transition: background-color 0.3s ease;

}


.header-movil nav ul li .rounded-button {
    background-color: #0F2644;
    color: #fff;
    padding: 10px 20px;
    border-radius: 20px;
}

.rounded-button:hover {
    background-color: #ff4b47;
}


#menu-btn {
    display: none;
    cursor: pointer;
    color: #11315B;
}

#menu-btn i {
    font-size: 24px;
}

.calculator-section {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0px 0px 30px 0px;
    background: linear-gradient(to bottom,
            #ffffff 0%,
            /* blanco arriba */
            #ffffff 5%,
            /* transición a azul */
            #11315B 5%,
            /* azul desde 25% */
            #11315B 85%,
            /* azul hasta 75% */
            #ffffff 75%,
            /* blanco desde 75% */
            #ffffff 100%
            /* blanco abajo */
        );
}



.perfomance {
    position: relative;
    background-color: #11315B;
    background-size: 100% 200%;
    background-repeat: no-repeat;
    text-align: center;


}

.decoracion {
    width: 100%;
    opacity: 1;
    -webkit-filter: invert(18%) sepia(92%) saturate(201%) hue-rotate(177deg) brightness(53%) contrast(93%);
}

.steps {
    background-color: #11315B;

}

#bolas {
    background-color: rgb(238, 60, 60);
    border-radius: 50%;
    width: 20%;
    height: 20%
}

.benefits-section {
    background-color: #11315B;
    padding: 50px 0;
    text-align: center;
}

.benefits-section .container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.benefits-section .benefit {
    width: 23%;
    /* Ajustar el ancho para que entren 4 en una fila */
    margin: 1%;
    background-color: #11315B;
    border-radius: 10px;
    padding: 10px;

    text-align: center;
}

.benefits-section .benefit .icon {
    margin-bottom: 10px;
}

.benefits-section .benefit img {
    width: 50px;
    /* Reducir tamaño del ícono */
    height: 50px;
    /* Reducir tamaño del ícono */
}

.benefits-section .benefit h3 {
    font-size: 14px;
    /* Reducir tamaño del texto */
    margin-top: 5px;
}

.container {
    display: flex;
    justify-content: space-around;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.benefit {
    text-align: center;
    margin: 22px;
}

.icon {
    background-color: #38B6FF;
    border-radius: 50%;
    width: 150px;
    height: 150px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.3s;
    margin: 0 auto;
}

.benefit:hover .icon {
    transform: scale(1.1);
}

.icon img {
    width: 50px;
    height: 50px;
}

h3 {
    color: #fff;
    margin-top: 10px;
    font-size: 14px;
    font-weight: normal;

    justify-content: center;
    align-items: center;
}


.steps .container {
    text-align: center;
}

.steps h1 {
    color: #fff;
    font-size: 40px;
    font-family: sans-serif;

}

.step {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    padding: 20px;
}

.step h3 {
    color: #007bff;
    font-size: 20px;
    margin-bottom: 10px;
}

.features {
    background-color: #f3f4f7;
    padding: 50px 0;
    text-align: center;
}


.credit-section {
    color: white;
    padding: 50px 0;
}

.container {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.credit-amount-section {
    background-color: #11315B;
    /* Fondo azul oscuro */
    color: white;
    /* Texto blanco */
    padding: 20px 0;
    text-align: center;
}

.credit-amount-section h2 {
    font-size: 24px;
    /* Tamaño de fuente ajustable */
    margin: 0;
}

/* Estilos mejorados para vence-credito */
.vence-credito {
    background: linear-gradient(135deg, #0F2644 0%, #1E5F8F 50%, #0F2644 100%);
    color: white;
    padding: 40px 20px;
    position: relative;
    overflow: hidden;
}

.vence-credito::before {
    content: "";
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: rgba(56, 182, 255, 0.1);
    border-radius: 50%;
}

.vence-credito::after {
    content: "";
    position: absolute;
    bottom: -30px;
    left: -30px;
    width: 150px;
    height: 150px;
    background: rgba(56, 182, 255, 0.05);
    border-radius: 50%;
}

.vence-contenido {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: center;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.vence-texto {
    flex: 1;
    min-width: 300px;
}

.vence-texto h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 15px;
    line-height: 1.2;
}

.vence-texto .subtitulo {
    font-size: 1.1rem;
    margin-bottom: 25px;
    opacity: 0.9;
}

.vence-botones {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 30px;
}

.btn-primario,
.btn-secundario {
    padding: 12px 20px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-primario {
    background: #38B6FF;
    color: white;
    border: 2px solid #38B6FF;
}

.btn-primario:hover {
    background: #1E5F8F;
    border-color: #1E5F8F;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(56, 182, 255, 0.3);
}

.btn-secundario {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-secundario:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
    transform: translateY(-2px);
}

.beneficios-rapidos {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 20px;
}

.beneficio {
    background: rgba(255, 255, 255, 0.1);
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 5px;
}

.vence-imagen {
    position: relative;
    flex: 1;
    min-width: 300px;
    text-align: center;
}

.vence-imagen img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;

    transition: transform 0.3s ease;
}

.vence-imagen img:hover {
    transform: scale(1.02);
}

.badge-asesoria {
    position: absolute;
    top: -15px;
    right: -15px;
    background: #FF6B6B;
    color: white;
    padding: 8px 15px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 600;
    box-shadow: 0 4px 10px rgba(255, 107, 107, 0.3);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

/* Estilos mejorados para como-solicitar */
/* Estilos de Alto Impacto */
.como-solicitar-impacto {
    background: linear-gradient(135deg, #ffffff 0%, #f8faff 100%);
    padding: 80px 20px;
    position: relative;
    overflow: hidden;
}

.como-solicitar-impacto::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 10px;

}

.impacto-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.impacto-titulo {
    text-align: center;
    font-size: 2.8rem;
    font-weight: 800;

    margin-bottom: 60px;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.impacto-titulo::after {
    content: "";
    position: absolute;
    bottom: -15px;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, transparent 0%, #38B6FF 50%, transparent 100%);
}

.impacto-destacado {
    color: #38B6FF;
    text-shadow: 0 2px 4px rgba(56, 182, 255, 0.2);
}

.impacto-requisitos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.impacto-requisito-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(17, 49, 91, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border-top: 4px solid #38B6FF;
    position: relative;
    overflow: hidden;
}

.impacto-requisito-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(17, 49, 91, 0.2);
}

.impacto-requisito-card::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(56, 182, 255, 0.05) 0%, rgba(255, 255, 255, 0) 100%);
    z-index: 1;
}

.impacto-icono {
    width: 80px;
    height: 80px;
    background: rgba(56, 182, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.impacto-icono img {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.impacto-texto h4 {
    color: #11315B;
    font-size: 1.4rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.impacto-texto p {
    color: #6B7280;
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 15px;
}

.impacto-badge {
    display: inline-block;
    background: #38B6FF;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.impacto-cta {
    text-align: center;
    margin-top: 60px;
}

.impacto-timer {
    display: inline-flex;
    align-items: center;
    background: #11315B;
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    margin-bottom: 40px;
    box-shadow: 0 10px 20px rgba(17, 49, 91, 0.2);
}

.timer-icon {
    font-size: 2rem;
    margin-right: 15px;
    color: #FFD700;
}

.timer-destacado {
    font-size: 1.2rem;
    font-weight: 700;
    display: block;
    color: #FFD700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.timer-normal {
    font-size: 0.9rem;
    opacity: 0.9;
}

.impacto-botones {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.impacto-btn {
    padding: 18px 35px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 250px;
    justify-content: center;
}

.impacto-btn-pri {
    background: linear-gradient(135deg, #38B6FF 0%, #1E5F8F 100%);
    color: white;
    border: none;
    box-shadow: 0 5px 15px rgba(56, 182, 255, 0.4);
    position: relative;
    overflow: hidden;
}

.impacto-btn-pri:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(56, 182, 255, 0.6);
}

.impacto-btn-pri::after {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(to bottom right,
            rgba(255, 255, 255, 0) 45%,
            rgba(255, 255, 255, 0.8) 50%,
            rgba(255, 255, 255, 0) 55%);
    transform: rotate(30deg);
    transition: all 0.5s ease;
}

.impacto-btn-pri:hover::after {
    left: 100%;
}

.impacto-btn-sec {
    background: white;
    color: #11315B;
    border: 2px solid #11315B;
}

.impacto-btn-sec:hover {
    background: #11315B;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(17, 49, 91, 0.2);
}

.impacto-garantias {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.garantia-item {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(56, 182, 255, 0.1);
    color: #11315B;
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
}

.garantia-item i {
    color: #38B6FF;
}

/* Animaciones */
@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

.impacto-btn-pri {
    animation: pulse 2s infinite;
}

/*-----------------------------------*/

/* Estilos de Alto Impacto para seccion-credito */
.seccion-credito-impacto {
    font-family: 'Poppins', sans-serif;
    background: #ffffff;
}

/* Encabezado con impacto */
.impacto-encabezado {
    background: linear-gradient(135deg, #11315B 0%, #1E5F8F 100%);
    color: white;
    padding: 80px 20px;
    position: relative;
    overflow: hidden;
}

.impacto-encabezado::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://gurocapital.com/patron-fondo.png') repeat;
    opacity: 0.05;
    pointer-events: none;
}

.impacto-contenido {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 50px;
    position: relative;
    z-index: 2;
}

.impacto-texto {
    flex: 1;
    min-width: 300px;
}

.impacto-titulo {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 25px;
    line-height: 1.2;
}

.impacto-destacado {
    color: #38B6FF;
    position: relative;
    display: inline-block;
}

.impacto-destacado::after {
    content: "";
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background: rgba(56, 182, 255, 0.3);
    z-index: -1;
}

.impacto-parrafo {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 30px;
    max-width: 600px;
}

.impacto-urgente {
    color: #FF6B6B;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 1.1rem;
    letter-spacing: 1px;
}

.impacto-resaltado {
    font-weight: 700;
    color: #38B6FF;
}

.impacto-tiempo {

    padding: 2px 8px;
    border-radius: 4px;
    font-weight: 700;
}

.impacto-beneficios {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 30px;
}

.beneficio-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.beneficio-item i {
    color: #38B6FF;
}

.impacto-imagenes {
    flex: 1;
    min-width: 300px;
    display: flex;
    gap: 20px;
    position: relative;
}

.imagen-container {
    position: relative;
    flex: 1;
    min-width: 200px;
}

.imagen-destacada {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    transition: transform 0.4s ease;
}

.imagen-container:hover .imagen-destacada {
    transform: scale(1.03);
}

.badge-imagen {
    position: absolute;
    top: -15px;
    right: -15px;
    background: #38B6FF;
    color: white;
    padding: 8px 15px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: 0 5px 15px rgba(56, 182, 255, 0.3);
    animation: pulse 2s infinite;
}

/* Pasos con impacto visual */
.impacto-pasos {
    padding: 80px 20px;
    background: #F8FAFD;
    position: relative;
}

.impacto-contenedor-pasos {
    max-width: 1200px;
    margin: 0 auto;
}

.impacto-titulo-pasos {
    text-align: center;
    font-size: 2.5rem;
    color: #11315B;
    margin-bottom: 60px;
    font-weight: 800;
}

.impacto-numero {
    color: #38B6FF;
    font-size: 3rem;
    display: inline-block;
    transform: translateY(5px);
}

.impacto-proceso {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-bottom: 50px;
}

.paso-card {
    background: white;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 10px 30px rgba(17, 49, 91, 0.1);
    transition: all 0.4s ease;
    flex: 1;
    min-width: 200px;
    max-width: 250px;
    position: relative;
    overflow: hidden;
    border-top: 5px solid #38B6FF;
}

.paso-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(17, 49, 91, 0.2);
}

.paso-card::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(56, 182, 255, 0.05) 0%, rgba(255, 255, 255, 0) 100%);
    z-index: 1;
}

.paso-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    gap: 15px;
}

.paso-numero {
    background: #11315B;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.paso-icono {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.paso-contenido h4 {
    color: #11315B;
    font-size: 1.2rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.paso-contenido p {
    color: #6B7280;
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 15px;
}

.paso-duracion {
    color: #38B6FF;
    font-size: 0.85rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
}

.paso-flecha {
    color: #38B6FF;
    font-size: 1.5rem;
    opacity: 0.7;
    padding: 0 10px;
}

.impacto-resultado {
    background: #EFF6FF;
    border-radius: 15px;
    padding: 25px;
    max-width: 800px;
    margin: 0 auto 40px;
    display: flex;
    align-items: center;
    gap: 20px;
    border-left: 5px solid #38B6FF;
}

.resultado-icono {
    color: #38B6FF;
    font-size: 2.5rem;
    flex-shrink: 0;
}

.resultado-texto {
    font-size: 1.1rem;
    color: #11315B;
}

.resultado-texto strong {
    color: #38B6FF;
}

.impacto-acciones {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.impacto-boton {
    padding: 18px 35px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 250px;
    justify-content: center;
}

.impacto-boton-primario {
    background: linear-gradient(135deg, #38B6FF 0%, #1E5F8F 100%);
    color: white;
    border: none;
    box-shadow: 0 5px 15px rgba(56, 182, 255, 0.4);
    position: relative;
    overflow: hidden;
}

.impacto-boton-primario:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(56, 182, 255, 0.6);
}

.impacto-boton-primario::after {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(to bottom right,
            rgba(255, 255, 255, 0) 45%,
            rgba(255, 255, 255, 0.8) 50%,
            rgba(255, 255, 255, 0) 55%);
    transform: rotate(30deg);
    transition: all 0.5s ease;
}

.impacto-boton-primario:hover::after {
    left: 100%;
}

.impacto-boton-secundario {
    background: white;
    color: #11315B;
    border: 2px solid #11315B;
}

.impacto-boton-secundario:hover {
    background: #11315B;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(17, 49, 91, 0.2);
}

/* Animaciones */
@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* Estilos de Alto Impacto para help-section */
.help-section-premium {
    background: linear-gradient(135deg, #0F2644 0%, #11315B 100%);
    padding: 80px 20px;
    color: white;
    font-family: 'Poppins', sans-serif;
    position: relative;
    overflow: hidden;
}

.help-section-premium::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path fill="rgba(56,182,255,0.03)" d="M0,0 L100,0 L100,100 L0,100 Z" /></svg>');
    background-size: cover;
    z-index: 1;
}

.help-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.help-header {
    text-align: center;
    margin-bottom: 60px;
}

.help-title {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 15px;
    line-height: 1.2;
}

.highlight {
    color: #38B6FF;
    position: relative;
    display: inline-block;
}

.highlight::after {
    content: "";
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background: rgba(56, 182, 255, 0.3);
    z-index: -1;
    border-radius: 4px;
}

.help-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 700px;
    margin: 0 auto;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.contact-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.contact-card::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(56, 182, 255, 0.05) 0%, rgba(255, 255, 255, 0) 100%);
    z-index: 1;
}

.contact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    border-color: #38B6FF;
}

.card-icon {
    width: 90px;
    height: 90px;
    background: rgba(56, 182, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.3s ease;
}

.contact-card:hover .card-icon {
    transform: scale(1.1);
    background: rgba(56, 182, 255, 0.2);
}

.card-icon img {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.card-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: white;
}

.card-description {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 25px;
    line-height: 1.6;
}

.contact-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(56, 182, 255, 0.2);
    color: white;
    padding: 14px 25px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-bottom: 20px;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.contact-button:hover {
    background: #38B6FF;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(56, 182, 255, 0.3);
}

.contact-button i {
    transition: transform 0.3s ease;
}

.contact-button:hover i {
    transform: scale(1.2);
}

.response-time {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    color: #FFD700;
    padding: 8px 18px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
}

.whatsapp-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
}

.whatsapp-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: rgba(37, 211, 102, 0.2);
    color: white;
    padding: 14px 20px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.whatsapp-button:hover {
    background: #25D366;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
}

.additional-info {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    max-width: 800px;
    margin: 0 auto;
}

.info-card {
    display: flex;
    align-items: center;
    gap: 20px;
    background: rgba(255, 255, 255, 0.05);
    padding: 25px 30px;
    border-radius: 12px;
    min-width: 300px;
    transition: all 0.3s ease;
}

.info-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
}

.info-card i {
    font-size: 1.8rem;
    color: #38B6FF;
}

.info-card h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.info-card p {
    font-size: 0.95rem;
    opacity: 0.8;
}

/* Animaciones */
@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }
}



/* Estilos Premium para sección de aliados */
.allies-section-premium {
    background-color: #F8FAFD;
    padding: 80px 20px;
    position: relative;
    overflow: hidden;
}

.allies-section-premium::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path fill="rgba(17,49,91,0.03)" d="M0,0 L100,0 L100,100 L0,100 Z" /></svg>');
    background-size: cover;
    z-index: 1;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: #11315B;
    margin-bottom: 15px;
    line-height: 1.2;
}

.highlight {
    color: #38B6FF;
    position: relative;
    display: inline-block;
}

.highlight::after {
    content: "";
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background: rgba(56, 182, 255, 0.3);
    z-index: -1;
    border-radius: 4px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #6B7280;
    max-width: 700px;
    margin: 0 auto;
}

.allies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.ally-card {
    background: white;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(17, 49, 91, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(17, 49, 91, 0.1);
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ally-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(17, 49, 91, 0.15);
    border-color: #38B6FF;
}

.ally-logo-container {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    transition: all 0.4s ease;
}

.ally-logo {
    max-width: 100%;
    max-height: 80px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(30%) contrast(90%);
    transition: all 0.4s ease;
}

.ally-card:hover .ally-logo {
    filter: grayscale(0%) contrast(100%);
    transform: scale(1.05);
}

.ally-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(17, 49, 91, 0.9);
    color: white;
    padding: 15px;
    text-align: center;
    transform: translateY(100%);
    transition: all 0.3s ease;
    opacity: 0;
    border-radius: 0 0 16px 16px;
}

.ally-card:hover .ally-overlay {
    transform: translateY(0);
    opacity: 1;
}

.trust-badges {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(56, 182, 255, 0.1);
    color: #11315B;
    padding: 12px 25px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.95rem;
}

.trust-badge i {
    color: #38B6FF;
}

/* Animaciones */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* Footer Styles */
/* Estilos Premium para el footer */
.footer-premium {
    background: #11315B;
    color: white;
    position: relative;
    font-family: 'Poppins', sans-serif;
    padding-top: 80px;
    margin-top: 80px;
}

.footer-wave {
    position: absolute;
    top: -80px;
    left: 0;
    width: 100%;
    height: 80px;
    background: url('data:image/svg+xml;utf8,<svg viewBox="0 0 1200 120" xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="none"><path d="M0,0V46.29c47.79,22.2,103.59,32.17,158,28,70.36-5.37,136.33-33.31,206.8-37.5C438.64,32.43,512.34,53.67,583,72.05c69.27,18,138.3,24.88,209.4,13.08,36.15-6,69.85-17.84,104.45-29.34C989.49,25,1113-14.29,1200,52.47V0Z" fill="%23ffffff" opacity=".25"/><path d="M0,0V15.81C13,36.92,27.64,56.86,47.69,72.05,99.41,111.27,165,111,224.58,91.58c31.15-10.15,60.09-26.07,89.67-39.8,40.92-19,84.73-46,130.83-49.67,36.26-2.85,70.9,9.42,98.6,31.56,31.77,25.39,62.32,62,103.63,73,40.44,10.79,81.35-6.69,119.13-24.28s75.16-39,116.92-43.05c59.73-5.85,113.28,22.88,168.9,38.84,30.2,8.66,59,6.17,87.09-7.5,22.43-10.89,48-26.93,60.65-49.24V0Z" fill="%23ffffff"/></svg>');
    background-size: cover;
    background-repeat: no-repeat;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-main {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-brand {
    flex: 1;
    min-width: 250px;
}

.footer-logo {
    margin-bottom: 30px;
}

.footer-logo img {
    max-width: 180px;
    height: auto;
}

.footer-social p {
    margin-bottom: 15px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: #38B6FF;
    transform: translateY(-3px);
}

.footer-columns {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    flex: 3;
}

.footer-column {
    flex: 1;
    min-width: 180px;
}

.column-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 25px;
    color: white;
    position: relative;
    padding-bottom: 10px;
}

.column-title::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: #38B6FF;
    border-radius: 3px;
}

.column-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.column-links li {
    margin-bottom: 12px;
}

.column-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.column-links a:hover {
    color: #38B6FF;
    padding-left: 5px;
}

.column-links i {
    font-size: 0.8rem;
    color: #38B6FF;
}

.contact-info {
    margin-bottom: 30px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.8);
}

.contact-item i {
    color: #38B6FF;
    width: 20px;
    text-align: center;
}

.newsletter p {
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 600;
}

.newsletter-form {
    display: flex;
    border-radius: 30px;
    overflow: hidden;
    background: white;
}

.newsletter-form input {
    flex: 1;
    border: none;
    padding: 12px 20px;
    font-size: 0.9rem;
}

.newsletter-form input:focus {
    outline: none;
}

.newsletter-form button {
    background: #38B6FF;
    color: white;
    border: none;
    padding: 0 20px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-form button:hover {
    background: #1E5F8F;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 30px 0;
    text-align: center;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-bottom: 25px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.85rem;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: #38B6FF;
}

.payment-methods {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.payment-methods img {
    height: 30px;
    width: auto;
    filter: grayscale(100%) brightness(150%);
    transition: all 0.3s ease;
    opacity: 0.7;
}

.payment-methods img:hover {
    filter: grayscale(0%) brightness(100%);
    opacity: 1;
}

.copyright {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    line-height: 1.6;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .footer-logo {
        width: 120px;
        height: 120px;
        top: -140px;
    }

    .footer-logo img {
        max-width: 80px;
    }

    .footer-columns {
        gap: 30px;
    }

    .impacto-titulo {
        font-size: 2.2rem;
    }

    .impacto-proceso {
        gap: 30px;
    }

    .paso-flecha {
        display: none;
    }

    .paso-card {
        min-width: 100%;
        max-width: 350px;
    }

    .help-title {
        font-size: 2.4rem;
    }

    .contact-grid {
        grid-template-columns: 1fr 1fr;
    }

    .whatsapp {
        grid-column: span 2;
    }

    .section-title {
        font-size: 2.4rem;
    }

    .allies-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-columns {
        gap: 30px;
    }

    .footer-column {
        min-width: 160px;
    }
}



/*-------------------------------------------------------------------*/
/* Media Querys*/

/* Media Queries mejoradas para móvil */
@media (max-width: 768px) {

    /* Header y navegación */
    .header-movil {
        padding: 10px 15px;
        position: relative;
    }

    .avatar-mobile{
        display: block;
    }
    .pay-button{
        display: block;
    }
    #menu-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
    }

    #nav {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: white;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
        z-index: 1000;
        display: none;
    }

    #nav.show {
        display: block;
    }

    #nav ul {
        flex-direction: column;
        padding: 15px;
    }

    #nav ul li {
        margin: 10px 0;
    }

    #nav ul li a {
        display: block;
        padding: 10px;
        
        font-size: 16px;
    }

    /* Hero section */
    .hero {
        padding: 20px 0;
    }

    .hero .imagen-principal img {
        max-height: 300px;
        object-fit: contain;
    }

    /* Sección "Hoy vence tu crédito" */
    .vence-texto h2 {
        font-size: 2rem;
    }

    .vence-botones {
        justify-content: center;
    }

    .beneficios-rapidos {
        justify-content: center;
    }

    .vence-imagen {
        margin-top: 30px;
    }

    .badge-asesoria {
        right: 10px;
        top: -10px;
    }

    /* Sección cómo solicitar */
    .impacto-titulo {
        font-size: 2rem;
    }

    .impacto-requisitos {
        grid-template-columns: 1fr;
    }

    .impacto-botones {
        flex-direction: column;
        align-items: center;
    }

    .impacto-btn {
        width: 100%;
    }

    .impacto-timer {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }

    .timer-icon {
        margin-right: 0;
        margin-bottom: 10px;
    }

    /* Sección pasos crédito */
    .impacto-titulo {
        font-size: 1.8rem;
    }

    .impacto-titulo-pasos {
        font-size: 2rem;
    }

    .impacto-imagenes {
        flex-direction: column;
    }

    .impacto-acciones {
        flex-direction: column;
        align-items: center;
    }

    .impacto-boton {
        width: 100%;
    }

    .help-title {
        font-size: 2rem;
    }

    .help-subtitle {
        font-size: 1rem;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .whatsapp {
        grid-column: span 1;
    }

    .info-card {
        min-width: 100%;
    }

    .section-title {
        font-size: 2rem;
    }

    .section-subtitle {
        font-size: 1rem;
    }

    .allies-grid {
        grid-template-columns: 1fr;
    }

    .ally-card {
        height: 150px;
        padding: 20px;
    }

    .trust-badges {
        flex-direction: column;
        align-items: center;
    }

    .footer-main {
        flex-direction: column;
    }

    .footer-columns {
        grid-template-columns: 1fr 1fr;
    }

    .footer-links {
        flex-direction: column;
        gap: 10px;
    }

    .footer-wave {
        top: -60px;
        height: 60px;
    }
}

@media (max-width: 576px) {
    .footer-columns {
        grid-template-columns: 1fr;
    }

    .footer-wave {
        top: -40px;
        height: 40px;
    }
}

@media (max-width: 480px) {

    /* Ajustes adicionales para pantallas muy pequeñas */
    .vence-botones button {
        flex: 1 1 100%;
    }

    .requisito {
        flex: 1 1 100%;
    }

    .paso {}

    .botones button {
        width: 100%;
        margin-bottom: 10px;
    }

    .contact-card {
        flex: 1 1 100%;
        margin-bottom: 20px;
    }

    .ally img {
        max-width: 120px;
    }
}