/* =========================================================
   LANDING PAGE — MEDITA!
   Personalize primeiro as variáveis abaixo.
   ========================================================= */

:root {
  --background: #f3efe7;
  --surface: #fffdf8;
  --surface-soft: #e7e0d3;
  --text: #262a27;
  --muted: #696b66;
  --accent: #ae693f;
  --accent-dark: #814727;
  --line: rgba(38, 42, 39, 0.16);
  --dark: #26312e;
  --white: #fffdf8;

  --container: 1160px;
  --radius-small: 12px;
  --radius-large: 32px;
  --shadow: 0 20px 60px rgba(38, 42, 39, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--background);
  color: var(--text);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 18px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
}

strong {
  font-weight: 700;
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.narrow {
  max-width: 790px;
}

.skip-link {
  position: absolute;
  top: -80px;
  left: 16px;
  z-index: 999;
  padding: 10px 16px;
  background: var(--text);
  color: var(--white);
  border-radius: 8px;
}

.skip-link:focus {
  top: 16px;
}

/* HEADER */

.site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 10;
  padding: 25px 0;
  color: var(--white);
}

.header-inner,
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.brand-name,
.footer-brand {
  font-size: 29px;
  font-weight: 800;
  letter-spacing: -1.7px;
}

.brand-symbol {
  position: relative;
  display: inline-block;
  width: 36px;
  height: 36px;
  border: 2px solid currentColor;
  border-right-color: transparent;
  border-radius: 50%;
  transform: rotate(-12deg);
}

.brand-head {
  position: absolute;
  top: 8px;
  left: 14px;
  width: 6px;
  height: 6px;
  background: currentColor;
  border-radius: 50%;
}

.brand-body {
  position: absolute;
  top: 16px;
  left: 10px;
  width: 15px;
  height: 9px;
  border: 2px solid currentColor;
  border-top: 0;
  border-radius: 0 0 12px 12px;
}

.header-cta {
  padding: 9px 18px;
  border: 1px solid rgba(255, 253, 248, 0.6);
  border-radius: 999px;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
}

/* HERO */

.hero {
  position: relative;
  min-height: 820px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--dark);
  color: var(--white);
  padding: 150px 0 95px;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 78% 25%, rgba(255,255,255,0.07), transparent 28%),
    linear-gradient(110deg, transparent 35%, rgba(255,255,255,0.03));
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(290px, 0.7fr);
  gap: 90px;
  align-items: end;
}

.eyebrow,
.section-number,
.event-label {
  margin: 0 0 20px;
  color: #d9aa88;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1,
h2,
blockquote {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: -0.035em;
}

h1 {
  max-width: 850px;
  margin: 0;
  font-size: clamp(58px, 8.5vw, 112px);
  line-height: 0.91;
}

h1 span {
  color: #d9aa88;
}

.hero-question {
  max-width: 630px;
  margin: 42px 0 15px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(26px, 3vw, 40px);
  line-height: 1.15;
}

.hero-subtitle {
  color: rgba(255, 253, 248, 0.78);
  font-size: 18px;
  line-height: 1.45;
}

.hero-subtitle p {
  margin: 3px 0;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 38px;
}

.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 56px;
  padding: 14px 28px;
  border: 0;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 800;
  text-decoration: none;
  transition: transform 160ms ease, background 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--accent);
  color: var(--white);
}

.button-primary:hover {
  background: var(--accent-dark);
}

.button-light {
  background: var(--white);
  color: var(--dark);
}

.text-link {
  color: var(--white);
  font-size: 15px;
  text-underline-offset: 5px;
}

.event-card {
  padding: 34px;
  border: 1px solid rgba(255, 253, 248, 0.18);
  border-radius: var(--radius-large);
  background: rgba(255, 253, 248, 0.07);
  backdrop-filter: blur(16px);
}

.event-list,
.details-list {
  margin: 0;
}

.event-list > div {
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 253, 248, 0.14);
}

.event-list dt,
.details-list dt {
  color: rgba(255, 253, 248, 0.58);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.event-list dd,
.details-list dd {
  margin: 4px 0 0;
  font-size: 17px;
  font-weight: 700;
}

.event-note {
  margin: 25px 0 0;
  color: rgba(255, 253, 248, 0.65);
  font-size: 14px;
}

.hero-circle {
  position: absolute;
  border: 1px solid rgba(217, 170, 136, 0.24);
  border-radius: 50%;
}

.hero-circle-one {
  width: 600px;
  height: 600px;
  right: -180px;
  top: -170px;
}

.hero-circle-two {
  width: 330px;
  height: 330px;
  right: 10%;
  bottom: -210px;
}

/* SECTIONS */

.section {
  padding: 120px 0;
}

.section h2 {
  margin: 0 0 35px;
  font-size: clamp(42px, 5vw, 72px);
  line-height: 1.02;
}

.prose p {
  margin: 0 0 22px;
}

.prose p:last-child {
  margin-bottom: 0;
}

.intro {
  background: var(--surface);
}

.section-heading {
  display: grid;
  grid-template-columns: 1.4fr 0.6fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 55px;
}

.section-heading h2 {
  margin-bottom: 0;
}

.section-heading > p {
  margin: 0 0 8px;
  color: var(--muted);
  font-size: 16px;
}

.topic-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.topic-card {
  min-height: 300px;
  padding: 32px 26px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.topic-card > span {
  color: var(--accent);
  font-size: 13px;
  font-weight: 800;
}

.topic-card h3 {
  margin: 70px 0 16px;
  font-size: 22px;
  line-height: 1.2;
}

.topic-card p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}

.meditation {
  background: var(--surface-soft);
}

.split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 95px;
  align-items: center;
}

