/* ========================================
   PATA MANSA ADESTRAMENTO — STYLESHEET
   ======================================== */

/* --- 1. Variables & Reset --- */
:root {
  --verde-escuro: #2d3d1e;
  --verde-medio: #4a6030;
  --verde-sage: #7a8c5a;
  --creme: #f0ead6;
  --creme-escuro: #e0d8c0;
  --dourado: #c49a2a;
  --dourado-claro: #e0b84a;
  --texto-escuro: #1e2a12;
  --branco: #faf8f2;
  --sombra: rgba(30, 42, 18, 0.12);
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
  --max-w: 1200px;
  --nav-h: 72px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--texto-escuro);
  background: var(--branco);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul, ol { list-style: none; }

/* --- 2. Typography --- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.2;
  color: var(--texto-escuro);
  text-wrap: pretty;
}

h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); font-weight: 900; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); }
h3 { font-size: clamp(1.15rem, 2vw, 1.4rem); }

p { text-wrap: pretty; }

.section-subtitle {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 1.05rem;
  color: var(--verde-medio);
  letter-spacing: 0.03em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

/* --- 3. Layout Utilities --- */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section-padding {
  padding: 5rem 0;
}

/* --- Focus Visible --- */
:focus-visible {
  outline: 2px solid var(--dourado);
  outline-offset: 3px;
  border-radius: 2px;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 1.8rem;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  transition: background 0.3s, color 0.3s, box-shadow 0.3s, transform 0.15s;
}

.btn:active { transform: scale(0.97); }

.btn--primary {
  background: var(--creme);
  color: var(--verde-escuro);
}
.btn--primary:hover {
  background: #fff;
  box-shadow: 0 4px 20px rgba(240, 234, 214, 0.4);
}

.btn--outline {
  border: 1.5px solid var(--dourado);
  color: var(--dourado-claro);
  background: transparent;
}
.btn--outline:hover {
  background: rgba(196, 154, 42, 0.1);
}

.btn--whatsapp {
  background: var(--creme);
  color: var(--verde-escuro);
  font-weight: 600;
  padding: 1rem 1.6rem;
  border-radius: 8px;
}
.btn--whatsapp:hover {
  background: #fff;
  box-shadow: 0 6px 24px var(--sombra);
}

.btn--whatsapp-outline {
  border: 1.5px solid var(--creme-escuro);
  color: var(--creme);
  background: transparent;
  padding: 1rem 1.6rem;
  border-radius: 8px;
  font-weight: 600;
}
.btn--whatsapp-outline:hover {
  background: rgba(240, 234, 214, 0.08);
}

.btn__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  flex-shrink: 0;
}

/* --- 4. Navigation --- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: background 0.35s, box-shadow 0.35s;
  height: var(--nav-h);
}

.nav--scrolled {
  background: rgba(45, 61, 30, 0.97);
  box-shadow: 0 2px 20px rgba(0,0,0,0.15);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-h);
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.nav__logo img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
}

.nav__logo-text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--creme);
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav__link {
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(240, 234, 214, 0.8);
  transition: color 0.25s;
  position: relative;
}

.nav__link:hover,
.nav__link:focus { color: var(--creme); }

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--dourado);
  transition: width 0.3s;
}

.nav__link:hover::after { width: 100%; }

.nav__cta {
  padding: 0.6rem 1.2rem;
  background: var(--dourado);
  color: var(--verde-escuro);
  font-weight: 600;
  font-size: 0.85rem;
  border-radius: 5px;
  transition: background 0.25s, transform 0.15s;
}

.nav__cta:hover { background: var(--dourado-claro); }
.nav__cta:active { transform: scale(0.96); }

/* Hamburger */
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  padding: 4px 0;
  z-index: 1001;
}

.nav__hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--creme);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

.nav__hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav__hamburger.active span:nth-child(2) { opacity: 0; }
.nav__hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile menu */
.nav__mobile {
  position: fixed;
  inset: 0;
  background: rgba(45, 61, 30, 0.98);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
  z-index: 999;
}

