/* ===== Design tokens ===== */
:root {
  --verde: #1B3A2E;
  --verde-dark: #12281f;
  --bege: #D9CCBE;
  --bege-light: #EDE6DC;
  --bordo: #5C2A2E;
  --grafite: #1A1A1A;
  --branco: #FBF9F6;

  --font-display: "Fraunces", serif;
  --font-sans: "Montserrat", sans-serif;

  --container: 1180px;
  --radius: 2px;
  --ease: cubic-bezier(.22,.61,.36,1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--grafite);
  background: var(--bege-light);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3 { font-family: var(--font-display); font-weight: 500; margin: 0; color: var(--grafite); }
p { margin: 0; line-height: 1.7; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
}

.eyebrow {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--verde);
  margin: 0 0 16px;
}
.eyebrow--light { color: var(--bege); }
.eyebrow--accent {
  color: var(--bordo);
  display: inline-block;
  padding-bottom: 12px;
  position: relative;
}
.eyebrow--accent::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 34px;
  height: 2px;
  background: var(--bordo);
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 17px 34px;
  font-family: var(--font-sans);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: transform .35s var(--ease), background-color .35s var(--ease), color .35s var(--ease), border-color .35s var(--ease), box-shadow .35s var(--ease);
  cursor: pointer;
}
.btn svg { flex-shrink: 0; width: 15px; height: 15px; }
.btn--primary {
  background: var(--verde);
  color: var(--branco);
  box-shadow: 0 10px 26px -10px rgba(27,58,46,0.55);
}
.btn--primary:hover { background: var(--verde-dark); transform: translateY(-2px); box-shadow: 0 16px 34px -10px rgba(27,58,46,0.6); }
.btn--ghost {
  border-color: rgba(26,26,26,0.28);
  color: var(--grafite);
  background: transparent;
}
.btn--ghost:hover { border-color: var(--grafite); background: var(--grafite); color: var(--branco); transform: translateY(-2px); }
.btn--light {
  background: var(--bege);
  color: var(--verde-dark);
  box-shadow: 0 10px 26px -10px rgba(18,17,16,0.35);
}
.btn--light:hover { background: var(--branco); transform: translateY(-2px); box-shadow: 0 16px 34px -10px rgba(18,17,16,0.4); }

/* ===== Header ===== */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(237, 230, 220, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(27, 58, 46, 0.1);
  box-shadow: 0 2px 12px rgba(27,58,46,0.06);
  transition: box-shadow .3s var(--ease);
}
.header.is-scrolled { box-shadow: 0 4px 24px rgba(27,58,46,0.1); }
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 28px;
}
.brand { display: flex; flex-direction: column; gap: 2px; }
.brand__name {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: var(--grafite);
}
.brand__name em { color: var(--verde); font-style: italic; }
.brand__sub {
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--bordo);
}

.nav { display: flex; align-items: center; gap: 36px; }
.nav a {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.03em;
  color: var(--grafite);
  position: relative;
  padding: 4px 0;
  transition: color .25s var(--ease);
}
.nav a.is-active:not(.nav__cta) { color: var(--verde); }
.nav a:not(.nav__cta)::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 1px;
  background: var(--verde);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .3s var(--ease);
}
.nav a:not(.nav__cta):hover::after,
.nav a.is-active:not(.nav__cta)::after { transform: scaleX(1); transform-origin: left; }
.nav a.nav__cta {
  background: var(--verde);
  color: var(--branco);
  display: inline-block;
  line-height: 1;
  padding: 12px 22px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  box-shadow: 0 8px 20px -8px rgba(27,58,46,0.5);
  transition: background-color .3s var(--ease), box-shadow .3s var(--ease), transform .3s var(--ease);
}
.nav a.nav__cta:hover { background: var(--verde-dark); box-shadow: 0 10px 24px -8px rgba(27,58,46,0.55); transform: translateY(-1px); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 6px;
  cursor: pointer;
  z-index: 210;
}
.nav-toggle span { width: 24px; height: 2px; background: var(--grafite); transition: transform .3s var(--ease), opacity .3s var(--ease); }

