.about-intro-grid {
    display: grid; grid-template-columns: 1fr 2fr;  align-items: center;
    gap: 60px; margin-bottom: 80px;
}

.about-logo img {
    display: block;
    width: 100%; max-width: 320px; 
    border-radius: 50%; 
    box-shadow: 0 10px 30px rgba(15, 30, 45, 0.1);
    margin: 0 auto;
}

/* Title specific */
.about-text-content .main-title {
    padding-left: 30px;
}
.about-text-content p {
    font-size: 15px; color: #444; /* Color p */
    margin-bottom: 15px;
}


/* =========================================
   GRID CARDS
============================================ */
.about-cards-grid {
    display: grid; grid-template-columns: repeat(4, 1fr); justify-items: center;
    gap: 25px;
}
.about-card {
    background-color: transparent; 
    width: 100%; max-width: 300px;
    padding: 20px 15px;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(15, 30, 45, 0.04); /* Sombra cards */
    transition: all 0.4s ease-in-out; 
}
.about-card:hover { 
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(15, 30, 45, 0.08);
}
.card-title {
    position: relative;
    font-size: 17px; letter-spacing: 1px;
    color: var(--color-text-dark);
    margin-bottom: 15px; padding-bottom: 10px;
}
.card-title::after {
    content: '';
    position: absolute;
    width: 60px; height: 1px; bottom: 0; left: 50%;
    transform: translateX(-50%);
    background-color: var(--color-accent); 
}
.card-text {
    font-size: 13px; color: #666; /* Color p */
}


/* =========================================
   MEDIA
============================================ */
@media (max-width: 1024px) {
    .about-intro-grid { gap: 30px; }
    .about-logo img { max-width: 250px; }
    .about-cards-grid { grid-template-columns: repeat(2, 1fr); gap: 40px; }
    .about-card { max-width: 320px; }
}

@media (max-width: 768px) {
    .about-intro-grid { grid-template-columns: 1fr; gap: 40px; }
    .about-logo img { max-width: 220px; }
    .about-text-content .main-title { padding-left: 0; }
    .about-text-content .title-divider { width: 80%; margin: 0 auto 25px auto; }
    .about-cards-grid { grid-template-columns: 1fr; gap: 35px; }
    .about-card { max-width: 350px; }
}