/* ================================================================
   Ovos Caipira do Tojal — Landing Page
   Paleta: Vermelho Terra · Creme · Verde Rural · Castanho Palha
   Tipografia: Playfair Display (títulos) · Poppins (textos)
   ================================================================ */

:root {
  /* ── Paleta conforme especificação ── */
  /* Vermelho Terra — títulos e botões */
  --red:        #8B1E1E;
  --red-dark:   #6E1616;
  --red-light:  #FBEEEE;
  --red-mid:    #A52828;

  /* Creme — fundo principal */
  --cream:      #FAF3E0;
  --cream-dark: #F0E5C8;
  --cream-mid:  #F5EDD0;
  --white:      #FFFDF7;

  /* Verde Rural — ícones, destaques */
  --green:      #3D6B35;
  --green-dk:   #2D5228;
  --green-lt:   #EBF2E9;
  --green-mid:  #4E7D45;

  /* Castanho Palha — separadores, detalhes */
  --straw:      #B8956A;
  --straw-lt:   #E8D5B4;
  --straw-dark: #8A6A40;
  --brown:      #5C3D1E;
  --brown-dk:   #3A2510;

  /* WhatsApp */
  --wa:         #25d366;
  --wa-dk:      #1cb558;

  /* Texto */
  --text:       #2A1A08;
  --text-2:     #5C3D1E;
  --text-muted: #8A6A50;

  /* Sombras com tom quente */
  --s0: 0 1px 4px  rgba(42,26,8,.05);
  --s1: 0 4px 16px rgba(42,26,8,.08);
  --s2: 0 8px 32px rgba(42,26,8,.1);
  --s3: 0 20px 60px rgba(42,26,8,.12);
  --swa: 0 8px 28px rgba(37,211,102,.38);

  /* Radii */
  --r-sm: 8px;
  --r:    14px;
  --r-lg: 20px;
  --r-xl: 28px;
  --r-f:  9999px;

  /* Tipografia conforme spec */
  --font:    'Poppins', system-ui, sans-serif;
  --font-hd: 'Playfair Display', Georgia, serif;

  /* Layout */
  --hh:  76px;
  --max: 1160px;

  /* Animação */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --t:    0.3s var(--ease);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: var(--hh); }
body {
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a   { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }

.container {
  width: 100%;
  max-width: min(var(--max), 100%);
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 1.5rem);
  min-width: 0;
}

/* ── Scroll Reveal ── */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.65s var(--ease), transform 0.65s var(--ease);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal--d1 { transition-delay: 0.1s; }
.reveal--d2 { transition-delay: 0.2s; }
.reveal--d3 { transition-delay: 0.3s; }

