/* ================================================================
   Calce Bem Multimarcas — Premium Mobile-First Stylesheet
   Palette: Black #0C0C0C | Gold #C9A84C | Off-white #F2EFE8
   Fonts: Cormorant Garamond · Inter
   Assets: assets/icons/*.svg · assets/logos/*.svg · assets/img/*.webp
   ================================================================ */

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
img, svg { display: block; max-width: 100%; }
address { font-style: normal; }
a { text-decoration: none; transition: color .25s, opacity .25s; }
button { cursor: pointer; border: none; background: none; font: inherit; }
ul { list-style: none; }

/* ── DESIGN TOKENS ── */
:root {
  --ink:        #0C0C0C;
  --ink2:       #141414;
  --ink3:       #1C1C1C;
  --ink4:       #252525;
  --gold:       #C9A84C;
  --gold-lt:    #DFC06E;
  --gold-dk:    #A07830;
  --cream:      #F2EFE8;
  --muted:      rgba(242,239,232,.55);
  --border:     rgba(201,168,76,.14);
  --border-lt:  rgba(201,168,76,.3);
  --r:          6px;
  --r-lg:       14px;
  --max:        1160px;
  --serif:      'Cormorant Garamond', Georgia, serif;
  --sans:       'Inter', system-ui, sans-serif;
  --phone-font: 'Times New Roman', 'Big Caslon', 'Book Antiqua', Georgia, serif;
  --ease:       cubic-bezier(.25,.46,.45,.94);
}

/* ── BASE ── */
html { scroll-behavior: smooth; font-size: 16px; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--sans);
  background: var(--ink);
  color: var(--cream);
  line-height: 1.7;
  overflow-x: hidden;
}

/* ── TYPOGRAPHY ── */
h1, h2, h3 { font-family: var(--serif); line-height: 1.15; color: var(--cream); }
h1 { font-size: clamp(3rem, 8vw, 5.8rem); font-weight: 600; }
h2 { font-size: clamp(2.1rem, 5vw, 3.3rem); font-weight: 600; }
h3 { font-size: clamp(1.25rem, 3vw, 1.5rem); font-weight: 600; }
em  { font-style: italic; color: var(--gold); }
strong { color: var(--cream); font-weight: 600; }
p  { color: var(--muted); font-size: .95rem; font-weight: 300; }

/* ── LAYOUT ── */
.container {
  width: min(var(--max), 100%);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 5vw, 2.5rem);
}

