:root {
  --sand-100: #f6f0e7;
  --sand-200: #ebddcc;
  --sand-300: #deceb7;
  --earth-500: #8c6847;
  --earth-600: #765638;
  --forest-700: #224238;
  --forest-800: #183129;
  --forest-900: #11241e;
  --sage-100: #dfe8df;
  --sage-200: #cedacd;
  --text-900: #20211d;
  --text-700: #4d5048;
  --white: #ffffff;
  --radius-lg: 22px;
  --radius-md: 16px;
  --shadow-soft: 0 18px 44px rgba(18, 36, 30, 0.1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text-900);
  background:
    radial-gradient(circle at top left, rgba(223, 232, 223, 0.88), transparent 30%),
    radial-gradient(circle at right 12%, rgba(235, 221, 204, 0.85), transparent 30%),
    linear-gradient(180deg, #faf6ef 0%, #f5efe6 48%, #f8f3eb 100%);
  line-height: 1.6;
}

h1,
h2,
h3 {
  margin-top: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 700;
  line-height: 1.08;
}

h1 {
  font-size: clamp(2.4rem, 6vw, 5rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 3.3rem);
}

h3 {
  font-size: clamp(1.35rem, 2.5vw, 1.95rem);
}

p,
ul {
  margin: 0;
}

a {
  color: inherit;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 88vh;
  padding: 1.5rem clamp(1rem, 3vw, 3rem) 4.5rem;
  color: var(--white);
  background:
    radial-gradient(circle at 20% 18%, rgba(240, 214, 177, 0.16), transparent 18%),
    radial-gradient(circle at 82% 14%, rgba(223, 232, 223, 0.14), transparent 16%),
    linear-gradient(145deg, rgba(17, 36, 30, 0.96), rgba(34, 66, 56, 0.9) 55%, rgba(140, 104, 71, 0.76));
  display: flex;
  flex-direction: column;
  gap: 3.25rem;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto -10% -14% auto;
  width: min(460px, 52vw);
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(246, 240, 231, 0.18), rgba(246, 240, 231, 0.04) 58%, transparent 70%);
  pointer-events: none;
}

.topbar {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.brand {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.7rem, 2.4vw, 2.35rem);
  letter-spacing: 0.03em;
  text-decoration: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(760px, 100%);
  display: grid;
  gap: 1rem;
}

.lead,
.hero-urgency {
  max-width: 64ch;
  color: rgba(255, 255, 255, 0.9);
}

.lead {
  font-size: clamp(1.05rem, 2vw, 1.24rem);
}

.offer-pill {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  background: rgba(246, 240, 231, 0.16);
  border: 1px solid rgba(246, 240, 231, 0.26);
  color: var(--sand-100);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-decoration: none;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 0.55rem;
}

.hero-links {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.6rem;
  font-size: 0.96rem;
  color: rgba(255, 255, 255, 0.84);
}

.hero-links a {
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
}

.hero-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.hero-highlights span {
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  padding: 0.38rem 0.75rem;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.94);
  background: rgba(255, 255, 255, 0.08);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0.84rem 1.35rem;
  font: inherit;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.18s ease, background-color 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--earth-500);
  color: var(--white);
  box-shadow: 0 12px 26px rgba(140, 104, 71, 0.28);
}

.btn-primary:hover {
  background: var(--earth-600);
}

.btn-outline {
  border-color: rgba(255, 255, 255, 0.48);
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
}

.btn-soft,
.btn-muted {
  border-color: rgba(255, 255, 255, 0.16);
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
}

.btn-whatsapp {
  background: #1d7b4d;
  color: var(--white);
  box-shadow: 0 12px 26px rgba(29, 123, 77, 0.22);
}

.btn-whatsapp:hover {
  background: #17653f;
}

.block {
  width: 100%;
}

.section {
  width: min(1100px, 92%);
  margin: 4.5rem auto;
}

.section-title {
  display: grid;
  gap: 0.35rem;
  margin-bottom: 1.5rem;
}

.section-subtitle {
  max-width: 66ch;
  color: var(--text-700);
}

.offer-note {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  background: rgba(140, 104, 71, 0.1);
  color: var(--earth-600);
  font-size: 0.92rem;
  font-weight: 700;
  text-decoration: none;
}

.kicker {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--forest-700);
}

.hero .kicker {
  color: var(--sand-200);
}