.circle-art {
  position: relative;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
}

.enso {
  width: 88%;
  height: 88%;
  border: clamp(16px, 3vw, 33px) solid var(--accent);
  border-right-color: transparent;
  border-radius: 50%;
  transform: rotate(-18deg);
  opacity: 0.84;
}

.sitting-person {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 110px;
  height: 105px;
  transform: translate(-50%, -42%) rotate(0deg);
}

.person-head {
  position: absolute;
  top: 0;
  left: 43px;
  width: 25px;
  height: 25px;
  background: var(--dark);
  border-radius: 50%;
}

.person-body {
  position: absolute;
  top: 35px;
  left: 15px;
  width: 82px;
  height: 52px;
  border: 9px solid var(--dark);
  border-top: 0;
  border-radius: 0 0 70px 70px;
}

.audience {
  background: var(--dark);
  color: var(--white);
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border-top: 1px solid rgba(255,255,255,0.15);
}

.audience-grid p {
  margin: 0;
  padding: 30px 30px 30px 0;
  border-bottom: 1px solid rgba(255,255,255,0.15);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 25px;
  line-height: 1.25;
}

.audience-grid p:nth-child(even) {
  padding-left: 30px;
  border-left: 1px solid rgba(255,255,255,0.15);
}

.audience-note {
  margin: 35px 0 0;
  color: rgba(255,255,255,0.64);
  font-size: 15px;
}

.speaker {
  background: var(--surface);
}

.speaker-grid {
  grid-template-columns: 0.85fr 1.15fr;
}

.speaker-photo {
  aspect-ratio: 4 / 5;
  display: grid;
  place-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 60% 25%, rgba(255,255,255,0.3), transparent 22%),
    linear-gradient(145deg, var(--surface-soft), #c6ae99);
  color: rgba(38, 42, 39, 0.55);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-align: center;
}

.speaker h3 {
  margin: -15px 0 28px;
  color: var(--accent);
  font-size: 24px;
}

.details {
  background: var(--background);
}

.details-card {
  display: grid;
  grid-template-columns: 1.3fr 0.9fr auto;
  gap: 50px;
  align-items: center;
  padding: 62px;
  border-radius: var(--radius-large);
  background: var(--accent);
  color: var(--white);
  box-shadow: var(--shadow);
}

.details-card .eyebrow {
  color: rgba(255,255,255,0.72);
}

.details-card h2 {
  margin: 0;
  font-size: clamp(38px, 4vw, 60px);
}

.details-list > div {
  padding: 10px 0;
}

.final-message {
  padding: 130px 0;
  text-align: center;
}

.final-message blockquote {
  margin: 0;
  font-size: clamp(35px, 5vw, 65px);
  line-height: 1.08;
}

.final-message p {
  margin: 32px 0 0;
  color: var(--accent);
  font-weight: 700;
}

footer {
  padding: 42px 0;
  background: #1b211f;
  color: rgba(255,255,255,0.66);
  font-size: 13px;
}

footer p {
  margin: 0;
}

.footer-brand {
  color: var(--white);
}

.mobile-cta {
  display: none;
}

/* RESPONSIVE */

@media (max-width: 960px) {
  .hero {
    min-height: auto;
  }

  .hero-grid,
  .split,
  .section-heading,
  .details-card {
    grid-template-columns: 1fr;
  }

  .hero-grid,
  .split {
    gap: 60px;
  }

  .topic-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .details-card {
    align-items: start;
  }

  .details-card .button {
    justify-self: start;
  }
}

@media (max-width: 680px) {
  body {
    font-size: 17px;
  }

  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .site-header {
    padding-top: 18px;
  }

  .brand-name {
    font-size: 25px;
  }

  .header-cta {
    display: none;
  }

  .hero {
    padding: 130px 0 70px;
  }

  h1 {
    font-size: clamp(49px, 15vw, 73px);
  }

  .hero-question {
    margin-top: 35px;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 20px;
  }

  .event-card {
    padding: 27px;
  }

  .section {
    padding: 80px 0;
  }

  .section h2 {
    font-size: 42px;
  }

  .topic-grid,
  .audience-grid {
    grid-template-columns: 1fr;
  }

  .topic-card {
    min-height: 245px;
  }

  .topic-card h3 {
    margin-top: 45px;
  }

  .audience-grid p,
  .audience-grid p:nth-child(even) {
    padding: 26px 0;
    border-left: 0;
  }

  .details-card {
    gap: 35px;
    padding: 38px 25px;
    border-radius: 22px;
  }

  .final-message {
    padding: 90px 0 130px;
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .mobile-cta {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 20;
    display: block;
    padding: 12px 14px;
    background: rgba(243, 239, 231, 0.92);
    backdrop-filter: blur(12px);
    border-top: 1px solid var(--line);
  }

  .mobile-cta .button {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .button {
    transition: none;
  }
}
