/* ── VARIÁVEIS E RESET ── */
:root {
  --bege: #d4b896;
  --creme: #f5eee4;
  --marrom: #2e1a0e;
  --marrom-m: #6b3d26;
  --marrom-c: #a0623a;
  --mel: #d4a843;
  --mel2: #e8c87a;
  --texto: #3b2010;
  --branco: #fdfaf6;
  --px: clamp(20px, 5vw, 80px);
  --py: clamp(48px, 7vw, 80px);
  --mw: 1300px;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: "Jost", sans-serif;
  background: var(--branco);
  color: var(--texto);
  overflow-x: hidden;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(253, 250, 246, 0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(212, 184, 150, 0.25);
  transition: box-shadow 0.3s;
}
.nav-wrap {
  max-width: var(--mw);
  margin: 0 auto;
  padding: 14px var(--px);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.logo-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--mel), var(--mel2), #c8960a);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 12px rgba(212, 168, 67, 0.35);
}
.logo-icon svg {
  width: 22px;
  height: 22px;
  stroke: #2e1a0e;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.logo-txt {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.logo-txt span:first-child {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--mel);
}
.logo-txt span:last-child {
  font-family: "Playfair Display", serif;
  font-size: clamp(16px, 2vw, 20px);
  font-weight: 700;
  color: var(--marrom);
}
.nav-links {
  display: flex;
  gap: clamp(18px, 3vw, 36px);
  list-style: none;
}
.nav-links a {
  text-decoration: none;
  color: var(--marrom);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  position: relative;
  transition: color 0.3s;
  white-space: nowrap;
}
.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--mel);
  transition: width 0.3s;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--mel);
}
.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}
.nav-cta {
  background: var(--marrom) !important;
  color: var(--creme) !important;
  padding: 9px 22px !important;
  border-radius: 2px;
}
.nav-cta:hover {
  background: var(--marrom-m) !important;
}
.nav-cta::after {
  display: none !important;
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--marrom);
  display: block;
  transition: all 0.3s;
}

/* ── BOTÕES ── */
.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--mel), var(--mel2));
  color: var(--marrom);
  padding: clamp(12px, 1.5vh, 16px) clamp(22px, 3vw, 34px);
  border: none;
  font-family: "Jost", sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s;
  box-shadow: 0 4px 20px rgba(212, 168, 67, 0.3);
  white-space: nowrap;
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(212, 168, 67, 0.45);
}
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--creme);
  padding: clamp(12px, 1.5vh, 16px) clamp(22px, 3vw, 34px);
  border: 1px solid rgba(212, 168, 67, 0.4);
  font-family: "Jost", sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s;
  white-space: nowrap;
}
.btn-ghost:hover {
  border-color: var(--mel);
  color: var(--mel2);
  transform: translateY(-2px);
}
.btn-wapp {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #25d366;
  color: white;
  padding: clamp(13px, 2vh, 16px) clamp(22px, 3vw, 34px);
  border: none;
  font-family: "Jost", sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s;
  border-radius: 2px;
  white-space: nowrap;
}
.btn-wapp:hover {
  background: #1db954;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.3);
}
.btn-wapp svg {
  width: 20px;
  height: 20px;
  stroke: white;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ── SECTIONS BASE ── */
section {
  padding: var(--py) var(--px);
}
.wrap {
  max-width: var(--mw);
  margin: 0 auto;
}
.s-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--mel);
  margin-bottom: 12px;
}
.s-tag::before {
  content: "";
  width: 28px;
  height: 1.5px;
  background: linear-gradient(90deg, var(--mel), var(--mel2));
}
.s-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(26px, 3.5vw, 44px);
  font-weight: 700;
  color: var(--marrom);
  line-height: 1.15;
}
.s-sub {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(16px, 2vw, 20px);
  color: var(--marrom-m);
  line-height: 1.7;
}
.gold-bar {
  width: 48px;
  height: 2px;
  margin: 16px 0;
  background: linear-gradient(90deg, var(--mel), var(--mel2));
}