/* ── Botões ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font);
  font-weight: 600;
  border-radius: var(--r-f);
  border: 2px solid transparent;
  cursor: pointer;
  white-space: nowrap;
  transition: transform .2s var(--ease), box-shadow .2s, background .2s, border-color .2s, color .2s;
  position: relative;
  overflow: hidden;
}
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(255,255,255,.1), transparent);
  opacity: 0;
  transition: opacity .2s;
}
.btn:hover { transform: translateY(-2px); }
.btn:hover::after { opacity: 1; }
.btn:active { transform: scale(.98); }
.btn__icon { width: 1.1rem; height: 1.1rem; flex-shrink: 0; }

.btn--sm  { padding: .6rem 1.2rem;   font-size: .875rem; }
.btn--md  { padding: .85rem 1.65rem; font-size: .9375rem; }
.btn--lg  { padding: 1rem 2rem;      font-size: 1rem; }
.btn--xl  { padding: 1.1rem 2.4rem;  font-size: 1.0625rem; }

/* Botão principal — Vermelho Terra conforme spec */
.btn--primary { background: var(--red); color: #fff; border-color: var(--red); box-shadow: 0 4px 18px rgba(139,30,30,.28); }
.btn--primary:hover { background: var(--red-dark); border-color: var(--red-dark); }

/* Botão hero especial */
.btn--hero { background: var(--wa); color: #fff; border-color: var(--wa); box-shadow: var(--swa); font-size: 1.125rem; padding: 1.1rem 2.4rem; }
.btn--hero:hover { background: var(--wa-dk); border-color: var(--wa-dk); }

.btn--whatsapp { background: var(--wa); color: #fff; border-color: var(--wa); box-shadow: var(--swa); }
.btn--whatsapp:hover { background: var(--wa-dk); border-color: var(--wa-dk); }

.btn--outline { background: transparent; color: var(--red); border-color: var(--red); }
.btn--outline:hover { background: var(--red-light); }

.btn--outline-white { background: transparent; color: #fff; border-color: rgba(255,255,255,.7); }
.btn--outline-white:hover { background: rgba(255,255,255,.12); border-color: #fff; }

/* ══════════════════════════════════════════
   HEADER
══════════════════════════════════════════ */
.header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 200;
  height: var(--hh);
  transition: background .3s, border-color .3s, box-shadow .3s;
  border-bottom: 1px solid transparent;
}
.header.scrolled {
  background: rgba(255,253,247,.94);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-color: var(--straw-lt);
  box-shadow: var(--s0);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 1rem;
}

/* Logo */
.logo { display: flex; align-items: center; gap: .625rem; flex-shrink: 0; }
.logo__img { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; border: 2px solid var(--green); }
.logo__text { display: flex; flex-direction: column; line-height: 1.15; }
.logo__name  { font-size: .68rem; font-weight: 500; color: var(--text-muted); letter-spacing: .04em; text-transform: uppercase; }
.logo__brand { font-family: var(--font-hd); font-size: 1.1rem; font-weight: 700; color: var(--red); letter-spacing: -.01em; }
.logo--light .logo__name  { color: rgba(255,253,247,.75); }
.logo--light .logo__brand { color: #fff; }

/* Nav */
.nav__list { display: flex; align-items: center; gap: 1.75rem; }
.nav__link {
  font-size: .875rem;
  font-weight: 600;
  color: var(--text-2);
  position: relative;
  padding-bottom: 2px;
  transition: color var(--t);
}
.nav__link::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 2px;
  background: var(--red);
  border-radius: 2px;
  transition: width var(--t);
}
.nav__link:hover, .nav__link.active { color: var(--red); }
.nav__link:hover::after, .nav__link.active::after { width: 100%; }

.header__cta { margin-left: .5rem; flex-shrink: 0; }

/* Botão WhatsApp só no menu mobile */
.nav__cta-mobile { display: none; width: 100%; margin-top: 1rem; white-space: normal; text-align: center; }

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: .5rem;
  z-index: 210;
}
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--text); border-radius: 2px; transition: var(--t); }

/* ══════════════════════════════════════════
   HERO
   Fundo: banner.png com overlay suave (conforme spec)
══════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
/* Overlay suave conforme spec — preserva leitura sem esconder demais a imagem */
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(250,243,224,.88) 0%,
    rgba(250,243,224,.82) 40%,
    rgba(250,243,224,.60) 70%,
    rgba(250,243,224,.35) 100%
  );
}

.hero__inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  min-height: calc(100svh - var(--hh));
  padding: calc(var(--hh) + 2rem) 0 4rem;
}

.hero__content {
  max-width: 600px;
  width: 100%;
  min-width: 0;
  overflow-wrap: break-word;
}

.hero__pretag {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .35rem .9rem;
  background: rgba(255,253,247,.9);
  border: 1px solid var(--straw-lt);
  border-radius: var(--r-f);
  font-size: .8rem;
  font-weight: 600;
  color: var(--straw-dark);
  margin-bottom: 1.5rem;
  backdrop-filter: blur(8px);
}

/* Título Playfair Display conforme spec */
.hero__title {
  font-family: var(--font-hd);
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 900;
  line-height: 1.0;
  letter-spacing: -.02em;
  color: var(--text);
  margin-bottom: 1rem;
}
.hero__title span { color: var(--red); font-style: italic; }

