/* ============================================================
   HARTWELL ALT — FONT DECLARATIONS
   ============================================================ */
@font-face { font-family: 'Hartwell Alt'; src: url('../hartwell-alt/Hartwell%20Alt%20Thin.otf') format('opentype'); font-weight: 100; font-style: normal; font-display: swap; }
@font-face { font-family: 'Hartwell Alt'; src: url('../hartwell-alt/Hartwell%20Alt%20Thin%20Italic.otf') format('opentype'); font-weight: 100; font-style: italic; font-display: swap; }
@font-face { font-family: 'Hartwell Alt'; src: url('../hartwell-alt/Hartwell%20Alt%20Ultralight.otf') format('opentype'); font-weight: 200; font-style: normal; font-display: swap; }
@font-face { font-family: 'Hartwell Alt'; src: url('../hartwell-alt/Hartwell%20Alt%20Ultralight%20Italic.otf') format('opentype'); font-weight: 200; font-style: italic; font-display: swap; }
@font-face { font-family: 'Hartwell Alt'; src: url('../hartwell-alt/Hartwell%20Alt%20Light.otf') format('opentype'); font-weight: 300; font-style: normal; font-display: swap; }
@font-face { font-family: 'Hartwell Alt'; src: url('../hartwell-alt/Hartwell%20Alt%20Light%20Italic.otf') format('opentype'); font-weight: 300; font-style: italic; font-display: swap; }
@font-face { font-family: 'Hartwell Alt'; src: url('../hartwell-alt/Hartwell%20Alt%20Regular.otf') format('opentype'); font-weight: 400; font-style: normal; font-display: swap; }
@font-face { font-family: 'Hartwell Alt'; src: url('../hartwell-alt/Hartwell%20Alt%20Regular%20Italic.otf') format('opentype'); font-weight: 400; font-style: italic; font-display: swap; }
@font-face { font-family: 'Hartwell Alt'; src: url('../hartwell-alt/Hartwell%20Alt%20Medium.otf') format('opentype'); font-weight: 500; font-style: normal; font-display: swap; }
@font-face { font-family: 'Hartwell Alt'; src: url('../hartwell-alt/Hartwell%20Alt%20Medium%20Italic.otf') format('opentype'); font-weight: 500; font-style: italic; font-display: swap; }
@font-face { font-family: 'Hartwell Alt'; src: url('../hartwell-alt/Hartwell%20Alt%20Semibold.otf') format('opentype'); font-weight: 600; font-style: normal; font-display: swap; }
@font-face { font-family: 'Hartwell Alt'; src: url('../hartwell-alt/Hartwell%20Alt%20Semibold%20Italic.otf') format('opentype'); font-weight: 600; font-style: italic; font-display: swap; }
@font-face { font-family: 'Hartwell Alt'; src: url('../hartwell-alt/Hartwell%20Alt%20Bold.otf') format('opentype'); font-weight: 700; font-style: normal; font-display: swap; }
@font-face { font-family: 'Hartwell Alt'; src: url('../hartwell-alt/Hartwell%20Alt%20Bold%20Italic.otf') format('opentype'); font-weight: 700; font-style: italic; font-display: swap; }
@font-face { font-family: 'Hartwell Alt'; src: url('../hartwell-alt/Hartwell%20Alt%20Heavy.otf') format('opentype'); font-weight: 800; font-style: normal; font-display: swap; }
@font-face { font-family: 'Hartwell Alt'; src: url('../hartwell-alt/Hartwell%20Alt%20Heavy%20Italic.otf') format('opentype'); font-weight: 800; font-style: italic; font-display: swap; }
@font-face { font-family: 'Hartwell Alt'; src: url('../hartwell-alt/Hartwell%20Alt%20Black.otf') format('opentype'); font-weight: 900; font-style: normal; font-display: swap; }
@font-face { font-family: 'Hartwell Alt'; src: url('../hartwell-alt/Hartwell%20Alt%20Black%20Italic.otf') format('opentype'); font-weight: 900; font-style: italic; font-display: swap; }

