.prestamo-section {
    width: 100%;
    max-width: 900px;
    margin: 30px auto;
    padding: 0px 20px;
    text-align: center;
    background: #fff;
    box-sizing: border-box;
}
/* Caja de promoción superior - h3 */
h3.prestamo-alerta {
    background: var(--red-two);
    color: white;
    padding: 18px 20px;
    border-radius: 10px;
    font-family: 'Roboto-Regular';
    font-size: 18px;
    line-height: 1.5;
    margin-bottom: 25px;
    box-sizing: border-box;
    font-weight: normal; 
}

h3.prestamo-alerta strong {
    color: white;
    font-weight: bold;
    font-size: 18px;
}

/* Título convertido a párrafo */
.prestamo-titulo {
    font-family: 'Roboto-Medium';
    font-size: 16px;
    margin: 30px 0 25px;
    color: var(--gray-txt);
    line-height: 1.4;
    padding: 0 10px;
    box-sizing: border-box;
    text-align: center;
}
.prestamo-caracteristicas {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
    margin: 30px 30px 0px 30px;
}
.prestamo-item {
    flex: 1;
    min-width: 220px;
    max-width: 280px;
    background: var(--gray-two);
    border-radius: 12px;
    padding: 20px 15px;
    text-align: center;
    display: flex;
    flex-direction: column;
    min-height: 160px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
    justify-content: center;
    box-sizing: border-box;
}
.prestamo-item img {
    max-width: 70px;
    height: auto;
    display: block;
    margin: 0 auto 12px auto;
}
.prestamo-item p {
    font-family: 'Roboto-Medium';
    font-size: 16px;
    color: var(--gray-txt);
    margin-bottom: 8px;
    line-height: 1.4;
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    word-break: break-word;
    text-align: center;
}
.prestamo-item small {
    font-size: 15px;
    font-family: 'Roboto-Light';
    color: var(--gray-txt);
    line-height: 1.3;
    margin-top: auto;
}
/* Títulos de contacto alineados */
.prestamo-contacto-titulos {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin: 30px 0 15px 0;
    padding: 0 15px;
    box-sizing: border-box;
}
.prestamo-contacto-titulo {
    flex: 1;
    min-width: 280px;
    max-width: 400px;
    font-family: 'Roboto-Medium';
    font-size: 20px;
    color: var(--gray-txt);
    text-align: center;
}
/* Contenedor de contacto principal */
.prestamo-contacto {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin: 0 0 30px 0;
    padding: 0 15px;
    box-sizing: border-box;
}
/* Columnas de contacto */
.prestamo-contacto-columna {
    flex: 1;
    min-width: 280px;
    max-width: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
/* WhatsApp */
.prestamo-contacto-numero {
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Roboto-Medium' !important;
    gap: 10px;
    font-size: 24px;
    color: var(--red-one)!important;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 15px 25px;
    background-color: white;
}
.prestamo-contacto-numero:hover {
    color: var(--red-one);
    transform: scale(1.05);
}
.prestamo-contacto-numero img {
    height: 35px;
    transition: all 0.3s ease;
}
/* Agencias */
.prestamo-contacto-agencias {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 15px 25px;
    max-width: 350px;
    width: 100%;
    box-sizing: border-box;
}
.prestamo-contacto-agencias-img {
    height: 60px;
    width: auto;
    flex-shrink: 0;
}
.prestamo-contacto-agencias-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: flex-start;
}
.prestamo-contacto-agencia-link {
    font-family: 'Roboto-Medium';
    font-size: 16px;
    color: var(--gray-txt);
    text-decoration: none;
    transition: color 0.3s ease;
    text-align: left;
}
.prestamo-contacto-agencia-link:hover {
    color: var(--red-one);
    text-decoration: underline;
}
.prestamo-legal {
    width: 100%;
    max-width: 900px;
    margin: 30px auto;
    padding: 20px;
    font-family: 'Roboto-Regular';
    font-size: 15px;
    color: var(--gray-four);
    line-height: 1.5;
    text-align: justify;
    background-color: #f9f9f9;
    box-sizing: border-box;
}

