/* ============================================================
   DESIGN SYSTEM — Zé Welinton & Raphael
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy-950: #050D18;
  --navy-900: #07111F;
  --navy-800: #0A1B2E;
  --navy-700: #0F2440;
  --navy-600: #152D50;
  --navy-500: #1E3A62;
  --gold:        #C9976A;
  --gold-light:  #DEB98B;
  --gold-dark:   #A07848;
  --gold-pale:   rgba(201,151,106,0.12);
  --gold-border: rgba(201,151,106,0.22);
  --graphite:    #0A0E17;
  --cream:       #F2EDE5;
  --cream-mid:   #A89B8C;
  --cream-sub:   #716459;
  --gold-grad: linear-gradient(to bottom, #A5704D 0%, #DBA882 50%, #A5704D 100%);
}

/* ============================================================
   ACESSIBILIDADE — Anel de foco (focus-visible)
   Apenas adiciona o anel de foco; não altera cores do site.
   ============================================================ */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
[tabindex]:focus-visible {
  outline: 2px solid var(--gold-light);
  outline-offset: 3px;
}

html {
  scroll-behavior: smooth;
  overflow-y: auto;
  height: auto;
}

body {
  font-family: 'Roboto', sans-serif;
  font-weight: 300;
  background: var(--navy-800);
  color: var(--cream);
  min-height: 100vh;
  height: auto;
  overflow-y: auto;
  -webkit-font-smoothing: antialiased;
  line-height: 1.7;
}

/* Gradiente dourado em todos os textos descritivos */
.stat-label,
.parceiros-block,
.rep-desc,
.modal-desc,
.highlight-text,
.diff-card-body,
.diff-list li,

.page-hero-sub,
.page-cta-sub,
.content-text p {
  background: linear-gradient(to bottom, #A5704D 0%, #DBA882 50%, #A5704D 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.contact-item-label {
  background: none;
  -webkit-background-clip: unset;
  background-clip: unset;
  color: #fff;
  -webkit-text-fill-color: #fff;
}

.contact-item-value {
  background: linear-gradient(to bottom, #A5704D 0%, #DBA882 50%, #A5704D 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.servico-card-body p {
  background: none;
  -webkit-background-clip: unset;
  background-clip: unset;
  color: #DBA882;
  -webkit-text-fill-color: #DBA882;
}

/* ============================================================
   NAV
   ============================================================ */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: 62px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2.5rem;
  background: rgba(5,13,24,0.97);
  border-bottom: 1px solid var(--gold-border);
}

.site-nav-brand {
  font-family: 'Playfair Display', serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  letter-spacing: 0.03em;
  white-space: nowrap;
}

.site-nav-links {
  display: flex;
  align-items: center;
  gap: 0.15rem;
  list-style: none;
}

.site-nav-links a {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--gold-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  text-decoration: none;
  padding: 0.4rem 0.9rem;
  border-radius: 20px;
  transition: background-color 0.25s;
}

.site-nav-links a:hover,
.site-nav-links a.active {
  background-color: var(--gold-pale);
  background: none;
  -webkit-background-clip: unset;
  background-clip: unset;
  color: #fff;
  -webkit-text-fill-color: #fff;
}

.site-nav-cta {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: linear-gradient(to bottom, #A5704D 0%, #DBA882 50%, #A5704D 100%);
  border: none;
  padding: 0.4rem 1.1rem;
  border-radius: 6px;
  color: var(--navy-950);
  -webkit-text-fill-color: var(--navy-950);
  text-decoration: none;
  transition: opacity 0.25s, transform 0.25s;
  white-space: nowrap;
}

.site-nav-cta:hover {
  opacity: 0.88;
  transform: translateY(-1px);
}

.nav-hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.4rem;
  color: var(--gold);
  padding: 0.25rem;
}

.nav-whatsapp-item { display: none; }

/* ============================================================
   WHATSAPP FAB (botão flutuante) — só mobile
   Escondido por padrão; ativado no breakpoint mobile.
   ============================================================ */
.whatsapp-fab { display: none; }

/* ============================================================
   SECTION BASE
   ============================================================ */
.section {
  padding: 7rem 1.5rem;
  position: relative;
}

.section-inner {
  max-width: 960px;
  margin: 0 auto;
}

.section-eyebrow {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  background: var(--gold-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  margin-bottom: 0.7rem;
}

.section-eyebrow span {
  display: block;
  width: 32px;
  height: 1px;
  background: var(--gold-dark);
}

.section-heading {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.75rem, 4vw, 2.6rem);
  font-weight: 600;
  color: var(--cream);
  line-height: 1.2;
  margin-bottom: 3rem;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(to bottom, #A5704D 0%, #DBA882 50%, #A5704D 100%);
  color: var(--navy-950);
  -webkit-text-fill-color: var(--navy-950);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.85rem 2rem;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  transition: opacity 0.25s, transform 0.25s, box-shadow 0.25s;
}

.btn-primary:hover {
  opacity: 0.88;
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(201,151,106,0.35);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--gold-pale);
  border: 1px solid var(--gold-border);
  color: var(--gold-light);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.85rem 2rem;
  border-radius: 6px;
  transition: background 0.25s, border-color 0.25s, transform 0.25s;
  cursor: pointer;
}

.btn-secondary:hover {
  background: rgba(201,151,106,0.22);
  border-color: var(--gold);
  transform: translateY(-2px);
}

/* ============================================================
   CARD BASE
   ============================================================ */
.card {
  background: var(--navy-600);
  border: 1px solid var(--gold-border);
  border-radius: 10px;
  overflow: hidden;
  transition: border-color 0.35s, transform 0.35s, box-shadow 0.35s;
}

.card:hover {
  border-color: rgba(201,151,106,0.5);
  transform: translateY(-5px);
  box-shadow: 0 20px 48px rgba(5,13,24,0.6);
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--graphite);
  border-top: 1px solid var(--gold-border);
  padding: 1.25rem 2rem;
  text-align: center;
}