/* ============================================================
   CUSTOM PROPERTIES
   ============================================================ */
:root {
  --navy:       #1b2a6e;
  --navy-dark:  #111d52;
  --green:      #e8352f;
  --green-dark: #bf2a23;
  --green-light:#fdecea;
  --red:        #38ae3c;
  --red-light:  #e8f7e9;
  --white:      #ffffff;
  --off-white:  #f7f9fc;
  --gray-100:   #f2f4f8;
  --gray-300:   #d0d5e8;
  --gray-500:   #7a85a8;
  --gray-700:   #3d4870;

  --radius-sm:  8px;
  --radius:     14px;
  --radius-lg:  24px;
  --radius-pill:100px;

  --shadow-sm:  0 2px 8px rgba(27,42,110,.08);
  --shadow:     0 6px 24px rgba(27,42,110,.10);
  --shadow-lg:  0 12px 48px rgba(27,42,110,.14);

  --nav-h: 80px;
  --max-w: 1180px;
  --section-py: 96px;
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  font-family: 'Hartwell Alt', 'Segoe UI', sans-serif;
  color: var(--navy);
  background: var(--white);
  line-height: 1.65;
  font-weight: 400;
  font-size: 1rem;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; transition: color .2s; }
ul, ol { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }

/* ============================================================
   LAYOUT
   ============================================================ */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}
.section { padding: var(--section-py) 0; }
.section--alt { background: var(--off-white); }
.section--green { background: var(--green-light); }
.section--navy { background: var(--navy); color: var(--white); }

/* Grid background texture */
.grid-bg {
  background-color: var(--white);
  background-image:
    linear-gradient(rgba(27,42,110,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(27,42,110,.04) 1px, transparent 1px);
  background-size: 40px 40px;
}

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
.display {
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  font-weight: 900;
  line-height: 1.0;
  letter-spacing: -0.02em;
}
.display-md {
  font-size: clamp(2rem, 4vw, 3.8rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.015em;
}
.headline {
  font-size: clamp(1.6rem, 3vw, 2.8rem);
  font-weight: 800;
  line-height: 1.1;
}
.title {
  font-size: clamp(1.25rem, 2vw, 1.8rem);
  font-weight: 700;
  line-height: 1.2;
}
.lead {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  font-weight: 400;
  line-height: 1.75;
  color: var(--gray-700);
}

.italic-light {
  font-style: italic;
  font-weight: 300;
}
.t-green  { color: var(--green); }
.t-red    { color: var(--red); }
.t-navy   { color: var(--navy); }
.t-white  { color: var(--white); }

.highlight-green {
  background: var(--green);
  color: var(--white);
  padding: 2px 10px 4px;
  border-radius: 6px;
  display: inline;
}
.highlight-navy {
  background: var(--navy);
  color: var(--white);
  padding: 2px 10px 4px;
  border-radius: 6px;
  display: inline;
}
.highlight-red {
  background: var(--red);
  color: var(--white);
  padding: 2px 10px 4px;
  border-radius: 6px;
  display: inline;
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  height: var(--nav-h);
  background: var(--white);
  border-bottom: 1px solid var(--gray-300);
  box-shadow: var(--shadow-sm);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 24px;
}
.nav__logo {
  flex-shrink: 0;
}
.nav__logo img {
  height: 50px;
  width: auto;
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav__link {
  font-size: .875rem;
  font-weight: 600;
  color: var(--navy);
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  transition: background .2s, color .2s;
  white-space: nowrap;
}
.nav__link:hover,
.nav__link.active {
  background: var(--green-light);
  color: var(--green-dark);
}
.nav__cta {
  flex-shrink: 0;
}

/* Hamburger */
.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  border-radius: var(--radius-sm);
}
.nav__burger span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--navy);
  border-radius: 2px;
  transition: all .3s;
}
.nav__burger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav__burger.open span:nth-child(2) { opacity: 0; }
.nav__burger.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

