/* ===============================
   ABOUT / NOSOTROS PREMIUM
=============================== */

.about-premium {
  padding: 80px 20px;
  background: var(--color-blanco);
}

/* Split layout */

.about-split {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* LEFT IMAGE */

.about-left {
  position: relative;
}

.about-left img {
  width: 100%;
  border-radius: 22px;
  box-shadow: 0 25px 60px rgba(0,0,0,0.15);
  object-fit: cover;
}

/* RIGHT CONTENT */

.about-right h1 {
  font-size: 2.8rem;
  margin-bottom: 10px;
  color: var(--color-secundario);
  font-weight: 600;
}

.about-frase {
  font-family: "Shadows Into Light", cursive;
  font-size: 1.3rem;
  color: #077c32;
  margin-bottom: 25px;
}

.about-right p {
  font-size: 1rem;
  color: #476954;
  line-height: 1.7;
  margin-bottom: 20px;
}

/* STATS */

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin: 40px 0;
}

.about-stats div {
  background: white;
  padding: 25px 20px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
}

.about-stats div:hover {
  transform: translateY(-6px);
}

.about-stats h2 {
  font-size: 2.2rem;
  color: var(--color-primario);
  margin-bottom: 5px;
}

.about-stats span {
  font-size: 0.9rem;
  color: #64748b;
}

/* CONTACTO */

.about-contacto {
  margin: 40px 0;
  padding: 30px;
  background: #ffffff;
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  list-style: none;
}

.about-contacto h3 {
  font-size: 1.3rem;
  color: #0f172a;
  margin-bottom: 15px;
  font-weight:600;
}

.about-contacto li {
  font-size: 0.95rem;
  color: #475569;
  margin-bottom: 10px;
}

/* REDES */

.about-redes {
  display: flex;
  gap: 20px;
  margin-top: 20px;
}

.about-redes a {
  padding: 12px 26px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  background: var(--color-primario);
  color: white;
  transition: all 0.3s ease;
}

.about-redes a:hover {
  background: var(--color-primario-oscuro);
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

/* ===============================
   RESPONSIVE
=============================== */

@media (max-width: 992px) {

  .about-split {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .about-left img {
    max-height: 420px;
  }

  .about-right h1 {
    font-size: 2.3rem;
  }
}

@media (max-width: 576px) {

  .about-premium {
    padding: 60px 15px;
  }

  .about-right h1 {
    font-size: 2rem;
  }

  .about-highlight {
    font-size: 1.1rem;
  }

  .about-stats {
    grid-template-columns: 1fr;
  }

  .about-redes {
    flex-direction: column;
    align-items: flex-start;
  }

  .about-redes a {
    width: 100%;
    text-align: center;
  }
}