.site-footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.footer-socials {
  display: flex;
  gap: 0.25rem;
  align-items: center;
}

.footer-social-link {
  font-size: 1.2rem;
  padding: 0.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--gold-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  opacity: 0.7;
  transition: opacity 0.25s;
}

.footer-social-link:hover { opacity: 1; }

.footer-brand {
  font-family: 'Playfair Display', serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: #fff;
  -webkit-text-fill-color: #fff;
  background: none;
  -webkit-background-clip: unset;
  background-clip: unset;
  text-decoration: none;
  letter-spacing: 0.03em;
  white-space: nowrap;
}

.footer-links {
  display: flex;
  gap: 2rem;
  list-style: none;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-links a {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--gold-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  text-decoration: none;
  opacity: 0.6;
  transition: opacity 0.25s;
}

.footer-links a:hover { opacity: 1; }

.footer-links a.active {
  background: none;
  -webkit-background-clip: unset;
  background-clip: unset;
  color: #fff;
  -webkit-text-fill-color: #fff;
  opacity: 1;
}

.footer-legal {
  font-size: 0.72rem;
  color: #64728c;
  line-height: 1.5;
}


/* ============================================================
   MOBILE NAV
   ============================================================ */
@media (max-width: 768px) {
  .nav-hamburger { display: flex; }
  .site-nav-links { display: none; }
  .site-nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 62px; left: 0; right: 0;
    background: rgba(5,13,24,0.99);
    border-bottom: 1px solid var(--gold-border);
    padding: 1.5rem;
    gap: 0.5rem;
  }
  .site-nav-links.open a {
    padding: 0.7rem 1rem;
    font-size: 0.85rem;
  }
  .site-nav-cta { display: none; }
  .section { padding: 4.5rem 1.25rem; }
  .section-heading { font-size: 1.6rem; }
  .nav-whatsapp-item {
    display: block;
    margin-top: 0.5rem;
    padding-top: 0.5rem;
    border-top: 1px solid var(--gold-border);
  }
  .nav-whatsapp-item a {
    background: linear-gradient(to bottom, #A5704D 0%, #DBA882 50%, #A5704D 100%);
    -webkit-background-clip: unset;
    background-clip: unset;
    color: var(--navy-950);
    -webkit-text-fill-color: var(--navy-950);
    border-radius: 6px;
    text-align: center;
    display: flex;
    justify-content: center;
    gap: 0.5rem;
  }
}

/* ============================================================
   ANIMATIONS
   ============================================================ */

@keyframes fade-up {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fade-in {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes line-reveal {
  from { transform: translateY(108%); }
  to   { transform: translateY(0); }
}
@keyframes gem-in {
  from { opacity: 0; transform: rotate(45deg) scale(0.2); }
  to   { opacity: 1; transform: rotate(45deg) scale(1); }
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.3; transform: scale(0.55); }
}

/* — Hero entrance sequence ——————————————————————— */
.hero-photo         { animation: fade-in 2.4s ease 0s both; will-change: opacity; }
.hero-badge         { animation: fade-up 0.6s cubic-bezier(0.22,1,0.36,1) 0.4s both; will-change: opacity, transform; }
.hero-divider       { animation: fade-in 0.5s ease 1.1s both; }
.hero-divider-gem   { animation: gem-in 0.55s cubic-bezier(0.34,1.56,0.64,1) 1.15s both; will-change: opacity, transform; }
.hero-headline      { animation: fade-up 0.65s cubic-bezier(0.22,1,0.36,1) 1.2s both; will-change: opacity, transform; }
.hero-lead          { animation: fade-up 0.65s cubic-bezier(0.22,1,0.36,1) 1.35s both; will-change: opacity, transform; }
.hero-actions       { animation: fade-up 0.65s cubic-bezier(0.22,1,0.36,1) 1.5s both; will-change: opacity, transform; }
.hero-actions-mobile { animation: fade-up 0.65s cubic-bezier(0.22,1,0.36,1) 1.5s both; will-change: opacity, transform; }

/* Title line-by-line reveal */
.title-line         { display: block; overflow: hidden; padding-bottom: 0.2em; margin-bottom: -0.2em; }
.title-line > span  { display: block; will-change: transform; }
.title-line:nth-child(1) > span { animation: line-reveal 0.95s cubic-bezier(0.16,1,0.3,1) 0.6s both; }
.title-line:nth-child(2) > span { animation: line-reveal 0.95s cubic-bezier(0.16,1,0.3,1) 0.78s both; }
.title-line:nth-child(3) > span { animation: line-reveal 0.95s cubic-bezier(0.16,1,0.3,1) 0.96s both; }

/* — Sub-page hero entrance ———————————————————————— */
.page-hero-tag { animation: fade-up 0.6s cubic-bezier(0.22,1,0.36,1) 0.3s both; will-change: opacity, transform; }
.page-hero-sub { animation: fade-up 0.65s cubic-bezier(0.22,1,0.36,1) 1.2s both; will-change: opacity, transform; }

/* — Scroll reveals ——————————————————————————————— */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.75s cubic-bezier(0.22,1,0.36,1), transform 0.75s cubic-bezier(0.22,1,0.36,1);
}
.reveal-left {
  opacity: 0;
  transform: translateX(-28px);
  transition: opacity 0.7s cubic-bezier(0.22,1,0.36,1), transform 0.7s cubic-bezier(0.22,1,0.36,1);
}
.reveal-fade {
  opacity: 0;
  transition: opacity 1s cubic-bezier(0.22,1,0.36,1);
}
.reveal.in, .reveal-left.in, .reveal-fade.in { opacity: 1; transform: none; }

.reveal-d1 { transition-delay: 0.12s; }
.reveal-d2 { transition-delay: 0.24s; }
.reveal-d3 { transition-delay: 0.36s; }

@media (prefers-reduced-motion: reduce) {
  .hero-photo, .hero-badge, .hero-headline, .hero-lead,
  .hero-actions, .hero-actions-mobile, .hero-divider, .hero-divider-gem,
  .page-hero-tag, .page-hero-sub
  { animation: none; opacity: 1; }
  .title-line > span { animation: none; }
  .reveal, .reveal-left, .reveal-fade { opacity: 1; transform: none; transition: none; }
}

/* ============================================================
   PAGE HERO — compartilhado
   ============================================================ */
.page-hero-inner {
  max-width: 960px;
  width: 100%;
  margin: 0 auto;
}

.page-hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  background: var(--gold-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  border: 1px solid var(--gold-border);
  padding: 0.35rem 1.1rem;
  border-radius: 20px;
  margin-bottom: 1.5rem;
}

.page-hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 700;
  color: #fff;
  -webkit-text-fill-color: #fff;
  line-height: 1.1;
  margin-bottom: 1rem;
  max-width: 700px;
}

