/* ===============================
   ABOUT US 
================================ */

.about {
  font-family: 'Poppins', sans-serif;
  line-height: 1.7;
  color: #1c1c1c;
}

/* ================= HERO ================= */

.about__hero {
  background: linear-gradient(135deg, #f97b14, #ffb347);
  color: #ffffff;
  padding: 100px 20px;
  text-align: center;
}

.about__hero .section__title {
  font-size: 2.8rem;
  max-width: 900px;
  margin: 0 auto 20px;
  font-weight: 700;
}

.about__subtitle {
  font-size: 1.2rem;
  max-width: 800px;
  margin: auto;
  opacity: 0.95;
}

/* ================= SECCIONES ================= */

.about__section {
  padding: 80px 20px;
}

.about__section--alt {
  background-color: #f8f8f8;
}

.about__section .section__title {
  font-size: 2.2rem;
  margin-bottom: 30px;
  position: relative;
}

.about__section .section__title::after {
  content: "";
  display: block;
  width: 70px;
  height: 4px;
  background-color: #ff8a00;
  margin-top: 10px;
  border-radius: 2px;
}

.about__section p {
  max-width: 900px;
  margin-bottom: 20px;
  font-size: 1.05rem;
}

/* ================= VALUES / FEATURES ================= */

.about__values {
  margin-top: 50px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 30px;
}

.about__value {
  background-color: #ffffff;
  padding: 35px 30px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

.about__value::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 6px;
  background: linear-gradient(90deg, #ff8a00, #ffb347);
}

.about__value:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.about__value i {
  font-size: 2.5rem;
  color: #ff8a00;
  margin-bottom: 15px;
}

.about__value h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.about__value p {
  font-size: 0.95rem;
  margin-bottom: 0;
}

/* ================= LISTAS SEO ================= */

.about__list {
  margin-top: 30px;
  max-width: 800px;
}

.about__list li {
  padding-left: 30px;
  margin-bottom: 15px;
  position: relative;
  font-size: 1.05rem;
}

.about__list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0;
  color: #ff8a00;
  font-weight: bold;
}

/* ================= CTA FINAL ================= */

.about .booking__button {
  background: linear-gradient(135deg, #ff8a00, #ffb347);
  color: #000;
  border: none;
  padding: 15px 40px;
  font-size: 1.1rem;
  border-radius: 40px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.about .booking__button:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 25px rgba(255,138,0,0.4);
}

/* ================= RESPONSIVE ================= */

@media (max-width: 768px) {
  .about__hero {
    padding: 70px 20px;
  }

  .about__hero .section__title {
    font-size: 2.1rem;
  }

  .about__section {
    padding: 60px 20px;
  }
}
