:root {
  --sage:      #6f857e;
  --sage-dark: #536660;
  --cream:     #dddcd0;
  --sand:      #dfc9a7;
  --gold:      #c9a24a;
  --rust:      #d54d01;
  --rust-h:    #b84101;
  --charcoal:  #4a4f4a;
  --off-white: #f5f3ee;
  --dark:      #2e312e;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  color: var(--dark);
  background: var(--off-white);
  overflow-x: hidden;
}

/* ── HEADER ── */
header {
  background: var(--sage);
  padding: .9rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 20px rgba(0,0,0,.18);
  gap: 1rem;
}
.header-left {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.header-logo-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 300;
  color: rgba(255,255,255,.9);
  letter-spacing: .12em;
  line-height: 1;
  white-space: nowrap;
  text-decoration: none;
}
.header-name {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: .78rem;
  color: rgba(255,255,255,.7);
  letter-spacing: .04em;
  line-height: 1.4;
  border-left: 1px solid rgba(255,255,255,.25);
  padding-left: 1rem;
}
.header-name strong {
  display: block;
  color: #fff;
  font-weight: 400;
  font-size: .88rem;
}

/* ── NAV ── */
.main-nav {
  display: flex;
  align-items: center;
  gap: 1.8rem;
}
.main-nav a {
  color: rgba(255,255,255,.82);
  text-decoration: none;
  font-size: .84rem;
  letter-spacing: .04em;
  font-weight: 400;
  white-space: nowrap;
  transition: color .2s;
}
.main-nav a:hover { color: #fff; }
.main-nav a.nav-cta { display: none; }
.header-right {
  display: flex;
  align-items: center;
  gap: 1.6rem;
}
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: .4rem;
  z-index: 200;
}
.nav-toggle span {
  width: 24px; height: 2px;
  background: #fff;
  display: block;
  transition: transform .25s, opacity .25s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.header-cta {
  background: var(--rust);
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  font-size: .82rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .65rem 1.5rem;
  border-radius: 2px;
  transition: background .25s, transform .2s;
  white-space: nowrap;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
}
.header-cta:hover { background: var(--rust-h); transform: translateY(-1px); }

/* ── HERO ── */
.hero {
  background: var(--sage);
  min-height: 90vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  position: relative;
  overflow: hidden;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  height: 90px;
  background: var(--off-white);
  clip-path: ellipse(55% 100% at 50% 100%);
  z-index: 3;
}
.hero-text {
  padding: 6rem 3.5rem 8rem 5rem;
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero-eyebrow {
  font-size: .78rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--sand);
  margin-bottom: 1.4rem;
  font-weight: 400;
}
.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(2.4rem, 4vw, 3.8rem);
  line-height: 1.12;
  color: #fff;
  margin-bottom: 1.6rem;
}
.hero-title em { font-style: italic; color: var(--sand); }
.hero-sub {
  font-size: 1rem;
  line-height: 1.75;
  color: rgba(255,255,255,.82);
  max-width: 440px;
  margin-bottom: 1.2rem;
  font-weight: 300;
}
.hero-sub-2 {
  font-size: .92rem;
  line-height: 1.7;
  color: rgba(255,255,255,.62);
  max-width: 440px;
  margin-bottom: 2.2rem;
  font-weight: 300;
  font-style: italic;
}
.hero-badges {
  display: flex;
  gap: .7rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}
.badge {
  border: 1px solid rgba(255,255,255,.3);
  color: rgba(255,255,255,.88);
  font-size: .75rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .35rem .9rem;
  border-radius: 2px;
  font-weight: 400;
}
.status-badge {
  background: rgba(213,77,1,.16);
  border: 1px solid rgba(213,77,1,.4);
  color: #fff;
  font-size: .72rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: .4rem 1rem;
  border-radius: 20px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  margin-bottom: 1.6rem;
}
.status-badge::before { content: '●'; color: var(--sand); font-size: .6rem; }