.page-hero-sub {
  font-size: 1.05rem;
  font-weight: 400;
  max-width: 520px;
  line-height: 1.8;
}

/* ============================================================
   CONTENT SECTIONS — compartilhado
   ============================================================ */
.content-section      { background: var(--navy-800); }
.content-section-alt  { background: var(--navy-700); }
.content-section-dark { background: var(--navy-950); }

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.two-col.reverse > *:first-child { order: 2; }
.two-col.reverse > *:last-child  { order: 1; }

.content-text h3 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 1.25rem;
  line-height: 1.2;
}

.content-text p {
  font-size: 1rem;
  line-height: 1.85;
  margin-bottom: 1rem;
}

.content-text p:last-child { margin-bottom: 0; }

.content-img {
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--gold-border);
  aspect-ratio: 4/3;
}

.content-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ============================================================
   ITEM CARDS (rep-card / modal-card) — compartilhado
   ============================================================ */
.rep-card,
.modal-card {
  background: var(--navy-600);
  border: 1px solid var(--gold-border);
  border-radius: 10px;
  transition: border-color 0.35s, transform 0.35s;
}

.rep-card:hover,
.modal-card:hover {
  border-color: rgba(201, 151, 106, 0.5);
  transform: translateY(-4px);
}

.rep-icon,
.modal-icon {
  font-size: 1.4rem;
  background: var(--gold-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  margin-bottom: 0.85rem;
  display: block;
}

.rep-title,
.modal-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 0.5rem;
}

