:root {
  --forest: #234b3b;
  --forest-deep: #17382b;
  --forest-soft: #3d6a54;
  --sage: #9ebba4;
  --mint: #dfece0;
  --mint-light: #edf5ed;
  --cream: #f7f0e4;
  --paper: #fffdf8;
  --terracotta: #c87855;
  --terracotta-soft: #e3aa82;
  --sun: #e5c36c;
  --ink: #25312b;
  --muted: #637069;
  --line: #d9e2d9;
  --white: #ffffff;
  --shadow: 0 22px 60px rgba(35, 75, 59, .14);
  --shadow-soft: 0 12px 34px rgba(35, 75, 59, .09);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 16px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Trebuchet MS", "Avenir Next", Avenir, "Segoe UI", sans-serif;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}
body.dialog-open { overflow: hidden; }
img, svg { display: block; max-width: 100%; }
a { color: inherit; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
::selection { background: var(--sun); color: var(--forest-deep); }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.skip-link {
  position: fixed;
  left: 16px;
  top: -80px;
  z-index: 9999;
  background: var(--forest-deep);
  color: var(--white);
  padding: 12px 18px;
  border-radius: 10px;
  text-decoration: none;
  transition: top .2s ease;
}
.skip-link:focus { top: 16px; }
.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 253, 248, .94);
  border-bottom: 1px solid rgba(35, 75, 59, .08);
  backdrop-filter: blur(18px);
}
.header-inner {
  min-height: 96px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand-logo-link { display: inline-flex; align-items: center; text-decoration: none; }
.brand-logo { width: 278px; height: auto; object-fit: contain; }
.main-nav { display: flex; align-items: center; gap: 22px; }
.main-nav a {
  color: var(--forest-deep);
  font-size: .91rem;
  font-weight: 800;
  text-decoration: none;
  transition: color .2s ease;
}
.main-nav a:hover, .main-nav a:focus-visible { color: var(--terracotta); }
.main-nav .nav-cta {
  padding: 11px 17px;
  border-radius: 999px;
  background: var(--forest);
  color: var(--white);
  box-shadow: 0 9px 20px rgba(35, 75, 59, .16);
}
.main-nav .nav-cta:hover, .main-nav .nav-cta:focus-visible { background: var(--forest-deep); color: var(--white); }
.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 13px;
  background: var(--mint);
  padding: 11px;
}
.menu-toggle span:not(.sr-only) {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--forest);
  border-radius: 999px;
  transition: transform .2s ease, opacity .2s ease;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 72px 0 78px;
  background:
    radial-gradient(circle at 12% 20%, rgba(223, 236, 224, .92), transparent 34%),
    linear-gradient(180deg, var(--paper), #fbf7ee 92%);
}
.hero-orb { position: absolute; border-radius: 999px; pointer-events: none; filter: blur(2px); }
.hero-orb-one { width: 280px; height: 280px; background: rgba(229, 195, 108, .16); right: -70px; top: 60px; }
.hero-orb-two { width: 220px; height: 220px; background: rgba(200, 120, 85, .12); left: -100px; bottom: -40px; }
.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  align-items: center;
  gap: 58px;
}
.eyebrow {
  margin: 0 0 14px;
  color: var(--terracotta);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.hero h1, .section h2 {
  font-family: Georgia, "Times New Roman", serif;
  letter-spacing: -.045em;
  color: var(--forest-deep);
}
.hero h1 {
  max-width: 650px;
  margin: 0;
  font-size: clamp(3.05rem, 5.7vw, 5.6rem);
  line-height: .98;
  font-weight: 500;
}
.hero h1 em { color: var(--terracotta); font-style: italic; }
.hero-lead {
  max-width: 650px;
  margin: 27px 0 0;
  color: var(--muted);
  font-size: 1.1rem;
  line-height: 1.78;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 31px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 12px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 900;
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--forest); color: var(--white); box-shadow: 0 12px 25px rgba(35, 75, 59, .18); }
.button-primary:hover, .button-primary:focus-visible { background: var(--forest-deep); box-shadow: 0 16px 30px rgba(35, 75, 59, .22); }
.button-ghost { border-color: rgba(35, 75, 59, .24); color: var(--forest); background: rgba(255,255,255,.62); }
.button-ghost:hover, .button-ghost:focus-visible { border-color: var(--forest); background: var(--white); }
.hero-checks {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
  margin: 27px 0 0;
  padding: 0;
  list-style: none;
  color: var(--forest-deep);
  font-size: .86rem;
  font-weight: 800;
}
.hero-checks li::before {
  content: "✓";
  display: inline-grid;
  place-items: center;
  width: 21px;
  height: 21px;
  margin-right: 8px;
  border-radius: 50%;
  color: var(--forest);
  background: var(--mint);
}
.hero-collage { position: relative; min-height: 600px; }
.hero-main-photo {
  position: absolute;
  inset: 28px 52px 28px 12px;
  margin: 0;
  overflow: hidden;
  border-radius: 42px;
  background: var(--mint);
  box-shadow: 0 32px 70px rgba(35,75,59,.18);
}
.hero-main-photo img { width: 100%; height: 100%; object-fit: cover; }
.hero-main-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 52%, rgba(23,56,43,.62));
  pointer-events: none;
}
.hero-main-photo figcaption {
  position: absolute;
  z-index: 1;
  left: 28px;
  right: 28px;
  bottom: 24px;
  color: var(--white);
  font-weight: 900;
  font-size: 1.02rem;
}
.hero-small-photo {
  position: absolute;
  z-index: 2;
  width: 168px;
  aspect-ratio: 1 / 1.18;
  margin: 0;
  overflow: hidden;
  border: 8px solid var(--paper);
  border-radius: 28px;
  box-shadow: var(--shadow);
  background: var(--cream);
}
.hero-small-photo img { width: 100%; height: 100%; object-fit: cover; }
.hero-small-top { right: 0; top: 0; transform: rotate(3deg); }
.hero-small-bottom { left: -20px; bottom: 4px; transform: rotate(-4deg); }
.hero-note {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 12px 16px;
  border: 1px solid rgba(35,75,59,.08);
  border-radius: 999px;
  background: rgba(255,253,248,.94);
  box-shadow: var(--shadow-soft);
  color: var(--forest-deep);
  font-size: .76rem;
  font-weight: 900;
  backdrop-filter: blur(8px);
}
.hero-note span { color: var(--terracotta); font-size: 1.1rem; }
.hero-note-one { left: 94px; top: 20px; }
.hero-note-two { right: 6px; bottom: 72px; }