/* ===== Mobile fullscreen menu ===== */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
  background: var(--verde-dark);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 30px;
}
.mobile-menu.is-open { display: flex; }
.mobile-menu__link {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 26px;
  color: rgba(251,249,246,0.85);
  transition: color .25s var(--ease);
}
.mobile-menu__link:hover { color: var(--bege); }
.mobile-menu__close {
  position: absolute;
  top: 22px;
  right: 24px;
  background: none;
  border: none;
  color: rgba(251,249,246,0.7);
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
}

/* ===== Hero ===== */
.hero {
  background: var(--bege-light);
  position: relative;
  overflow: hidden;
}

/* Full-bleed editorial split: photo runs 100% height / 100% of its column, no padding or frame */
.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  min-height: 100vh;
}
.hero__text {
  display: flex;
  align-items: center;
  padding: 90px 56px 90px max(28px, calc((100vw - var(--container)) / 2 + 28px));
}
.hero__text-inner { max-width: 500px; }
.hero__text h1 {
  font-size: clamp(38px, 4.4vw, 60px);
  line-height: 1.08;
  letter-spacing: -0.01em;
  margin-bottom: 26px;
}
.hero__text h1 em { color: var(--verde); font-style: italic; }
.hero__lead {
  font-size: 17px;
  color: #4a4a48;
  max-width: 460px;
  margin-bottom: 40px;
}
.hero__actions { display: flex; gap: 16px; flex-wrap: wrap; }

.hero__media { position: relative; overflow: hidden; }
.hero__frame { position: absolute; inset: 0; }
.hero__frame img { width: 100%; height: 100%; object-fit: cover; object-position: center 15%; }
.hero__frame::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to right, var(--bege-light) 0%, rgba(237,230,220,0.55) 4%, rgba(237,230,220,0) 13%);
  pointer-events: none;
}
.hero__frame::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image:
    linear-gradient(to top, rgba(15,26,21,0.62) 0%, rgba(15,26,21,0.22) 20%, transparent 42%),
    linear-gradient(200deg, rgba(27,58,46,0.14) 0%, rgba(92,42,46,0.07) 46%, transparent 78%);
  pointer-events: none;
}
/* ===== Ribbon ===== */
.ribbon {
  background: var(--verde);
  overflow: hidden;
  padding: 16px 0;
}
.ribbon__track {
  display: flex;
  width: max-content;
  animation: ribbon-marquee 26s linear infinite;
}
.ribbon__group {
  display: flex;
  align-items: center;
  gap: 18px;
  padding-right: 18px;
  white-space: nowrap;
  color: var(--bege-light);
  font-family: var(--font-display);
  font-style: italic;
  font-size: 17px;
  letter-spacing: 0.02em;
}
.ribbon__group i {
  width: 5px; height: 5px;
  background: var(--bordo);
  border-radius: 50%;
  flex-shrink: 0;
}
@keyframes ribbon-marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .ribbon__track { animation: none; }
}