.btn-main {
  display: inline-flex;
  align-items: center;
  gap: .7rem;
  background: var(--rust);
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  font-size: .95rem;
  letter-spacing: .06em;
  padding: .9rem 2rem;
  border-radius: 2px;
  transition: background .25s, transform .2s, box-shadow .2s;
  box-shadow: 0 4px 20px rgba(213,77,1,.35);
  align-self: flex-start;
}
.btn-main:hover { background: var(--rust-h); transform: translateY(-2px); box-shadow: 0 6px 28px rgba(213,77,1,.45); }

/* HERO IMAGE SIDE */
.hero-image-side {
  position: relative;
  overflow: hidden;
}
.hero-image-side img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.hero-image-side::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--sage) 0%, transparent 35%);
  z-index: 1;
}
.hero-image-side::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(111,133,126,.25);
  z-index: 0;
}

/* HERO — no-image variant (gradient hero for program pages without a photo) */
.hero-gradient {
  background: linear-gradient(135deg, var(--sage) 0%, var(--sage-dark) 65%, var(--dark) 130%);
  min-height: 62vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.hero-gradient::before {
  content: '';
  position: absolute;
  width: 700px; height: 700px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.08);
  top: 8%; right: -12%;
}
.hero-gradient::after {
  content: '';
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  height: 80px;
  background: var(--off-white);
  clip-path: ellipse(60% 100% at 50% 100%);
  z-index: 3;
}
.hero-gradient .hero-text { padding: 6rem 2rem 7rem; max-width: 720px; margin: 0 auto; position: relative; z-index: 2; }
.hero-gradient .hero-sub { max-width: 560px; }

/* ── SHARED ── */
section { padding: 5.5rem 2rem; }
.section-inner { max-width: 960px; margin: 0 auto; }
.section-label {
  font-size: .72rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--rust);
  margin-bottom: .9rem;
  font-weight: 400;
}
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(1.9rem, 3vw, 2.8rem);
  line-height: 1.2;
  color: var(--dark);
  margin-bottom: 1.4rem;
}
.section-title em { font-style: italic; color: var(--sage); }
.section-body { font-weight: 300; font-size: 1rem; line-height: 1.8; color: var(--charcoal); max-width: 600px; }
.divider { width: 50px; height: 1px; background: var(--rust); margin: 1.4rem 0; }
.center { text-align: center; }
.center .section-body { margin-left: auto; margin-right: auto; }

/* ── FOR WHOM ── */
.symptoms-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.2rem;
  margin-top: 2.5rem;
}
.symptom-card {
  background: #fff;
  border-radius: 6px;
  padding: 1.8rem 1.4rem;
  box-shadow: 0 2px 10px rgba(0,0,0,.05);
  border-left: 3px solid var(--sage);
  transition: border-color .25s, transform .25s;
}
.symptom-card:hover { border-color: var(--rust); transform: translateX(4px); }
.symptom-icon { font-size: 1.8rem; margin-bottom: .8rem; }
.symptom-title { font-family: 'Cormorant Garamond', serif; font-size: 1.2rem; font-weight: 500; color: var(--dark); margin-bottom: .4rem; }
.symptom-desc { font-size: .88rem; color: var(--charcoal); opacity: .75; font-weight: 300; line-height: 1.6; }