/* Subtítulo conforme spec */
.hero__subtitle {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 600;
  color: var(--green-dk);
  margin-bottom: .75rem;
  font-style: italic;
  overflow-wrap: break-word;
  hyphens: auto;
}

/* Texto conforme spec */
.hero__text {
  font-size: 1.0625rem;
  color: var(--text-2);
  line-height: 1.7;
  margin-bottom: 2.25rem;
  max-width: 480px;
  overflow-wrap: break-word;
}

/* ── Secções comuns ── */
.section { padding: 6rem 0; }

.section__head { text-align: center; margin-bottom: 3.5rem; }
.section__head--left { text-align: left; }

.section__tag {
  display: inline-block;
  padding: .35rem .9rem;
  background: var(--green-lt);
  color: var(--green-dk);
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .09em;
  border-radius: var(--r-f);
  margin-bottom: .875rem;
  border: 1px solid rgba(61,107,53,.2);
}
.section__tag--light {
  background: rgba(255,253,247,.2);
  color: var(--cream);
  border-color: rgba(255,253,247,.3);
}

/* Títulos Playfair Display conforme spec */
.section__title {
  font-family: var(--font-hd);
  font-size: clamp(1.875rem, 4vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -.015em;
  color: var(--red);
  line-height: 1.15;
}
.section__title--left { text-align: left; }

.section__sub {
  color: var(--text-muted);
  font-size: 1.0625rem;
  margin-top: .75rem;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

/* ══════════════════════════════════════════
   BENEFÍCIOS
   Verde Rural para ícones conforme spec
══════════════════════════════════════════ */
.benefits { background: var(--white); }

.benefits__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.ben-card {
  background: var(--cream);
  border: 1.5px solid var(--straw-lt);
  border-radius: var(--r-lg);
  padding: 2rem 1.625rem;
  transition: transform var(--t), box-shadow var(--t), border-color var(--t);
}
.ben-card:hover { transform: translateY(-5px); box-shadow: var(--s2); border-color: var(--green-mid); }

.ben-card__icon {
  width: 52px;
  height: 52px;
  border-radius: var(--r);
  /* Verde Rural conforme spec */
  background: var(--green-lt);
  color: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}
.ben-card__icon svg { width: 26px; height: 26px; }

.ben-card h3 {
  font-family: var(--font-hd);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--red);
  margin-bottom: .5rem;
}
.ben-card p { font-size: .9375rem; color: var(--text-muted); line-height: 1.65; }

/* ══════════════════════════════════════════
   PROCESSO — 7 PASSOS
══════════════════════════════════════════ */
.process {
  background: linear-gradient(180deg, var(--cream) 0%, var(--cream-dark) 100%);
  border-top: 1px solid var(--straw-lt);
  border-bottom: 1px solid var(--straw-lt);
}

.process__steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-bottom: 3.5rem;
}

.proc-step {
  background: var(--white);
  border: 1.5px solid var(--straw-lt);
  border-radius: var(--r-lg);
  padding: 1.75rem 1.375rem;
  text-align: center;
  box-shadow: var(--s1);
  transition: transform var(--t), box-shadow var(--t), border-color var(--t);
  position: relative;
}
.proc-step:hover { transform: translateY(-4px); box-shadow: var(--s2); border-color: var(--red); }

.proc-step__num {
  font-family: var(--font-hd);
  font-size: 2.25rem;
  font-weight: 900;
  color: var(--straw-lt);
  line-height: 1;
  margin-bottom: .5rem;
}