.nav__mobile {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0; right: 0;
  background: var(--white);
  border-bottom: 1px solid var(--gray-300);
  padding: 20px 24px;
  flex-direction: column;
  gap: 8px;
  box-shadow: var(--shadow);
  z-index: 999;
}
.nav__mobile.open { display: flex; }
.nav__mobile .nav__link { font-size: 1rem; padding: 12px 16px; }
.nav__mobile .btn { width: 100%; text-align: center; margin-top: 8px; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: var(--radius-pill);
  font-family: 'Hartwell Alt', sans-serif;
  font-size: .9rem;
  font-weight: 700;
  transition: all .2s;
  white-space: nowrap;
}
.btn--primary {
  background: var(--green);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(232,53,47,.3);
}
.btn--primary:hover {
  background: var(--green-dark);
  box-shadow: 0 6px 20px rgba(232,53,47,.4);
  transform: translateY(-1px);
}
.btn--outline {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--navy);
}
.btn--outline:hover {
  background: var(--navy);
  color: var(--white);
}
.btn--outline-white {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,.5);
}
.btn--outline-white:hover {
  background: rgba(255,255,255,.1);
  border-color: var(--white);
}
.btn--ghost {
  background: transparent;
  color: var(--green-dark);
  padding-left: 0;
}
.btn--ghost:hover { color: var(--green); }
.btn--sm { padding: 9px 20px; font-size: .8rem; }
.btn--lg { padding: 17px 40px; font-size: 1rem; }

.arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px; height: 28px;
  background: rgba(255,255,255,.25);
  border-radius: 50%;
  font-size: 1rem;
  flex-shrink: 0;
}
.btn--ghost .arrow {
  background: var(--green-light);
  color: var(--green-dark);
}

/* ============================================================
   IMAGE PLACEHOLDER
   ============================================================ */
.img-ph {
  background: linear-gradient(135deg, var(--green-light) 0%, #d4edd5 50%, #c2e4c4 100%);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--green-dark);
  position: relative;
  overflow: hidden;
}
.img-ph::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 20px,
    rgba(255,255,255,.15) 20px,
    rgba(255,255,255,.15) 21px
  );
}
.img-ph__icon {
  width: 56px; height: 56px;
  background: rgba(255,255,255,.6);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}
.img-ph__icon svg { width: 24px; height: 24px; }
.img-ph__label {
  font-size: .8rem;
  font-weight: 600;
  opacity: .7;
  position: relative;
  z-index: 1;
}

/* ============================================================
   PARALLAX BANNER
   ============================================================ */
.parallax-banner {
  height: 420px;
  background-attachment: fixed;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
@media (max-width: 768px) {
  .parallax-banner {
    background-attachment: scroll;
    height: 260px;
  }
}

/* ============================================================
   CAROUSEL
   ============================================================ */
.carousel {
  display: flex;
  align-items: center;
  gap: 16px;
}
.carousel__viewport {
  overflow: hidden;
  flex: 1;
}
.carousel__track {
  display: flex;
  gap: 16px;
  transition: transform 0.45s cubic-bezier(.4,0,.2,1);
}
.carousel__slide {
  flex: 0 0 calc((100% - 32px) / 3);
  aspect-ratio: 1 / 1;
  border-radius: var(--radius);
  overflow: hidden;
}
.carousel__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.carousel__slide .gallery-ph {
  width: 100%;
  height: 100%;
}
.carousel__btn {
  flex-shrink: 0;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--gray-300);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background .2s, color .2s, border-color .2s;
  color: var(--navy);
}
.carousel__btn:hover {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.carousel__btn svg { width: 20px; height: 20px; }
.carousel__btn:disabled {
  opacity: .35;
  cursor: not-allowed;
  pointer-events: none;
}
.carousel__dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
}
.carousel__dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--gray-300);
  border: none;
  cursor: pointer;
  transition: background .2s, width .2s, border-radius .2s;
  padding: 0;
}
.carousel__dot.active {
  background: var(--navy);
  width: 24px;
  border-radius: 4px;
}
@media (max-width: 768px) {
  .carousel__slide { flex: 0 0 calc((100% - 16px) / 2); }
}
@media (max-width: 480px) {
  .carousel__slide { flex: 0 0 100%; }
  .carousel__btn { width: 36px; height: 36px; }
}