/* ── PROGRAM CONTENT (module lists on program pages) ── */
.program-section { background: var(--off-white); }
.program-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.4rem;
  margin-top: 2.8rem;
}
.program-card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 14px rgba(0,0,0,.06);
  transition: transform .25s, box-shadow .25s;
}
.program-card:hover { transform: translateY(-4px); box-shadow: 0 8px 28px rgba(0,0,0,.1); }
.program-card.presencial-card {
  grid-column: 1 / -1;
  background: linear-gradient(135deg, var(--sage) 0%, var(--sage-dark) 100%);
}
.program-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.4rem 1.6rem 1rem;
  border-bottom: 1px solid rgba(0,0,0,.06);
}
.presencial-card .program-header { border-bottom: 1px solid rgba(255,255,255,.12); }
.program-date-badge {
  background: var(--sage);
  color: #fff;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 300;
  width: 50px; height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.presencial-card .program-date-badge { background: rgba(255,255,255,.2); }
.program-day-label { font-size: .66rem; letter-spacing: .15em; text-transform: uppercase; color: var(--sage); font-weight: 500; margin-bottom: .2rem; }
.presencial-card .program-day-label { color: var(--sand); }
.program-day-title { font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; font-weight: 500; color: var(--dark); line-height: 1.3; }
.presencial-card .program-day-title { color: #fff; }
.program-body { padding: 1rem 1.6rem 1.6rem; }
.program-topics { list-style: none; display: flex; flex-direction: column; gap: .5rem; }
.program-topics li {
  display: flex;
  align-items: flex-start;
  gap: .7rem;
  font-size: .88rem;
  color: var(--charcoal);
  font-weight: 300;
  line-height: 1.5;
}
.program-topics li::before { content: '→'; color: var(--rust); flex-shrink: 0; font-size: .82rem; margin-top: .07rem; }
.presencial-card .program-topics li { color: rgba(255,255,255,.85); }
.presencial-card .program-topics li::before { color: var(--sand); }
.presencial-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.presencial-col-title { font-size: .68rem; letter-spacing: .16em; text-transform: uppercase; color: var(--sand); font-weight: 500; margin-bottom: .6rem; opacity: .85; }

/* ── TAKE HOME / RESOURCE GRID ── */
.takehome-section { background: var(--cream); }
.takehome-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 1.2rem;
  margin-top: 2.5rem;
}
.takehome-card {
  background: #fff;
  border-radius: 8px;
  padding: 2rem 1.6rem;
  box-shadow: 0 2px 10px rgba(0,0,0,.05);
  text-align: center;
  transition: transform .25s, box-shadow .25s;
}
.takehome-card:hover { transform: translateY(-4px); box-shadow: 0 8px 20px rgba(0,0,0,.08); }
.takehome-icon { font-size: 2rem; margin-bottom: 1rem; }
.takehome-title { font-family: 'Cormorant Garamond', serif; font-size: 1.15rem; font-weight: 500; color: var(--dark); margin-bottom: .5rem; }
.takehome-desc { font-size: .86rem; color: var(--charcoal); opacity: .7; font-weight: 300; line-height: 1.6; }

/* ── PROGRAM CARDS (homepage "Os nossos percursos") ── */
.programs-section { background: var(--off-white); }
.programs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.6rem;
  margin-top: 2.8rem;
}
.program-tile {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,.06);
  transition: transform .25s, box-shadow .25s;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
}
.program-tile:hover { transform: translateY(-6px); box-shadow: 0 14px 36px rgba(0,0,0,.12); }
.program-tile-top {
  background: linear-gradient(135deg, var(--sage) 0%, var(--sage-dark) 100%);
  padding: 2.2rem 1.8rem 1.6rem;
}
.program-tile.tile-gold .program-tile-top {
  background: linear-gradient(135deg, var(--gold) 0%, var(--rust) 130%);
}
.program-tile-eyebrow {
  font-size: .68rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--sand);
  margin-bottom: .6rem;
  font-weight: 500;
}
.program-tile.tile-gold .program-tile-eyebrow { color: rgba(255,255,255,.85); }
.program-tile-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 500;
  color: #fff;
  line-height: 1.25;
}
.program-tile-body { padding: 1.6rem 1.8rem 2rem; display: flex; flex-direction: column; flex: 1; }
.program-tile-label { font-size: .68rem; letter-spacing: .12em; text-transform: uppercase; color: var(--charcoal); opacity: .55; margin-bottom: .8rem; font-weight: 500; }
.program-tile-list { list-style: none; display: flex; flex-direction: column; gap: .5rem; margin-bottom: 1.6rem; }
.program-tile-list li {
  display: flex;
  align-items: flex-start;
  gap: .6rem;
  font-size: .87rem;
  color: var(--charcoal);
  font-weight: 300;
  line-height: 1.5;
}
.program-tile-list li::before { content: '→'; color: var(--rust); flex-shrink: 0; font-size: .8rem; margin-top: .06rem; }
.program-tile-footer { margin-top: auto; display: flex; align-items: center; justify-content: space-between; gap: .8rem; padding-top: 1rem; border-top: 1px solid rgba(0,0,0,.06); }
.tile-status {
  font-size: .68rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--sage-dark);
  background: rgba(111,133,126,.12);
  padding: .3rem .7rem;
  border-radius: 20px;
  font-weight: 500;
}
.tile-cta { color: var(--rust); font-size: .85rem; font-weight: 500; display: inline-flex; align-items: center; gap: .35rem; }
.program-tile:hover .tile-cta { text-decoration: underline; }

