/* ============================================
   PÁGINA NOSOTROS — estilo moderno (verde)
   Depende de variables/keyframes de modern-rediseno.css
   ============================================ */
:root {
  --about-green: #16a34a;
  --about-green-dark: #0f5132;
  --about-green-mid: #15803d;
  --about-green-soft: #e9f5ee;
  --about-teal: #10b981;
}

.section-padding-mod {
  padding: 90px 24px;
}

.about-eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--about-green);
  background: var(--about-green-soft);
  padding: 6px 16px;
  border-radius: 30px;
  margin-bottom: 16px;
}

.about-section-title {
  font-size: 38px;
  font-weight: 700;
  color: var(--primary-dark);
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

/* HERO */
.about-hero {
  position: relative;
  min-height: 54vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding: 140px 24px 90px;
  background: linear-gradient(135deg, #0f5132 0%, #16a34a 55%, #0f5132 100%);
  background-size: 200% 200%;
  animation: gradient-shift 15s ease infinite;
}

.about-hero-pattern {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 44px 44px;
  animation: shift 20s linear infinite;
}

.about-hero-content {
  position: relative;
  z-index: 2;
}

.about-hero-badge {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 7px 18px;
  border-radius: 30px;
  margin-bottom: 20px;
}

.about-hero-title {
  font-size: 56px;
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 18px;
}

.about-highlight {
  background: linear-gradient(135deg, #d1fae5 0%, #ffffff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.about-hero-subtitle {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.9);
  max-width: 620px;
  margin: 0 auto 22px;
  line-height: 1.6;
}

.about-breadcrumb {
  margin: 0;
}

.about-breadcrumb .breadcrumb-item a {
  color: rgba(255, 255, 255, 0.85);
}

.about-breadcrumb .breadcrumb-item a:hover {
  color: #fff;
}

.about-breadcrumb .breadcrumb-item.active {
  color: #fff;
}

.about-breadcrumb .breadcrumb-item + .breadcrumb-item::before {
  color: rgba(255, 255, 255, 0.6);
}

/* INTRO */
.about-intro {
  background: #fff;
}

@keyframes about-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}

@keyframes about-glow {
  0%, 100% {
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.15), 0 0 0 0 rgba(22, 163, 74, 0);
  }
  50% {
    box-shadow: 0 28px 65px rgba(22, 163, 74, 0.3), 0 0 45px 5px rgba(16, 185, 129, 0.2);
  }
}

@keyframes about-badge-pulse {
  0%, 100% { transform: scale(1); box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25); }
  50% { transform: scale(1.06); box-shadow: 0 16px 40px rgba(22, 163, 74, 0.45); }
}

.about-image-wrap {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.15);
  animation: about-float 6s ease-in-out infinite, about-glow 4s ease-in-out infinite;
}

.about-image-wrap:hover {
  animation-play-state: paused;
}

.about-image {
  width: 100%;
  height: 460px;
  object-fit: cover;
  display: block;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.about-image-wrap:hover .about-image {
  transform: scale(1.05);
}

.about-image-badge {
  position: absolute;
  bottom: 25px;
  left: 25px;
  background: linear-gradient(135deg, var(--about-green) 0%, var(--about-teal) 100%);
  color: #fff;
  padding: 18px 26px;
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  animation: about-badge-pulse 2.5s ease-in-out infinite;
}

.about-badge-number {
  font-size: 32px;
  font-weight: 700;
  line-height: 1;
}

.about-badge-text {
  font-size: 13px;
  margin-top: 4px;
  opacity: 0.95;
}

.about-intro p {
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 14px;
}

.about-points {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.about-point {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  color: var(--primary-dark);
  font-size: 14px;
}

.about-point i {
  color: var(--about-green);
  font-size: 18px;
}

/* MISIÓN VISIÓN OBJETIVOS */
.about-mvo {
  background: var(--about-green-soft);
}

.about-card {
  background: #fff;
  border-radius: 18px;
  padding: 38px 30px;
  height: 100%;
  box-shadow: 0 6px 24px rgba(15, 23, 42, 0.06);
  border: 1px solid rgba(22, 163, 74, 0.08);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-align: center;
}

.about-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 24px 50px rgba(22, 163, 74, 0.18);
  border-color: var(--about-green);
}

.about-card-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 22px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 34px;
  color: #fff;
  background: linear-gradient(135deg, var(--about-green) 0%, var(--about-teal) 100%);
  box-shadow: 0 10px 25px rgba(22, 163, 74, 0.3);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.about-card:hover .about-card-icon {
  transform: scale(1.1) rotate(-6deg);
}

.about-card h4 {
  font-size: 22px;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 12px;
}

.about-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}

.about-list {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
}

.about-list li {
  font-size: 14px;
  color: var(--text-muted);
  padding: 7px 0;
  display: flex;
  gap: 8px;
  align-items: flex-start;
  line-height: 1.5;
}

.about-list li i {
  color: var(--about-green);
  margin-top: 3px;
  flex-shrink: 0;
}

/* ¿POR QUÉ ELEGIRNOS? — fondo verde oscuro */
.about-why {
  background: linear-gradient(135deg, #0f5132 0%, #15803d 100%);
  position: relative;
  overflow: hidden;
}

.about-why::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 30%, rgba(16, 185, 129, 0.15) 0%, transparent 45%),
              radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.06) 0%, transparent 45%);
  pointer-events: none;
}

.about-why .about-eyebrow {
  color: #d1fae5;
  background: rgba(255, 255, 255, 0.12);
}

.about-why .about-section-title {
  color: #fff;
}

.about-why-sub {
  color: rgba(255, 255, 255, 0.85);
  max-width: 680px;
  margin: 0 auto;
}

.about-feature-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  padding: 34px 28px;
  height: 100%;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.about-feature-card:hover {
  transform: translateY(-12px);
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--about-teal);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.3);
}

.about-feature-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: #fff;
  background: linear-gradient(135deg, var(--about-green) 0%, var(--about-teal) 100%);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.about-feature-card:hover .about-feature-icon {
  transform: scale(1.12) rotate(-8deg);
}

.about-feature-card h4 {
  font-size: 19px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
}

.about-feature-card p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  margin: 0;
}

/* CTA */
.about-cta {
  background: linear-gradient(135deg, var(--about-green) 0%, var(--about-teal) 100%);
  padding: 80px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.about-cta h2 {
  font-size: 38px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 14px;
}

.about-cta p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 32px;
}

.about-cta-btn {
  display: inline-block;
  padding: 18px 46px;
  font-size: 18px;
  font-weight: 700;
  background: #fff;
  color: var(--about-green-mid);
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.about-cta-btn:hover {
  transform: translateY(-4px) scale(1.05);
  color: var(--about-green-dark);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3);
}

@media (max-width: 991px) {
  .about-hero-title { font-size: 40px; }
  .about-section-title { font-size: 30px; }
  .about-image { height: 360px; }
  .about-points { grid-template-columns: 1fr; }
  .about-cta h2 { font-size: 30px; }
}

/* Legibilidad del hero (texto sobre el fondo) */
.about-hero {
  padding-bottom: 135px;
}

.about-hero-title {
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.35);
}

.about-hero-subtitle {
  text-shadow: 0 1px 14px rgba(0, 0, 0, 0.4);
}

.about-highlight {
  text-shadow: none;
}