.section-header { max-width: 640px; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.section-title  { margin-top: .5rem; }

.label-tag {
  font-family: var(--sans);
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: .6rem;
}
.label-tag::before {
  content: '';
  display: inline-block;
  width: 24px; height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}
.label-tag--light { color: var(--gold-lt); }
.label-tag--light::before { background: var(--gold-lt); }

.inline-link { color: var(--gold); border-bottom: 1px solid rgba(201,168,76,.3); padding-bottom: 1px; }
.inline-link:hover { color: var(--gold-lt); }

/* ── ICON IMAGES (SVG via <img>) ── */
/* White icon — used on dark/colored backgrounds */
.btn-icon--white { filter: brightness(0) invert(1); }

/* Dark icon — used on light backgrounds (cream/white) */
.btn-icon--dark  { filter: brightness(0); }

/* Gold icon — used as accent */
.icon-gold { filter: brightness(0) saturate(100%) invert(72%) sepia(33%) saturate(740%) hue-rotate(8deg) brightness(98%) contrast(88%); }

/* Info section icons — gold tint */
.icon-svg {
  filter: brightness(0) saturate(100%) invert(72%) sepia(33%) saturate(740%) hue-rotate(8deg) brightness(98%) contrast(88%);
  transition: filter .25s, transform .25s;
}

/* Social icons in contact section */
.social-icon { filter: brightness(0) invert(1); transition: filter .25s, transform .25s; }
.social-link--ig:hover .social-icon { filter: brightness(0) saturate(100%) invert(60%) sepia(40%) saturate(600%) hue-rotate(280deg) brightness(110%); }
.social-link--fb:hover .social-icon { filter: brightness(0) saturate(100%) invert(55%) sepia(60%) saturate(500%) hue-rotate(190deg) brightness(110%); }

/* Footer social icons — amber/gold default, bright gold on hover */
.ft-icon {
  filter: brightness(0) saturate(100%) invert(75%) sepia(80%) saturate(1000%) hue-rotate(2deg) brightness(105%) contrast(103%);
  opacity: .75;
  transition: opacity .25s, transform .25s, filter .25s;
}
.ft-social-link:hover .ft-icon {
  opacity: 1;
  filter: brightness(0) saturate(100%) invert(85%) sepia(90%) saturate(900%) hue-rotate(3deg) brightness(108%) contrast(100%);
  transform: scale(1.1);
}

/* Nav icon */
.nav-icon {
  filter: brightness(0) saturate(100%) invert(72%) sepia(33%) saturate(740%) hue-rotate(8deg) brightness(98%) contrast(88%);
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  border-radius: var(--r);
  font-family: var(--sans);
  font-weight: 500;
  font-size: .88rem;
  letter-spacing: .06em;
  padding: .75rem 1.5rem;
  border: 1.5px solid transparent;
  transition: transform .2s var(--ease), box-shadow .2s var(--ease),
              background .2s, color .2s, border-color .2s;
  cursor: pointer;
  line-height: 1.3;
  white-space: nowrap;
}
.btn:hover  { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-lg   { padding: .9rem 2rem; font-size: .92rem; }
.btn-xl   { padding: 1.1rem 2.5rem; font-size: 1rem; }
.btn-full { width: 100%; }

.btn-gold {
  background: var(--gold); color: var(--ink); border-color: var(--gold);
  font-weight: 600;
}
.btn-gold:hover {
  background: var(--gold-lt); border-color: var(--gold-lt); color: var(--ink);
  box-shadow: 0 8px 28px rgba(201,168,76,.35);
}

.btn-ghost {
  background: transparent; color: var(--cream);
  border-color: rgba(242,239,232,.3);
}
.btn-ghost:hover { border-color: var(--cream); background: rgba(242,239,232,.06); }

.btn-white {
  background: var(--cream); color: var(--ink); border-color: var(--cream);
  font-weight: 600;
}
.btn-white:hover {
  background: #fff; border-color: #fff;
  box-shadow: 0 8px 28px rgba(242,239,232,.2);
}

.btn-wa-sm {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  margin-top: .65rem;
  background: #25D366; color: #fff; border-color: #25D366;
  font-size: .82rem; padding: .55rem 1.1rem;
  border-radius: var(--r); font-weight: 500; border: 1.5px solid transparent;
  transition: background .2s, transform .2s;
}
.btn-wa-sm:hover { background: #1ebe5a; transform: translateY(-2px); color: #fff; }

/* ── CARD CTA BUTTON (all three cards) ── */
.btn-card-cta {
  display: block;
  width: 100%;
  text-align: center;
  white-space: normal;
  line-height: 1.5;
  padding: .75rem .5rem .65rem;
  font-family: var(--sans);
  font-size: .82rem;
  font-weight: 500;
  letter-spacing: .02em;
  color: #3B82F6;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(59,130,246,.25);
  border-radius: 0;
  cursor: pointer;
  box-shadow: none;
  transition: color .2s, border-color .2s, filter .2s;
}
.btn-card-cta:hover {
  color: #60A5FA;
  border-color: rgba(96,165,250,.55);
  filter: brightness(1.15);
  transform: none;
  box-shadow: none;
}
.btn-card-cta:active { filter: brightness(.95); }

.text-link {
  display: inline-block; margin-top: .6rem; color: var(--gold);
  font-size: .85rem; font-weight: 500;
  border-bottom: 1px solid rgba(201,168,76,.3); padding-bottom: 1px;
}
.text-link:hover { color: var(--gold-lt); border-color: var(--gold-lt); }

/* ── HEADER ── */
.site-header {
  position: fixed;
  inset-block-start: 0; inset-inline: 0;
  z-index: 900;
  background: rgba(12,12,12,.88);
  backdrop-filter: blur(16px) saturate(150%);
  -webkit-backdrop-filter: blur(16px) saturate(150%);
  border-bottom: 1px solid var(--border);
  transition: background .3s, border-color .3s;
}
.site-header.scrolled { background: rgba(12,12,12,.97); border-color: var(--border-lt); }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-block: .85rem;
  width: min(var(--max), 100%);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 5vw, 2.5rem);
}

.logo-link  { display: inline-flex; }
.logo-lockup { display: flex; align-items: center; gap: .65rem; }
.logo-mark  { width: 36px; height: 36px; flex-shrink: 0; }
.logo-name  { font-family: var(--serif); font-size: 1.1rem; font-weight: 700; color: var(--gold); line-height: 1; letter-spacing: .02em; display: block; }
.logo-sub   { font-size: .58rem; letter-spacing: .18em; text-transform: uppercase; color: rgba(242,239,232,.4); display: block; margin-top: 2px; }

.main-nav ul { display: flex; align-items: center; gap: 1.75rem; }
.main-nav a {
  font-size: .78rem; font-weight: 500; letter-spacing: .1em; text-transform: uppercase;
  color: rgba(242,239,232,.7); position: relative; padding-bottom: 3px;
}
.main-nav a::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 0; height: 1px; background: var(--gold); transition: width .3s var(--ease);
}
.main-nav a:hover { color: var(--cream); }
.main-nav a:hover::after { width: 100%; }