/* ============================================================
   PHOTO GALLERY
   ============================================================ */
.photo-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.photo-gallery__item {
  aspect-ratio: 1 / 1;
  border-radius: var(--radius);
  overflow: hidden;
}
.photo-gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.gallery-ph {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--gray-100) 0%, var(--gray-300) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.gallery-ph::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 20px,
    rgba(255,255,255,.3) 20px,
    rgba(255,255,255,.3) 21px
  );
}
.gallery-ph__label {
  font-size: .75rem;
  font-weight: 600;
  color: var(--gray-500);
  position: relative;
  z-index: 1;
}
@media (max-width: 768px) {
  .photo-gallery { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .photo-gallery { grid-template-columns: 1fr; }
}

/* ============================================================
   HERO — HOME
   ============================================================ */
.hero {
  min-height: calc(100vh - var(--nav-h));
  display: flex;
  align-items: center;
  padding: 64px 0;
  position: relative;
  overflow: hidden;
}
.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--green-light);
  color: var(--green-dark);
  font-size: .8rem;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  margin-bottom: 20px;
  letter-spacing: .05em;
  text-transform: uppercase;
}
.hero__eyebrow::before {
  content: '';
  width: 8px; height: 8px;
  background: var(--green);
  border-radius: 50%;
}
.hero__title {
  margin-bottom: 24px;
  color: var(--navy);
}
.hero__title .line1 {
  display: block;
  font-size: clamp(1.6rem, 3vw, 3rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.05;
  color: var(--gray-700);
  white-space: nowrap;
}
.hero__title .line2 {
  display: block;
  font-size: clamp(2.4rem, 5vw, 4.5rem);
  font-weight: 900;
  line-height: 1.0;
  letter-spacing: -0.02em;
  color: var(--navy);
}
.hero__subtitle {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  line-height: 1.7;
  color: var(--gray-700);
  margin-bottom: 12px;
  max-width: 520px;
}
.hero__tagline {
  font-size: .95rem;
  font-weight: 600;
  color: var(--green-dark);
  margin-bottom: 36px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.hero__tagline::before {
  content: '';
  width: 32px;
  height: 2px;
  background: var(--green);
}
.hero__actions { display: flex; gap: 12px; flex-wrap: wrap; }
.hero__image {
  position: relative;
}
.hero__image .img-ph {
  width: 100%;
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
}
.hero__badge {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 16px 20px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 180px;
}
.hero__badge-icon {
  width: 44px; height: 44px;
  background: var(--green-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}
.hero__badge-text strong {
  display: block;
  font-size: 1rem;
  font-weight: 800;
  color: var(--navy);
}
.hero__badge-text span {
  font-size: .75rem;
  color: var(--gray-500);
  font-weight: 500;
}

/* Decorative blobs */
.blob {
  position: absolute;
  pointer-events: none;
  z-index: 0;
}
.blob--green-tl {
  top: -60px; left: -80px;
  width: 240px; height: 240px;
  background: var(--green);
  opacity: .07;
  border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
}
.blob--red-br {
  bottom: -40px; right: -60px;
  width: 180px; height: 180px;
  background: var(--red);
  opacity: .07;
  border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
}
.blob--green-br {
  bottom: -30px; right: -40px;
  width: 160px; height: 160px;
  background: var(--green);
  opacity: .08;
  border-radius: 50% 60% 40% 70% / 50% 40% 60% 30%;
}
.hero__inner, .hero__badge, .hero__image { position: relative; z-index: 1; }

/* ============================================================
   STATS BAR
   ============================================================ */
.stats-bar {
  background: var(--navy);
  padding: 28px 0;
}
.stats-bar__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}
.stat-item {
  text-align: center;
  color: var(--white);
}
.stat-item__value {
  font-size: 2rem;
  font-weight: 900;
  color: var(--green);
  line-height: 1;
}
.stat-item__label {
  font-size: .8rem;
  font-weight: 500;
  opacity: .75;
  margin-top: 4px;
}
.stats-bar__divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,.15);
}