.proc-step__icon {
  width: 52px;
  height: 52px;
  margin: 0 auto 1.125rem;
  background: var(--red-light);
  color: var(--red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.proc-step__icon svg { width: 24px; height: 24px; }

.proc-step h3 {
  font-family: var(--font-hd);
  font-size: .9375rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: .4rem;
  line-height: 1.3;
}
.proc-step p { font-size: .8125rem; color: var(--text-muted); line-height: 1.6; }
.proc-step strong { color: var(--green-dk); }

.process__cta { text-align: center; }

/* ══════════════════════════════════════════
   SOBRE
   Logo circular + texto + responsável
══════════════════════════════════════════ */
.about { background: var(--white); }

.about__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about__media { display: flex; justify-content: center; }

.about__logo-wrap {
  width: clamp(280px, 40vw, 420px);
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: var(--s3);
  border: 6px solid var(--green);
  outline: 3px solid var(--straw-lt);
  outline-offset: 6px;
}
.about__logo { width: 100%; height: 100%; object-fit: cover; }

.about__content .section__tag { margin-bottom: 1rem; }
.about__content .section__title { margin-bottom: 1.25rem; }
.about__content p { color: var(--text-2); line-height: 1.75; margin-bottom: 1rem; }

.about__person {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background: var(--cream);
  border: 1.5px solid var(--straw-lt);
  border-radius: var(--r-lg);
  margin: 1.5rem 0;
}
.about__person-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--red);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-hd);
  font-size: 1.25rem;
  font-weight: 800;
  flex-shrink: 0;
}
.about__person strong { display: block; font-size: 1rem; font-weight: 700; color: var(--text); }
.about__person span   { display: block; font-size: .8125rem; color: var(--text-muted); }

/* ══════════════════════════════════════════
   CONFIANÇA
   Fundo verde rural com lista conforme spec
══════════════════════════════════════════ */
.trust {
  background: linear-gradient(135deg, var(--green-dk) 0%, var(--green) 60%, #558048 100%);
  padding: 5.5rem 0;
  position: relative;
  overflow: hidden;
}
.trust::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 80% 50%, rgba(255,253,247,.06), transparent);
  pointer-events: none;
}

.trust__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.trust__title {
  font-family: var(--font-hd);
  font-size: clamp(1.875rem, 3.5vw, 2.5rem);
  font-weight: 800;
  color: var(--cream);
  letter-spacing: -.02em;
  margin-bottom: 2rem;
  line-height: 1.2;
}

.trust__list { display: flex; flex-direction: column; gap: 1rem; }
.trust__list li {
  display: flex;
  align-items: center;
  gap: .875rem;
  font-size: 1.0625rem;
  font-weight: 600;
  color: rgba(255,253,247,.92);
}
.trust__list li svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--straw-lt);
  stroke: var(--straw-lt);
}

.trust__img {
  border-radius: var(--r-xl);
  box-shadow: var(--s3);
  border: 3px solid rgba(255,253,247,.2);
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

/* ══════════════════════════════════════════
   CONTACTO
══════════════════════════════════════════ */
.contact { background: var(--cream); }

.contact__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.875rem;
  margin-bottom: 2rem;
}

.contact-card {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 0.75rem;
  row-gap: 0.125rem;
  align-items: start;
  padding: 0.875rem 1rem;
  background: var(--white);
  border: 1.5px solid var(--straw-lt);
  border-radius: var(--r);
  transition: transform var(--t), box-shadow var(--t), border-color var(--t);
}
a.contact-card:hover { transform: translateY(-3px); box-shadow: var(--s1); border-color: var(--straw); }
.contact-card--wa:hover { border-color: var(--wa); }

.contact-card__icon {
  grid-row: 1 / span 3;
  width: 36px;
  height: 36px;
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0;
  flex-shrink: 0;
}
.contact-card__icon svg { width: 18px; height: 18px; }

.contact-card--wa .contact-card__icon { background: #e8faf0; color: var(--wa); }
.contact-card__icon--loc   { background: var(--red-light); color: var(--red); }
.contact-card__icon--phone { background: var(--cream-dark); color: var(--brown); }
.contact-card__icon--pay   { background: var(--green-lt);   color: var(--green); }

.contact-card__label {
  grid-column: 2;
  font-size: .625rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .07em;
  color: var(--text-muted);
  line-height: 1.2;
}
.contact-card__value {
  grid-column: 2;
  font-family: var(--font-hd);
  font-size: .875rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.3;
}
.contact-card__hint {
  grid-column: 2;
  font-size: .75rem;
  color: var(--text-muted);
  margin-top: 0;
  line-height: 1.4;
}

.contact__cta { text-align: center; }

/* ══════════════════════════════════════════
   RODAPÉ
   Logo circular + texto conforme spec
══════════════════════════════════════════ */
.footer { background: var(--brown-dk); color: rgba(255,253,247,.85); }

.footer__top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  padding: clamp(2.5rem, 6vw, 4rem) 0 clamp(2rem, 4vw, 3rem);
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.footer__brand {
  min-width: 0;
}

.footer__logo {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--green-mid);
  margin-bottom: 1rem;
}