.main-nav .nav-cta {
  background: rgba(201,168,76,.1); color: var(--gold);
  border: 1px solid var(--border-lt); border-radius: var(--r);
  padding: .42rem .85rem;
  display: inline-flex; align-items: center; gap: .35rem; font-size: .76rem;
}
.main-nav .nav-cta::after { display: none; }
.main-nav .nav-cta:hover { background: var(--gold); color: var(--ink); }
.main-nav .nav-cta:hover .nav-icon { filter: brightness(0); }

.burger { display: none; flex-direction: column; gap: 5px; padding: 4px; z-index: 950; }
.burger span { display: block; width: 22px; height: 1.5px; background: var(--gold); transition: transform .3s var(--ease), opacity .3s; transform-origin: center; }
.burger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ── HERO ── */
.hero {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding-top: 80px;
}

.hero-canvas { position: absolute; inset: 0; pointer-events: none; }
.hero-orb { position: absolute; border-radius: 50%; filter: blur(90px); }
.hero-orb--1 {
  width: 600px; height: 600px; top: -80px; left: 55%;
  transform: translateX(-40%);
  background: radial-gradient(circle, rgba(201,168,76,.1) 0%, transparent 70%);
}
.hero-orb--2 {
  width: 280px; height: 280px; bottom: 10%; right: 5%;
  background: radial-gradient(circle, rgba(201,168,76,.07) 0%, transparent 70%);
}

.hero-split {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  min-height: calc(100svh - 80px);
  width: min(var(--max), 100%);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 5vw, 2.5rem);
  gap: 3rem;
}

.hero-content { padding-block: 4rem 3rem; }

.hero-eyebrow {
  display: flex; align-items: center; gap: .75rem;
  font-size: .68rem; font-weight: 500; letter-spacing: .2em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1.5rem; flex-wrap: wrap;
}
.eyebrow-line { display: inline-block; width: 28px; height: 1px; background: var(--gold); opacity: .6; flex-shrink: 0; }

.hero-title {
  font-size: clamp(3rem, 7vw, 5.8rem);
  font-weight: 600; line-height: 1.05; letter-spacing: -.02em; margin-bottom: .8rem;
}

.hero-tagline {
  font-family: var(--serif); font-style: italic;
  font-size: clamp(1.05rem, 2.2vw, 1.3rem);
  color: var(--gold-lt); margin-bottom: .85rem; line-height: 1.4;
}

.hero-subtitle {
  font-family: var(--sans); font-size: clamp(.9rem, 1.7vw, 1rem);
  font-weight: 300; color: rgba(242,239,232,.58);
  max-width: 460px; margin-bottom: 2.25rem; line-height: 1.75;
}

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

.hero-trust {
  display: flex; gap: 1.25rem; flex-wrap: wrap;
  font-size: .7rem; font-weight: 400; letter-spacing: .1em;
  color: rgba(242,239,232,.4); text-transform: uppercase;
}

/* Hero image */
.hero-image-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding-block: 3rem;
}

.hero-figure {
  position: relative;
  width: 100%;
  max-width: 480px;
  border-radius: var(--r-lg);
  overflow: hidden;
}

.hero-img {
  width: 100%; height: 600px;
  object-fit: cover; object-position: center 30%;
  border-radius: var(--r-lg);
  display: block;
  filter: brightness(.92) contrast(1.04);
  box-shadow: 0 24px 60px rgba(0,0,0,.55), 0 0 0 1px rgba(201,168,76,.1);
}

/* Fade-in animation for hero image */
@keyframes hero-fadein {
  from { opacity: 0; transform: scale(1.04) translateY(8px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}
.hero-img--fadein {
  animation: hero-fadein .95s var(--ease) both;
}

.hero-figure::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 55%, rgba(12,12,12,.65) 100%);
  border-radius: var(--r-lg);
  pointer-events: none;
}