.trust-strip { background: var(--forest); color: var(--white); }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.trust-grid > div {
  min-height: 116px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 24px 28px;
  border-right: 1px solid rgba(255,255,255,.14);
}
.trust-grid > div:last-child { border-right: 0; }
.trust-grid strong { font-size: 1rem; }
.trust-grid span { margin-top: 4px; color: rgba(255,255,255,.72); font-size: .82rem; }

.section { padding: 112px 0; }
.section h2 { margin: 0; font-size: clamp(2.4rem, 4.8vw, 4.5rem); line-height: 1.04; font-weight: 500; }
.section-copy > p:not(.eyebrow), .section-heading > p:not(.eyebrow), .proposal-intro > p, .flow-copy > p:not(.eyebrow), .partner-panel > div:first-child > p:not(.eyebrow), .contact-copy > p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.04rem;
}
.section-heading { max-width: 790px; margin-bottom: 48px; }
.section-heading.centered { margin-inline: auto; text-align: center; }
.text-link { display: inline-flex; gap: 10px; align-items: center; margin-top: 16px; color: var(--forest); font-weight: 900; text-decoration: none; }
.text-link span { transition: transform .2s ease; }
.text-link:hover span { transform: translateX(5px); }

.about-grid { display: grid; grid-template-columns: .84fr 1.16fr; gap: 88px; align-items: center; }
.about-photo-wrap { position: relative; max-width: 470px; margin-inline: auto; }
.about-photo {
  position: relative;
  margin: 0;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  border-radius: 38px;
  background: var(--cream);
  box-shadow: var(--shadow);
}
.about-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center 46%; }
.about-photo::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 58%, rgba(23,56,43,.74)); }
.about-photo figcaption {
  position: absolute;
  z-index: 1;
  left: 26px;
  right: 26px;
  bottom: 24px;
  color: var(--white);
}
.about-photo figcaption strong { display: block; font-size: 1.2rem; }
.about-photo figcaption span { display: block; margin-top: 3px; color: rgba(255,255,255,.8); font-size: .82rem; }
.about-seal {
  position: absolute;
  right: -28px;
  top: 40px;
  display: grid;
  place-items: center;
  width: 108px;
  height: 108px;
  border: 7px solid var(--paper);
  border-radius: 50%;
  background: var(--forest);
  color: var(--white);
  box-shadow: var(--shadow-soft);
  line-height: 1.05;
  transform: rotate(7deg);
}
.about-seal strong { font-size: .68rem; letter-spacing: .14em; text-transform: uppercase; }
.about-seal span { color: var(--sun); font-size: 1.35rem; font-weight: 900; }
.section-copy > p:first-of-type:not(.eyebrow) { margin-top: 28px; }
.value-chips { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
.value-chips span { padding: 10px 14px; border-radius: 999px; background: var(--mint-light); color: var(--forest); font-size: .78rem; font-weight: 900; }

.segments { background: var(--mint-light); }
.card-grid { display: grid; gap: 22px; }
.card-grid.three { grid-template-columns: repeat(3, 1fr); }
.service-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(35,75,59,.09);
  border-radius: var(--radius-xl);
  background: var(--paper);
  box-shadow: var(--shadow-soft);
  transition: transform .25s ease, box-shadow .25s ease;
}
.service-card:hover { transform: translateY(-7px); box-shadow: var(--shadow); }
.service-media { position: relative; height: 285px; overflow: hidden; background: var(--cream); }
.service-photo-main { width: 100%; height: 100%; object-fit: cover; }
.service-bercario .service-photo-main { object-position: center 40%; }
.service-contraturno .service-photo-main { object-position: center 34%; }
.service-photo-inset {
  position: absolute;
  right: 18px;
  bottom: 18px;
  width: 92px;
  height: 116px;
  object-fit: cover;
  border: 5px solid var(--paper);
  border-radius: 18px;
  box-shadow: 0 12px 28px rgba(23,56,43,.22);
}
.service-content { padding: 30px 30px 32px; }
.service-label { color: var(--terracotta); font-size: .7rem; font-weight: 900; letter-spacing: .11em; text-transform: uppercase; }
.service-card h3 { margin: 8px 0 12px; color: var(--forest-deep); font-size: 1.55rem; }
.service-card p { margin: 0; color: var(--muted); }
.service-card ul { display: grid; gap: 9px; margin: 24px 0 0; padding: 20px 0 0; border-top: 1px solid var(--line); list-style: none; }
.service-card li { color: var(--forest-deep); font-size: .87rem; font-weight: 700; }
.service-card li::before { content: "•"; color: var(--terracotta); margin-right: 9px; }