.nav__mobile.active {
  opacity: 1;
  pointer-events: auto;
}

.nav__mobile a {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--creme);
  transition: color 0.2s;
}

.nav__mobile a:hover { color: var(--dourado); }

/* --- 5. Hero --- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--verde-escuro);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('assets/noise.png') repeat;
  opacity: 0.35;
  pointer-events: none;
  z-index: 1;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 60%, rgba(74, 96, 48, 0.2) 0%, transparent 60%),
    radial-gradient(ellipse at 85% 30%, rgba(196, 154, 42, 0.06) 0%, transparent 50%);
  z-index: 1;
  pointer-events: none;
}

.hero__inner-flex {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 4rem;
  padding-top: var(--nav-h);
}

.hero__content {
  flex: 1;
  min-width: 0;
}

.hero h1 {
  color: var(--creme);
  margin-bottom: 1.25rem;
}

.hero__subtitle {
  font-size: 1.15rem;
  color: rgba(240, 234, 214, 0.75);
  margin-bottom: 2rem;
  max-width: 560px;
}

.hero__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.2rem;
  background: rgba(240, 234, 214, 0.08);
  border: 1px solid rgba(196, 154, 42, 0.25);
  border-radius: 100px;
  font-size: 0.85rem;
  color: rgba(240, 234, 214, 0.7);
}

.hero__line {
  width: 60px;
  height: 1.5px;
  background: var(--dourado);
  margin-bottom: 2rem;
}

/* Polaroid */
.hero__polaroid {
  flex-shrink: 0;
}

.polaroid {
  background: #fff;
  padding: 12px 12px 40px 12px;
  border-radius: 3px;
  box-shadow:
    0 4px 24px rgba(0,0,0,0.25),
    0 1px 4px rgba(0,0,0,0.15);
  transform: rotate(3deg);
  transition: transform 0.4s ease;
  max-width: 300px;
}

.polaroid:hover {
  transform: rotate(0deg) scale(1.03);
}

.polaroid__frame {
  width: 100%;
  aspect-ratio: 5 / 6;
  overflow: hidden;
  background: var(--creme-escuro);
  border-radius: 2px;
}

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

.polaroid__caption {
  text-align: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--verde-escuro);
  margin-top: 10px;
  letter-spacing: 0.02em;
}

/* --- 6. Diferenciais --- */
.diferenciais {
  background: var(--creme);
}

.diferenciais__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.dif-card {
  background: var(--branco);
  border-radius: 8px;
  padding: 2rem 1.75rem;
  border-top: 3px solid var(--dourado);
  box-shadow: 0 2px 16px var(--sombra);
  transition: transform 0.3s, box-shadow 0.3s;
}

.dif-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px var(--sombra);
}

.dif-card__icon {
  width: 48px;
  height: 48px;
  background: var(--verde-escuro);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  font-size: 1.4rem;
  color: var(--creme);
}

.dif-card h3 { margin-bottom: 0.6rem; }

.dif-card p {
  font-size: 0.92rem;
  color: var(--verde-medio);
  line-height: 1.6;
}

/* --- 7. Como Funciona --- */
.como-funciona {
  background: var(--branco);
}

.como-funciona__header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}

.timeline::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 12.5%;
  width: 75%;
  height: 2px;
  background: linear-gradient(90deg, var(--dourado), var(--verde-sage), var(--dourado));
  opacity: 0.4;
}

.timeline__step {
  text-align: center;
  padding: 0 1rem;
  position: relative;
}

.timeline__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--verde-escuro);
  color: var(--dourado);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.3rem;
  margin-bottom: 1.25rem;
  position: relative;
  z-index: 2;
  border: 2px solid var(--dourado);
}

.timeline__step h3 {
  margin-bottom: 0.4rem;
  font-size: 1.05rem;
}

.timeline__step p {
  font-size: 0.88rem;
  color: var(--verde-sage);
  line-height: 1.55;
}

/* --- 8. Cases --- */
.cases {
  background: var(--creme);
}

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

