/* ═══════════════════════════════════════════════════════════
   VÒLIA COSMÉTICOS — about.css
   ═══════════════════════════════════════════════════════════ */
/* ─── 7. HERO ───────────────────────────────────────────────── */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
}

.pill {
  font-family: var(--font-base);
  font-size: 1.5rem;
  color: var(--dark-color);
  opacity: 0.6;
  background: var(--white-color);
  border: 1.5px solid var(--dark-color);
  border-radius: 999px;
  padding: 0.3rem 2rem 0.3rem 2rem;
  cursor: pointer;
  min-width: 140px;
  outline: none;
  transition: border-color 0.2s;
}

.pill:focus,
.pill:hover {
  border-color: var(--primary-color);
}

.hero__content {
  margin-top: 40px;
}

.hero__title {
  font-size: 3rem;
  font-weight: var(--fw-regular);
  line-height: 1.2;
  opacity: 0.7;
  margin-bottom: 1.5rem;
  margin-top: 1.5rem;
  width: 120%;
}
.hero__title strong { font-weight: var(--fw-bold); }

.hero__body {
  text-align: justify;
  font-size: 1.2rem;
  line-height: 1.7;
  opacity: 0.8;
  color: #333;
  width: 80%;
}
.hero__body + .hero__body { margin-top: 1rem; }

/* Mosaic */
.hero__mosaic {
  width: 100%;
}

.mosaic__grid img {
  position: relative;
  width: 100%;
  height: 100%;
  margin-top: 120px;
}

/* ─── 8. DIRECTORS ──────────────────────────────────────────── */
.directors {
  background: var(--primary-color);
  color: var(--white-color);
  padding-block: clamp(3.5rem, 8vw, 6rem);
}

.directors__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--gap);
  align-items: stretch;
  position: relative;
}

.directors__title {
  width: 70%;
  font-size: 3rem;
  font-weight: var(--fw-regular);
  line-height: 1.25;
  margin-bottom: 2rem;
  text-align: justify;
  opacity: 0.8;
}
.directors__title strong { font-weight: var(--fw-bold); }

.directors__text p {
  font-size: 1.2rem;
  line-height: 1.75;
  opacity: 0.8;
  text-align: justify;
}
.directors__text p + p { margin-top: 1rem; }

.directors__photo {
  position: relative;
}

.directors__photo-frame {
  position: absolute;
  right: 1;
  top: 50%;
  transform: translateY(-50%);

  width: 130%;
  height: 130%;
}

.directors__photo-frame img {
  width: 100%;
  height: 100%;
}

/* ─── 9. MISSION · VISION · VALUES ─────────────────────────── */
.mvv {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4rem;
  padding-block: clamp(3rem, 2vw, 5rem);
}

.mvv__card {
  border: 3px solid rgb(107, 107, 107);
  border-radius: var(--radius);
  padding: 2rem;
  display: flex;
  margin: 0 auto;
  text-align: justify;
  flex-direction: column;
  gap: 1.5rem;
  transition: box-shadow 0.25s, border-color 0.25s;
}

.mvv__card:hover {
  box-shadow: 0 8px 24px rgba(160,158,216,0.18);
  border-color: var(--primary-color);
}

.mvv__label {
  display: inline-block;
  padding: 0.25rem 1.5rem;
  border: 1px solid var(--dark-color);
  border-radius: 999px;
  opacity: 0.7;
  font-size: 1.2rem;
  margin: 0 auto;
}

.mvv__heading {
  font-size: 1.2rem;
  font-weight: var(--fw-bold);
  line-height: 1.3;
  opacity: 0.6;
}

.mvv__card p {
  font-size: 0.75rem;
  line-height: 1.6;
  opacity: 0.8;
  color: #444;
}

/* ─── 10. CTA ───────────────────────────────────────────────── */
.cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  padding-block: clamp(2rem, 1vw, 2rem);
  text-align: center;
}

.cta__text {
  font-size: clamp(1.8rem, 3.5vw, 3.75rem);
  opacity: 0.5;
  font-weight: var(--fw-regular);
}

.cta .btn--filled {
  border: 2px solid var(--primary-color);
  background: var(--white-color);
  border-radius: 999px;
  color: var(--primary-color);
  padding: 0.5rem 1rem 0.5rem 2.5rem;
  font-size: 1.5rem;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  transition: transform 0.3s ease;
}

.cta .btn--filled:hover {
  transform: scale(1.05);
}

.arrow img {
  width: 60px;
  height: 30px;
  object-fit: contain;
  margin-left: 2rem;
}

/* ─── 12. RESPONSIVE ────────────────────────────────────────── */

/* ── Tablet (≤ 900px) ── */
@media (max-width: 900px) {
  /* Hero */
  .hero {
    grid-template-columns: 1fr;
    padding-block: clamp(2rem, 6vw, 4rem);
  }
  .hero__content {
    margin-top: 0;
  }
  .pill { font-size: 1rem; }
  .hero__body { font-size: 1rem; width: 100%; }
  .hero__title { font-size: 1.5rem; width: 100%; }
  .hero__mosaic { order: -1; max-width: 500px; margin: auto; }
  .mosaic__grid { gap: 0.5rem; margin: 0 auto; }

  .mosaic__grid img {
    width: 100%;
    height: 100%;
    margin: 0;
    top: -40px;
  }

  /* Directors */
  .directors__inner {
    grid-template-columns: 1fr;
  }
  .directors__photo {
    order: -1;
  }
  .directors__title { font-size: 1.5rem; width: 100%; }
  .directors__text p { font-size: 1rem; };
  .directors__photo {
    display: flex;
    justify-content: center;
  }
  .directors__photo-frame { max-width: 300px; position: relative; margin: 0 auto; order: -1; }

  /* MVV */
  .mvv {
    grid-template-columns: 1fr;
  }

  .cta .btn--filled {
    padding: 0.5rem 1rem;
    font-size: 1rem;
  }
}

/* ── Mobile (≤ 600px) ── */
@media (max-width: 600px) {
  .mosaic__grid {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
    aspect-ratio: 3 / 2;
  }
  .mosaic__item--5,
  .mosaic__item--6 { display: none; }

  .directors__photo-frame { max-width: 240px; }

  .mvv { gap: 1rem; }
  .mvv__card { padding: 1.5rem 1.25rem; }
}
