/* ===== SECCIÓN ===== */
.page_info {
    padding: 80px 0;
    background: linear-gradient(135deg, #f5f7f9, #e9f5ee);
}

/* FILA */
.page-info-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: center;
}

/* ITEM */
.info-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

/* =========================
   CÍRCULO (BASE ORIGINAL)
========================= */
.circle {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;

    background: linear-gradient(135deg, #00c853, #00e676);
    color: white;
    font-size: 2rem;
    font-weight: bold;

    box-shadow: 0 0 20px rgba(0, 200, 83, 0.6);
    transition: all 0.3s ease;

    /* IMPORTANTE para efecto */
    position: relative;
    overflow: hidden;
}

/* =========================
   EFECTO DIAMANTE ✨
========================= */
.circle::before {
    content: "";
    position: absolute;
    top: -150%;
    left: -150%;
    width: 300%;
    height: 300%;
    background: linear-gradient(
        120deg,
        transparent 30%,
        rgba(255,255,255,0.5),
        transparent 70%
        );
    transform: rotate(25deg);
    transition: all 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ACTIVA EL BRILLO */
.info-item:hover .circle::before {
    top: 100%;
    left: 100%;
}

/* =========================
   HOVER MEJORADO
========================= */
.info-item:hover .circle {
    transform: scale(1.1);
    box-shadow: 
        0 0 30px rgba(0, 200, 83, 1),
        0 0 60px rgba(0, 200, 83, 0.4);
}

/* =========================
   TEXTO
========================= */
.info-text {
    margin-top: 15px;
}

/* LINEA */
.line {
    width: 50px;
    height: 4px;
    background: #00c853;
    margin: 10px auto;
    border-radius: 5px;
}

/* TEXTO */
.info-text h5 {
    font-weight: 700;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 768px) {

    .page-info-row {
        flex-direction: column;
        gap: 30px;
    }

    .circle {
        width: 90px;
        height: 90px;
        font-size: 1.5rem;
    }
}