.case-card {
  background: var(--branco);
  border-radius: 8px;
  padding: 1.75rem;
  box-shadow: 0 2px 12px var(--sombra);
  transition: transform 0.3s, box-shadow 0.3s;
}

.case-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 24px var(--sombra);
}

.case-card__badge {
  display: inline-block;
  padding: 0.3rem 0.75rem;
  background: rgba(196, 154, 42, 0.12);
  color: var(--dourado);
  font-size: 0.78rem;
  font-weight: 600;
  border-radius: 100px;
  margin-bottom: 0.75rem;
  letter-spacing: 0.02em;
}

.case-card__name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.case-card__desc {
  font-size: 0.9rem;
  color: var(--verde-medio);
  line-height: 1.6;
  margin-bottom: 0.75rem;
}

.case-card__result {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--verde-medio);
  padding: 0.35rem 0.7rem;
  background: rgba(74, 96, 48, 0.08);
  border-radius: 4px;
  margin-right: 0.5rem;
}

.case-card__city {
  font-size: 0.82rem;
  color: var(--verde-sage);
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}

.cases__note {
  margin-top: 2rem;
  font-size: 0.8rem;
  color: var(--verde-sage);
  text-align: center;
  font-style: italic;
}

/* --- 9. Instagram --- */
.instagram {
  background: var(--branco);
}

.instagram__header {
  text-align: center;
  margin-bottom: 2.5rem;
}

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

.insta-card {
  position: relative;
  aspect-ratio: 1;
  background: linear-gradient(135deg, var(--verde-escuro), var(--verde-medio));
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s;
}

.insta-card:hover { transform: scale(1.03); }

.insta-card__placeholder {
  color: rgba(240, 234, 214, 0.3);
}

.insta-card__overlay {
  position: absolute;
  inset: 0;
  background: rgba(45, 61, 30, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
  border-radius: 8px;
}

.insta-card:hover .insta-card__overlay { opacity: 1; }

.insta-card__overlay svg {
  width: 32px;
  height: 32px;
  color: #fff;
}

.instagram__btn {
  text-align: center;
  margin-top: 2.5rem;
}

/* --- Instagram CTA --- */
.insta-cta {
  background: var(--branco);
}

.insta-cta__link {
  display: inline-block;
  transition: transform 0.3s;
}

.insta-cta__link:hover {
  transform: scale(1.03);
}

.insta-cta__handle {
  position: relative;
  display: inline-block;
  padding: 0.1em 0.15em;
}

.insta-cta__circle {
  position: absolute;
  inset: -10px -18px;
  width: calc(100% + 36px);
  height: calc(100% + 20px);
  pointer-events: none;
}

.insta-cta__circle-path {
  stroke-dasharray: 500;
  stroke-dashoffset: 500;
}

.reveal.visible .insta-cta__circle-path {
  animation: drawCircle 1s ease forwards 0.3s;
}

.insta-cta__at {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  color: var(--verde-medio);
  letter-spacing: 0.01em;
}

@keyframes drawCircle {
  to { stroke-dashoffset: 0; }
}

/* --- 10. Depoimentos --- */
.depoimentos {
  background: var(--creme);
}

.depoimentos__header {
  text-align: center;
  margin-bottom: 3rem;
}

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

.depo-card {
  background: var(--branco);
  border-radius: 8px;
  padding: 2rem 1.75rem;
  box-shadow: 0 2px 12px var(--sombra);
}

.depo-card__stars {
  color: var(--dourado);
  font-size: 0.95rem;
  letter-spacing: 2px;
  margin-bottom: 1rem;
}

.depo-card__text {
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--texto-escuro);
  margin-bottom: 1.25rem;
  font-style: italic;
}

.depo-card__author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.depo-card__avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  color: #fff;
  flex-shrink: 0;
}

.depo-card__name {
  font-weight: 600;
  font-size: 0.9rem;
}

.depo-card__city {
  font-size: 0.8rem;
  color: var(--verde-sage);
}

/* --- 11. Área de Atendimento --- */
.area {
  background: var(--branco);
}