/* ===== Sobre ===== */
.sobre { padding: 130px 0; background: var(--branco); }
.sobre__inner {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 80px;
  align-items: center;
}
.sobre__frame {
  aspect-ratio: 3/3.6;
  overflow: hidden;
  border-radius: var(--radius);
  position: relative;
}
.sobre__frame img { width: 100%; height: 100%; object-fit: cover; }
.sobre__frame::before {
  content: "";
  position: absolute;
  top: -18px; right: -18px;
  width: 90px; height: 90px;
  border-top: 2px solid var(--bordo);
  border-right: 2px solid var(--bordo);
  z-index: -1;
}
.sobre__text h2 {
  font-size: clamp(30px, 3.2vw, 42px);
  line-height: 1.2;
  margin-bottom: 26px;
  max-width: 480px;
}
.sobre__quote {
  margin: 0 0 26px;
  padding: 20px 26px;
  border-left: 3px solid var(--bordo);
  background: var(--bege-light);
}
.sobre__quote p {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 18px;
  line-height: 1.5;
  color: var(--grafite);
}
.sobre__quote cite {
  display: block;
  margin-top: 10px;
  font-style: normal;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--verde);
}
.sobre__text p { color: #4a4a48; font-size: 16px; margin-bottom: 20px; max-width: 520px; }

.sobre__tags { display: flex; flex-wrap: wrap; gap: 10px; margin: 8px 0 4px; }
.tag {
  border: 1px solid var(--bege);
  background: var(--bege-light);
  color: var(--verde);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: 50px;
}

.sobre__signature {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(27,58,46,0.15);
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.sobre__signature span {
  font-family: var(--font-sans);
  font-weight: 700;
  letter-spacing: 0.14em;
  font-size: 13px;
  color: var(--verde);
}
.sobre__signature small {
  font-size: 11px;
  letter-spacing: 0.08em;
  color: #8a8a86;
  text-transform: uppercase;
}

/* ===== Serviços ===== */
.servicos { padding: 130px 0; background: var(--bege-light); }
.section-head { max-width: 620px; margin: 0 auto 64px; text-align: center; }
.section-head h2 {
  font-size: clamp(30px, 3.4vw, 44px);
  line-height: 1.2;
  margin-bottom: 20px;
}
.section-head__lead { color: #4a4a48; font-size: 16px; }

.cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(27,58,46,0.14);
  border: 1px solid rgba(27,58,46,0.14);
}
.card {
  background: var(--branco);
  padding: 40px 30px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: background-color .35s var(--ease), transform .35s var(--ease);
}
.card::after {
  content: "";
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--verde);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s var(--ease);
}
.card:hover { background: var(--bege); transform: translateY(-4px); }
.card:hover::after { transform: scaleX(1); }
.card__icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--bege-light);
  border: 1px solid rgba(27,58,46,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.card__icon svg { width: 22px; height: 22px; stroke: var(--verde); }
.card__num {
  position: absolute;
  top: 36px;
  right: 30px;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 15px;
  color: var(--bordo);
}
.card h3 {
  font-size: 19px;
  line-height: 1.3;
  min-height: 50px;
  margin-bottom: 12px;
}
.card p { font-size: 14.5px; color: #55554f; margin-bottom: 18px; }
.card__link {
  display: inline-block;
  margin-top: auto;
  align-self: flex-start;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--verde);
  transition: letter-spacing .25s var(--ease);
}
.card__link:hover { letter-spacing: 0.1em; }

/* ===== Resultados ===== */
.resultados { padding: 130px 0; background: var(--branco); }
.resultados__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.resultado-card { text-align: center; }
.resultado-card__photo {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  border-radius: var(--radius);
  margin-bottom: 16px;
  box-shadow: 0 20px 44px -16px rgba(27,58,46,0.3);
}
.resultado-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s var(--ease);
}
.resultado-card:hover .resultado-card__photo img { transform: scale(1.04); }
.resultado-card__tags {
  position: absolute;
  top: 14px;
  left: 14px;
  bottom: 14px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
}
.resultado-card__tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--branco);
  background: rgba(27,58,46,0.55);
  padding: 5px 11px;
  border-radius: 999px;
}
.resultado-card__tag--depois { background: rgba(92,42,46,0.6); }
.resultado-card__label {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: 16px;
  color: var(--grafite);
  margin: 0 0 6px;
}
.resultado-card__caption { font-size: 12.5px; color: #9a9187; }

.resultados__cta { text-align: center; margin-top: 56px; }

/* ===== Depoimentos ===== */
.depoimentos { padding: 130px 0; background: var(--bege-light); }
.depoimentos__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.depo-card {
  position: relative;
  background: var(--branco);
  border: 1px dashed rgba(27,58,46,0.22);
  border-radius: var(--radius);
  padding: 34px 30px;
  overflow: hidden;
}
.depo-card__quote {
  position: absolute;
  top: 6px;
  left: 18px;
  font-family: var(--font-display);
  font-size: 88px;
  font-weight: 600;
  line-height: 1;
  color: var(--bege-light);
  user-select: none;
}
.depo-card__stars { position: relative; color: var(--bege); font-size: 15px; letter-spacing: 2px; margin-bottom: 16px; }
.depo-card__placeholder {
  position: relative;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 16px;
  color: #9a9187;
  margin-bottom: 26px;
}
.depo-card__author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 18px;
  border-top: 1px solid rgba(27,58,46,0.1);
}
.depo-card__avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--bege-light);
  border: 1.5px dashed rgba(27,58,46,0.3);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-style: italic;
  color: #9a9187;
  flex-shrink: 0;
}
.depo-card__name { font-size: 12.5px; font-weight: 700; color: var(--grafite); }
.depo-card__role { font-size: 11px; color: #9a9187; margin-top: 1px; }

/* ===== Filosofia ===== */
.filosofia { padding: 110px 0; background: var(--branco); }
.filosofia__inner { max-width: 780px; margin: 0 auto; text-align: center; }
.filosofia blockquote {
  margin: 0 0 28px;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(22px, 2.6vw, 32px);
  line-height: 1.45;
  color: var(--grafite);
}
.filosofia__attr {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--verde);
}

