/* ============================================================
   TÉTHYS — sessoes.css
   Estilos específicos da página Sessões
   ============================================================ */

.sessoes-page {
  --hero-h: clamp(390px, 46vw, 600px);
}

/* ── HERO — 2.5 cols imagem + 1.5 cols painel ───────────── */
.sessoes-hero {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 3fr);
  height: var(--hero-h);
}

.sessoes-hero-photo {
  overflow: hidden;
}

.sessoes-hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transform: translate(0%, 0%) rotate(0deg) scaleX(1) scale(1.15);
  transform-origin: center center;
  display: block;
}

.sessoes-hero-panel {
  background: #805259;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: clamp(2.4rem, 5vw, 5rem);
}

.sessoes-hero-inner {
  width: min(100%, 22rem);
  height: 100%;
  margin: 0;
  display: flex;
  flex-direction: column;
}

.sessoes-hero-kicker {
  font-family: var(--font-b);
  font-size: clamp(1rem, 1.15vw, 1.18rem);
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(250,242,225,0.32);
  margin-bottom: 1.15rem;
}

.sessoes-hero-panel h1 {
  font-family: var(--font-d);
  font-size: 28px;
  font-style: italic;
  font-weight: 400;
  line-height: 1.55;
  color: var(--cream);
  letter-spacing: 0.01em;
  margin-top: auto;
  margin-bottom: auto;
}

/* ── INTRO — 2.5 cols texto + 1.5 cols imagem ───────────── */
.sessoes-intro {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 3fr);
  height: auto;
}

@media (min-width: 901px) {
  .sessoes-intro {
    min-height: clamp(420px, 34vw, 560px);
  }
}

.sessoes-intro-text {
  background: #dac7ba;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 clamp(2rem, 7vw, 6.8rem);
  color: #7a4e56;
}

.sessoes-intro-text h2 {
  max-width: 42rem;
  font-family: var(--font-d);
  font-style: italic;
  font-weight: 400;
  font-size: var(--section-title-size);
  line-height: 1.4;
  letter-spacing: 0.01em;
  margin-bottom: clamp(1.5rem, 2.2vw, 2rem);
}

.sessoes-intro-text p {
  max-width: 46rem;
  font-family: var(--font-b);
  font-style: normal;
  font-size: 1rem;
  line-height: 1.6;
  letter-spacing: 0.03em;
}

.sessoes-intro-photo {
  position: relative;
  min-height: 0;
  overflow: hidden;
}

.sessoes-intro-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 58%;
  display: block;
}

/* ── SERVICE CARDS — 4 colunas ──────────────────────────── */
.sessoes-cards {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.sessoes-card {
  position: relative;
  height: clamp(200px, 20vw, 285px);
  overflow: hidden;
  cursor: pointer;
}

.sessoes-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.sessoes-card:hover img {
  transform: scale(1.05);
}

.sessoes-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(111, 58, 66, 0.40);
  pointer-events: none;
}

.sessoes-card-overlay {
  position: absolute;
  inset: auto 0 0 0;
  z-index: 2;
  height: clamp(105px, 9vw, 120px);
  background: rgba(111, 58, 66, 0.35);
  transition: background 0.3s ease;
}

.sessoes-card:hover .sessoes-card-overlay {
  background: rgba(111, 58, 66, 0.52);
}

.sessoes-card-content {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(1rem, 1.8vw, 1.6rem);
  color: var(--cream);
}

.sessoes-card-category {
  font-family: var(--font-b);
  font-size: clamp(0.6rem, 0.68vw, 0.7rem);
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(250,242,225,0.65);
  margin-bottom: 0.3rem;
}

.sessoes-card-title {
  font-family: var(--font-d);
  font-size: clamp(1rem, 1.3vw, 1.4rem);
  font-weight: 700;
  line-height: 1.28;
  margin-bottom: 0.6rem;
}

.sessoes-card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-family: var(--font-b);
  font-size: clamp(0.6rem, 0.68vw, 0.7rem);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(250,242,225,0.88);
  transition: color 0.18s ease;
}

.sessoes-card-link:hover {
  color: var(--cream);
}

.sessoes-card-link svg {
  width: 13px;
  height: 13px;
  padding: 2.5px;
  border-radius: 50%;
  background: rgba(250,242,225,0.24);
  flex-shrink: 0;
  transition: background 0.2s ease, transform 0.2s ease;
}

.sessoes-card-link:hover svg {
  background: rgba(250,242,225,0.36);
  transform: translateX(3px);
}