.hero-figure--fallback .hero-img { display: none; }
.hero-figure--fallback { background: linear-gradient(135deg, #1a0e0e 0%, #251515 50%, #1a0e0e 100%); height: 600px; }
.hero-figure--fallback::before {
  content: 'Imagem ilustrativa';
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  color: rgba(201,168,76,.3); font-family: var(--serif); font-size: 1.2rem; font-style: italic;
}

.img-caption {
  position: absolute; bottom: .75rem; right: .75rem; z-index: 2;
  font-size: .65rem; font-weight: 500; letter-spacing: .07em;
  color: rgba(242,239,232,.45);
  background: rgba(12,12,12,.55);
  padding: .2rem .55rem; border-radius: 100px;
  border: 1px solid rgba(242,239,232,.1);
  backdrop-filter: blur(6px);
}

.hero-scroll-cue { position: absolute; bottom: 1.75rem; left: 50%; transform: translateX(-50%); z-index: 2; }
.scroll-line {
  width: 1px; height: 48px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  margin: 0 auto;
  animation: pulse-line 2.2s ease-in-out infinite;
}
@keyframes pulse-line {
  0%, 100% { opacity: 1; transform: scaleY(1); }
  50% { opacity: .3; transform: scaleY(.6); }
}

/* ── MARQUEE STRIP ── */
.marquee-strip {
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--ink2);
  padding: .9rem 0;
}
.marquee-track {
  display: flex;
  align-items: center;
  gap: 2rem;
  width: max-content;
  animation: marquee-scroll 38s linear infinite;
}
.marquee-track span {
  white-space: nowrap;
  font-family: var(--serif); font-style: italic;
  font-size: .92rem; color: rgba(242,239,232,.32); letter-spacing: .04em;
}
.marquee-dot { color: var(--gold) !important; opacity: .45; font-style: normal !important; }
@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── SOBRE ── */
.sobre {
  padding: clamp(5rem, 9vw, 8rem) 0;
  background: var(--ink2);
  border-top: 1px solid var(--border);
}

.split-layout {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 5rem); align-items: start;
}

.split-text .label-tag { margin-bottom: .75rem; }
.split-text .section-title { margin-bottom: 1.5rem; }
.split-text p { margin-bottom: 1rem; line-height: 1.8; }

.split-pillars { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }

.pillar {
  border: 1px solid var(--border); border-radius: var(--r-lg);
  padding: 1.5rem 1.25rem; background: var(--ink3);
  transition: border-color .3s, transform .3s var(--ease);
}
.pillar:hover { border-color: var(--border-lt); transform: translateY(-4px); }
.pillar-num { font-family: var(--serif); font-size: 1.8rem; font-weight: 600; color: rgba(201,168,76,.22); line-height: 1; margin-bottom: .75rem; }
.pillar h3 { font-size: .92rem; font-weight: 600; color: var(--cream); margin-bottom: .4rem; font-family: var(--sans); }
.pillar p  { font-size: .82rem; line-height: 1.55; }

/* ── COLEÇÕES ── */
.colecoes {
  padding: clamp(5rem, 9vw, 8rem) 0;
  background: var(--ink);
  border-top: 1px solid var(--border);
}

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

.col-card {
  border: 1px solid var(--border); border-radius: var(--r-lg);
  overflow: hidden; background: var(--ink3);
  display: flex; flex-direction: column;
  box-shadow: 0 4px 24px rgba(0,0,0,.3);
  transition: border-color .3s, transform .3s var(--ease), box-shadow .3s;
}
.col-card:hover {
  border-color: rgba(201,168,76,.38); transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,.5);
}
.col-card--featured { border-color: rgba(201,168,76,.28); margin-top: -1.5rem; }

.card-img-wrap { position: relative; overflow: hidden; }
.card-img {
  width: 100%; height: 250px;
  object-fit: cover; object-position: center;
  display: block;
  transition: transform .5s var(--ease);
}
.col-card:hover .card-img { transform: scale(1.04); }

.card-img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 40%, rgba(12,12,12,.55) 100%);
  pointer-events: none;
}

