.cicove-stats-section {
    background-color: #ffffff;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='4' height='4' viewBox='0 0 4 4'%3E%3Cpath fill='%232d4f95' fill-opacity='0.4' d='M1 3h1v1H1V3zm2-2h1v1H3V1z'%3E%3C/path%3E%3C/svg%3E");
    padding: 100px 0;
    color: #666666;
    font-family: 'Inter', sans-serif;
    overflow: hidden;
    position: relative;
}

.cicove-container {
    max-width: 1250px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    /* Proporción de la imagen */
    gap: 60px;
    padding: 0 40px;
    align-items: center;
}

/* Columna Izquierda */
.cicove-content {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.2s ease, transform 0.6s ease;
}

.cicove-content.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.cicove-upper-title {
    color: #b4935a;
    /* Dorado */
    font-size: 14px;
    letter-spacing: 1px;
    font-weight: 600;
    display: block;
    margin-bottom: 20px;
}

.cicove-main-title {
    font-size: clamp(32px, 4vw, 48px);
    line-height: 1.5;
    margin-bottom: 40px;
    font-weight: 300;
    letter-spacing: -3px;
    color: #0a1a35;
}

.italic-gold {
    font-style: italic;
    color: #153a82;
    font-family: 'Playfair Display', serif;
    /* Opcional para el toque elegante */
}

.cicove-description p {
    font-size: 16px;
    line-height: 1.4;
    color: #666666;
    margin-bottom: 25px;
}

.cicove-description strong {
    color: #000000;
    font-weight: 600;
}

.cicove-link {
    color: #2d4f95;
    text-decoration: none;
    font-size: 13px;
    letter-spacing: 2px;
    font-weight: 700;
    border-bottom: 1px solid #ffffff;
    padding-bottom: 5px;
    transition: 0.3s;
}

.tw-cursor {
    display: inline-block;
    width: 2px;
    height: 1em;
    background: #2d4f95;
    margin-left: 2px;
    vertical-align: middle;
    animation: blink 0.7s step-end infinite;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }
}

/* Grid de Estadísticas (Glassmorphism) */
.cicove-stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: rgb(255, 255, 255);
    /* Transparencia base */
    backdrop-filter: blur(10px);
    border: 0.5px solid #b4935a;
}

.stat-item {
    padding: 50px 40px;
    border: 0.5px solid rgba(0, 0, 0, 0.348);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.stat-number {
    font-size: 42px;
    color: #2d4f95;
    font-weight: 300;
    margin-bottom: 10px;
    font-family: 'Playfair Display', serif;
}

.stat-label {
    font-size: 11px;
    letter-spacing: 1.5px;
    color: rgba(0, 0, 0, 0.6);
    line-height: 1.6;
    text-transform: uppercase;
}

/* Ajuste Responsivo */
@media (max-width: 992px) {
    .cicove-container {
        grid-template-columns: 1fr;
        text-align: left;
    }

    .cicove-stats-grid {
        margin-top: 40px;
    }
}