/* Texto rodapé conforme spec */
.footer__tagline {
  font-family: var(--font-hd);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: .25rem;
}
.footer__sub {
  font-size: .8125rem;
  color: rgba(255,253,247,.55);
  font-style: italic;
}

.footer__col h4 {
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .07em;
  color: var(--straw-lt);
  margin-bottom: 1.125rem;
}
.footer__col { min-width: 0; }
.footer__col ul { display: flex; flex-direction: column; gap: .625rem; }
.footer__col li,
.footer__col a  {
  font-size: .875rem;
  color: rgba(255,253,247,.6);
  transition: color var(--t);
  overflow-wrap: anywhere;
  word-break: break-word;
}
.footer__col a:hover { color: var(--cream); }

.footer__bottom { padding: 1.5rem 0; }
.footer__bottom-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: .625rem;
}
.footer__bottom p {
  font-size: .8125rem;
  color: rgba(255,253,247,.45);
  max-width: 100%;
  overflow-wrap: anywhere;
  line-height: 1.5;
}

/* ══════════════════════════════════════════
   BOTÃO WHATSAPP FIXO
   Conforme spec: canto inferior direito
══════════════════════════════════════════ */
.wa-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 300;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--wa);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--swa);
  transition: transform .2s var(--ease);
}
.wa-float:hover  { transform: scale(1.1); }
.wa-float:active { transform: scale(.95); }

.wa-float__pulse {
  position: absolute;
  inset: -5px;
  border-radius: 50%;
  border: 2px solid var(--wa);
  animation: waPulse 2.2s ease-out infinite;
  pointer-events: none;
}
@keyframes waPulse {
  0%   { transform: scale(1);   opacity: .6; }
  100% { transform: scale(1.5); opacity: 0; }
}

/* ══════════════════════════════════════════
   RESPONSIVO — Mobile First
══════════════════════════════════════════ */