.proposal { background: var(--forest-deep); color: var(--white); }
.proposal .eyebrow { color: var(--sun); }
.proposal h2 { color: var(--white); }
.proposal-intro { display: grid; grid-template-columns: 1.08fr .92fr; gap: 80px; align-items: end; }
.proposal-intro > p { margin: 0 0 8px; color: rgba(255,255,255,.7); }
.pillars-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 58px; }
.pillar { min-height: 215px; padding: 27px; border: 1px solid rgba(255,255,255,.12); border-radius: var(--radius-lg); background: rgba(255,255,255,.055); }
.pillar > span { display: inline-grid; place-items: center; width: 38px; height: 38px; border-radius: 12px; background: rgba(229,195,108,.16); color: var(--sun); font-size: .76rem; font-weight: 900; }
.pillar h3 { margin: 22px 0 8px; font-size: 1.16rem; }
.pillar p { margin: 0; color: rgba(255,255,255,.67); font-size: .9rem; }

.spaces { background: var(--paper); }
.photo-gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.gallery-card {
  overflow: hidden;
  border: 1px solid rgba(35,75,59,.09);
  border-radius: var(--radius-xl);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}
.gallery-card-wide { grid-column: span 2; }
.gallery-trigger {
  position: relative;
  width: 100%;
  height: 310px;
  display: block;
  margin: 0;
  padding: 0;
  overflow: hidden;
  border: 0;
  background: var(--mint-light);
}
.gallery-trigger::after {
  content: "Ampliar";
  position: absolute;
  right: 16px;
  bottom: 16px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(23,56,43,.86);
  color: var(--white);
  font-size: .72rem;
  font-weight: 900;
  opacity: 0;
  transform: translateY(5px);
  transition: opacity .2s ease, transform .2s ease;
}
.gallery-trigger:hover::after, .gallery-trigger:focus-visible::after { opacity: 1; transform: translateY(0); }
.gallery-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.gallery-photo:hover img { transform: scale(1.035); }
.gallery-mosaic { display: grid; gap: 5px; }
.gallery-mosaic img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.gallery-mosaic:hover img { transform: scale(1.025); }
.gallery-mosaic-two { grid-template-columns: 1.35fr .65fr; }
.gallery-mosaic-three { grid-template-columns: 1.35fr .65fr; grid-template-rows: 1fr 1fr; }
.gallery-mosaic-three img:first-child { grid-row: 1 / 3; }
.gallery-copy { padding: 25px 28px 30px; }
.gallery-copy span { color: var(--terracotta); font-size: .7rem; font-weight: 900; letter-spacing: .11em; text-transform: uppercase; }
.gallery-copy h3 { margin: 7px 0 8px; color: var(--forest-deep); font-size: 1.22rem; }
.gallery-copy p { margin: 0; color: var(--muted); font-size: .9rem; }
.gallery-card:nth-child(2) .gallery-photo img { object-position: center 52%; }
.gallery-card:nth-child(3) .gallery-photo img { object-position: center 45%; }
.gallery-card:nth-child(6) .gallery-photo img { object-position: center 55%; }
.gallery-card:nth-child(7) .gallery-photo img { object-position: center 48%; }

