* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --green-900: #143f32;
  --green-800: #1f5f49;
  --green-700: #2f8061;
  --green-100: #e5f2e8;
  --green-50: #f6fbf4;
  --gold: #c58f45;
  --wood: #d4aa72;
  --cream: #fff9ef;
  --text: #17302a;
  --muted: #60736a;
  --white: #ffffff;
  --border: #d9eadf;
  --shadow: 0 24px 60px rgba(31, 95, 73, 0.16);
  --radius: 24px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background: var(--cream);
  line-height: 1.65;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid rgba(196, 154, 74, 0.75);
  outline-offset: 4px;
}

.skip-link {
  position: absolute;
  top: -50px;
  left: 16px;
  background: var(--green-900);
  color: white;
  padding: 10px 14px;
  border-radius: 8px;
  z-index: 100;
}

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

.header {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 86% 12%, rgba(197, 143, 69, 0.2), transparent 30%),
    radial-gradient(circle at 6% 82%, rgba(47, 128, 97, 0.16), transparent 30%),
    linear-gradient(135deg, #fffaf1 0%, #f6fbf4 74%);
}

.nav {
  position: relative;
  z-index: 5;
  width: min(92%, 1200px);
  margin: 0 auto;
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand {
  text-decoration: none;
  font-size: 25px;
  font-weight: 800;
  color: var(--green-700);
}

.brand span {
  color: var(--green-700);
}

.nav-links {
  display: flex;
  gap: 20px;
  align-items: center;
}

.nav-links a {
  text-decoration: none;
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  transition: 0.2s;
}

.nav-links a:hover {
  color: var(--green-700);
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: white;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.menu-button span {
  width: 18px;
  height: 2px;
  background: var(--green-800);
  border-radius: 999px;
}

.hero {
  position: relative;
  width: 100%;
  min-height: 660px;
  margin: 0;
  padding: 72px max(4%, calc((100vw - 1200px) / 2)) 104px;
  display: block;
}

.hero-content {
  position: relative;
  z-index: 3;
  width: min(55%, 650px);
  padding-top: 22px;
}

.eyebrow {
  color: var(--green-700);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1.3px;
  text-transform: uppercase;
  margin-bottom: 14px;
}

h1 {
  font-size: clamp(38px, 4.7vw, 60px);
  line-height: 1.02;
  margin-bottom: 24px;
  font-weight: 700;
}

.hero-text {
  color: var(--muted);
  font-size: 21px;
  max-width: 720px;
  margin-bottom: 34px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 14px 24px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  text-align: center;
  transition: 0.22s ease;
}

.btn-primary {
  color: white;
  background: var(--green-700);
  box-shadow: 0 14px 28px rgba(47, 128, 97, 0.25);
}

.btn-primary:hover {
  background: var(--green-800);
  transform: translateY(-2px);
}

.btn-outline {
  color: var(--green-800);
  border: 2px solid var(--green-700);
  background: rgba(255, 255, 255, 0.72);
}

.btn-outline:hover {
  background: var(--green-100);
}

.btn-light {
  color: var(--green-800);
  background: white;
}

.trust-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 34px;
}

.trust-row div {
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 14px 18px;
  min-width: 120px;
}

.trust-row strong {
  display: block;
  color: var(--green-700);
  font-size: 18px;
}

.trust-row span {
  display: block;
  color: var(--muted);
  font-size: 14px;
}

.hero-photo-card {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  border-radius: 0;
}

.hero-photo-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg,
      rgba(255, 255, 255, 1) 0%,
      rgba(255, 255, 255, 0.96) 24%,
      rgba(255, 255, 255, 0.62) 40%,
      rgba(255, 255, 255, 0.12) 58%,
      rgba(31, 95, 73, 0.04) 100%);
  pointer-events: none;
}

.hero-photo-card img {
  width: 100%;
  height: 100%;
  min-height: 660px;
  object-fit: cover;
  object-position: center center;
  filter: saturate(1.08) contrast(1.06);
  border-radius: 0;
  border: 0;
  box-shadow: none;
}

.photo-caption {
  position: absolute;
  z-index: 2;
  left: auto;
  right: 34px;
  bottom: 34px;
  max-width: 360px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(220, 235, 234, 0.9);
  border-radius: 20px;
  padding: 18px 20px;
  box-shadow: var(--shadow);
}

.photo-caption strong {
  display: block;
  color: var(--green-800);
  font-size: 18px;
}