.rep-desc,
.modal-desc {
  font-size: 0.88rem;
  line-height: 1.7;
}

/* ============================================================
   PAGE CTA — compartilhado
   ============================================================ */
.page-cta {
  background: var(--navy-950);
  padding: 7rem 1.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-cta::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(201, 151, 106, 0.07) 0%, transparent 68%);
  pointer-events: none;
}

.page-cta-inner {
  max-width: 560px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.page-cta-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 600;
  color: var(--cream);
  line-height: 1.2;
  margin-bottom: 0.75rem;
}

.page-cta-sub {
  font-size: 1rem;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

.cta-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================================
   HOME — HERO
   ============================================================ */
#hero {
  min-height: calc(100vh - 62px);
  min-height: calc(100svh - 62px);
  margin-top: 62px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem 2rem;
  background:
    radial-gradient(ellipse 90% 70% at 50% 30%, rgba(201,151,106,0.08) 0%, transparent 65%),
    linear-gradient(175deg, var(--navy-950) 0%, var(--navy-700) 55%, var(--navy-950) 100%);
  position: relative;
  overflow: hidden;
}

.hero-inner {
  max-width: 960px;
  width: 100%;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.hero-text {
  max-width: 480px;
  position: relative;
  z-index: 2;
}

.hero-photo {
  position: absolute;
  right: -2rem;
  bottom: 0;
  height: calc(100vh - 62px);
  height: calc(100svh - 62px);
  z-index: 0;
  pointer-events: none;
  mask-image: linear-gradient(to right, transparent 0%, black 25%, black 65%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 25%, black 65%, transparent 100%);
}

.hero-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.28);
  pointer-events: none;
}

.hero-photo img {
  height: 100%;
  width: auto;
  display: block;
}

#hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -55deg,
    transparent,
    transparent 55px,
    rgba(201,151,106,0.025) 55px,
    rgba(201,151,106,0.025) 56px
  );
  pointer-events: none;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  background: linear-gradient(to bottom, #A5704D 0%, #DBA882 50%, #A5704D 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  border: 1px solid var(--gold-border);
  padding: 0.35rem 1.1rem;
  border-radius: 20px;
  margin-bottom: 2rem;
}

.hero-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse-dot 2.5s ease infinite;
  will-change: opacity, transform;
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.05;
  margin-bottom: 0.6rem;
  width: max-content;
}

.hero-title-right {
  display: block;
  text-align: right;
}