/* ============================================================
   ABOUT SECTION
   ============================================================ */
.about__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about__image .img-ph {
  width: 100%;
  aspect-ratio: 1/1;
}
.about__tag {
  display: inline-block;
  background: var(--green-light);
  color: var(--green-dark);
  font-size: .75rem;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: var(--radius-pill);
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.about__title { margin-bottom: 20px; }
.about__body { color: var(--gray-700); margin-bottom: 32px; }
.about__quote {
  border-left: 4px solid var(--green);
  padding: 20px 24px;
  background: var(--green-light);
  border-radius: 0 var(--radius) var(--radius) 0;
  margin-bottom: 32px;
}
.about__quote p {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.4;
}
.about__quote span {
  font-size: .85rem;
  color: var(--green-dark);
  font-weight: 500;
  display: block;
  margin-top: 6px;
}

/* ============================================================
   PROGRAMS GRID
   ============================================================ */
.programs { }
.programs__header {
  text-align: center;
  margin-bottom: 56px;
}
.programs__tag {
  display: inline-block;
  background: var(--green-light);
  color: var(--green-dark);
  font-size: .75rem;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: var(--radius-pill);
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.programs__title { margin-bottom: 12px; }
.programs__subtitle { color: var(--gray-700); max-width: 560px; margin: 0 auto; }
.programs__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.program-card {
  background: var(--white);
  border: 2px solid var(--gray-300);
  border-radius: var(--radius-lg);
  padding: 36px;
  transition: all .25s;
  position: relative;
  overflow: hidden;
}
.program-card:hover {
  border-color: var(--green);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.program-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 5px;
  height: 100%;
  background: var(--green);
  opacity: 0;
  transition: opacity .25s;
}
.program-card:hover::before { opacity: 1; }
.program-card__icon {
  width: 52px; height: 52px;
  border-radius: var(--radius);
  background: var(--green-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
}
.program-card__level {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--green-dark);
  margin-bottom: 8px;
}
.program-card__title {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 12px;
  line-height: 1.2;
}
.program-card__text {
  font-size: .9rem;
  color: var(--gray-700);
  line-height: 1.65;
  margin-bottom: 24px;
}

/* ============================================================
   QUOTE BANNER
   ============================================================ */
.quote-banner {
  background:
    linear-gradient(rgba(27,42,110,.78), rgba(27,42,110,.78)),
    url('../images/cultivar-essencial.png') center / cover no-repeat;
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.quote-banner::before,
.quote-banner::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  opacity: .06;
}
.quote-banner::before {
  width: 400px; height: 400px;
  background: var(--green);
  top: -200px; left: -100px;
}
.quote-banner::after {
  width: 300px; height: 300px;
  background: var(--red);
  bottom: -150px; right: -50px;
}
.quote-banner__inner { position: relative; z-index: 1; }
.quote-banner__pre {
  font-size: .85rem;
  font-weight: 600;
  color: var(--green);
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.quote-banner__text {
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  max-width: 760px;
  margin: 0 auto 16px;
}
.quote-banner__text .italic-light {
  color: rgba(255,255,255,.7);
}
.quote-banner__sub {
  font-size: 1rem;
  color: rgba(255,255,255,.65);
  max-width: 500px;
  margin: 0 auto;
}

/* ============================================================
   DIFFERENTIALS / FEATURES
   ============================================================ */
.diff__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.diff__image .img-ph {
  width: 100%;
  aspect-ratio: 4/3;
}
.diff__tag {
  display: inline-block;
  background: var(--red-light);
  color: var(--red);
  font-size: .75rem;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: var(--radius-pill);
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.diff__title { margin-bottom: 16px; }
.diff__body { color: var(--gray-700); margin-bottom: 28px; }
.diff__list { display: flex; flex-direction: column; gap: 16px; }
.diff__item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.diff__item-check {
  flex-shrink: 0;
  width: 28px; height: 28px;
  background: var(--green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}
.diff__item-check svg { width: 14px; height: 14px; fill: none; stroke: white; stroke-width: 2.5; }
.diff__item-text {
  font-size: .95rem;
  font-weight: 600;
  color: var(--navy);
  padding-top: 3px;
}

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section {
  background: var(--green);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  width: 500px; height: 500px;
  background: rgba(255,255,255,.08);
  border-radius: 50%;
  top: -250px; right: -100px;
}
.cta-section__inner { position: relative; z-index: 1; }
.cta-section__pre {
  font-size: .85rem;
  font-weight: 700;
  color: rgba(255,255,255,.8);
  letter-spacing: .07em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.cta-section__title {
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  max-width: 660px;
  margin: 0 auto 12px;
}
.cta-section__sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,.8);
  margin-bottom: 36px;
}
.cta-section .btn--outline-white { font-size: 1rem; }

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  background: var(--navy);
  padding: 72px 0 64px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  background: rgba(232,53,47,.08);
  border-radius: 50%;
  top: -300px; right: -200px;
}
.page-hero::after {
  content: '';
  position: absolute;
  width: 300px; height: 300px;
  background: rgba(56,174,60,.06);
  border-radius: 50%;
  bottom: -150px; left: -80px;
}
.page-hero__inner { position: relative; z-index: 1; }
.page-hero__breadcrumb {
  font-size: .8rem;
  color: rgba(255,255,255,.5);
  font-weight: 500;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.page-hero__breadcrumb a { color: rgba(255,255,255,.6); }
.page-hero__breadcrumb a:hover { color: var(--white); }
.page-hero__breadcrumb span { opacity: .4; }
.page-hero__tag {
  display: inline-block;
  background: var(--white);
  color: var(--green);
  font-size: .75rem;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: var(--radius-pill);
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 16px;
  border: 1px solid var(--green);
}
.page-hero__title {
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.0;
  max-width: 700px;
  margin-bottom: 16px;
}
.page-hero__title .italic-light { color: rgba(255,255,255,.65); }
.page-hero__sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,.7);
  max-width: 580px;
  line-height: 1.65;
  margin-bottom: 28px;
}
.page-hero__quote {
  display: inline-block;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  border-left: 3px solid var(--green);
  padding: 12px 20px;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-size: .9rem;
  color: rgba(255,255,255,.8);
  font-style: italic;
}

/* ============================================================
   CONTENT SECTIONS (inner pages)
   ============================================================ */
.content-section__header {
  margin-bottom: 48px;
}
.content-section__tag {
  display: inline-block;
  font-size: .72rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  letter-spacing: .07em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.content-section__tag--green { background: var(--green-light); color: var(--green-dark); }
.content-section__tag--navy  { background: var(--gray-100); color: var(--navy); }
.content-section__tag--red   { background: var(--red-light); color: var(--red); }
.content-section__title { margin-bottom: 12px; }
.content-section__body {
  font-size: 1.02rem;
  color: var(--gray-700);
  line-height: 1.75;
  max-width: 720px;
}

/* Two column layout for content + image */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.two-col--reverse .two-col__image { order: -1; }
.two-col__image .img-ph {
  width: 100%;
  aspect-ratio: 4/3;
}

/* Feature list */
.feature-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 24px;
}
.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.feature-item__bullet {
  flex-shrink: 0;
  width: 10px; height: 10px;
  background: var(--green);
  border-radius: 50%;
  margin-top: 7px;
}
.feature-item__text {
  font-size: .95rem;
  color: var(--navy);
  font-weight: 500;
}

/* Tag pills checklist */
.tag-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 24px;
}
.tag-pill {
  display: flex;
  align-items: center;
  gap: 14px;
  border: 2px solid var(--green);
  border-radius: var(--radius-pill);
  padding: 12px 20px;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  transition: background .2s;
}
.tag-pill:hover { background: var(--green-light); }
.tag-pill__check {
  width: 28px; height: 28px;
  background: var(--green);
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.tag-pill__check svg { width: 14px; height: 14px; fill: none; stroke: white; stroke-width: 2.5; }

/* Cards grid (3 columns) */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.info-card {
  background: var(--white);
  border: 2px solid var(--gray-300);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: all .25s;
}
.info-card:hover {
  border-color: var(--green);
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}
.info-card__icon {
  width: 48px; height: 48px;
  background: var(--green-light);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 16px;
}
.info-card__title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}
.info-card__text {
  font-size: .875rem;
  color: var(--gray-700);
  line-height: 1.6;
}

/* Spaces (vivências) */
.spaces-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 32px;
}
.space-card {
  border: 2px solid var(--gray-300);
  border-radius: var(--radius-lg);
  padding: 28px;
  background: var(--white);
  transition: all .25s;
}
.space-card:hover {
  border-color: var(--green);
  background: var(--green-light);
}
.space-card__emoji {
  font-size: 2rem;
  margin-bottom: 12px;
}
.space-card__title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}
.space-card__text {
  font-size: .85rem;
  color: var(--gray-700);
  line-height: 1.55;
}