.photo-caption span {
  color: var(--muted);
  font-size: 14px;
}

.mobile-identity-row {
  display: none;
}

.section {
  width: min(92%, 1200px);
  margin: 0 auto;
  padding: 96px 0;
}

.two-columns {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 70px;
}

h2 {
  font-size: clamp(31px, 3.2vw, 44px);
  line-height: 1.12;
  margin-bottom: 18px;
}

.text-block p,
.section-title p,
.service-card p,
.timeline-card p,
.benefits-content p,
.contact p,
.location-section p,
.program-details p {
  color: var(--muted);
  font-size: 18px;
}

.text-block p + p {
  margin-top: 16px;
}

.program-section {
  width: min(92%, 1200px);
  margin: 0 auto;
  padding: 0 0 96px;
}

.program-card {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 34px;
  align-items: stretch;
  padding: 42px;
  border-radius: 30px;
  background:
    radial-gradient(circle at 92% 12%, rgba(197, 143, 69, 0.28), transparent 32%),
    linear-gradient(135deg, var(--green-900), var(--green-700));
  color: white;
  box-shadow: var(--shadow);
}

.program-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.program-copy .eyebrow {
  color: #d7f0df;
}

.program-copy h2 {
  margin-bottom: 18px;
}

.program-slogan {
  color: #f3fbf4;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.45;
}

.program-details {
  display: grid;
  gap: 18px;
}

.program-details article {
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 22px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.08);
}

.program-details span {
  display: inline-block;
  margin-bottom: 8px;
  color: #d7f0df;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.program-details p {
  color: #f3fbf4;
}

.section-soft {
  width: 100%;
  max-width: none;
  background: var(--green-50);
  padding-left: 4%;
  padding-right: 4%;
}

.section-title {
  max-width: 820px;
  margin: 0 auto 48px;
  text-align: center;
}

.timeline {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  gap: 22px;
}

.timeline-card {
  background: white;
  border: 1px solid var(--border);
  border-left: 7px solid var(--green-700);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: 0 14px 38px rgba(31, 95, 73, 0.09);
}

.timeline-card span {
  display: inline-block;
  background: var(--green-100);
  color: var(--green-800);
  padding: 7px 12px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 13px;
  margin-bottom: 12px;
}

.timeline-card h3 {
  color: var(--green-800);
  font-size: 24px;
  margin-bottom: 8px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.service-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: 0 16px 42px rgba(31, 95, 73, 0.09);
  transition: 0.22s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 58px;
  height: 36px;
  margin-bottom: 14px;
  padding: 0 12px;
  border-radius: 999px;
  background: var(--green-100);
  color: var(--green-800);
  font-size: 13px;
  font-weight: 900;
}

.service-card h3 {
  color: var(--green-800);
  font-size: 22px;
  line-height: 1.2;
  margin-bottom: 10px;
}

.experience-grid {
  grid-template-columns: repeat(4, 1fr);
}

.experience-card {
  padding-top: 26px;
}

.experience-icon {
  display: inline-flex;
  width: 42px;
  height: 42px;
  margin-bottom: 16px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--green-100);
  color: var(--green-800);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.5px;
}

.section-dark {
  width: 100%;
  max-width: none;
  background:
    radial-gradient(circle at 84% 12%, rgba(197, 143, 69, 0.22), transparent 28%),
    linear-gradient(135deg, var(--green-900), var(--green-800));
  padding-left: 4%;
  padding-right: 4%;
}

.section-title.light h2,
.section-title.light p {
  color: white;
}

.section-title.light .eyebrow {
  color: #d7f0df;
}

