/* --- ESTILOS PÁGINA SOBRE NOSOTROS --- */
.about-container { max-width: 1200px; margin: 0 auto; padding: 40px 20px; color: #374151; }

/* Hero */
.about-hero { background: #111827; color: white; padding: 60px 20px; text-align: center; border-radius: 12px; margin-bottom: 40px; }
.about-hero h1 { font-size: 36px; margin-bottom: 10px; color: #fff; }
.hero-tagline { font-size: 18px; opacity: 0.9; }

/* Intro & MV */
.about-intro { margin-bottom: 60px; text-align: center; }
.text-block { max-width: 800px; margin: 0 auto 40px; font-size: 17px; line-height: 1.8; }
.mission-vision-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
.mv-card { background: #f9fafb; padding: 30px; border-radius: 12px; border: 1px solid #e5e7eb; }
.mv-card i { font-size: 30px; color: #ec3039; margin-bottom: 15px; }
.mv-card h3 { margin-bottom: 10px; color: #111; }

/* Logística */
.section-title { text-align: center; font-size: 28px; margin-bottom: 40px; color: #111; }
.logistics-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 20px; margin-bottom: 60px; }
.log-card { background: #fff; border: 1px solid #eee; padding: 25px; border-radius: 12px; transition: transform 0.3s; }
.log-card:hover { transform: translateY(-5px); box-shadow: 0 10px 20px rgba(0,0,0,0.05); }
.log-card i { font-size: 24px; color: #ec3039; margin-bottom: 15px; }
.log-card h3 { font-size: 18px; margin-bottom: 12px; color: #111; }
.log-card ul { padding-left: 18px; font-size: 14px; }
.log-card p { font-size: 14px; line-height: 1.5; }

/* FAQ (Acordeón) */
.about-faq { max-width: 800px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid #eee; margin-bottom: 10px; }
.faq-question { padding: 18px; font-weight: 600; cursor: pointer; display: flex; justify-content: space-between; align-items: center; background: #fff; }
.faq-answer { padding: 0 18px 18px; color: #6b7280; display: none; font-size: 15px; }
.faq-item.active .faq-answer { display: block; }
.faq-item.active .faq-question i { transform: rotate(180deg); }

@media (max-width: 768px) {
    .mission-vision-grid { grid-template-columns: 1fr; }
    .about-hero h1 { font-size: 28px; }
}