/* =============================================
   valores.css — Estilos de valores.php
   ============================================= */

.pagina-valores {
  padding: 40px 0 60px;
}

/* ===== HERO ===== */
.valores-hero {
  background: linear-gradient(135deg, var(--azul) 0%, var(--azul-hover) 100%);
  border-radius: var(--radio);
  padding: 40px 48px;
  margin-bottom: 40px;
  position: relative;
  overflow: hidden;
}

.valores-hero::before {
  content: '';
  position: absolute;
  top: -40px;
  right: -40px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
}

.valores-hero::after {
  content: '';
  position: absolute;
  bottom: -60px;
  right: 60px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
}

.valores-hero h1 {
  font-family: 'Raleway', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 10px;
}

.valores-hero p {
  color: rgba(255,255,255,0.7);
  font-size: 0.95rem;
  margin: 0;
}

/* ===== GRID MISION/VISION ===== */
.mv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 24px;
}

@media (max-width: 767px) {
  .mv-grid { grid-template-columns: 1fr; }
}

/* ===== CARDS ===== */
.seccion-card {
  background: #fff;
  border-radius: var(--radio);
  box-shadow: var(--sombra);
  padding: 36px 40px;
  margin-bottom: 24px;
  border-left: 5px solid var(--azul);
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.seccion-card:hover {
  box-shadow: var(--sombra-hover);
  transform: translateY(-3px);
}

.seccion-icono {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: var(--azul);
  border-radius: 10px;
  margin-bottom: 16px;
}

.seccion-icono i {
  color: #fff;
  font-size: 20px;
}

.seccion-card h2 {
  font-family: 'Raleway', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--azul);
  margin: 0 0 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--gris-fondo);
}

.seccion-card p {
  font-size: 0.97rem;
  color: var(--texto-suave);
  line-height: 1.85;
  margin-bottom: 16px;
}

.seccion-card p:last-child { margin-bottom: 0; }

/* ===== LISTA DE FUNCIONES ===== */
.funciones-lista {
  list-style: none;
  padding: 0;
  margin: 0;
  counter-reset: funciones;
}

.funciones-lista li {
  counter-increment: funciones;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--gris-fondo);
  font-size: 0.97rem;
  color: var(--texto-suave);
  line-height: 1.75;
}

.funciones-lista li:last-child { border-bottom: none; }

.funciones-lista li::before {
  content: counter(funciones);
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 32px;
  height: 32px;
  background: var(--azul);
  color: #fff;
  border-radius: 50%;
  font-size: 13px;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 767px) {
  .valores-hero { padding: 28px 24px; }
  .valores-hero h1 { font-size: 1.5rem; }
  .seccion-card { padding: 24px 20px; }
}