.steps {
  width: min(100%, 1200px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.steps article {
  background: rgba(255, 255, 255, 0.08);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  padding: 26px;
}

.steps span {
  color: #d7f0df;
  font-weight: 900;
  font-size: 26px;
}

.steps h3 {
  margin: 10px 0 8px;
  font-size: 21px;
}

.steps p {
  color: #f2fbf4;
}

.benefits {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 54px;
  align-items: start;
}

.benefits-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.benefits-list div {
  background: var(--green-50);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 24px;
}

.benefits-list strong {
  display: block;
  color: var(--green-800);
  font-size: 20px;
  margin-bottom: 6px;
}

.benefits-list span {
  color: var(--muted);
}

.location-section {
  width: min(92%, 1200px);
  margin: 0 auto 34px;
  padding: 34px;
  border: 1px solid var(--border);
  border-radius: 28px;
  background:
    radial-gradient(circle at 96% 8%, rgba(197, 143, 69, 0.16), transparent 30%),
    linear-gradient(135deg, #ffffff, var(--green-50));
}

.location-intro {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 26px;
}

.location-intro h2 {
  margin-bottom: 8px;
}

.location-intro p {
  max-width: 760px;
}

.location-gallery {
  margin-top: 28px;
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr;
  gap: 18px;
}

.location-gallery figure {
  position: relative;
  overflow: hidden;
  min-height: 260px;
  border-radius: 22px;
  background: var(--green-100);
  box-shadow: 0 16px 42px rgba(31, 95, 73, 0.11);
}

.location-gallery img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
}

.gallery-main {
  grid-row: span 2;
  min-height: 540px;
}

.gallery-main img {
  min-height: 540px;
}

.location-gallery figcaption {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--green-800);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.3;
}

.reviews-section {
  padding-top: 72px;
}

.reviews-header {
  max-width: 820px;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 26px;
}

.reviews-header h2 {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.reviews-header p {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  color: var(--muted);
  font-size: 18px;
}

.stars {
  display: inline-block;
  color: var(--gold);
  letter-spacing: 2px;
  font-size: 18px;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  align-items: stretch;
}

.review-card {
  position: relative;
  min-height: 245px;
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(246, 251, 244, 0.96));
  box-shadow: 0 16px 42px rgba(31, 95, 73, 0.09);
  display: flex;
  flex-direction: column;
}

.review-card::before {
  content: "“";
  position: absolute;
  top: 8px;
  right: 24px;
  color: rgba(197, 143, 69, 0.24);
  font-size: 92px;
  font-family: Georgia, serif;
  line-height: 1;
}

.review-top {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 8px;
  margin-bottom: 18px;
}

.review-top strong {
  color: var(--green-800);
  font-size: 18px;
}

.review-card p {
  position: relative;
  z-index: 1;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.5;
}

.reviews-link {
  margin-top: 26px;
}

.cta {
  width: min(92%, 1200px);
  margin: 0 auto;
  padding: 62px;
  border-radius: 32px;
  background:
    radial-gradient(circle at 90% 10%, rgba(197, 143, 69, 0.25), transparent 30%),
    linear-gradient(135deg, var(--green-700), var(--green-900));
  color: white;
  box-shadow: var(--shadow);
  display: flex;
  gap: 30px;
  justify-content: space-between;
  align-items: center;
}

.cta h2 {
  max-width: 780px;
}

.cta p {
  color: #f2fbf4;
  font-size: 18px;
}

.cta .eyebrow {
  color: #d7f0df;
}

.contact {
  text-align: center;
}

.contact-card {
  max-width: 680px;
  margin: 32px auto 0;
  background: var(--green-50);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px;
}

.contact-card p {
  color: var(--text);
  margin-bottom: 10px;
}

.contact-highlight {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 8px auto 16px;
  padding: 12px 20px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--green-700), var(--green-900));
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: white;
  box-shadow: 0 14px 30px rgba(31, 95, 73, 0.2);
  font-size: 17px;
  letter-spacing: 0.2px;
}

.contact-highlight strong {
  color: white;
  font-weight: 800;
}

.contact-card a:not(.btn) {
  color: var(--green-800);
  font-weight: 700;
}

.contact-card .btn {
  margin-top: 16px;
}

.floating-whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  background: #2fbf71;
  color: white;
  padding: 13px 19px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 900;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.22);
  z-index: 60;
}

.footer {
  background: var(--green-900);
  color: #f2fbf4;
  text-align: center;
  padding: 30px 18px;
}

.footer p + p {
  margin-top: 6px;
}