/* ── FOOTER ── */
footer {
  background: var(--marrom);
  padding: clamp(36px, 5vw, 52px) var(--px) clamp(20px, 3vw, 28px);
  border-top: 2px solid rgba(212, 168, 67, 0.2);
}
.foot-top {
  max-width: var(--mw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 190px), 1fr));
  gap: clamp(28px, 4vw, 48px);
  padding-bottom: clamp(28px, 4vw, 40px);
  border-bottom: 1px solid rgba(212, 184, 150, 0.1);
  margin-bottom: 22px;
}
.foot-brand p {
  font-size: 13px;
  color: rgba(212, 184, 150, 0.6);
  line-height: 1.8;
  margin-top: 16px;
  max-width: 260px;
}
.foot-col h4 {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--mel);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.foot-col h4::after {
  content: "";
  flex: 1;
  height: 1px;
  background: rgba(212, 168, 67, 0.2);
}
.foot-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.foot-col ul a {
  color: rgba(212, 184, 150, 0.55);
  text-decoration: none;
  font-size: 13px;
  transition: color 0.2s;
}
.foot-col ul a:hover {
  color: var(--mel2);
}
.foot-bot {
  max-width: var(--mw);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.foot-bot p {
  font-size: 12px;
  color: rgba(212, 184, 150, 0.3);
}

/* ── REVEAL ── */
.rev {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.rev.on {
  opacity: 1;
  transform: translateY(0);
}
.d1 {
  transition-delay: 0.1s;
}
.d2 {
  transition-delay: 0.18s;
}
.d3 {
  transition-delay: 0.26s;
}
.d4 {
  transition-delay: 0.34s;
}

/* ── BREADCRUMB ── */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
}
.breadcrumb a {
  color: rgba(212, 168, 67, 0.55);
  text-decoration: none;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: color 0.2s;
}
.breadcrumb a:hover {
  color: var(--mel);
}
.breadcrumb span {
  color: rgba(212, 168, 67, 0.25);
  font-size: 11px;
}
.breadcrumb span:last-child {
  color: var(--mel2);
}

/* ── LOGO IMAGEM ── */
.logo-icon-img {
  background: var(--creme) !important;
  box-shadow: 0 2px 12px rgba(212, 168, 67, 0.35) !important;
  overflow: hidden;
  border-radius: 50%;
  width: 58px !important;
  height: 58px !important;
  border: 2px solid rgba(212, 168, 67, 0.5);
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 4px;
}
.logo-icon-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
  display: block;
  border-radius: 0;
}

/* ── PATINHAS ANIMADAS (compartilhado) ── */
.paw-canvas {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 2;
}
.paw {
  position: absolute;
  opacity: 0;
  animation: pawStep 2.8s ease-out forwards;
}
@keyframes pawStep {
  0% {
    opacity: 0;
    transform: scale(0.3) rotate(var(--rot));
  }
  18% {
    opacity: 1;
    transform: scale(1.12) rotate(var(--rot));
  }
  55% {
    opacity: 0.85;
    transform: scale(1) rotate(var(--rot));
  }
  80% {
    opacity: 0.55;
    transform: scale(1) rotate(var(--rot));
  }
  100% {
    opacity: 0;
    transform: scale(0.95) rotate(var(--rot));
  }
}

/* ── RESPONSIVO BASE (todas as páginas) ── */
@media (max-width: 1024px) {
  .nav-links {
    display: none;
  }
  .hamburger {
    display: flex;
  }
}
@media (max-width: 768px) {
  .foot-top {
    grid-template-columns: 1fr 1fr;
  }
  .foot-bot {
    flex-direction: column;
    text-align: center;
    gap: 6px;
  }
  .logo-txt span:last-child {
    font-size: 16px;
  }
}
@media (max-width: 480px) {
  .foot-top {
    grid-template-columns: 1fr;
  }
  .foot-bot {
    gap: 4px;
  }
  .btn-gold,
  .btn-ghost,
  .btn-wapp {
    font-size: 11px;
    padding: 12px 18px;
  }
  .nav-wrap {
    padding: 12px var(--px);
  }
  .logo-icon-img {
    width: 46px !important;
    height: 46px !important;
  }
}