/* Empresas card — same visual language as the program tiles, sits inside .programs-grid as a full-width row */
.programs-grid .empresas-tile {
  grid-column: 1 / -1;
  flex-direction: row;
  align-items: stretch;
}
.empresas-tile .program-tile-top {
  flex: 0 0 34%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.empresas-tile .program-tile-body { flex: 1; }
.empresas-tile .program-tile-footer { display: block; border-top: none; padding-top: .4rem; }
.empresas-tile .btn-cta-big { width: auto; }
@media (max-width: 680px) {
  .programs-grid .empresas-tile { flex-direction: column; }
  .empresas-tile .program-tile-top { flex: none; }
  .empresas-tile .btn-cta-big { width: 100%; }
}

/* ── DIFFERENTIATOR GRID ── */
.diff-section { background: var(--sage); position: relative; overflow: hidden; }
.diff-section .section-label { color: var(--sand); }
.diff-section .section-title { color: #fff; }
.diff-section .section-title em { color: var(--sand); }
.diff-section .section-body { color: rgba(255,255,255,.8); }
.diff-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 1rem;
  margin-top: 2.6rem;
}
.diff-pill {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 8px;
  padding: 1.2rem 1.3rem;
  display: flex;
  align-items: center;
  gap: .8rem;
  font-size: .92rem;
  color: #fff;
  font-weight: 400;
  transition: background .25s, transform .25s;
}
.diff-pill:hover { background: rgba(255,255,255,.14); transform: translateY(-2px); }
.diff-pill::before { content: '✔'; color: var(--sand); font-size: .85rem; flex-shrink: 0; }

/* ── INSTRUCTOR / ABOUT ── */
.instructor { background: var(--sage); }
.instructor-inner {
  max-width: 960px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.7fr;
  gap: 4rem;
  align-items: center;
}
.instructor-image-wrap { position: relative; }
.instructor-photo {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: center top;
  border-radius: 6px;
  display: block;
}
.instructor-accent {
  position: absolute;
  bottom: -12px; left: -12px;
  width: 70px; height: 70px;
  border: 2px solid var(--sand);
  border-radius: 2px;
  opacity: .6;
}
.instructor .section-title { color: #fff; }
.instructor .section-title em { color: var(--sand); }
.instructor .section-label { color: var(--sand); }
.instructor .section-body { color: rgba(255,255,255,.82); max-width: 100%; margin-bottom: 1.2rem; }
.instructor .divider { background: var(--sand); opacity: .4; }
.credentials { display: flex; flex-direction: column; gap: .55rem; margin-top: 1.8rem; }
.credential {
  display: flex;
  align-items: center;
  gap: .8rem;
  font-size: .88rem;
  color: rgba(255,255,255,.85);
  font-weight: 300;
}
.credential::before { content: ''; width: 5px; height: 5px; border-radius: 50%; background: var(--sand); flex-shrink: 0; }

/* ── METHODOLOGY ── */
.method-section { background: var(--off-white); }
.method-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.6rem;
  margin-top: 2.8rem;
}
.method-card {
  background: #fff;
  border-radius: 10px;
  padding: 2.4rem 1.8rem;
  box-shadow: 0 2px 14px rgba(0,0,0,.06);
  position: relative;
  transition: transform .25s, box-shadow .25s;
}
.method-card:hover { transform: translateY(-4px); box-shadow: 0 10px 28px rgba(0,0,0,.1); }
.method-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.6rem;
  font-weight: 300;
  color: var(--sand);
  line-height: 1;
  margin-bottom: 1rem;
}
.method-title { font-family: 'Cormorant Garamond', serif; font-size: 1.35rem; font-weight: 500; color: var(--dark); margin-bottom: .7rem; }
.method-desc { font-size: .92rem; color: var(--charcoal); opacity: .8; font-weight: 300; line-height: 1.7; }