.area__header {
  text-align: center;
  margin-bottom: 3rem;
}

.area__cities {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.area__city {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: var(--creme);
  border-radius: 100px;
  font-weight: 500;
  font-size: 0.95rem;
  border: 1px solid var(--creme-escuro);
  transition: border-color 0.25s, box-shadow 0.25s;
}

.area__city:hover {
  border-color: var(--dourado);
  box-shadow: 0 2px 12px rgba(196, 154, 42, 0.15);
}

.area__city--consulte {
  opacity: 0.7;
  font-style: italic;
}

.area__text {
  text-align: center;
  font-size: 0.95rem;
  color: var(--verde-sage);
  max-width: 540px;
  margin: 0 auto;
}

/* --- 12. Contato CTA --- */
.contato {
  background: var(--verde-escuro);
  position: relative;
  overflow: hidden;
}

.contato::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('assets/noise.png') repeat;
  opacity: 0.3;
  pointer-events: none;
}

.contato__inner {
  position: relative;
  z-index: 2;
  text-align: center;
}

.contato h2 {
  color: var(--creme);
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.contato__buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.contato__note {
  font-size: 0.88rem;
  color: rgba(240, 234, 214, 0.55);
}

/* --- 13. Footer --- */
.footer {
  background: #1a2610;
  padding: 3rem 0 1.5rem;
  color: rgba(240, 234, 214, 0.5);
  font-size: 0.85rem;
}

.footer__inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(240, 234, 214, 0.08);
}

.footer__brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.footer__brand img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
}

.footer__brand-name {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--creme);
  font-size: 1rem;
}

.footer__tagline {
  font-size: 0.8rem;
  color: rgba(240, 234, 214, 0.4);
}

.footer__links {
  display: flex;
  gap: 1.5rem;
}

.footer__links a {
  color: rgba(240, 234, 214, 0.6);
  transition: color 0.25s;
  font-size: 0.85rem;
}

.footer__links a:hover { color: var(--creme); }

.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.78rem;
}

/* --- 14. WhatsApp Float --- */
.whatsapp-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  width: 56px;
  height: 56px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.35);
  z-index: 900;
  transition: transform 0.25s, box-shadow 0.25s;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45);
}

.whatsapp-float svg { width: 28px; height: 28px; fill: #fff; }

/* --- 15. Animations --- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered children */
.stagger > *:nth-child(1) { transition-delay: 0s; }
.stagger > *:nth-child(2) { transition-delay: 0.1s; }
.stagger > *:nth-child(3) { transition-delay: 0.2s; }
.stagger > *:nth-child(4) { transition-delay: 0.3s; }
.stagger > *:nth-child(5) { transition-delay: 0.4s; }
.stagger > *:nth-child(6) { transition-delay: 0.5s; }

/* Hero entrance */
@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-anim { opacity: 0; animation: heroFadeUp 0.6s ease forwards; }
.hero-anim:nth-child(1) { animation-delay: 0.1s; }
.hero-anim:nth-child(2) { animation-delay: 0.25s; }
.hero-anim:nth-child(3) { animation-delay: 0.4s; }
.hero-anim:nth-child(4) { animation-delay: 0.55s; }
.hero-anim:nth-child(5) { animation-delay: 0.7s; }

/* --- 16. Responsive --- */
@media (max-width: 960px) {
  .nav__links { display: none; }
  .nav__hamburger { display: flex; }

  .hero__inner-flex {
    flex-direction: column;
    gap: 2.5rem;
    text-align: center;
  }

  .hero__polaroid {
    order: -1;
  }

  .polaroid {
    max-width: 220px;
    margin: 0 auto;
    transform: rotate(2deg);
  }

  .hero__badge { justify-content: center; }

  .diferenciais__grid { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; }

  .timeline {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding-left: 2.5rem;
  }
  .timeline::before {
    top: 0;
    left: 16px;
    width: 2px;
    height: 100%;
  }
  .timeline__step {
    text-align: left;
    padding: 0;
  }
  .timeline__num {
    position: absolute;
    left: -2.5rem;
    top: 0;
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }

  .cases__grid { grid-template-columns: 1fr; }
  .instagram__grid { grid-template-columns: repeat(2, 1fr); }
  .depoimentos__grid { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; }
}

@media (max-width: 640px) {
  :root { --nav-h: 64px; }
  .section-padding { padding: 3.5rem 0; }
  h1 { font-size: 2rem; }

  .hero { min-height: 100svh; }
  .hero__buttons { flex-direction: column; }
  .hero__buttons .btn { width: 100%; justify-content: center; }

  .polaroid { max-width: 180px; padding: 8px 8px 28px 8px; }
  .polaroid__caption { font-size: 0.85rem; margin-top: 6px; }

  .instagram__grid { grid-template-columns: repeat(2, 1fr); }

  .contato__buttons { flex-direction: column; align-items: center; }
  .contato__buttons .btn--whatsapp,
  .contato__buttons .btn--whatsapp-outline { width: 100%; max-width: 340px; justify-content: center; }

  .footer__inner { flex-direction: column; align-items: center; text-align: center; }
  .footer__bottom { flex-direction: column; align-items: center; text-align: center; }
}

/* --- 17. Reduced Motion --- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
  .reveal, .hero-anim, .links-anim { opacity: 1; transform: none; animation: none; }
}

/* ========================================
   LINKS PAGE
   ======================================== */
.links-page {
  min-height: 100vh;
  background: var(--verde-escuro);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2.5rem 1.5rem;
  position: relative;
  overflow: hidden;
}

.links-page::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 1px 1px, rgba(196, 154, 42, 0.12) 1px, transparent 0);
  background-size: 24px 24px;
  pointer-events: none;
}