/* Highlight box */
.highlight-box {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 48px;
  text-align: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.highlight-box::before {
  content: '';
  position: absolute;
  width: 300px; height: 300px;
  background: rgba(232,53,47,.1);
  border-radius: 50%;
  top: -150px; right: -80px;
}
.highlight-box__text {
  font-size: clamp(1.3rem, 2.5vw, 2rem);
  font-weight: 900;
  line-height: 1.2;
  position: relative;
  z-index: 1;
  max-width: 600px;
  margin: 0 auto 12px;
}
.highlight-box__sub {
  font-size: .95rem;
  color: rgba(255,255,255,.7);
  position: relative;
  z-index: 1;
}

/* Steps / Process */
.steps { display: flex; flex-direction: column; gap: 28px; }
.step {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}
.step__number {
  flex-shrink: 0;
  width: 44px; height: 44px;
  background: var(--navy);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .95rem;
  font-weight: 800;
  margin-top: 2px;
}
.step__title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}
.step__text {
  font-size: .9rem;
  color: var(--gray-700);
  line-height: 1.6;
}

/* Closing section on inner pages */
.closing {
  background: var(--green);
  padding: 80px 0;
  text-align: center;
}
.closing__title {
  font-size: clamp(1.6rem, 3.5vw, 2.8rem);
  font-weight: 900;
  color: var(--white);
  max-width: 680px;
  margin: 0 auto 16px;
  line-height: 1.1;
}
.closing__sub {
  font-size: 1rem;
  color: rgba(255,255,255,.8);
  max-width: 480px;
  margin: 0 auto 32px;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--navy-dark);
  padding: 64px 0 32px;
  color: rgba(255,255,255,.7);
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.2fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer__brand img { height: 44px; filter: brightness(0) invert(1); margin-bottom: 16px; }
.footer__brand p { font-size: .875rem; line-height: 1.6; max-width: 320px; }
.footer__col-title {
  font-size: .8rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: .07em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.footer__links { display: flex; flex-direction: column; gap: 10px; }
.footer__links a {
  font-size: .875rem;
  color: rgba(255,255,255,.6);
  transition: color .2s;
}
.footer__links a:hover { color: var(--green); }
.footer__contact { display: flex; flex-direction: column; gap: 12px; }
.footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .875rem;
}
.footer__contact-icon {
  width: 32px; height: 32px;
  background: rgba(255,255,255,.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .9rem;
  flex-shrink: 0;
}
.footer__divider {
  border: none;
  border-top: 1px solid rgba(255,255,255,.1);
  margin-bottom: 24px;
}
.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: .8rem;
}
.footer__copy { color: rgba(255,255,255,.4); }
.footer__social { display: flex; gap: 10px; }
.footer__social a {
  width: 36px; height: 36px;
  background: rgba(255,255,255,.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .9rem;
  color: rgba(255,255,255,.6);
  transition: all .2s;
}
.footer__social a:hover {
  background: var(--green);
  color: var(--white);
}
.footer__mackenzie {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  font-size: .8rem;
  color: rgba(255,255,255,.4);
}
.footer__mackenzie-badge {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-sm);
  padding: 4px 10px;
  font-size: .72rem;
  font-weight: 700;
  color: rgba(255,255,255,.6);
  letter-spacing: .05em;
  text-transform: uppercase;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .hero__inner { grid-template-columns: 1fr; gap: 40px; }
  .hero__image { max-width: 480px; }
  .hero__badge { left: 0; }
  .about__inner { grid-template-columns: 1fr; gap: 40px; }
  .diff__inner { grid-template-columns: 1fr; gap: 40px; }
  .two-col { grid-template-columns: 1fr; gap: 40px; }
  .two-col--reverse .two-col__image { order: 0; }
  .programs__grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  :root { --section-py: 64px; }
  .nav__links, .nav__cta { display: none; }
  .nav__burger { display: flex; }
  .cards-grid { grid-template-columns: 1fr; }
  .stats-bar__inner { gap: 28px; }
  .stats-bar__divider { display: none; }
  .footer__grid { grid-template-columns: 1fr; gap: 32px; }
  .footer__bottom { flex-direction: column; text-align: center; }
  .hero__title .line1 { font-size: 1.4rem; white-space: normal; }
  .hero__title .line2 { font-size: 2.2rem; }
}