/* ── TESTIMONIALS ── */
.testimonials-wrap {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
  align-items: start;
  margin-top: 3rem;
}
.testimonials-photo {
  width: 100%;
  border-radius: 6px;
  object-fit: cover;
  object-position: center 20%;
  aspect-ratio: 3/4;
  display: block;
  box-shadow: 0 8px 32px rgba(0,0,0,.12);
}
.testimonials-cards-col {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}
.tcard {
  background: #fff;
  border-radius: 6px;
  padding: 1.8rem 1.8rem 1.4rem;
  box-shadow: 0 2px 14px rgba(0,0,0,.06);
  border-left: 3px solid var(--sage);
  position: relative;
  transition: transform .25s, box-shadow .25s;
}
.tcard:hover { transform: translateX(4px); box-shadow: 0 6px 20px rgba(0,0,0,.09); }
.tcard-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.5rem;
  font-weight: 300;
  color: var(--sage);
  opacity: .3;
  line-height: .8;
  margin-bottom: .4rem;
}
.tcard-text {
  font-family: 'Jost', sans-serif;
  font-size: .95rem;
  font-weight: 300;
  color: var(--charcoal);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: .8rem;
}
.tcard-stars {
  color: var(--rust);
  font-size: .85rem;
  letter-spacing: .1em;
}

/* ── COMMUNITY / CTA CARD (replaces newsletter form) ── */
.community-section { background: var(--sage); text-align: center; padding: 6rem 2rem; position: relative; overflow: hidden; }
.community-section::before {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.07);
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
}
.community-inner { position: relative; z-index: 1; max-width: 560px; margin: 0 auto; }
.community-inner .section-label { color: var(--sand); text-align: center; }
.community-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.9rem, 3.4vw, 2.8rem);
  font-weight: 300;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 1rem;
}
.community-title em { font-style: italic; color: var(--sand); }
.community-sub { font-size: .98rem; color: rgba(255,255,255,.75); font-weight: 300; margin-bottom: 2.2rem; line-height: 1.7; }
.community-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.btn-cta-white {
  display: inline-flex;
  align-items: center;
  gap: .7rem;
  background: #fff;
  color: var(--sage-dark);
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  letter-spacing: .05em;
  padding: 1rem 2.4rem;
  border-radius: 4px;
  transition: background .25s, transform .2s, box-shadow .2s;
  box-shadow: 0 4px 24px rgba(0,0,0,.2);
}
.btn-cta-white:hover { background: var(--sand); transform: translateY(-2px); box-shadow: 0 6px 30px rgba(0,0,0,.25); }
.btn-cta-outline {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,.4);
  text-decoration: none;
  font-weight: 400;
  font-size: .92rem;
  letter-spacing: .04em;
  padding: 1rem 2rem;
  border-radius: 4px;
  transition: background .25s, border-color .25s;
}
.btn-cta-outline:hover { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.7); }

/* ── generic CTA card (used at bottom of program pages) ── */
.cta-card {
  max-width: 620px;
  margin: 3rem auto 0;
  background: #fff;
  border-radius: 10px;
  padding: 2.8rem 2.4rem;
  box-shadow: 0 8px 40px rgba(0,0,0,.08);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--sage), var(--rust));
}
.cta-card-title { font-family: 'Cormorant Garamond', serif; font-size: 1.7rem; font-weight: 500; color: var(--dark); margin-bottom: .8rem; }
.cta-card-body { font-size: .95rem; color: var(--charcoal); opacity: .85; font-weight: 300; line-height: 1.7; margin-bottom: 1.8rem; max-width: 460px; margin-left: auto; margin-right: auto; }
.btn-cta-big {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .8rem;
  background: var(--rust);
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  letter-spacing: .05em;
  padding: 1rem 2.2rem;
  border-radius: 4px;
  transition: background .25s, transform .2s, box-shadow .2s;
  box-shadow: 0 4px 20px rgba(213,77,1,.3);
}
.btn-cta-big:hover { background: var(--rust-h); transform: translateY(-2px); box-shadow: 0 6px 28px rgba(213,77,1,.4); }
.note-below { font-size: .8rem; color: var(--charcoal); opacity: .5; margin-top: 1.1rem; font-weight: 300; }