.prestamo-legal p {
    margin-bottom: 10px;
}
/* ESTILOS PARA SUPERÍNDICES */
.prestamo-alerta sup,
.prestamo-item sup {
    font-size: 11px;
    vertical-align: super;
    line-height: 0;
    font-weight: bold;
    margin-left: 2px;
    white-space: nowrap;
    height: 10px;
}
.prestamo-alerta sup {
    color: white;
}
.prestamo-item sup {
    color: var(--gray-txt);
}
.prestamo-item p {
    line-height: 1.4;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.prestamo-item:nth-child(1) p {
    display: block;
    text-align: center;
}
.prestamo-item:nth-child(1) sup {
    display: inline-block;
    vertical-align: super;
    line-height: 0;
}
/* Responsive mejorado */
@media (max-width: 768px) {
    .prestamo-section {
        padding: 20px 15px;
        margin: 20px auto;
    }
    
    h3.prestamo-alerta {
        font-size: 16px;
        padding: 15px;
    }
    
    .prestamo-titulo {
        font-size: 20px;
        margin: 25px 0 20px;
    }
    
    .prestamo-caracteristicas {
        gap: 18px;
    }
    
    .prestamo-item {
        min-width: 100%;
        max-width: 350px;
        min-height: auto;
        padding: 15px;
    }
    
    /* MÓVIL - PRIMER ÍTEM */
    .prestamo-item:nth-child(1) p {
        font-size: 15px;
        line-height: 1.3;
    }
    
    .prestamo-contacto-titulos {
        flex-direction: column;
        gap: 15px;
        margin: 20px 0 10px 0;
    }
    
    .prestamo-contacto {
        flex-direction: column;
        gap: 20px;
    }
    
    .prestamo-contacto-columna {
        min-width: 100%;
    }
    
    .prestamo-contacto-titulo {
        font-size: 18px;
    }
    
    .prestamo-contacto-numero {
        font-size: 20px;
        padding: 12px 20px;
    }
    
    .prestamo-contacto-agencias {
        flex-direction: column;
        text-align: center;
        gap: 15px;
        padding: 12px;
    }
    
    .prestamo-contacto-agencias-links {
        align-items: center;
    }
    
}

@media (max-width: 480px) {
    .prestamo-section {
        padding: 15px 12px;
        margin: 15px auto;
    }
    
    h3.prestamo-alerta {
        font-size: 16px;
        padding: 12px;
        line-height: 1.4;
    }
    
    .prestamo-titulo {
        font-size: 20px;
        margin: 20px 0 15px;
        line-height: 1.3;
    }
    
    .prestamo-item {
        padding: 15px 12px;
        min-height: auto;
        margin-bottom: 10px;
    }
    
    .prestamo-item img {
        max-width: 60px;
        margin-bottom: 10px;
    }
    
    .prestamo-item p {
        font-size: 16px;
        margin-bottom: 5px;
    }
    
    /* MÓVIL PEQUEÑO - PRIMER ÍTEM */
    .prestamo-item:nth-child(1) p {
        font-size: 14px;
        line-height: 1.3;
    }
    
    .prestamo-item small {
        font-size: 15px;
    }
    
    .prestamo-contacto-titulos,
    .prestamo-contacto {
        padding: 0 10px;
    }
    
    .prestamo-contacto-titulo {
        font-size: 17px;
    }
    
    .prestamo-contacto-numero {
        font-size: 18px;
        padding: 10px 16px;
    }
    
    .prestamo-contacto-numero img {
        height: 30px;
    }
    
    .prestamo-contacto-agencias-img {
        height: 50px;
    }
    
    .prestamo-contacto-agencia-link {
        font-size: 15px;
    }
    
    .prestamo-legal {
        font-size: 11px;
        padding: 15px;
    }
}

@media (min-width: 1200px) {
    .prestamo-section {
        max-width: 1200px;
    }
    
    .prestamo-item {
        min-width: 250px;
    }
    
    .prestamo-legal {
        max-width: 1200px;
    }
}
.prestamo-legal a {
    color: var(--gray-txt);
    font-weight: bold;
    transition: color 0.3s ease;
}
.prestamo-legal a:hover {
    color: var(--red-one);
    text-decoration: underline;
}
@media (max-width: 480px) {
    .prestamo-legal a {
        word-break: break-all;
    }
}