.links-page::after {
  content: '';
  position: absolute;
  inset: 0;
  background: url('assets/noise.png') repeat;
  opacity: 0.25;
  pointer-events: none;
}

.links-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.links__region {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.78rem;
  color: rgba(240, 234, 214, 0.5);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
}

.links__region::before,
.links__region::after {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--dourado);
  opacity: 0.5;
}

.links__logo {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  border: 3px solid var(--dourado);
  position: relative;
}

.links__logo img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
}

.links__logo-badge {
  position: absolute;
  bottom: -4px;
  right: -4px;
  width: 28px;
  height: 28px;
  background: var(--verde-escuro);
  border: 2px solid var(--dourado);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
}

.links__name {
  text-align: center;
}

.links__name h1 {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 900;
  color: var(--creme);
  margin-bottom: 0.15rem;
}

.links__name span {
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(240, 234, 214, 0.5);
  font-weight: 500;
}

.links__location {
  font-size: 0.88rem;
  color: rgba(240, 234, 214, 0.6);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.links__divider {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: rgba(240, 234, 214, 0.25);
  font-size: 0.9rem;
  width: 100%;
}

.links__divider::before,
.links__divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(240, 234, 214, 0.1);
}

.links__buttons {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.links__tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 0.5rem;
}

.links__tag {
  padding: 0.35rem 0.85rem;
  border: 1px solid rgba(196, 154, 42, 0.25);
  border-radius: 100px;
  font-size: 0.75rem;
  color: rgba(240, 234, 214, 0.5);
  letter-spacing: 0.02em;
}

/* Links page animations */
.links-anim {
  opacity: 0;
  animation: heroFadeUp 0.5s ease forwards;
}

.links-anim:nth-child(1) { animation-delay: 0.05s; }
.links-anim:nth-child(2) { animation-delay: 0.15s; }
.links-anim:nth-child(3) { animation-delay: 0.25s; }
.links-anim:nth-child(4) { animation-delay: 0.35s; }
.links-anim:nth-child(5) { animation-delay: 0.45s; }
.links-anim:nth-child(6) { animation-delay: 0.55s; }
.links-anim:nth-child(7) { animation-delay: 0.65s; }
.links-anim:nth-child(8) { animation-delay: 0.75s; }