/* ── FAQ ── */
.faq-section { background: var(--off-white); }
.faq-list { margin-top: 2.5rem; max-width: 660px; }
.faq-item { border-bottom: 1px solid rgba(0,0,0,.07); padding: 1.3rem 0; }
.faq-q {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--dark);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  user-select: none;
}
.faq-q::after { content: '+'; font-family: 'Jost', sans-serif; font-size: 1.3rem; font-weight: 300; color: var(--rust); flex-shrink: 0; transition: transform .25s; }
.faq-item.open .faq-q::after { transform: rotate(45deg); }
.faq-a { font-size: .92rem; line-height: 1.75; color: var(--charcoal); font-weight: 300; max-height: 0; overflow: hidden; transition: max-height .35s ease, padding .35s ease; }
.faq-item.open .faq-a { max-height: 260px; padding-top: .7rem; }

/* ── EMPTY / EM BREVE STATE (blog) ── */
.empty-state { text-align: center; max-width: 560px; margin: 0 auto; padding: 5rem 0; }
.empty-state-icon { font-size: 2.4rem; margin-bottom: 1.4rem; }

/* ── FOOTER ── */
footer { background: #2e312e; padding: 3rem 2rem 2rem; text-align: center; }
.footer-logo-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 300;
  color: rgba(255,255,255,.55);
  letter-spacing: .15em;
  margin-bottom: 1.6rem;
}
.footer-links { display: flex; justify-content: center; gap: 1.6rem; flex-wrap: wrap; margin-bottom: 1.6rem; }
.footer-links a { color: rgba(255,255,255,.45); text-decoration: none; font-size: .82rem; letter-spacing: .06em; transition: color .2s; }
.footer-links a:hover { color: rgba(255,255,255,.8); }
.footer-social { display: flex; justify-content: center; gap: 1.4rem; margin-bottom: 1.6rem; }
.footer-social a { color: rgba(255,255,255,.45); text-decoration: none; font-size: .82rem; letter-spacing: .06em; transition: color .2s; }
.footer-social a:hover { color: rgba(255,255,255,.8); }
.footer-copy { font-size: .76rem; color: rgba(255,255,255,.22); font-weight: 300; }

/* ── FLOATING WA ── */
.wa-float {
  position: fixed;
  bottom: 2rem; right: 2rem;
  width: 56px; height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,.4);
  z-index: 1000;
  transition: transform .25s, box-shadow .25s;
  text-decoration: none;
}
.wa-float:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(37,211,102,.55); }
.wa-float svg { width: 26px; height: 26px; }

/* ── ANIMATIONS ── */
.fade-in { opacity: 0; transform: translateY(20px); transition: opacity .65s ease, transform .65s ease; }
@media (max-width: 768px) { .fade-in { opacity: 1; transform: none; } }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE — iPad Pro / Landscape tablet (max 1024px) ── */
@media (max-width: 1024px) {
  .hero-text { padding: 5rem 3rem 6rem 4rem; }
  .section-inner { max-width: 100%; padding: 0 1rem; }
  .main-nav { display: none; }
}

/* ── iPad / Tablet portrait (max 900px) ── */
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-text {
    padding: 5rem 3rem 4rem;
    text-align: center;
    align-items: center;
  }
  .hero-sub, .hero-sub-2 { max-width: 100%; }
  .hero-badges { justify-content: center; }
  .btn-main { align-self: center; }
  .hero-image-side {
    height: 56vw;
    max-height: 420px;
    min-height: 260px;
    order: -1;
  }
  .hero-image-side img {
    object-position: center 25%;
  }
  .hero-image-side::before {
    background: linear-gradient(to bottom, var(--sage) 0%, transparent 35%);
  }
  .instructor-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .instructor-photo { aspect-ratio: auto; height: 320px; width: 100%; object-fit: cover; object-position: center 15%; }
  .instructor-text { text-align: center; }
  .instructor-text .section-body { max-width: 100%; }
  .credentials { align-items: center; }
  .program-grid { grid-template-columns: 1fr; }
  .presencial-cols { grid-template-columns: 1fr; }
  .cta-card { max-width: 100%; }
  .faq-list { max-width: 100%; }
  section { padding: 5rem 2.5rem; }
}