.grid {
  display: grid;
  gap: 1rem;
}

.grid.two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.feature-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.mini-card,
.card {
  border: 1px solid rgba(17, 36, 30, 0.08);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.76);
  box-shadow: var(--shadow-soft);
}

.card {
  padding: 1.25rem 1.35rem;
}

.mini-card {
  padding: 1rem 1.1rem;
}

.mini-card strong {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--forest-800);
}

.mini-card p,
.card p,
.persona-card p,
.venue-card p,
.payment-card p,
.faq-card p {
  color: var(--text-700);
}

.card ul {
  margin-top: 0.75rem;
  padding-left: 1.1rem;
}

.card li + li {
  margin-top: 0.45rem;
}

.meal-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.82fr);
  gap: clamp(1rem, 3vw, 2rem);
  align-items: center;
  width: min(920px, 92%);
}

.meal-copy {
  display: grid;
  gap: 0.55rem;
}

.meal-figure {
  margin: 0;
  width: 100%;
  max-width: 430px;
  justify-self: center;
}

.meal-figure img {
  display: block;
  width: 100%;
  max-height: 280px;
  height: auto;
  object-fit: contain;
  border-radius: 14px;
  box-shadow: 0 14px 34px rgba(18, 36, 30, 0.1);
  cursor: zoom-in;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.meal-figure img:hover,
.meal-figure img:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 22px 52px rgba(18, 36, 30, 0.16);
  outline: none;
}

.room-section {
  grid-template-columns: minmax(260px, 0.82fr) minmax(0, 1fr);
}

.practice-section {
  margin-top: 3.5rem;
}

.place-gallery {
  width: min(880px, 92%);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.65rem;
  max-width: 720px;
  margin-inline: auto;
}

.gallery-grid img {
  width: 100%;
  aspect-ratio: 1;
  height: auto;
  object-fit: cover;
  border-radius: 10px;
  border: 1px solid rgba(34, 66, 56, 0.1);
  box-shadow: 0 10px 24px rgba(18, 36, 30, 0.08);
  cursor: zoom-in;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.gallery-grid img:hover,
.gallery-grid img:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(18, 36, 30, 0.14);
  outline: none;
}

.image-lightbox {
  position: fixed;
  inset: 0;
  z-index: 20;
  display: none;
  place-items: center;
  padding: clamp(1rem, 3vw, 2rem);
  background: rgba(17, 36, 30, 0.82);
}

.image-lightbox.is-open {
  display: grid;
}

.image-lightbox img {
  display: block;
  max-width: min(1120px, 94vw);
  max-height: 82vh;
  width: auto;
  height: auto;
  border-radius: 14px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.34);
}

.image-lightbox-close {
  position: fixed;
  top: 1rem;
  right: 1rem;
  width: auto;
  padding: 0.7rem 1rem;
  border-color: rgba(255, 255, 255, 0.32);
  color: var(--white);
  background: rgba(17, 36, 30, 0.72);
}

body.lightbox-open {
  overflow: hidden;
}

.split {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 1rem;
  align-items: start;
}

#professoras {
  width: min(980px, 92%);
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

#professoras > div:first-child {
  text-align: center;
  max-width: 760px;
  margin-inline: auto;
}

.teachers {
  display: grid;
  gap: 1rem;
  width: 100%;
  max-width: 860px;
  margin-inline: auto;
}

.teacher-carousel {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 0.7rem;
  align-items: center;
}

.teacher-viewport {
  overflow: hidden;
}

.teacher-slide {
  display: none;
}

.teacher-slide.is-active {
  display: block;
}

.teacher-card {
  border: 1px solid rgba(17, 36, 30, 0.08);
  border-radius: var(--radius-lg);
  padding: 1rem;
  background: rgba(255, 255, 255, 0.76);
  color: var(--text-900);
  box-shadow: var(--shadow-soft);
}

.teacher-card p {
  color: var(--text-700);
}

.teacher-photo {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 14px;
  margin-bottom: 0.1rem;
  border: 1px solid rgba(17, 36, 30, 0.08);
}

.teacher-card.photo-missing::before {
  content: attr(data-fallback);
  display: grid;
  place-items: center;
  width: 100%;
  height: 280px;
  border-radius: 14px;
  margin-bottom: 0.1rem;
  background:
    linear-gradient(145deg, rgba(140, 104, 71, 0.2), rgba(223, 232, 223, 0.9));
  color: var(--forest-800);
  font-weight: 600;
}