.learning-flow { background: var(--cream); }
.flow-grid { display: grid; grid-template-columns: .88fr 1.12fr; gap: 88px; align-items: start; }
.flow-list { display: grid; gap: 14px; margin: 0; padding: 0; list-style: none; }
.flow-list li { display: grid; grid-template-columns: 52px 1fr; gap: 19px; padding: 23px; border-radius: var(--radius-lg); background: rgba(255,255,255,.75); border: 1px solid rgba(35,75,59,.08); }
.flow-list li > span { display: grid; place-items: center; width: 52px; height: 52px; border-radius: 16px; background: var(--forest); color: var(--white); font-weight: 900; }
.flow-list strong { color: var(--forest-deep); }
.flow-list p { margin: 4px 0 0; color: var(--muted); font-size: .9rem; }

.partnerships { padding-top: 86px; padding-bottom: 86px; }
.partner-panel {
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  gap: 60px;
  align-items: center;
  padding: 60px;
  border-radius: 40px;
  background: var(--mint-light);
  border: 1px solid var(--line);
}
.partner-panel h2 { font-size: clamp(2.2rem, 4vw, 3.8rem); }
.partner-side { display: grid; gap: 18px; }
.partner-logo { width: 100%; padding: 18px; border-radius: 22px; background: var(--white); box-shadow: var(--shadow-soft); }
.partner-badges { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.partner-badges > div { padding: 18px 20px; border-radius: 18px; background: var(--white); box-shadow: var(--shadow-soft); }
.partner-badges > div:last-child { grid-column: 1 / 3; }
.partner-badges small { display: block; color: var(--terracotta); font-size: .66rem; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.partner-badges strong { display: block; margin-top: 4px; color: var(--forest-deep); font-size: 1rem; }

.contact { background: var(--forest); color: var(--white); }
.contact .eyebrow { color: var(--sun); }
.contact h2 { color: var(--white); }
.contact-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 80px; align-items: start; }
.contact-copy > p:not(.eyebrow) { color: rgba(255,255,255,.72); }
.contact-details { display: grid; gap: 13px; margin-top: 36px; }
.contact-details a { display: grid; grid-template-columns: 46px 1fr; gap: 14px; align-items: start; padding: 15px 0; border-top: 1px solid rgba(255,255,255,.14); text-decoration: none; }
.contact-icon { display: grid; place-items: center; width: 42px; height: 42px; border-radius: 13px; background: rgba(255,255,255,.1); color: var(--sun); font-size: 1.1rem; }
.contact-details strong { display: block; margin-bottom: 2px; color: var(--white); font-size: .82rem; }
.contact-details span:last-child { color: rgba(255,255,255,.72); font-size: .9rem; }
.contact-form { padding: 37px; border-radius: var(--radius-xl); background: var(--paper); color: var(--ink); box-shadow: 0 30px 70px rgba(0,0,0,.18); }
.form-heading { margin-bottom: 24px; }
.form-heading span { color: var(--terracotta); font-size: .76rem; font-weight: 900; letter-spacing: .14em; text-transform: uppercase; }
.form-heading h3 { margin: 6px 0 0; color: var(--forest-deep); font-size: 1.65rem; }
.contact-form label { display: grid; gap: 8px; margin-bottom: 16px; color: var(--forest-deep); font-size: .82rem; font-weight: 900; }
.contact-form input, .contact-form select, .contact-form textarea { width: 100%; border: 1px solid #d9dfda; border-radius: 14px; background: var(--white); color: var(--ink); padding: 13px 14px; outline: none; transition: border .2s ease, box-shadow .2s ease; }
.contact-form textarea { resize: vertical; }
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { border-color: var(--forest-soft); box-shadow: 0 0 0 4px rgba(61,106,84,.12); }
.form-row { display: grid; grid-template-columns: .75fr 1.25fr; gap: 13px; }
.contact-form .consent { grid-template-columns: 18px 1fr; align-items: start; gap: 10px; color: var(--muted); font-size: .74rem; font-weight: 600; }
.contact-form .consent input { width: 17px; height: 17px; margin-top: 2px; }
.contact-form .consent a { color: var(--forest); }
.button-full { width: 100%; border: 0; }
.form-note { margin: 11px 0 0; color: var(--muted); text-align: center; font-size: .72rem; }

.site-footer { padding: 72px 0 28px; background: var(--forest-deep); color: rgba(255,255,255,.7); }
.footer-grid { display: grid; grid-template-columns: 1.45fr .65fr .8fr 1fr; gap: 42px; }
.footer-logo-wrap { display: inline-flex; max-width: 300px; padding: 10px 13px; border-radius: 18px; background: var(--white); }
.footer-logo-wrap img { width: 100%; height: auto; }
.footer-brand p { max-width: 330px; margin-top: 18px; }
.site-footer h3 { margin: 0 0 18px; color: var(--white); font-size: .92rem; }
.site-footer a, .site-footer p { display: block; margin: 0 0 9px; color: rgba(255,255,255,.66); text-decoration: none; font-size: .86rem; }
.site-footer a:hover { color: var(--sun); }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; margin-top: 48px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.12); }
.footer-bottom p { margin: 0; font-size: .76rem; }