/* ===== Localização ===== */
.localizacao { padding: 130px 0; background: var(--bege-light); }
.localizacao__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}
.localizacao h2 { font-size: clamp(28px, 3vw, 38px); line-height: 1.2; margin-bottom: 32px; max-width: 420px; }
.loc-row {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding-bottom: 14px;
  margin-bottom: 18px;
  border-bottom: 1px solid rgba(27,58,46,0.12);
}
.loc-row:last-of-type { margin-bottom: 0; padding-bottom: 0; border-bottom: none; }
.loc-icon {
  width: 42px; height: 42px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--branco);
  border: 1px solid rgba(27,58,46,0.14);
  display: flex; align-items: center; justify-content: center;
}
.loc-icon svg { width: 18px; height: 18px; stroke: var(--verde); }
.loc-label { font-size: 10.5px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: #8a8a86; margin-bottom: 3px; }
.loc-value { font-size: 13px; color: var(--grafite); line-height: 1.5; }
.loc-value a { color: var(--verde); }
.loc-value a:hover { text-decoration: underline; }
.loc-note { font-size: 12.5px; color: var(--bordo); font-style: italic; }

.localizacao__map {
  border: 1px solid rgba(27,58,46,0.14);
  border-radius: var(--radius);
  overflow: hidden;
  height: 420px;
  filter: grayscale(0.15) contrast(1.02);
}

/* ===== Contato ===== */
.contato {
  background: var(--verde);
  padding: 130px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.contato__rings {
  position: absolute;
  top: 50%; left: 50%;
  width: 620px; height: 620px;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(217,204,190,0.16);
  border-radius: 50%;
  pointer-events: none;
}
.contato__rings::before,
.contato__rings::after {
  content: "";
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(217,204,190,0.1);
  border-radius: 50%;
}
.contato__rings::before { width: 420px; height: 420px; }
.contato__rings::after { width: 860px; height: 860px; }
.contato__inner { max-width: 620px; margin: 0 auto; position: relative; z-index: 1; }
.contato h2 {
  color: var(--branco);
  font-size: clamp(32px, 3.6vw, 48px);
  margin-bottom: 22px;
}
.contato__lead {
  color: rgba(251,249,246,0.75);
  font-size: 16px;
  margin-bottom: 40px;
}

/* ===== Footer ===== */
.footer { background: var(--grafite); padding: 64px 0 32px; }
.footer__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(251,249,246,0.08);
  margin-bottom: 28px;
}
.footer__name {
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--bege-light);
  display: block;
  margin-bottom: 4px;
}
.footer__brand small {
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--bege);
  margin-bottom: 16px;
}
.footer__brand p {
  font-size: 13px;
  color: #a8a49d;
  line-height: 1.7;
  max-width: 260px;
  margin-bottom: 20px;
}
.footer__social { display: flex; gap: 10px; }
.soc {
  width: 34px; height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(251,249,246,0.3);
  display: flex; align-items: center; justify-content: center;
  color: var(--bege-light);
  transition: all .25s var(--ease);
}
.soc svg { width: 14px; height: 14px; }
.soc:hover { border-color: var(--bege); background: rgba(217,204,190,0.08); }