.hero-title .amp {
  font-style: italic;
  font-weight: bold;
  background: linear-gradient(to bottom, #A5704D 0%, #DBA882 50%, #A5704D 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}


.hero-divider {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 0 0 2.5rem;
  width: 220px;
}

.hero-divider::before,
.hero-divider::after {
  content: '';
  flex: 1;
  height: 1px;
}

.hero-divider::before { background: linear-gradient(90deg, transparent, #A5704D); }
.hero-divider::after  { background: linear-gradient(90deg, #A5704D, transparent); }

.hero-divider-gem {
  width: 8px;
  height: 8px;
  background: linear-gradient(to bottom, #A5704D 0%, #DBA882 50%, #A5704D 100%);
  transform: rotate(45deg);
  flex-shrink: 0;
}

.hero-headline {
  font-size: 1.1rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  text-align: justify;
  color: #ffffff;
  -webkit-text-fill-color: #ffffff;
  line-height: 1.3;
  margin-bottom: 0.8rem;
}

.hero-lead {
  font-size: 1rem;
  font-weight: 300;
  letter-spacing: 0.025em;
  text-align: justify;
  line-height: 1.9;
  margin-bottom: 2.5rem;
  text-shadow: 0 0 18px rgba(255,255,255,0.38);
  color: #DBA882;
  -webkit-text-fill-color: #DBA882;
}

.hero-lead strong { font-weight: 700; }

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

.hero-actions-mobile { display: none; }

/* ============================================================
   HOME — NÚMEROS
   ============================================================ */
#numeros { background: var(--navy-950); }

#numeros::before {
  content: '';
  position: absolute;
  top: -80px;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(201,151,106,0.06) 0%, transparent 68%);
  pointer-events: none;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}

.stat-card {
  background: var(--navy-600);
  border: 1px solid var(--gold-border);
  border-radius: 10px;
  padding: 2rem 1.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: border-color 0.35s, transform 0.35s, box-shadow 0.35s;
}

.stat-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, #DBA882, transparent);
  opacity: 0;
  transition: opacity 0.35s;
}

.stat-card:hover {
  border-color: rgba(201,151,106,0.5);
  transform: translateY(-5px);
  box-shadow: 0 20px 48px rgba(5,13,24,0.6);
}

.stat-card:hover::after { opacity: 1; }

.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 2.75rem;
  font-weight: 700;
  background: var(--gold-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  line-height: 1.15;
  margin-bottom: 0.6rem;
}

.stat-label { font-size: 1rem; line-height: 1.55; }

.parceiros-block {
  background: var(--navy-600);
  border: 1px solid var(--gold-border);
  border-left: 3px solid #A5704D;
  border-radius: 0 10px 10px 0;
  padding: 1.5rem 2.25rem;
  font-size: 1rem;
  line-height: 1.9;
  color: #DBA882;
  -webkit-text-fill-color: #DBA882;
  -webkit-background-clip: unset;
  background-clip: unset;
}

.parceiros-block strong {
  background: var(--gold-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  font-weight: 700;
}

/* ============================================================
   HOME — SERVIÇOS
   ============================================================ */
#servicos { background: var(--navy-700); }

.servicos-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.75rem;
}

.servico-card {
  background: var(--navy-600);
  border: 1px solid var(--gold-border);
  border-radius: 10px;
  overflow: hidden;
  text-decoration: none;
  display: block;
  transition: border-color 0.35s, transform 0.35s, box-shadow 0.35s;
}

.servico-card:hover {
  border-color: rgba(201,151,106,0.5);
  transform: translateY(-5px);
  box-shadow: 0 24px 56px rgba(5,13,24,0.65);
}

.servico-card-img {
  aspect-ratio: 16/9;
  overflow: hidden;
}

.servico-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.55s;
}

.servico-card:hover .servico-card-img img { transform: scale(1.04); }

.servico-card-body { padding: 2rem 2.25rem; }

.servico-card-tag {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  background: var(--gold-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  margin-bottom: 0.6rem;
}

.servico-card-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 0.85rem;
  line-height: 1.25;
}

.servico-card-body p {
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  color: #DBA882;
  -webkit-text-fill-color: #DBA882;
}

.servico-card-link {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: var(--gold-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: gap 0.25s;
}

.servico-card:hover .servico-card-link { gap: 0.8rem; }


/* ============================================================
   HOME — CTA FINAL
   ============================================================ */
#cta-final {
  background: var(--navy-800);
  padding: 7rem 1.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

#cta-final::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(201,151,106,0.07) 0%, transparent 68%);
  pointer-events: none;
}

.cta-inner {
  max-width: 600px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.cta-eyebrow {
  display: block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  background: var(--gold-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  margin-bottom: 1.25rem;
}

.cta-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.75rem, 4vw, 2.6rem);
  font-weight: 600;
  color: var(--cream);
  line-height: 1.2;
  margin-bottom: 2.5rem;
}

.cta-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  margin: 2rem 0;
  color: var(--cream-sub);
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.cta-divider::before,
.cta-divider::after {
  content: '';
  width: 60px;
  height: 1px;
  background: var(--gold-border);
}

/* ============================================================
   CASAMENTO — PAGE HERO
   ============================================================ */
.page-hero--image {
  min-height: 65vh;
  display: flex;
  align-items: flex-end;
  padding: 80px 2rem 5rem;
  position: relative;
  overflow: hidden;
}

/* ============================================================
   CASAMENTO — REPERTÓRIO
   ============================================================ */
.rep-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 2.5rem;
}

.rep-card { padding: 1.75rem 1.5rem; }

/* ============================================================
   CASAMENTO — HIGHLIGHTS
   ============================================================ */
.highlights-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.highlight-card {
  background: var(--navy-600);
  border: 1px solid var(--gold-border);
  border-radius: 10px;
  padding: 2rem 2.25rem;
}

.highlight-number {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 700;
  background: var(--gold-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.highlight-text { font-size: 0.95rem; line-height: 1.7; }

/* ============================================================
   CONTATO — PAGE HERO
   ============================================================ */
.page-hero--centered {
  padding: 160px 2rem 5rem;
  background:
    radial-gradient(ellipse 80% 60% at 50% 20%, rgba(201,151,106,0.08) 0%, transparent 65%),
    linear-gradient(175deg, var(--navy-950) 0%, var(--navy-700) 60%, var(--navy-950) 100%);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.page-hero--centered::after {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -55deg, transparent, transparent 55px,
    rgba(201,151,106,0.025) 55px, rgba(201,151,106,0.025) 56px
  );
  pointer-events: none;
}

.page-hero--centered .page-hero-inner {
  max-width: 600px;
  position: relative;
  z-index: 1;
}

/* ============================================================
   CONTATO — LAYOUT
   ============================================================ */
#contato-section {
  background: var(--navy-800);
  padding: 5rem 1.5rem 7rem;
}

.contato-grid {
  max-width: 960px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 3rem;
  align-items: start;
}

.sidebar-heading {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 1.75rem;
  line-height: 1.25;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  background: var(--navy-600);
  border: 1px solid var(--gold-border);
  border-radius: 10px;
  text-decoration: none;
  margin-bottom: 0.85rem;
  transition: border-color 0.3s, transform 0.3s;
}

.contact-item:hover {
  border-color: rgba(201,151,106,0.5);
  transform: translateY(-3px);
}

.contact-item-icon {
  font-size: 1.3rem;
  background: var(--gold-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.contact-item-label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #fff;
  -webkit-text-fill-color: #fff;
  margin-bottom: 0.25rem;
}

.contact-item-value {
  font-size: 0.97rem;
  font-weight: 700;
  color: var(--cream);
}

/* ============================================================
   CONTATO — FORMULÁRIO
   ============================================================ */
.form-card {
  background: var(--navy-700);
  border: 1px solid var(--gold-border);
  border-radius: 10px;
  padding: 2.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.form-group { margin-bottom: 1.25rem; }

.form-group label {
  display: block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  background: var(--gold-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: var(--navy-800);
  border: 1px solid var(--gold-border);
  border-radius: 6px;
  color: var(--cream);
  font-family: 'Roboto', sans-serif;
  font-size: 0.97rem;
  padding: 0.75rem 1rem;
  transition: border-color 0.25s;
  -webkit-appearance: none;
  appearance: none;
}

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23A89B8C' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--gold); outline: none; }

/* Mantém a troca de border-color e adiciona o anel de foco
   acessível somente para navegação por teclado. */
.form-group input:focus-visible,
.form-group select:focus-visible,
.form-group textarea:focus-visible {
  border-color: var(--gold);
  outline: 2px solid var(--gold-light);
  outline-offset: 3px;
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--cream-sub); }

.form-group textarea { resize: vertical; min-height: 120px; }

.form-group select option { background: var(--navy-800); color: var(--cream); }

.form-submit { margin-top: 0.5rem; }

.alert {
  padding: 1rem 1.5rem;
  border-radius: 8px;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
  line-height: 1.6;
}

.alert-success {
  background: rgba(201,151,106,0.15);
  border: 1px solid rgba(201,151,106,0.4);
  color: var(--gold-light);
}

.alert-error {
  background: rgba(200,50,50,0.12);
  border: 1px solid rgba(200,50,50,0.35);
  color: #f08080;
}

.alert ul { margin: 0.5rem 0 0 1.25rem; }

/* ============================================================
   CORPORATIVO — MODALIDADES
   ============================================================ */
.modal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 2.5rem;
}

.modal-card { padding: 2rem 1.75rem; }

/* ============================================================
   CORPORATIVO — DIFERENCIAIS
   ============================================================ */
.diff-list {
  list-style: none;
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.diff-list li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: var(--navy-600);
  border: 1px solid var(--gold-border);
  border-radius: 10px;
  padding: 1.5rem 1.75rem;
  font-size: 0.97rem;
  line-height: 1.75;
  color: #DBA882;
  -webkit-text-fill-color: #DBA882;
  -webkit-background-clip: unset;
  background-clip: unset;
}

.diff-list li strong {
  color: var(--cream);
  -webkit-text-fill-color: var(--cream);
  font-weight: 700;
  display: block;
  margin-bottom: 0.2rem;
}

.diff-list-icon {
  font-size: 1.2rem;
  background: var(--gold-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

/* ============================================================
   DEPOIMENTOS
   ============================================================ */
.dep-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.dep-card {
  background: var(--navy-600);
  border: 1px solid var(--gold-border);
  border-radius: 10px;
  padding: 2rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  transition: border-color .35s, transform .35s, box-shadow .35s;
}

.dep-card:hover {
  border-color: rgba(201,151,106,0.5);
  transform: translateY(-5px);
  box-shadow: 0 20px 48px rgba(5,13,24,0.6);
}

.dep-stars {
  display: flex;
  gap: .2rem;
  font-size: .85rem;
  color: var(--gold);
}

.dep-text {
  font-size: .95rem;
  line-height: 1.75;
  font-style: italic;
  color: var(--cream-mid);
  -webkit-text-fill-color: var(--cream-mid);
  background: none;
  -webkit-background-clip: unset;
  background-clip: unset;
  flex: 1;
}

.dep-author {
  display: flex;
  align-items: center;
  gap: .85rem;
  padding-top: 1rem;
  border-top: 1px solid var(--gold-border);
}

.dep-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--navy-500);
  border: 1px solid var(--gold-border);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.dep-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.dep-avatar-initials {
  font-size: .95rem;
  font-weight: 700;
  background: var(--gold-grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.dep-author-name {
  font-size: .875rem;
  font-weight: 600;
  color: var(--cream);
  -webkit-text-fill-color: var(--cream);
  background: none;
  -webkit-background-clip: unset;
  background-clip: unset;
}

.dep-author-meta {
  font-size: .75rem;
  letter-spacing: .05em;
  background: var(--gold-grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ============================================================
   VÍDEO
   ============================================================ */
.video-wrapper {
  position: relative;
  width: 100%;
  max-width: 820px;
  margin: 0 auto;
  aspect-ratio: 16 / 9;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--gold-border);
  box-shadow: 0 24px 64px rgba(5,13,24,0.7);
}

.video-wrapper iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.sv-play-btn {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(0,0,0,0.6);
  border: 3px solid #fff;
  color: #fff;
  border-radius: 50%;
  width: 80px; height: 80px;
  padding: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .3s ease;
  z-index: 11;
  opacity: 0;
}

.sv-play-btn i { font-size: 36px; margin-left: 4px; }
.sv-play-btn:hover { background: rgba(0,0,0,0.85); transform: translate(-50%,-50%) scale(1.1); }
.sv-play-btn.paused  { opacity: 1; }
.sv-play-btn.playing { opacity: 0; }
.sv-play-btn.playing.hovering { opacity: 1; }

.sv-sound-btn {
  position: absolute;
  bottom: .8rem; right: 1.5rem;
  background: rgba(0,0,0,0.6);
  border: 1px solid rgba(255,255,255,0.6);
  color: #fff;
  border-radius: 4px;
  padding: 6px 10px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .3s ease;
  z-index: 10;
}

.sv-sound-btn i { font-size: 16px; }
.sv-sound-btn:hover { background: rgba(0,0,0,0.85); transform: scale(1.1); }
.sv-sound-btn.som-ativo { background: rgba(37,20,9,0.85); border-color: var(--gold); }

.sv-progress-bar {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 5px;
  background: rgba(255,255,255,0.25);
  cursor: pointer;
  z-index: 5;
}

.sv-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #A5704D, #DBA882, #A5704D);
  width: 0%;
  transition: width .1s linear;
}

.video-placeholder {
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 1rem; max-width: 820px; margin: 0 auto;
  aspect-ratio: 16/9; border-radius: 10px;
  border: 2px dashed var(--gold-border);
  background: var(--navy-700);
}

.video-placeholder-icon {
  font-size: 4rem;
  background: var(--gold-grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  opacity: .5;
}

.video-placeholder-label {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  color: var(--cream);
  -webkit-text-fill-color: var(--cream);
  background: none;
}

.video-placeholder-hint {
  font-size: .8rem;
  line-height: 1.6;
  color: var(--cream-sub);
  -webkit-text-fill-color: var(--cream-sub);
  background: none;
}

.video-placeholder-hint code {
  color: var(--gold-light);
  -webkit-text-fill-color: var(--gold-light);
  background: var(--gold-pale);
  padding: .1rem .4rem;
  border-radius: 4px;
}

/* ============================================================
   MOBILE
   ============================================================ */
@media (max-width: 768px) {
  .two-col { grid-template-columns: 1fr; }
  .two-col.reverse > *:first-child { order: unset; }
  .two-col.reverse > *:last-child  { order: unset; }
  .cta-actions { flex-direction: column; align-items: center; }
  .btn-primary,
  .btn-secondary { width: 100%; justify-content: center; }
  .rep-grid { grid-template-columns: 1fr 1fr; }
  .highlights-grid { grid-template-columns: 1fr; }
  .modal-grid { grid-template-columns: 1fr 1fr; }
  .contato-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .form-card { padding: 1.75rem 1.5rem; }
  .midia-logos { gap: 1.75rem; }

  /* Espaço para o FAB não cobrir o conteúdo do rodapé */
  body { padding-bottom: 6rem; }

  /* WhatsApp FAB — botão flutuante */
  .whatsapp-fab {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    z-index: 9999;
    min-height: 48px;
    padding: 0.75rem 1.15rem;
    border-radius: 999px;
    background: #25D366;
    color: #fff;
    -webkit-text-fill-color: #fff;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    line-height: 1;
    white-space: nowrap;
    box-shadow: 0 8px 24px rgba(0,0,0,0.35), 0 2px 6px rgba(37,211,102,0.45);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
  }

  .whatsapp-fab i {
    font-size: 1.45rem;
    line-height: 1;
    color: #fff;
    -webkit-text-fill-color: #fff;
  }

  .whatsapp-fab:hover,
  .whatsapp-fab:focus-visible {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.4), 0 3px 8px rgba(37,211,102,0.55);
  }

  .whatsapp-fab:active { transform: translateY(0); }
}

@media (max-width: 768px) and (prefers-reduced-motion: reduce) {
  .whatsapp-fab { transition: none; }
  .whatsapp-fab:hover,
  .whatsapp-fab:focus-visible,
  .whatsapp-fab:active { transform: none; }
}

@media (max-width: 700px) {
  #hero {
    min-height: auto;
    margin-top: 62px;
    padding-top: 2rem;
    padding-bottom: 0;
    flex-direction: column;
    justify-content: flex-start;
  }

  .hero-inner { position: relative; z-index: 2; }
  .hero-text { max-width: 100%; text-align: center; }
  .hero-title { font-size: 2rem; width: auto; }
  .hero-title-right { text-align: center; }
  .hero-divider { margin: 0 auto 2rem; }
  .hero-actions { justify-content: center; }
  .hero-headline { text-align: left; }
  .hero-lead { text-align: left; }
  .hero-text .hero-actions { display: none; }
  .hero-actions-mobile {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
    padding: 1.5rem 0 2.5rem;
    width: 100%;
  }

  .hero-photo {
    position: relative;
    top: auto;
    bottom: auto;
    left: auto;
    right: auto;
    height: 72vw;
    width: calc(100% + 4rem);
    margin: 2.5rem -2rem 0;
    mask-image: linear-gradient(to bottom, black 55%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, black 55%, transparent 100%);
  }

  .hero-photo::after { background: rgba(0, 0, 0, 0.22); }

  .hero-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
  }

  .page-hero--image {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    min-height: auto;
    padding-top: 100px;
    padding-bottom: 0;
  }

  .stats-grid { grid-template-columns: 1fr 1fr; }
  .servicos-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .dep-grid { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr; }
  .rep-grid { grid-template-columns: 1fr; }
  .modal-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: center; }
}