/* Tablet grande */
@media (max-width: 1100px) {
  .process__steps { grid-template-columns: repeat(3, 1fr); }
  .contact__grid  { grid-template-columns: repeat(2, 1fr); }

  .footer__top {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .footer__brand {
    grid-column: 1 / -1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}

/* Tablet */
@media (max-width: 992px) {
  .nav-toggle { display: flex; }

  .nav {
    position: fixed;
    inset: 0;
    top: var(--hh);
    display: flex;
    flex-direction: column;
    align-items: stretch;
    background: var(--white);
    padding: 1.25rem clamp(1rem, 4vw, 1.5rem) 2rem;
    transform: translateX(100%);
    transition: transform var(--t);
    overflow-y: auto;
    z-index: 190;
  }
  .nav.open { transform: translateX(0); }

  .nav__list { flex-direction: column; gap: 0; width: 100%; }
  .nav__link {
    display: block;
    padding: 1rem 0;
    font-size: 1.0625rem;
    border-bottom: 1px solid var(--straw-lt);
  }
  .nav__link::after { display: none; }

  .header__cta { display: none; }
  .nav__cta-mobile { display: inline-flex; }

  .nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
  .nav-toggle.open span:nth-child(2) { opacity: 0; }
  .nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

  /* Hero: imagem em cima, texto em baixo */
  .hero {
    min-height: auto;
    display: flex;
    flex-direction: column;
    background: var(--cream);
    width: 100%;
    max-width: 100%;
    overflow-x: clip;
  }

  .hero__bg {
    position: relative;
    inset: auto;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    flex-shrink: 0;
    aspect-ratio: 16 / 10;
    max-height: min(52vw, 340px);
    order: -1;
    overflow: hidden;
  }

  .hero__bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
  }

  .hero__overlay { display: none; }

  .hero__inner {
    min-height: auto;
    min-width: 0;
    width: 100%;
    max-width: 100%;
    padding: 1.75rem 0 2.5rem;
    align-items: stretch;
    box-sizing: border-box;
  }

  .hero__content { max-width: 100%; }

  .hero__title {
    font-size: clamp(2rem, 8vw, 3rem);
    line-height: 1.05;
  }

  .hero__subtitle { font-size: 1.0625rem; }

  .hero__text {
    max-width: 100%;
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }

  .btn--hero {
    display: flex;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    white-space: normal;
    text-align: center;
    font-size: 1rem;
    padding: 1rem 1.25rem;
  }

  .benefits__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .about__layout  { grid-template-columns: 1fr; gap: 2.5rem; }
  .about__media   { justify-content: center; }
  .about__logo-wrap { width: min(300px, 75vw); }
  .trust__inner   { grid-template-columns: 1fr; gap: 2rem; }
  .trust__img     { max-width: 420px; margin: 0 auto; width: 100%; }
}

@media (max-width: 768px) {
  .section { padding: clamp(3rem, 8vw, 4rem) 0; }

  .process__steps { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .trust { padding: 3rem 0; }

  .footer__top {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding-top: 2.5rem;
    padding-bottom: 2rem;
  }

  .footer__col {
    text-align: center;
    padding-top: .5rem;
    border-top: 1px solid rgba(255,255,255,.06);
  }

  .footer__col:first-of-type { border-top: none; padding-top: 0; }

  .footer__logo {
    width: 80px;
    height: 80px;
    margin-left: auto;
    margin-right: auto;
  }

  .footer__tagline { font-size: 1.125rem; }
  .footer__sub { font-size: .75rem; line-height: 1.6; }

  /* Espaço para botão WhatsApp flutuante */
  body { padding-bottom: 5.5rem; }

  .wa-float {
    width: 56px;
    height: 56px;
    bottom: 1rem;
    right: 1rem;
  }
}

@media (max-width: 540px) {
  .benefits__grid { grid-template-columns: 1fr; }
  .process__steps { grid-template-columns: 1fr; }
  .contact__grid  { grid-template-columns: 1fr; }

  .hero__bg {
    aspect-ratio: 4 / 3;
    max-height: 260px;
  }

  .hero__pretag {
    font-size: .72rem;
    padding: .3rem .75rem;
    max-width: 100%;
    white-space: normal;
    text-align: center;
    justify-content: center;
  }

  .hero__title {
    font-size: clamp(1.75rem, 8.5vw, 2.35rem);
    overflow-wrap: break-word;
  }

  .hero__subtitle {
    font-size: 1rem;
    line-height: 1.45;
  }

  .hero__text {
    font-size: .9375rem;
    line-height: 1.65;
  }

  .logo__text { display: none; }

  .footer__bottom p { font-size: .75rem; }
}

/* iPhone XR e telemóveis ~414px */
@media (max-width: 430px) {
  .container {
    padding-left: 1.125rem;
    padding-right: 1.125rem;
  }

  .hero__inner {
    padding-top: 1.5rem;
    padding-bottom: 2rem;
  }

  .btn--hero {
    font-size: .9375rem;
    padding: .95rem 1rem;
    gap: .4rem;
  }
}

@media (max-width: 380px) {
  .btn--hero,
  .btn--xl,
  .btn--lg {
    font-size: .9375rem;
    padding: .9rem 1rem;
  }
}

/* Desktop: footer em linha só em ecrãs largos */
@media (min-width: 1101px) {
  .footer__bottom-inner {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    text-align: left;
  }
  .footer__bottom-inner p:first-child { text-align: left; }
  .footer__bottom-inner p:last-child  { text-align: right; flex-shrink: 0; }
}
