
           /* Sección general */
.info-section {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 3rem;
    padding: 1rem;
    align-items: center;
}

/* Tarjetas */
.info-card {
    background: #ffffff;
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
    max-width: 380px;
    min-height: 320px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
    border: 1px solid #e8e8e8;
    box-shadow: 0 4px 8px rgba(0,0,0,0.04);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

/* Efecto hover */
.info-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.08);
    border-color: #d0d0d0;
}

/* Iconos */
.info-card i {
    font-size: 3rem;
    color: #0d6efd;
    transition: color 0.3s ease, transform 0.3s ease;
}

.info-card:hover i {
    color: #0b5ed7;
    transform: scale(1.1);
}

/* Títulos */
.info-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1b1b18;
    margin-bottom: 0.25rem;
}

/* Textos */
.info-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #555;
    text-align: left;
}

/* Pequeño subrayado animado debajo del título */
.info-card h3::after {
    content: "";
    display: block;
    width: 0;
    height: 2px;
    background: #0d6efd;
    margin-top: 6px;
    transition: width 0.3s ease;
}

.info-card:hover h3::after {
    width: 40%;
}

/* Layout responsive */
@media (min-width: 64rem) {
    .info-section {
        flex-direction: row;
        justify-content: center;
        align-items: stretch;
    }

    .info-card {
        text-align: left;
        max-width: 420px;
    }

    .info-card i {
        align-self: flex-start;
    }
}