/* ── Smartphone landscape / large phone (max 680px) ── */
@media (max-width: 680px) {
  header { padding: .75rem 1.2rem; }
  .header-name { display: none; }
  .header-cta { display: none; }
  .hero-text { padding: 4rem 1.8rem 3rem; }
  .hero-title { font-size: clamp(2rem, 8vw, 2.8rem); }
  .hero-image-side { height: 62vw; max-height: 360px; min-height: 240px; }
  .symptoms-grid { grid-template-columns: 1fr; }
  .takehome-grid { grid-template-columns: 1fr 1fr; gap: 1rem; }
  section { padding: 3.5rem 1.4rem; }
  .cta-card { padding: 2rem 1.4rem; }
  .program-header { flex-direction: column; align-items: flex-start; gap: .6rem; }
  .program-date-badge { width: 40px; height: 40px; font-size: 1.2rem; }
  .community-section { padding: 5rem 1.4rem; }
  .testimonials-wrap { grid-template-columns: 1fr; gap: 2rem; }
  .testimonials-photo { aspect-ratio: auto; height: 280px; width: 100%; object-fit: cover; object-position: center 35%; }
}

/* ── Smartphone portrait (max 480px) ── */
@media (max-width: 480px) {
  header { padding: .7rem 1rem; }
  .header-cta { font-size: .75rem; padding: .55rem 1rem; letter-spacing: .06em; }
  .header-cta svg { display: none; }
  .hero-text { padding: 3.5rem 1.2rem 2.5rem; text-align: left; align-items: flex-start; }
  .hero-badges { justify-content: flex-start; }
  .btn-main { align-self: flex-start; width: 100%; justify-content: center; }
  .hero-image-side { height: 70vw; max-height: 320px; min-height: 220px; }
  .symptoms-grid { grid-template-columns: 1fr; }
  .takehome-grid { grid-template-columns: 1fr 1fr; }
  .section-title { font-size: clamp(1.7rem, 6vw, 2.4rem); }
  section { padding: 3rem 1rem; }
  .cta-card { padding: 1.8rem 1.2rem; }
  .btn-cta-big { font-size: .9rem; padding: .9rem 1rem; width: 100%; }
  .btn-cta-white, .btn-cta-outline { padding: .9rem 1.8rem; font-size: .92rem; }
  .instructor-photo { height: 280px; object-position: center 15%; }
  .faq-q { font-size: 1rem; }
  .footer-links, .footer-social { gap: 1.2rem; }
  .wa-float { bottom: 1.2rem; right: 1.2rem; width: 50px; height: 50px; }
  .hero::after, .hero-gradient::after { height: 50px; }
  .diff-grid { grid-template-columns: 1fr; }
}

/* ── Very small phones (max 360px) ── */
@media (max-width: 360px) {
  .takehome-grid { grid-template-columns: 1fr; }
  .header-cta { padding: .5rem .8rem; font-size: .72rem; }
}

/* ── MOBILE NAV DRAWER ── */
@media (max-width: 1024px) {
  .nav-toggle { display: flex; }
  .main-nav {
    display: flex;
    position: fixed;
    top: 0; right: -100%;
    width: min(78vw, 320px);
    height: 100vh;
    background: var(--sage-dark);
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: .3rem;
    padding: 6rem 2rem 2rem;
    transition: right .3s ease;
    z-index: 150;
    box-shadow: -8px 0 30px rgba(0,0,0,.25);
  }
  .main-nav.open { right: 0; }
  .main-nav a { padding: .9rem 0; width: 100%; border-bottom: 1px solid rgba(255,255,255,.1); font-size: .95rem; }
  .main-nav a.nav-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .6rem;
    background: var(--rust);
    color: #fff;
    border-bottom: none;
    border-radius: 4px;
    padding: .9rem 1.2rem;
    margin-top: 1.2rem;
    font-weight: 500;
    font-size: .85rem;
    letter-spacing: .06em;
  }
  .nav-overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,.35); z-index: 140; }
  .nav-overlay.open { display: block; }
}