.footer__heading {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--bege);
  margin-bottom: 16px;
}
.footer__col { display: flex; flex-direction: column; gap: 10px; }
.footer__col a { font-size: 13px; color: #a8a49d; transition: color .25s var(--ease); }
.footer__col a:hover { color: var(--bege-light); }

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer__bottom p { font-size: 11.5px; color: #7a766f; }

/* ===== WhatsApp flutuante ===== */
.wa-float {
  position: fixed;
  bottom: 26px; right: 26px;
  z-index: 190;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}
.wa-float__bubble {
  background: var(--branco);
  border-radius: 14px;
  padding: 11px 18px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--grafite);
  box-shadow: 0 8px 28px rgba(27,58,46,0.18);
  white-space: nowrap;
  opacity: 0;
  transform: translateX(10px);
  pointer-events: none;
  transition: opacity .3s var(--ease), transform .3s var(--ease);
}
.wa-float__bubble.is-visible { opacity: 1; transform: none; }
.wa-float__btn {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: #25D366;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 24px rgba(37,211,102,0.4);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.wa-float__btn:hover { transform: scale(1.08) translateY(-2px); box-shadow: 0 14px 34px rgba(37,211,102,0.48); }
.wa-float__btn svg { width: 26px; height: 26px; fill: var(--branco); }

/* ===== Reveal on scroll ===== */
[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}
[data-reveal].is-visible { opacity: 1; transform: translateY(0); }

/* ===== Load-in effect (plays once, right after the page loads) ===== */
[data-load] {
  opacity: 0;
  transition: opacity 1s var(--ease), transform 1s var(--ease);
  will-change: opacity, transform;
}
[data-load="up"] { transform: translateY(28px); }
[data-load="down"] { transform: translateY(-18px); }
[data-load="left"] { transform: translateX(-40px); }
[data-load="right"] { transform: translateX(40px); }
[data-load].is-loaded { opacity: 1; transform: none; }

.ld0 { transition-delay: .05s; }
.ld1 { transition-delay: .18s; }
.ld2 { transition-delay: .32s; }
.ld3 { transition-delay: .46s; }
.ld4 { transition-delay: .6s; }
.ld5 { transition-delay: .78s; }

/* ===== Responsive ===== */
@media (max-width: 980px) {
  .hero__inner { grid-template-columns: 1fr; min-height: 0; }
  .hero__media { order: -1; height: 72vh; }
  .hero__frame img { object-position: center 45%; }
  .hero__frame::before { background: linear-gradient(to bottom, var(--bege-light) 0%, rgba(237,230,220,0.5) 5%, rgba(237,230,220,0) 16%); }
  .hero__frame::after {
    background-image:
      linear-gradient(to top, rgba(15,26,21,0.72) 0%, rgba(15,26,21,0.34) 28%, transparent 58%),
      linear-gradient(200deg, rgba(27,58,46,0.16) 0%, rgba(92,42,46,0.08) 48%, transparent 78%);
  }
  .header { box-shadow: none; }
  .hero__text { order: 1; padding: 28px 28px 64px; text-align: center; }
  .hero__text-inner { max-width: 560px; margin: 0 auto; }
  .hero__lead { margin-left: auto; margin-right: auto; }
  .hero__actions { justify-content: center; }

  .sobre__inner { grid-template-columns: 1fr; gap: 48px; }
  .sobre__frame { max-width: 380px; margin: 0 auto; }
  .sobre__text { text-align: center; }
  .sobre__text p { margin-left: auto; margin-right: auto; }
  .sobre__quote { text-align: left; }
  .sobre__tags { justify-content: center; }
  .sobre__signature { align-items: center; }

  .cards { grid-template-columns: repeat(2, 1fr); }
  .resultados__grid { grid-template-columns: repeat(2, 1fr); }
  .depoimentos__grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; gap: 20px; }
  .localizacao__inner { grid-template-columns: 1fr; gap: 48px; }
  .footer__grid { grid-template-columns: 1fr; gap: 32px; }
  .footer__brand p { max-width: none; }
}

@media (max-width: 760px) {
  .nav { display: none; }
  .nav-toggle { display: flex; }

  .cards { grid-template-columns: 1fr; }
  .resultados__grid { grid-template-columns: 1fr; max-width: 380px; margin: 0 auto; }
  .footer__bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .hero__media { height: 58vh; }
  .hero__text { padding: 22px 20px 56px; }
  .sobre, .servicos, .resultados, .depoimentos, .localizacao { padding: 90px 0; }
  .filosofia, .contato { padding: 80px 0; }
  .localizacao__map { height: 300px; }
  .wa-float { bottom: 18px; right: 18px; }
  .wa-float__bubble { max-width: 220px; white-space: normal; }
}