@media (max-width: 480px) {
  :root { --section-py: 48px; }
  .container { padding: 0 16px; }
  .hero { padding: 40px 0; }
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { text-align: center; justify-content: center; }
  .program-card { padding: 24px; }
  .highlight-box { padding: 32px 24px; }
}

/* ============================================================
   HERO CAROUSEL
   ============================================================ */
.hero-carousel {
  position: relative;
  width: 100%;
  aspect-ratio: 1/1;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.hero-carousel__track {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero-carousel__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.hero-carousel__slide.is-active {
  opacity: 1;
}

.hero-carousel__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Setas */
.hero-carousel__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,.92);
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  font-size: 1.4rem;
  line-height: 1;
  color: var(--navy);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow);
  transition: background .2s, transform .2s;
  z-index: 10;
}
.hero-carousel__arrow:hover {
  background: var(--white);
  transform: translateY(-50%) scale(1.08);
}
.hero-carousel__arrow--prev { left: 12px; }
.hero-carousel__arrow--next { right: 12px; }

/* Pontos */
.hero-carousel__dots {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 7px;
  z-index: 10;
}
.hero-carousel__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,.5);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background .25s, transform .25s;
}
.hero-carousel__dot.active {
  background: var(--white);
  transform: scale(1.3);
}

/* ============================================================
   DIFF CAROUSEL (Nosso Diferencial)
   ============================================================ */
.diff-carousel {
  position: relative;
  width: 100%;
  aspect-ratio: 1/1;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.diff-carousel__track {
  position: relative;
  width: 100%;
  height: 100%;
}
.diff-carousel__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.5s ease;
}
.diff-carousel__slide.is-active {
  opacity: 1;
}
.diff-carousel__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.diff-carousel__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,.92);
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  font-size: 1.4rem;
  line-height: 1;
  color: var(--navy);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow);
  transition: background .2s, transform .2s;
  z-index: 10;
}
.diff-carousel__arrow:hover {
  background: var(--white);
  transform: translateY(-50%) scale(1.08);
}
.diff-carousel__arrow--prev { left: 12px; }
.diff-carousel__arrow--next { right: 12px; }
.diff-carousel__dots {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 7px;
  z-index: 10;
}
.diff-carousel__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,.5);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background .25s, transform .25s;
}
.diff-carousel__dot.active {
  background: var(--white);
  transform: scale(1.3);
}