/* ── FOCUS ──────────────────────────────────────────────── */
.sessoes-focus {
  background: #9e6f79;
  color: var(--cream);
  text-align: center;
  padding: 0 clamp(1.5rem, 5vw, 4rem);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.sessoes-focus p {
  max-width: 86rem;
  margin: 0 auto;
  font-family: var(--font-d);
  font-size: var(--section-title-size);
  font-style: italic;
  font-weight: 400;
  line-height: 1.35;
}

/* ── WORKSHOP EVENT — igual à página Sobre Mim ───────────── */
.about-event {
  position: relative;
  height: clamp(260px, 24vw, 380px);
  border-top: 3px solid var(--cream);
  border-bottom: 3px solid var(--cream);
  background: #6f3a42;
  overflow: hidden;
}

.about-event img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 55%;
  display: block;
  filter: saturate(0.96);
}

.about-event-card {
  position: absolute;
  inset: 0 auto 0 clamp(3.5rem, 8vw, 6.5rem);
  width: clamp(15rem, 22vw, 25rem);
  background: rgba(151,91,82,0.72);
  color: var(--cream);
  padding: clamp(1.75rem, 3vw, 3rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-event-card h2 {
  font-family: var(--font-b);
  font-size: clamp(1rem, 1.4vw, 1.45rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

.about-event-card p {
  font-size: clamp(0.72rem, 0.85vw, 0.85rem);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.03em;
  margin-bottom: 1.4rem;
}

.about-event-card a {
  align-self: center;
  background: var(--cream);
  color: #8a5560;
  font-size: 0.68rem;
  font-weight: 700;
  padding: 0.55rem 0.85rem;
  border-radius: 6px;
}

/* ── RESPONSIVIDADE ─────────────────────────────────────── */
@media (max-width: 1024px) {
  .about-footer-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .about-footer-message {
    grid-column: span 2;
  }
}

@media (max-width: 900px) {
  .sessoes-hero,
  .sessoes-intro {
    grid-template-columns: 1fr;
    height: auto;
  }

  .sessoes-hero-photo,
  .sessoes-intro-photo {
    height: clamp(330px, 96vw, 520px);
  }

  .sessoes-hero-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    transform: translate(0%, 0%) rotate(0deg) scaleX(1) scale(1.15);
    transform-origin: center center;
  }

  .sessoes-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .about-footer-message {
    grid-column: 1 / -1;
  }

  .about-event-card {
    left: 1.5rem;
  }
}

@media (max-width: 768px) {
  .sessoes-hero-panel h1 {
    font-size: clamp(1.5rem, 4.5vw, 28px);
  }

  .sessoes-intro-text h2 {
    font-size: clamp(1.25rem, 3.5vw, var(--section-title-size));
  }

  .sessoes-intro-text {
    padding: 0 1.5rem;
  }

  .sessoes-hero-panel {
    padding: 2rem 1.5rem;
  }

  .about-footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .about-footer-message {
    grid-column: 1 / -1;
  }
}

@media (max-width: 600px) {
  .sessoes-cards {
    grid-template-columns: 1fr;
  }

  .sessoes-card {
    height: clamp(300px, 82vw, 420px);
  }

  .sessoes-hero-panel {
    padding: 2rem 1.5rem;
  }

  .sessoes-focus {
    padding: 0 1.5rem;
  }

}

@media (max-width: 480px) {
  .sessoes-hero-photo {
    height: clamp(360px, 105vw, 560px);
  }

  .sessoes-hero-photo img {
    height: 100%;
  }

  .sessoes-intro-photo {
    height: clamp(330px, 96vw, 520px);
  }

  .sessoes-intro-text {
    padding: 0 1.25rem;
  }

  .sessoes-intro-text h2 {
    font-size: clamp(0.95rem, 4vw, 1.2rem);
  }

  .about-event {
    height: 340px;
  }

  .about-event-card {
    inset: auto 1rem 1rem 1rem;
    width: auto;
    min-height: 210px;
  }

  .about-footer-inner {
    width: calc(100% - 2rem);
  }

  .about-footer-logo {
    display: flex;
    justify-content: flex-start;
    margin-bottom: 1.6rem;
  }

  .about-footer-logo img {
    width: 160px;
  }

  .about-footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 1.2rem;
    row-gap: 1.4rem;
  }

  .about-footer-grid .footer-col:nth-child(4) {
    grid-column: 1 / -1;
  }

  .about-footer-message {
    grid-column: 1 / -1;
    order: -1;
  }

  .footer-col-title {
    font-size: 0.68rem;
    margin-bottom: 0.6rem;
  }

  .footer-links { gap: 0.35rem; }
  .footer-links a { font-size: 0.86rem; line-height: 1.35; }

  .about-contact-links a {
    width: min(100%, 18rem);
    justify-content: flex-start;
  }

}

@media (max-width: 360px) {
  .about-footer-grid { grid-template-columns: 1fr; }
}