.floating-whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 999;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25d366;
  color: var(--white);
  box-shadow: 0 16px 35px rgba(0,0,0,.22);
  transition: transform .2s ease;
}
.floating-whatsapp:hover { transform: translateY(-4px) scale(1.03); }
.floating-whatsapp svg { width: 31px; height: 31px; }

.photo-dialog {
  width: min(94vw, 1050px);
  max-height: 92vh;
  margin: auto;
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: 28px;
  background: var(--forest-deep);
  color: var(--white);
  box-shadow: 0 30px 90px rgba(0,0,0,.45);
}
.photo-dialog::backdrop { background: rgba(12,23,18,.78); backdrop-filter: blur(5px); }
.photo-dialog img { width: 100%; max-height: calc(92vh - 72px); object-fit: contain; background: #101b17; }
.photo-dialog p { margin: 0; padding: 18px 24px; color: rgba(255,255,255,.82); font-size: .9rem; }
.dialog-close {
  position: absolute;
  z-index: 2;
  right: 14px;
  top: 14px;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: rgba(255,255,255,.92);
  color: var(--forest-deep);
  font-size: 1.7rem;
  line-height: 1;
  box-shadow: 0 8px 22px rgba(0,0,0,.18);
}

:focus-visible { outline: 3px solid var(--sun); outline-offset: 4px; }

@media (max-width: 1120px) {
  .brand-logo { width: 235px; }
  .main-nav { gap: 15px; }
  .main-nav a { font-size: .84rem; }
  .hero-grid { gap: 26px; }
  .hero-collage { min-height: 545px; }
  .photo-gallery { grid-template-columns: repeat(2, 1fr); }
  .gallery-card-wide { grid-column: span 2; }
  .footer-grid { grid-template-columns: 1.2fr 1fr 1fr; }
  .footer-grid > div:last-child { grid-column: 2 / 4; }
}

@media (max-width: 900px) {
  .header-inner { min-height: 86px; }
  .brand-logo { width: 225px; }
  .menu-toggle { display: block; }
  .menu-toggle[aria-expanded="true"] span:nth-of-type(2) { transform: translateY(7px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:nth-of-type(3) { opacity: 0; }
  .menu-toggle[aria-expanded="true"] span:nth-of-type(4) { transform: translateY(-7px) rotate(-45deg); }
  .main-nav {
    position: fixed;
    top: 86px;
    left: 20px;
    right: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 5px;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: var(--paper);
    box-shadow: var(--shadow);
  }
  .main-nav.is-open { display: flex; }
  .main-nav a { padding: 10px 12px; border-radius: 11px; }
  .main-nav .nav-cta { text-align: center; margin-top: 5px; }
  .hero { padding-top: 50px; }
  .hero-grid, .about-grid, .proposal-intro, .flow-grid, .partner-panel, .contact-grid { grid-template-columns: 1fr; }
  .hero-copy { text-align: center; }
  .hero-lead { margin-inline: auto; }
  .hero-actions, .hero-checks { justify-content: center; }
  .hero-collage { width: min(100%, 680px); min-height: 590px; margin-inline: auto; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-grid > div:nth-child(2) { border-right: 0; }
  .trust-grid > div:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,.14); }
  .section { padding: 86px 0; }
  .about-grid { gap: 48px; }
  .about-photo-wrap { width: min(100%, 470px); }
  .card-grid.three, .pillars-grid { grid-template-columns: 1fr; }
  .service-card { display: grid; grid-template-columns: .85fr 1.15fr; }
  .service-media { height: 100%; min-height: 410px; }
  .proposal-intro { gap: 24px; }
  .pillars-grid { margin-top: 36px; }
  .partner-panel { padding: 42px; gap: 34px; }
  .contact-grid { gap: 45px; }
}

@media (max-width: 650px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .header-inner { min-height: 76px; }
  .brand-logo { width: 190px; }
  .main-nav { top: 76px; left: 14px; right: 14px; }
  .hero { padding: 42px 0 56px; }
  .hero h1 { font-size: clamp(2.7rem, 14vw, 4.15rem); }
  .hero-lead { font-size: 1rem; }
  .hero-actions { flex-direction: column; }
  .hero-actions .button { width: 100%; }
  .hero-checks { display: grid; justify-content: start; margin-inline: auto; width: max-content; max-width: 100%; }
  .hero-collage { min-height: 440px; margin-top: 16px; }
  .hero-main-photo { inset: 20px 28px 18px 18px; border-radius: 30px; }
  .hero-main-photo figcaption { left: 20px; right: 20px; bottom: 18px; font-size: .87rem; }
  .hero-small-photo { width: 112px; border-width: 5px; border-radius: 20px; }
  .hero-small-top { right: -2px; }
  .hero-small-bottom { left: -3px; }
  .hero-note { display: none; }
  .trust-grid { grid-template-columns: 1fr; }
  .trust-grid > div { min-height: 95px; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.14); }
  .trust-grid > div:last-child { border-bottom: 0; }
  .section { padding: 72px 0; }
  .section h2 { font-size: clamp(2.25rem, 11.5vw, 3.2rem); }
  .about-seal { right: -4px; width: 92px; height: 92px; }
  .service-card { display: block; }
  .service-media { height: 285px; min-height: 0; }
  .service-content { padding: 27px 24px 29px; }
  .photo-gallery { grid-template-columns: 1fr; }
  .gallery-card-wide { grid-column: auto; }
  .gallery-trigger { height: 280px; }
  .gallery-mosaic-three { grid-template-columns: 1.15fr .85fr; }
  .gallery-copy { padding: 23px 24px 27px; }
  .flow-list li { grid-template-columns: 44px 1fr; padding: 18px; }
  .flow-list li > span { width: 44px; height: 44px; border-radius: 13px; }
  .partner-panel { padding: 30px 23px; border-radius: 28px; }
  .partner-badges { grid-template-columns: 1fr; }
  .partner-badges > div:last-child { grid-column: auto; }
.contact-form { padding: 27px 22px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-grid > div:last-child { grid-column: auto; }
  .footer-bottom { flex-direction: column; }
  .floating-whatsapp { width: 54px; height: 54px; right: 16px; bottom: 16px; }
  .photo-dialog { width: calc(100vw - 18px); border-radius: 20px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
}
