/**
 * Estilos para Página Quiénes Somos
 * COADO LTDA
 */

/* Variables CSS */
:root {
  --green: #1f7a5a;
  --dark: #0e3f2f;
  --soft: #e8f5f0;
  --gold: #ffd166;
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero-nosotros {
  background: linear-gradient(135deg, var(--green) 0%, var(--dark) 100%);
  color: white;
  padding: 5rem 0 3rem;
  margin-top: 70px;
  text-align: center;
}

.hero-nosotros h1 {
  font-weight: 800;
  font-size: 3rem;
  margin-bottom: 1rem;
  animation: fadeInDown 0.8s;
}

.hero-nosotros p {
  font-size: 1.3rem;
  opacity: 0.95;
  animation: fadeInUp 0.8s;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ========================================
   CARDS MISIÓN, VISIÓN, VALORES
   ======================================== */
.mvv-section {
  padding: 4rem 0;
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.mvv-card {
  background: white;
  border-radius: 1.5rem;
  padding: 2.5rem;
  box-shadow: 0 20px 60px rgba(0,0,0,0.1);
  margin-bottom: 2rem;
  transition: all 0.3s;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.mvv-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--green), var(--gold));
}

.mvv-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 80px rgba(0,0,0,0.15);
}

.mvv-icon {
  font-size: 4rem;
  margin-bottom: 1.5rem;
  display: block;
}

.mvv-card h3 {
  color: var(--green);
  font-weight: 800;
  font-size: 1.75rem;
  margin-bottom: 1.5rem;
}

.mvv-card p {
  color: #475569;
  font-size: 1.1rem;
  line-height: 1.8;
}

/* ========================================
   SECCIÓN OBJETIVOS
   ======================================== */
.objetivos-section {
  padding: 4rem 0;
  background: white;
}

.section-title-center {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title-center h2 {
  color: var(--dark);
  font-weight: 800;
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.section-title-center p {
  color: #64748b;
  font-size: 1.2rem;
}

.objetivo-item {
  background: var(--soft);
  padding: 1.5rem;
  border-radius: 1rem;
  margin-bottom: 1rem;
  border-left: 5px solid var(--green);
  transition: all 0.3s;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.objetivo-item:hover {
  background: white;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transform: translateX(10px);
}

.objetivo-item i {
  color: var(--green);
  font-size: 1.5rem;
  margin-top: 0.25rem;
}

.objetivo-item p {
  margin: 0;
  color: var(--dark);
  font-size: 1.05rem;
  line-height: 1.6;
}

/* ========================================
   SECCIÓN PRINCIPIOS Y POLÍTICAS
   ======================================== */
.principios-section {
  padding: 4rem 0;
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.principios-card {
  background: white;
  border-radius: 1.5rem;
  padding: 2.5rem;
  box-shadow: 0 20px 60px rgba(0,0,0,0.1);
  height: 100%;
}

.principios-card h3 {
  color: var(--green);
  font-weight: 800;
  font-size: 1.75rem;
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.principios-card h3 i {
  font-size: 2rem;
}

.principios-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.principios-card ul li {
  padding: 0.75rem 0;
  color: var(--dark);
  font-size: 1.05rem;
  line-height: 1.6;
  border-bottom: 1px solid #e2e8f0;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.principios-card ul li:last-child {
  border-bottom: none;
}

.principios-card ul li::before {
  content: '✓';
  color: var(--green);
  font-weight: 800;
  font-size: 1.3rem;
  flex-shrink: 0;
}

/* ========================================
   LLAMADO A LA ACCIÓN (CTA)
   ======================================== */
.cta-section {
  background: linear-gradient(135deg, var(--green) 0%, var(--dark) 100%);
  color: white;
  padding: 4rem 0;
  text-align: center;
}

.cta-section h2 {
  color: white;
  font-weight: 800;
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.cta-section p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.95;
}

.btn-cta-large {
  background: var(--gold);
  color: var(--dark);
  padding: 1.25rem 3rem;
  border-radius: 0.75rem;
  font-weight: 800;
  font-size: 1.2rem;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s;
  border: none;
}

.btn-cta-large:hover {
  background: white;
  color: var(--green);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
  text-decoration: none;
}

/* ========================================
   RESPONSIVE DESIGN - TABLET
   ======================================== */
@media (max-width: 991px) {
  .hero-nosotros {
    padding: 4rem 0 2.5rem;
  }
  
  .hero-nosotros h1 {
    font-size: 2.5rem;
  }
  
  .mvv-section,
  .objetivos-section,
  .principios-section {
    padding: 3rem 0;
  }
}

/* ========================================
   RESPONSIVE DESIGN - MÓVIL
   ======================================== */
@media (max-width: 768px) {
  .hero-nosotros {
    padding: 3rem 0 2rem;
  }
  
  .hero-nosotros h1 {
    font-size: 2rem;
  }
  
  .hero-nosotros p {
    font-size: 1.1rem;
  }
  
  .mvv-card {
    padding: 2rem;
  }
  
  .mvv-icon {
    font-size: 3rem;
  }
  
  .section-title-center h2 {
    font-size: 2rem;
  }
  
  .section-title-center p {
    font-size: 1.1rem;
  }
  
  .cta-section h2 {
    font-size: 2rem;
  }
  
  .cta-section p {
    font-size: 1.1rem;
  }
  
  .objetivo-item {
    padding: 1.25rem;
  }
  
  .principios-card {
    padding: 2rem;
  }
  
  .btn-cta-large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
  }
}

/* ========================================
   RESPONSIVE DESIGN - MÓVIL PEQUEÑO
   ======================================== */
@media (max-width: 480px) {
  .hero-nosotros h1 {
    font-size: 1.75rem;
  }
  
  .mvv-card,
  .principios-card {
    padding: 1.5rem;
  }
  
  .section-title-center h2 {
    font-size: 1.75rem;
  }
  
  .cta-section h2 {
    font-size: 1.75rem;
  }
  
  .objetivo-item {
    flex-direction: column;
    padding: 1rem;
  }
  
  .objetivo-item i {
    font-size: 1.25rem;
  }
}