.teacher-modal-content {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 1rem;
  align-items: start;
}

.teacher-modal-image {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: 14px;
}

.teacher-modal-text {
  display: grid;
  gap: 0.55rem;
}

.teacher-modal-role {
  color: var(--forest-700);
  font-weight: 700;
}

.teacher-modal-contact a {
  color: var(--forest-700);
  font-weight: 700;
}

.teacher-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  min-width: 46px;
  padding: 0;
  color: var(--forest-700);
  background: rgba(34, 66, 56, 0.06);
  border-color: rgba(34, 66, 56, 0.12);
  border-radius: 999px;
  font-size: 1.5rem;
  line-height: 1;
}

.teacher-position {
  text-align: center;
}

.timeline {
  display: grid;
  gap: 0.8rem;
}

.timeline-item {
  padding: 1rem 1rem 1rem 1.2rem;
  border-left: 4px solid var(--earth-500);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  background: rgba(255, 255, 255, 0.72);
}

.schedule {
  display: grid;
  gap: 1rem;
}

.schedule-day {
  display: grid;
  gap: 0.75rem;
}

.schedule-list {
  display: grid;
  gap: 0.65rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.schedule-list li {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 0.85rem;
  align-items: start;
  padding-top: 0.65rem;
  border-top: 1px solid rgba(17, 36, 30, 0.08);
}

.schedule-list time {
  color: var(--earth-600);
  font-weight: 800;
  white-space: nowrap;
}

.schedule-list span {
  color: var(--text-700);
}

.form {
  display: grid;
  gap: 0.55rem;
}

label {
  font-size: 0.95rem;
  font-weight: 600;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid #d6d8d2;
  border-radius: 12px;
  padding: 0.75rem 0.8rem;
  font: inherit;
  color: inherit;
  background: var(--white);
}

input:focus,
select:focus,
textarea:focus {
  outline: 2px solid rgba(140, 104, 71, 0.22);
  border-color: var(--earth-500);
}

.form-note,
.small {
  color: var(--text-700);
}

.form-note {
  min-height: 1.2rem;
  font-size: 0.94rem;
}

.small {
  font-size: 0.86rem;
}

.form-alt .btn-soft,
.form-alt .btn-muted,
.form-alt .btn-outline {
  color: var(--forest-700);
  border-color: rgba(34, 66, 56, 0.18);
  background: rgba(34, 66, 56, 0.04);
}

.footer {
  padding: 1rem 1rem 2.4rem;
  text-align: center;
  color: var(--text-700);
}

.footer p + p {
  margin-top: 0.2rem;
}

.footer a {
  color: var(--forest-700);
  font-weight: 600;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  animation: rise 0.7s ease forwards;
}

@keyframes rise {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal,
  .btn {
    animation: none;
    transition: none;
    transform: none;
    opacity: 1;
  }
}

@media (max-width: 920px) {
  .grid.two,
  .grid.three,
  .feature-row,
  .meal-section,
  .split,
  .teacher-modal-content {
    grid-template-columns: 1fr;
  }

  .meal-section {
    width: min(680px, 92%);
  }

  .meal-figure {
    max-width: 100%;
  }

  .meal-figure img {
    max-height: 250px;
  }

  .hero {
    min-height: auto;
    padding-bottom: 3rem;
  }

  .teacher-modal-image {
    height: 250px;
  }

  .teacher-carousel {
    grid-template-columns: 1fr;
  }

  .teacher-arrow {
    width: 46px;
    justify-self: center;
  }

}

@media (max-width: 560px) {
  .topbar {
    flex-wrap: wrap;
  }

  .btn {
    width: 100%;
  }

  .image-lightbox-close {
    width: auto;
  }

  .hero-actions {
    width: 100%;
  }

  .hero-actions .btn {
    flex: 1 1 100%;
  }

  .hero-links {
    gap: 0.45rem;
    font-size: 0.9rem;
  }

  .teacher-photo,
  .teacher-modal-image {
    height: 230px;
  }

  .meal-figure img {
    max-height: 220px;
  }

  .gallery-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.5rem;
    max-width: 360px;
  }

  .gallery-grid img {
    border-radius: 8px;
  }

  .schedule-list li {
    grid-template-columns: 1fr;
    gap: 0.2rem;
  }
}
