/* Fondo general de la página */
body {
    background-color: #fdfaf3;
  }
  
  /* Secciones genéricas */
  .about-section {
    padding: 5rem 0;
  }
  
  /* TITULOS */
  .about-h2 {
    font-family: "Playfair Display", serif;
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #111;
  }
  
  /* ---------- HERO SOBRE NOSOTROS ---------- */
  
  .about-hero {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    color: #fff;
    background-image: url("assets/nosotros-hero.jpg"); /* CAMBIA la imagen por la que quieras */
    background-size: cover;
    background-position: center;
  }
  
  .about-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.25));
  }
  
  .about-hero-inner {
    position: relative;
    z-index: 1;
    padding: 5rem 0;
  }
  
  .about-hero-copy {
    max-width: 640px;
    text-align: left;
  }
  
  .about-kicker {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 999px;
    background-color: #c6a15b;
    color: #111;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 1rem;
  }
  
  .about-title {
    font-family: "Playfair Display", serif;
    font-size: 2.8rem;
    line-height: 1.1;
    margin-bottom: 1rem;
  }
  
  .about-tagline {
    font-size: 1rem;
    max-width: 32rem;
    margin-bottom: 2rem;
  }
  
  /* Botones (mismo estilo que contacto) */
  
  .btn-gold,
  .btn-ghost {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.6rem;
    border-radius: 999px;
    font-size: 0.95rem;
    text-decoration: none;
    border: 1px solid transparent;
    transition: transform 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease, color 0.18s ease;
    cursor: pointer;
    margin-right: 0.75rem;
  }
  
  .btn-gold {
    background-color: #c6a15b;
    color: #111;
    border-color: #c6a15b;
  }
  
  .btn-gold:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.2);
  }
  
  .btn-ghost {
    background-color: transparent;
    color: #fdfaf3;
    border-color: #fdfaf3;
  }
  
  .btn-ghost:hover {
    background-color: #fdfaf3;
    color: #111;
  }
  
  /* ---------- HISTORIA ---------- */
  
  .about-story {
    background-color: #fdfaf3;
  }
  
  .about-story-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
    gap: 3rem;
    align-items: center;
  }
  
  .about-story-text p {
    margin-bottom: 1rem;
    color: #333;
  }
  
  .about-story-media img {
    width: 100%;
    border-radius: 1.5rem;
    object-fit: cover;
    box-shadow: 0 14px 40px rgba(15, 23, 42, 0.2);
  }
  
  /* ---------- VISIÓN ---------- */
  
  .about-vision {
    background-color: #ffffff;
  }
  
  .about-vision-card {
    background-color: #fdfaf3;
    border-radius: 1.5rem;
    padding: 2.5rem 2.75rem;
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.16);
    max-width: 900px;
    margin: 0 auto;
  }
  
  .about-vision-card p {
    margin-bottom: 1rem;
    color: #333;
  }
  
  /* ---------- BENEFICIOS ---------- */
  
  .about-benefits {
    background-color: #fdfaf3;
  }
  
  .about-benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
  }
  
  .benefit-card {
    background-color: #ffffff;
    border-radius: 1.25rem;
    padding: 1.6rem 1.8rem;
    box-shadow: 0 12px 32px rgba(15, 23, 42, 0.12);
  }
  
  .benefit-card h3 {
    font-family: "Playfair Display", serif;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: #111;
  }
  
  .benefit-card p {
    font-size: 0.95rem;
    color: #444;
  }
  
  /* ---------- EQUIPO ---------- */
  
  .about-team {
    background-color: #ffffff;
  }
  
  .team-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 2rem;
    margin-top: 2rem;
  }
  
  .team-card {
    background-color: #fdfaf3;
    border-radius: 1.5rem;
    padding: 1.8rem 1.6rem 2rem;
    box-shadow: 0 14px 40px rgba(15, 23, 42, 0.14);
  }
  
  .team-photo img {
    width: 100%;
    border-radius: 1.25rem;
    object-fit: cover;
    margin-bottom: 1rem;
  }
  
  .team-name {
    font-family: "Playfair Display", serif;
    font-size: 1.3rem;
    margin-bottom: 0.3rem;
  }
  
  .team-role {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #666;
    margin-bottom: 0.9rem;
  }
  
  .team-bio {
    font-size: 0.95rem;
    color: #333;
  }
  
  .team-cta {
    margin-top: 2.5rem;
  }
  
  /* ---------- ANIMACIONES SCROLL ---------- */
  
  .reveal-on-scroll {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.8s ease, transform 0.8s ease;
  }
  
  .reveal-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
  }
  
  /* ---------- RESPONSIVE ---------- */
  
  @media (max-width: 960px) {
    .about-hero {
      min-height: 60vh;
    }
  
    .about-title {
      font-size: 2.2rem;
    }
  
    .about-story-grid {
      grid-template-columns: 1fr;
    }
  
    .about-benefits-grid {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }
  
    .team-grid {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }
  }
  
  @media (max-width: 640px) {
    .about-hero-copy {
      text-align: left;
    }
  
    .about-benefits-grid {
      grid-template-columns: 1fr;
    }
  
    .team-grid {
      grid-template-columns: 1fr;
    }
  
    .btn-gold,
    .btn-ghost {
      width: 100%;
      margin-right: 0;
      margin-bottom: 0.75rem;
    }
  }