@media (max-width: 960px) {
  .menu-button {
    display: inline-flex;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 74px;
    right: 4%;
    left: 4%;
    background: white;
    border: 1px solid var(--border);
    border-radius: 22px;
    padding: 20px;
    box-shadow: var(--shadow);
    flex-direction: column;
    align-items: flex-start;
    z-index: 40;
  }

  .nav-links.active {
    display: flex;
  }

  .hero,
  .two-columns,
  .program-card,
  .services-grid,
  .steps,
  .benefits,
  .benefits-list,
  .reviews-header,
  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    width: 100%;
    min-height: 820px;
    margin: 0;
    padding: 44px 4% 64px;
    display: block;
  }

  .hero-content {
    width: 100%;
    max-width: 540px;
    padding-top: 0;
  }

  .hero-photo-card {
    position: absolute;
    inset: 0;
    z-index: 1;
    border-radius: 0;
  }

  .hero-photo-card::before {
    display: block;
    background:
      linear-gradient(180deg,
        rgba(255, 255, 255, 0.98) 0%,
        rgba(255, 255, 255, 0.92) 40%,
        rgba(255, 255, 255, 0.58) 68%,
        rgba(255, 255, 255, 0.2) 100%),
      linear-gradient(90deg,
        rgba(255, 255, 255, 0.96) 0%,
        rgba(255, 255, 255, 0.72) 54%,
        rgba(255, 255, 255, 0.1) 100%);
  }

  .hero-photo-card img {
    height: 100%;
    min-height: 820px;
    max-height: none;
    object-position: 62% center;
    border-radius: 0;
    border: 0;
    box-shadow: none;
  }

  .photo-caption {
    position: absolute;
    right: 4%;
    bottom: 22px;
    left: 4%;
    max-width: none;
    margin: 0;
    padding: 14px 16px;
  }

  .section {
    padding: 64px 0;
  }

  .program-section {
    padding: 0 0 64px;
  }

  .program-card {
    padding: 32px 24px;
  }

  .location-intro,
  .cta {
    flex-direction: column;
    align-items: flex-start;
  }

  .location-section {
    padding: 24px;
  }

  .reviews-header {
    align-items: start;
  }

  .cta {
    padding: 42px 24px;
  }

  .location-gallery {
    grid-template-columns: 1fr 1fr;
  }

  .gallery-main {
    grid-column: 1 / -1;
    grid-row: auto;
    min-height: 360px;
  }

  .gallery-main img {
    min-height: 360px;
  }

  .floating-whatsapp {
    right: 14px;
    bottom: 14px;
  }
}

@media (max-width: 560px) {
  .hero-actions,
  .btn,
  .location-intro .btn {
    width: 100%;
  }

  .section {
    padding: 56px 0;
  }

  .program-section {
    padding: 0 0 56px;
  }

  .location-gallery {
    grid-template-columns: 1fr 1fr;
  }

  .location-gallery figure,
  .location-gallery img {
    min-height: 0;
  }

  .location-gallery figure {
    height: 180px;
  }

  .location-gallery img {
    height: 100%;
  }

  .location-gallery .gallery-main {
    grid-column: 1 / -1;
    height: 260px;
    min-height: 0;
  }

  .location-gallery .gallery-main img {
    min-height: 0;
  }

  .location-gallery figcaption {
    left: 8px;
    right: 8px;
    bottom: 28px;
    padding: 8px 9px;
    border-radius: 11px;
    font-size: 12px;
  }

  .location-gallery figure:not(.gallery-main) figcaption {
    display: none;
  }

  .trust-row div {
    flex: 1 1 calc(50% - 8px);
    min-width: 0;
    padding: 12px 14px;
  }

  h1 {
    font-size: 34px;
    line-height: 1.08;
    margin-bottom: 18px;
  }

  h2 {
    font-size: 29px;
    line-height: 1.14;
  }

  .eyebrow {
    font-size: 12px;
    letter-spacing: 1px;
    margin-bottom: 10px;
  }

  .hero {
    min-height: 760px;
    padding-top: 36px;
    padding-bottom: 56px;
  }

  .hero-photo-card img {
    min-height: 760px;
    object-position: 65% center;
  }

  .hero-text {
    margin-bottom: 24px;
  }

  .hero-actions {
    gap: 10px;
  }

  .btn {
    min-height: 52px;
    padding: 13px 18px;
  }

  .trust-row {
    gap: 12px;
    margin-top: 24px;
  }

  .trust-row strong {
    font-size: 16px;
  }

  .trust-row span {
    font-size: 13px;
  }

  .photo-caption {
    bottom: 16px;
    border-radius: 16px;
  }

  .hero-text,
  .text-block p,
  .section-title p,
  .service-card p,
  .timeline-card p,
  .benefits-content p,
  .contact p,
  .location-section p,
  .program-details p {
    font-size: 17px;
  }

  .program-slogan {
    font-size: 19px;
  }

  .program-card,
  .service-card,
  .timeline-card,
  .review-card,
  .contact-card {
    border-radius: 18px;
  }

  .service-card,
  .timeline-card,
  .review-card {
    padding: 22px;
  }

  .review-card {
    min-height: auto;
  }

  .location-section {
    border-radius: 22px;
    padding: 20px;
    margin-bottom: 22px;
  }

  .location-gallery {
    gap: 12px;
  }

  .contact-card {
    padding: 24px 18px;
  }

  .floating-whatsapp {
    padding: 11px 15px;
    font-size: 14px;
  }
}

