﻿:root {
    --default-font: "Roboto", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    --heading-font: "Montserrat", sans-serif;
    --nav-font: "Poppins", sans-serif;
    --cgreen: #007732;
    --cblue: #043878;
}


.invisible{
    opacity: 0;
}

.credicoop-green {
    color: var(--cgreen);
}

.credicoop-blue {
    color: var(--cblue);
}

.primary-text {
    color: #0f0f0f;
}

.secondary-text {
    color: #3d3d3d;
}

.wprimary-text {
    color: #e8e8e8;
}

.wsecondary-text {
    color: #999999;
}

.btn-aplicar {
    background-color: var(--cgreen);
    color: white;
    border-radius: 6px;
    width: 200px;
    height: 40px;
    padding: 10px 20px;
    margin: 10px;
    font-weight: normal;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
}

    .btn-aplicar:hover {
        background-color: white;
        color: black;
        font-weight: normal;
        outline: 2px solid var(--cblue);
        outline-offset: 2px;
    }

    .btn-aplicar:active {
        transform: scale(0.95);
        font-weight: bolder;
    }

/* PARA EL SLIDER DE LOCALIZACIONES */
.features-section {
    padding: 60px 20px;
    background: #f8f9fa;
    position: relative;
}

.features-item {
    background: #fff;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 6px 15px rgba(0,0,0,0.1);
}

.features-icon i {
    font-size: 36px;
    color: #078139; /* Verde Credicoop */
    margin-bottom: 15px;
}

.features-title {
    font-size: 18px;
    margin-bottom: 10px;
}

    .features-title a {
        color: #000;
        text-decoration: none;
    }

.features-item p {
    font-size: 14px;
    color: #333;
}

.swiper {
    padding: 20px 0;
}

.features-title a {
    position: relative;
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    color: inherit;
}

    .features-title a .bi {
        transition: transform 0.3s ease;
    }

    /* Al hacer hover en el enlace, la flecha se mueve a la derecha */
    .features-title a:hover .bi {
        transform: translateX(5px);
    }
/* FIN ESTILOS SLIDER */

/* EFECTOS SECCION CLIENTES HOME */
.client-section .client-name {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: #0f0f0f; /* Negro para que se vea */
    margin-top: 8px;
}

/* Opcional: colocar fondo claro detrás del nombre si las imágenes son oscuras */
.client-section .inner-partner a {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
}

.client-section .inner-partner img {
    width: 150px;
    max-width: 100%;
    border-radius: 8px;
}
/* FIN EFECTOS SECCION CLIENTES HOME */

/* EFECTOS DE CUADROS INFORMATIVOS ARRIBA DEL FOOTER */
.footer-contact-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

/* Cada bloque */
.footer-contact-item {
    flex: 1;
    display: flex;
}

    /* Posiciones */
    .footer-contact-item.left {
        justify-content: flex-start;
    }

    .footer-contact-item.center {
        justify-content: center;
    }

    .footer-contact-item.right {
        justify-content: flex-end;
    }

/* Estilo interno */
.contact-area {
    display: flex;
    align-items: center;
    gap: 15px;
}

.contact-icon {
    font-size: 28px;
    color: #078139; /* color institucional */
}

.contact-info {
    display: flex;
    flex-direction: column;
}

    .contact-info .text {
        font-size: 13px;
        color: #666;
    }

    .contact-info .title {
        font-size: 14px;
        font-weight: 600;
        color: #111;
    }

/* Responsive */
@media (max-width: 768px) {
    .footer-contact-row {
        flex-direction: column;
        text-align: center;
    }

    .footer-contact-item {
        justify-content: center !important;
    }
}
/* FIN EFECTOS DE CUADROS INFORMATIVOS ARRIBA DEL FOOTER */