.card-img-wrap--fallback { height: 250px; display: flex; align-items: center; justify-content: center; }
.card-img-wrap--fem  { background: linear-gradient(135deg, #1a0e0e 0%, #2a1515 100%); }
.card-img-wrap--masc { background: linear-gradient(135deg, #0e0e1a 0%, #15152a 100%); }
.card-img-wrap--inf  { background: linear-gradient(135deg, #0e1a0e 0%, #152a15 100%); }
.card-img-wrap--fallback::before {
  content: 'Imagem ilustrativa';
  font-family: var(--serif); font-style: italic; font-size: 1rem; color: rgba(201,168,76,.3);
}

.card-badge-foto {
  position: absolute; bottom: .6rem; right: .6rem; z-index: 2;
  font-size: .62rem; font-weight: 500; letter-spacing: .07em;
  color: rgba(242,239,232,.45); background: rgba(12,12,12,.6);
  padding: .2rem .5rem; border-radius: 100px;
  border: 1px solid rgba(242,239,232,.1); backdrop-filter: blur(6px);
}

.card-category-tag {
  position: absolute; top: .65rem; left: .65rem; z-index: 2;
  font-size: .62rem; font-weight: 600; letter-spacing: .15em; text-transform: uppercase;
  color: var(--gold); background: rgba(12,12,12,.7);
  border: 1px solid var(--border); padding: .2rem .55rem; border-radius: 100px;
  backdrop-filter: blur(6px);
}

.card-body {
  padding: 1.5rem; display: flex; flex-direction: column; flex: 1; gap: .5rem;
}
.card-body h3 { font-size: 1.25rem; }
.card-body > p { font-size: .86rem; line-height: 1.65; flex: 1; }

.card-lead {
  font-family: var(--serif); font-style: italic; font-size: .95rem;
  color: var(--gold-lt);
}

/* ── CTA BANNER ── */
.cta-banner {
  padding: clamp(4rem, 7vw, 6rem) 0;
  background: linear-gradient(135deg, #0e0a02 0%, #1a1204 50%, #0e0a02 100%);
  border-top: 1px solid rgba(201,168,76,.15);
  border-bottom: 1px solid rgba(201,168,76,.15);
  position: relative; overflow: hidden;
}
.cta-banner::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 80% at 30% 50%, rgba(201,168,76,.08) 0%, transparent 65%);
  pointer-events: none;
}

.cta-inner {
  position: relative; z-index: 1;
  display: flex; align-items: center; justify-content: space-between;
  gap: 3rem; flex-wrap: wrap;
}

.cta-text { flex: 1; min-width: 280px; }
.cta-text h2 { margin: .5rem 0 .75rem; }
.cta-text > p { max-width: 440px; }

.cta-phone {
  display: inline-block;
  font-family: var(--phone-font);
  font-size: clamp(1.7rem, 3.5vw, 2.2rem);
  font-weight: 400; letter-spacing: .03em; color: #ffffff;
  margin-top: 1rem; line-height: 1.2; text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,.25); padding-bottom: 2px;
  transition: color .2s, border-color .2s;
}
.cta-phone:hover { color: var(--gold-lt); border-color: var(--gold-lt); }

.cta-action { display: flex; flex-direction: column; align-items: center; gap: .5rem; flex-shrink: 0; }
.cta-note { font-size: .72rem; color: rgba(242,239,232,.4); letter-spacing: .06em; }

/* ── CONTATO ── */
.contato {
  padding: clamp(5rem, 9vw, 8rem) 0;
  background: var(--ink2);
  border-top: 1px solid var(--border);
}

.contato-grid {
  display: grid; grid-template-columns: 1fr 1.2fr;
  gap: 4rem; align-items: start;
}

.info-card {
  display: flex; gap: 1rem; padding: 1.25rem;
  border: 1px solid var(--border); border-radius: var(--r-lg);
  background: var(--ink3); margin-bottom: 1rem;
  transition: border-color .3s, box-shadow .3s;
}
.info-card:hover {
  border-color: var(--border-lt);
  box-shadow: 0 4px 20px rgba(201,168,76,.08);
}
.info-card:hover .icon-svg { transform: scale(1.05); }

.info-icon {
  width: 36px; height: 36px; flex-shrink: 0;
  display: flex; align-items: flex-start; justify-content: center;
  padding-top: .1rem;
}
.info-icon img { width: 20px; height: 20px; }

.info-card h3 {
  font-family: var(--sans); font-size: .72rem; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase; color: var(--gold); margin-bottom: .45rem;
}
.info-card address { font-size: .87rem; color: var(--muted); line-height: 1.75; }

.info-phone {
  display: block;
  font-family: var(--phone-font);
  font-size: 1.55rem; font-weight: 400; letter-spacing: .03em;
  color: #ffffff; line-height: 1.3; margin-bottom: .2rem;
  transition: color .2s;
}
.info-phone:hover { color: var(--gold-lt); }

.social-links { display: flex; flex-direction: column; gap: .5rem; margin-top: .25rem; }

.social-link {
  display: inline-flex; align-items: center; gap: .5rem;
  font-size: .84rem; font-weight: 500; padding: .4rem .75rem;
  border-radius: var(--r); border: 1px solid;
  transition: background .25s, color .25s, transform .2s;
}
.social-link:hover { transform: translateX(3px); }
.social-link:hover .social-icon { transform: scale(1.08); }

.social-link--ig { color: #d15fa6; border-color: rgba(209,95,166,.25); background: rgba(209,95,166,.06); }
.social-link--ig:hover { background: rgba(209,95,166,.15); color: #e07cc0; }

.social-link--fb { color: #5b9fe0; border-color: rgba(91,159,224,.25); background: rgba(91,159,224,.06); }
.social-link--fb:hover { background: rgba(91,159,224,.15); color: #7ab2e8; }

/* Contact Form */
.contato-form-wrap {
  background: var(--ink3); border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: clamp(1.5rem, 4vw, 2.25rem);
}
.contato-form h3 { font-size: 1.5rem; margin-bottom: .3rem; }
.form-intro { font-size: .85rem; margin-bottom: 1.5rem; }

.field { margin-bottom: 1.1rem; }
.field label {
  display: block; font-size: .72rem; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase;
  color: rgba(242,239,232,.5); margin-bottom: .4rem;
}
.field label span { color: var(--gold); }

.field input, .field textarea {
  width: 100%; background: var(--ink); border: 1px solid var(--border);
  border-radius: var(--r); color: var(--cream); padding: .75rem 1rem;
  font-family: var(--sans); font-size: .9rem; font-weight: 300;
  transition: border-color .25s, box-shadow .25s;
  outline: none; resize: vertical; -webkit-appearance: none;
}
.field input::placeholder, .field textarea::placeholder { color: rgba(242,239,232,.2); }
.field input:focus, .field textarea:focus {
  border-color: rgba(201,168,76,.5); box-shadow: 0 0 0 3px rgba(201,168,76,.08);
}

.form-note { font-size: .75rem; color: rgba(242,239,232,.3); text-align: center; margin-top: .75rem; }
.form-note a { color: var(--gold); opacity: .75; }
.form-note a:hover { opacity: 1; }

.form-msg {
  min-height: 1.25rem; margin-top: .75rem;
  font-size: .85rem; text-align: center;
  border-radius: var(--r); padding: .6rem 1rem;
}
.form-msg.success { color: #4caf50; background: rgba(76,175,80,.08); border: 1px solid rgba(76,175,80,.2); }
.form-msg.error   { color: #f44336; background: rgba(244,67,54,.08); border: 1px solid rgba(244,67,54,.2); }

/* ── FOOTER ── */
.site-footer { background: #080808; border-top: 1px solid var(--border); }
.footer-top  { padding: clamp(3rem, 6vw, 5rem) 0; }

.footer-top-grid {
  display: grid; grid-template-columns: 1.6fr 1fr 1.2fr; gap: 3rem;
}

.ft-brand .logo-lockup { margin-bottom: 1rem; }
.ft-tagline { font-size: .88rem; color: rgba(242,239,232,.4); line-height: 1.65; margin-bottom: .85rem; }
.ft-institutional {
  font-size: .8rem; color: rgba(242,239,232,.28); line-height: 1.75;
  margin-bottom: 1.25rem; max-width: 380px;
}

.ft-social { display: flex; gap: .55rem; align-items: center; }
.ft-social-link {
  display: flex; align-items: center; justify-content: center;
  width: 34px; height: 34px;
  border: 1px solid rgba(201,168,76,.25); border-radius: var(--r);
  transition: border-color .25s, transform .25s, box-shadow .25s;
}
.ft-social-link:hover {
  border-color: #FFB300;
  box-shadow: 0 0 14px rgba(255,179,0,.3), 0 2px 8px rgba(0,0,0,.3);
  transform: translateY(-2px);
}

.ft-col h4 {
  font-family: var(--sans); font-size: .68rem; font-weight: 600;
  letter-spacing: .15em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.1rem;
}
.ft-col ul li { margin-bottom: .45rem; }
.ft-col a { font-size: .84rem; color: rgba(242,239,232,.4); }
.ft-col a:hover { color: var(--cream); }

.ft-col address { font-size: .84rem; color: rgba(242,239,232,.38); line-height: 1.9; }
.ft-col address a { color: rgba(242,239,232,.4); display: inline; }
.ft-col address a:hover { color: var(--gold); }

.ft-phone {
  display: inline-block;
  font-family: var(--phone-font); font-size: 1.1rem; font-weight: 400;
  letter-spacing: .03em; color: #ffffff;
}
.ft-phone:hover { color: var(--gold-lt); }

.footer-bottom { border-top: 1px solid rgba(201,168,76,.1); padding: 1.1rem 0; }
.footer-bottom-inner {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: .5rem;
}
.footer-bottom p { font-size: .74rem; color: rgba(201,168,76,.65); }

.footer-legal-links { display: flex; gap: .75rem; align-items: center; font-size: .74rem; }
.footer-legal-links span { color: rgba(201,168,76,.35); }
.footer-legal-links a { color: rgba(201,168,76,.7); }
.footer-legal-links a:hover { color: #FFB300; }

/* ── FOOTER CREDIT ── */
.footer-credit-wrap {
  display: flex; justify-content: center;
  padding: .55rem 0 .7rem;
  border-top: 1px solid rgba(201,168,76,.08);
}
.footer-credit {
  display: inline-flex; align-items: center; gap: .45rem;
  text-decoration: none;
  color: rgba(201,168,76,.6);
  font-family: var(--sans); font-size: .68rem; letter-spacing: .03em;
  transition: color .2s;
  min-height: 44px;
}
.footer-credit:hover { color: #FFB300; }
.footer-credit strong { font-weight: 500; color: rgba(201,168,76,.8); }
.footer-credit:hover strong { color: #FFB300; }
.footer-credit-logo {
  width: 22px; height: 26px; object-fit: contain; opacity: .8;
  transition: opacity .2s;
}
.footer-credit:hover .footer-credit-logo { opacity: 1; }

/* ── WHATSAPP FLOAT ── */
.wa-float {
  position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 800;
  display: flex; align-items: center; gap: .45rem;
  background: #25D366; color: #fff;
  border-radius: 100px;
  padding: .7rem 1rem .7rem .85rem;
  box-shadow: 0 4px 20px rgba(37,211,102,.4), 0 1px 4px rgba(0,0,0,.3);
  transition: transform .25s var(--ease), box-shadow .25s;
}
.wa-float:hover {
  transform: scale(1.05) translateY(-2px);
  box-shadow: 0 8px 28px rgba(37,211,102,.5);
  color: #fff;
}

.wa-label { font-family: var(--sans); font-size: .8rem; font-weight: 600; white-space: nowrap; }

/* ── INNER PAGES ── */
.page-hero {
  padding: 9rem 0 3.5rem;
  background: var(--ink2); border-bottom: 1px solid var(--border); text-align: center;
}
.page-hero h1 { font-size: clamp(2rem, 5vw, 3rem); margin-bottom: .5rem; }
.page-hero p  { font-size: .85rem; }

.page-content { padding: 4rem 0 7rem; }
.page-content .container { max-width: 760px; }

.back-link { display: inline-flex; align-items: center; gap: .4rem; color: var(--gold); font-size: .85rem; font-weight: 500; margin-bottom: 2.5rem; opacity: .8; }
.back-link:hover { opacity: 1; color: var(--gold-lt); }

.page-content h2 {
  font-family: var(--serif); font-size: 1.3rem; color: var(--gold);
  margin: 2.25rem 0 .65rem; padding-top: 2.25rem; border-top: 1px solid var(--border);
}
.page-content h2:first-of-type { margin-top: 0; border-top: none; padding-top: 0; }
.page-content p  { font-size: .93rem; margin-bottom: .9rem; line-height: 1.8; }
.page-content ul { padding-left: 1.4rem; margin-bottom: 1rem; }
.page-content li { font-size: .93rem; color: var(--muted); margin-bottom: .4rem; line-height: 1.7; }
.page-content a  { color: var(--gold); }
.page-content strong { color: var(--cream); }

/* ── RESPONSIVE ── */

/* Tablet */
@media (max-width: 1024px) {
  .hero-split { grid-template-columns: 1fr; gap: 0; padding-block: 1.5rem; min-height: unset; }
  .hero-content { padding-block: 2.5rem 1.25rem; text-align: center; }
  .hero-eyebrow { justify-content: center; }
  .hero-tagline { margin-inline: auto; }
  .hero-subtitle { margin-inline: auto; }
  .hero-actions { justify-content: center; }
  .hero-trust  { justify-content: center; }

  .hero-image-wrap { padding-block: 0 2.5rem; justify-content: center; }
  .hero-figure { max-width: 400px; }
  .hero-img    { height: clamp(280px, 42vw, 400px); filter: brightness(1.02) contrast(1.1); }
  .hero-figure--fallback { height: clamp(280px, 42vw, 400px); }

  .split-layout  { grid-template-columns: 1fr; gap: 3rem; }
  .split-pillars { grid-template-columns: repeat(2, 1fr); }
  .footer-top-grid { grid-template-columns: 1fr 1fr; }
  .ft-brand { grid-column: 1 / -1; }
}

/* Tablet Portrait */
@media (max-width: 900px) {
  .cards-grid { grid-template-columns: 1fr; max-width: 500px; margin-inline: auto; }
  .col-card--featured { margin-top: 0; }
  .contato-grid { grid-template-columns: 1fr; gap: 2.5rem; }
}

/* Mobile */
@media (max-width: 768px) {
  .burger { display: flex; }

  .main-nav {
    position: fixed; inset: 0; z-index: 890;
    background: rgba(12,12,12,.97);
    display: flex; align-items: center; justify-content: center;
    opacity: 0; pointer-events: none;
    transition: opacity .3s var(--ease);
    backdrop-filter: blur(20px);
  }
  .main-nav.open { opacity: 1; pointer-events: all; }
  .main-nav ul { flex-direction: column; gap: 1.75rem; text-align: center; }
  .main-nav a  { font-size: 1rem; }
  .main-nav .nav-cta { font-size: .88rem; padding: .65rem 1.4rem; }

  .cta-inner { flex-direction: column; text-align: center; }
  .cta-text > p  { margin-inline: auto; }
  .cta-phone { margin-inline: auto; display: block; text-align: center; }

  .footer-top-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }
  .footer-legal-links  { justify-content: center; }
  .footer-credit-logo  { width: 18px; height: 21px; }
  .footer-credit       { font-size: .64rem; }
  .ft-institutional    { max-width: 100%; }
  .split-pillars { grid-template-columns: 1fr; }

  /* ~20% smaller icons on mobile */
  .ft-social-link { width: 28px; height: 28px; }
  .ft-icon        { width: 13px; height: 13px; }
  .info-icon img  { width: 16px; height: 16px; }
  .info-icon      { width: 28px; height: 28px; }
  .social-icon    { width: 12px; height: 12px; }
  .social-link    { font-size: .8rem; padding: .35rem .65rem; }

  .hero-image-wrap { display: none; }
  .hero-img    {
    height: 260px;
    max-height: min(340px, 38vmax);
    object-fit: cover;
    object-position: center 40%;
    filter: brightness(1.1) contrast(1.15);
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    box-shadow: 0 8px 32px rgba(0,0,0,.45), 0 0 0 1px rgba(201,168,76,.08);
  }
  .hero-figure { max-width: 100%; border-radius: var(--r-lg); }
  .hero-figure--fallback { height: 260px; }

  .card-img { height: 220px; }

  .wa-float     { bottom: 1.1rem; right: 1.1rem; padding: .6rem .9rem .6rem .75rem; gap: .4rem; }
  .wa-float img { width: 20px; height: 20px; }
  .wa-label     { font-size: .75rem; }
}

/* Small mobile */
@media (max-width: 540px) {
  .hero-actions .btn { min-width: 200px; }
  .hero-actions { flex-direction: column; align-items: center; }
  .cards-grid { max-width: 100%; }

  .wa-label  { display: none; }
  .wa-float  { border-radius: 50%; width: 52px; height: 52px; padding: 0; justify-content: center; }
  .wa-float img { width: 24px; height: 24px; }

  .info-phone { font-size: 1.35rem; }
  .cta-phone  { font-size: 1.5rem; }
}

/* Mobile landscape — keep image compact so text stays visible */
@media (max-width: 768px) and (orientation: landscape) {
  .hero-img    { height: clamp(160px, 35vh, 220px); max-height: none; }
  .hero-image-wrap { padding-block: 0 1.5rem; }
}

/* ── ACCESSIBILITY ── */
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; }
  html { scroll-behavior: auto; }
  .hero-img--fadein { animation: none; }
  .marquee-track { animation: none; }
}
