/* ---------- Confianza Section 2026 ---------- */
#confiar-2026 {
    background-color: #0f2440;
    /* Dark blue background */
    padding: 80px 20px;
    font-family: 'Inter', 'Segoe UI', Arial, sans-serif;
    color: #FFFFFF;
    position: relative;
    overflow: hidden;
}

/* Optional: Add a large faint circle in the background like the image */
#confiar-2026::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 10%;
    width: 500px;
    height: 500px;
    background-color: rgba(255, 255, 255, 0.02);
    border-radius: 50%;
    transform: translateY(-50%);
    z-index: 1;
}

.confianza-container-2026 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    max-width: 90%;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.confianza-item-2026 {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 40px;
    position: relative;
}

/* Thin vertical dividers between items */
.confianza-item-2026:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 15%;
    height: 70%;
    width: 1px;
    background-color: rgba(255, 255, 255, 0.1);
}

.confianza-icon-box-2026 {
    width: 60px;
    height: 60px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.confianza-item-2026:hover .confianza-icon-box-2026 {
    transform: scale(1.15);
    background-color: rgba(0, 191, 255, 0.2);
    /* Fondo más azul cyan translúcido */
}

.confianza-icon-box-2026 svg {
    width: 24px;
    height: 24px;
    fill: none;
    stroke: #00BFFF;
    /* Cyan color */
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.confianza-number-2026 {
    font-size: 48px;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.confianza-number-2026.stacked {
    flex-direction: column;
    line-height: 1.1;
    gap: 0;
}

/* Some numbers have a cyan part and a white part */
.confianza-number-2026 .cyan-text {
    color: #00BFFF;
}

.confianza-number-2026 .white-text {
    color: #FFFFFF;
}

/* The star icon next to 4.8 */
.confianza-star-icon-2026 {
    width: 35px;
    height: 35px;
    fill: #FFB800;
    /* Yellow/Gold */
    margin-left: 5px;
}

.confianza-desc-2026 {
    color: #E2E8F0;
    font-size: 14px;
    line-height: 1.5;
    font-weight: 400;
}

@media (max-width: 1368px) {
    .confianza-container-2026 {
        max-width: 1200px;
    }

    .confianza-icon-box-2026 svg {
        width: 35px;
        height: 35px;
    }

    .confianza-number-2026 {
        font-size: 38px;
    }
}

/* Responsiveness */
@media (max-width: 1024px) {
    .confianza-item-2026 {
        padding: 0 20px;
    }
}

@media (max-width: 768px) {
    .confianza-container-2026 {
        grid-template-columns: repeat(2, 1fr);
        row-gap: 50px;
    }

    /* Hide the vertical dividers on small screens, or adjust them */
    .confianza-item-2026:not(:last-child)::after {
        display: none;
    }
}

@media (max-width: 480px) {
    .confianza-container-2026 {
        grid-template-columns: 1fr;
    }
}