/* ========== SOBRE NOSOTROS SECTION ========== */
.about-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #e9ecef 100%);
}

.container-about {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Section Header */
.section-header-about {
    text-align: center;
    margin-bottom: 3rem;
}

.section-tag-about {
    display: inline-block;
    background: #1e2b3c;
    color: #e37321;
    font-size: 0.85rem;
    font-weight: 600;
    padding: 0.3rem 1rem;
    border-radius: 40px;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
}

.section-title-about {
    font-size: 2.2rem;
    font-weight: 700;
    color: #1e2b3c;
    margin-bottom: 0.75rem;
}

.section-title-about span {
    color: #e37321;
}

.section-subtitle-about {
    color: #5a6e7a;
    max-width: 600px;
    margin: 0 auto;
    font-size: 1rem;
}

/* Grid superior - 3 columnas */
.about-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .about-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Tarjetas flotantes pequeñas */
.about-card {
    background: white;
    border-radius: 1.5rem;
    overflow: hidden;
    padding: 1.8rem;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.08), 0 8px 10px -6px rgba(0, 0, 0, 0.02);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.about-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 30px -12px rgba(0, 0, 0, 0.15);
}

.card-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.2rem;
    font-size: 1.8rem;
}

.about-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 3px solid;
    display: inline-block;
}

.about-card p {
    color: #4a5568;
    line-height: 1.6;
    font-size: 0.95rem;
    margin-bottom: 0.75rem;
}

/* Colores tarjetas pequeñas */
.mission-card {
    border-top: 5px solid #02A19C;
}
.mission-card .card-icon {
    background: rgba(2, 161, 156, 0.1);
    color: #02A19C;
}
.mission-card h3 {
    border-bottom-color: #02A19C;
    color: #02A19C;
}

.vision-card {
    border-top: 5px solid #ff9933;
}
.vision-card .card-icon {
    background: rgba(255, 153, 51, 0.1);
    color: #ff9933;
}
.vision-card h3 {
    border-bottom-color: #ff9933;
    color: #ff9933;
}

.values-card {
    border-top: 5px solid #ff0080;
}
.values-card .card-icon {
    background: rgba(255, 0, 128, 0.1);
    color: #ff0080;
}
.values-card h3 {
    border-bottom-color: #ff0080;
    color: #ff0080;
}

.values-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.values-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    margin-bottom: 0.8rem;
    font-size: 0.9rem;
    color: #4a5568;
    line-height: 1.4;
}

.values-list li i {
    margin-top: 0.2rem;
    font-size: 0.9rem;
}

.values-card .values-list li i {
    color: #ff0080;
}

/* Tarjetas ancho completo */
.about-fullwidth-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 1rem;
}

.about-card-full {
    background: white;
    border-radius: 1.5rem;
    overflow: hidden;
    padding: 2rem;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.08), 0 8px 10px -6px rgba(0, 0, 0, 0.02);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.about-card-full:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 30px -12px rgba(0, 0, 0, 0.15);
}

.card-icon-full {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    flex-shrink: 0;
}

.card-content-full {
    flex: 1;
}

.card-content-full h3 {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 3px solid;
    display: inline-block;
}

.card-content-full .intro-text {
    color: #4a5568;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 1rem;
    font-weight: 500;
}

.full-details {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.detail-block {
    background: #f8f9fa;
    padding: 1.2rem;
    border-radius: 1rem;
}

.detail-block h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    color: #1e2b3c;
}

.detail-block p {
    font-size: 0.9rem;
    color: #4a5568;
    line-height: 1.5;
    margin-bottom: 0.5rem;
}

.detail-block ul, .detail-block ol {
    margin-left: 1.5rem;
    margin-top: 0.3rem;
}

.detail-block li {
    font-size: 0.9rem;
    color: #4a5568;
    line-height: 1.5;
    margin-bottom: 0.3rem;
}

.highlight-block {
    background: #fff8f0;
    border-left: 4px solid #e37321;
}

/* Colores tarjetas ancho completo */
.privacy-card {
    border-left: 6px solid #1e2b3c;
}
.privacy-card .card-icon-full {
    background: rgba(30, 43, 60, 0.1);
    color: #1e2b3c;
}
.privacy-card h3 {
    border-bottom-color: #1e2b3c;
    color: #1e2b3c;
}

.terms-card {
    border-left: 6px solid #dc2626;
}
.terms-card .card-icon-full {
    background: rgba(220, 38, 38, 0.1);
    color: #dc2626;
}
.terms-card h3 {
    border-bottom-color: #dc2626;
    color: #dc2626;
}

/* Responsive */
@media (max-width: 768px) {
    .about-section {
        padding: 3rem 0;
    }
    
    .section-title-about {
        font-size: 1.8rem;
    }
    
    .about-card {
        padding: 1.3rem;
    }
    
    .about-card h3 {
        font-size: 1.3rem;
    }
    
    .about-card-full {
        padding: 1.3rem;
        flex-direction: column;
        align-items: flex-start;
    }
    
    .card-content-full h3 {
        font-size: 1.3rem;
    }
    
    .detail-block {
        padding: 1rem;
    }
    
    .detail-block ul, .detail-block ol {
        margin-left: 1rem;
    }
}