@media (max-width: 560px) {
  body {
    font-family: "Segoe UI", "Inter", "Roboto", "Helvetica Neue", Arial, sans-serif;
    line-height: 1.45;
  }

  .nav {
    position: relative;
    width: 100%;
    padding: 14px 4% 28px;
    background: linear-gradient(180deg,
      rgba(255, 249, 239, 1) 0%,
      rgba(255, 249, 239, 0.96) 46%,
      rgba(255, 249, 239, 0) 100%);
    margin: 0;
  }

  .header::after {
    display: none;
  }

  .brand {
    position: relative;
    z-index: 5;
    font-size: 21px;
  }

  .menu-button {
    position: relative;
    z-index: 5;
    width: 40px;
    height: 40px;
  }

  .hero {
    min-height: 570px;
    margin-top: -18px;
    padding: 54px 4% 6px;
  }

  .hero::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -2px;
    height: 36px;
    z-index: 2;
    pointer-events: none;
    background: linear-gradient(180deg,
      rgba(255, 249, 239, 0) 0%,
      rgba(255, 249, 239, 0.22) 34%,
      rgba(255, 249, 239, 0.58) 66%,
      rgba(255, 249, 239, 1) 100%);
  }

  .hero-content {
    width: 51%;
    max-width: 51%;
    transform: translateY(0);
  }

  .hero-photo-card::before {
    background:
      linear-gradient(90deg,
        rgba(255, 255, 255, 0.97) 0%,
        rgba(255, 255, 255, 0.92) 34%,
        rgba(255, 255, 255, 0.34) 52%,
        rgba(255, 255, 255, 0.03) 70%,
        rgba(255, 255, 255, 0) 100%),
      linear-gradient(180deg,
        rgba(255, 250, 245, 0.34) 0%,
        rgba(255, 250, 245, 0.02) 48%,
        rgba(255, 249, 239, 0.42) 76%,
        rgba(255, 249, 239, 1) 100%);
  }

  .hero-photo-card img {
    min-height: 540px;
    object-position: 66% center;
    filter: saturate(1.08) contrast(1.18) brightness(1.01) hue-rotate(-5deg);
    transform: translateX(16px) scale(0.93);
    transform-origin: center center;
  }

  .eyebrow {
    font-size: 8.5px;
    line-height: 1.18;
    letter-spacing: 0.7px;
    margin-bottom: 14px;
    max-width: 204px;
  }

  h1 {
    font-family: "Segoe UI Variable Display", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
    font-size: 21.6px;
    line-height: 1.08;
    margin-bottom: 0;
    font-weight: 750;
    max-width: 190px;
    transform: translateY(22px);
  }

  .hero-text {
    display: none;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 7px;
    width: calc(100vw - 30px);
    margin-top: 148px;
  }

  .btn {
    min-height: 38px;
    width: 100%;
    padding: 9px 8px;
    font-size: 10.8px;
    text-align: center;
    justify-content: center;
    white-space: nowrap;
  }

  .trust-row {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 6px;
    margin-top: 34px;
    width: calc(100vw - 30px);
  }

  .trust-row div {
    background: rgba(255, 255, 255, 0.94);
    min-height: 42px;
    padding: 6px 5px;
    border-radius: 10px;
  }

  .trust-row div:nth-child(-n+3) {
    grid-column: auto;
  }

  .trust-row div:nth-child(4),
  .trust-row div:nth-child(5) {
    display: block;
    grid-column: auto;
  }

  .trust-row strong {
    font-size: 8.8px;
    line-height: 1.1;
  }

  .trust-row span {
    font-size: 7px;
    line-height: 1.12;
  }

  .photo-caption {
    display: none;
  }

  .mobile-identity-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    width: calc(100vw - 30px);
    margin-top: 6px;
  }

  .mobile-name-card {
    min-height: 46px;
    padding: 8px 10px;
    border: 1px solid var(--border);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 10px 22px rgba(26, 74, 61, 0.08);
  }

  .mobile-name-card strong {
    display: block;
    color: var(--green-700);
    font-size: 11px;
    font-weight: 700;
    line-height: 1.2;
    white-space: nowrap;
  }

  .mobile-name-card span {
    display: block;
    color: var(--muted);
    font-size: 9px;
    line-height: 1.25;
    white-space: nowrap;
    margin-top: 5px;
  }

  .benefits {
    display: none;
  }

  .contact > .eyebrow,
  .contact > h2,
  .contact > p {
    display: none;
  }

  .contact-card {
    margin-top: 0;
  }

  .section {
    padding: 28px 0;
  }

  #sobre {
    padding-top: 8px;
  }

  .section-dark {
    width: min(92%, 1200px);
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    padding: 26px 4%;
  }

  .program-section {
    padding: 0 0 30px;
  }

  h2 {
    font-size: 20px;
    line-height: 1.12;
    margin-bottom: 9px;
  }

  .section-title {
    margin-bottom: 18px;
  }

  #formacao .section-title h2 {
    font-size: 17.5px;
    line-height: 1.16;
  }

  .two-columns {
    gap: 14px;
  }

  .text-block p,
  .section-title p,
  .service-card p,
  .timeline-card p,
  .benefits-content p,
  .contact p,
  .location-section p,
  .program-details p,
  .review-card p {
    font-size: 12.5px;
    line-height: 1.38;
  }

  .text-block p:nth-of-type(2),
  .text-block p:nth-of-type(3),
  #formacao .section-title p,
  .reviews-header p,
  .benefits-content p,
  .location-gallery figcaption {
    display: none;
  }

  .text-block p + p {
    margin-top: 8px;
  }

  .program-card {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 18px 14px;
    border-radius: 18px;
  }

  .program-copy h2 {
    font-size: 21px;
  }

  .program-slogan {
    font-size: 13.5px;
    line-height: 1.3;
  }

  .program-details {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .program-details article {
    padding: 11px;
    border-radius: 14px;
  }

  .program-details span,
  .timeline-card span {
    font-size: 9px;
    letter-spacing: 0.6px;
  }

  .timeline {
    gap: 9px;
  }

  .timeline-card {
    padding: 13px;
    border-left-width: 3px;
  }

  .timeline-card h3,
  .service-card h3 {
    font-size: 15px;
    margin-bottom: 5px;
  }

  .services-grid,
  .steps,
  .benefits-list,
  .reviews-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .service-card,
  .steps article,
  .benefits-list div,
  .review-card {
    padding: 12px;
    border-radius: 14px;
  }

  .steps span {
    font-size: 16px;
  }

  .steps h3 {
    font-size: 13.5px;
    margin: 5px 0 4px;
  }

  .steps p {
    font-size: 11.5px;
    line-height: 1.3;
  }

  .benefits {
    gap: 14px;
  }

  .benefits-list strong {
    font-size: 12.5px;
  }

  .benefits-list span {
    display: block;
    font-size: 11px;
    line-height: 1.3;
  }

  .location-section {
    padding: 13px;
    border-radius: 18px;
    margin-bottom: 12px;
  }

  .location-intro {
    gap: 12px;
  }

  .location-gallery {
    margin-top: 12px;
    gap: 8px;
  }

  .location-gallery figure {
    height: 115px;
    border-radius: 14px;
  }

  .location-gallery .gallery-main {
    height: 170px;
  }

  .location-gallery figcaption {
    font-size: 10px;
    padding: 6px 7px;
  }

  .reviews-section {
    padding-top: 30px;
  }

  .reviews-header {
    margin-bottom: 18px;
  }

  .review-card {
    min-height: 198px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
  }

  .review-card-more {
    background: rgba(255, 255, 255, 0.78);
    border-style: dashed;
  }

  .review-card::before {
    right: 10px;
    top: 4px;
    font-size: 44px;
  }

  .stars {
    font-size: 10px;
    letter-spacing: 1px;
  }

  .review-top {
    gap: 4px;
    margin-bottom: 7px;
  }

  .review-top strong {
    min-height: 30px;
    font-size: 11px;
    line-height: 1.18;
    display: flex;
    align-items: center;
  }

  .review-card p {
    font-size: 10.2px;
    line-height: 1.34;
  }

  .reviews-link {
    margin-top: 16px;
  }

  .cta {
    padding: 24px 18px;
    border-radius: 20px;
    gap: 12px;
  }

  .contact-card {
    margin-top: 18px;
    padding: 18px 14px;
  }

  .contact-highlight {
    width: 100%;
    padding: 11px 12px;
    font-size: 14.5px;
  }

  .floating-whatsapp {
    right: 12px;
    bottom: 12px;
    padding: 10px 13px;
    font-size: 13px;
  }
}
