/* =========================================================
   VICTORIA TELES — Landing Page
   Sumário
   1. Tokens (variáveis)
   2. Reset & base
   3. Tipografia
   4. Componentes reutilizáveis (container, eyebrow, botões)
   5. Header fixo
   6. Seção 01 — Hero
   7. Botão flutuante WhatsApp
   8. Utilitários & responsivo
   ========================================================= */

/* ============ 1. TOKENS ============ */
:root {
  /* Paleta */
  --navy:        #0a2748;
  --navy-deep:   #071c34;
  --navy-soft:   #14335a;
  --off-white:   #f7f4ee;
  --sand:        #e9e1d3;
  --sand-deep:   #d8ccb6;
  --gold:        #c9a96a;
  --gold-light:  #dcc08a;
  --ink:         #1a1f26;
  --muted:       #5c6470;

  /* Tipografia */
  --font-serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --font-sans:  "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  /* Espaçamento de seção */
  --section-y: clamp(4.5rem, 9vw, 9rem);
  --container: 1200px;
  --gutter: clamp(1.25rem, 4vw, 2.5rem);

  /* Outros */
  --radius: 4px;
  --radius-lg: 10px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --shadow: 0 18px 50px -20px rgba(7, 28, 52, 0.35);
}

/* ============ 2. RESET & BASE ============ */
*, *::before, *::after { box-sizing: border-box; }

* { margin: 0; }

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

body {
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--ink);
  background: var(--off-white);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, video, svg { display: block; max-width: 100%; }

a { color: inherit; text-decoration: none; }

button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }

/* Offset para âncoras não ficarem escondidas sob o header */
:target { scroll-margin-top: 90px; }

/* ============ 3. TIPOGRAFIA ============ */
h1, h2, h3 {
  font-family: var(--font-serif);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.01em;
}

/* ============ 4. COMPONENTES REUTILIZÁVEIS ============ */
/* Amplia o container do Bootstrap para o nosso grid */
@media (min-width: 1200px) {
  .container, .container-lg, .container-md, .container-sm, .container-xl {
    max-width: var(--container);
  }
}

/* Eyebrow (rótulo em maiúsculas com traço) */
.eyebrow {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: currentColor;
  opacity: 0.7;
}
.eyebrow--light { color: var(--gold-light); }
.eyebrow--center { justify-content: center; }

/* Botões */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 0.95rem 1.75rem;
  border-radius: 50px;
  transition: transform 0.3s var(--ease), background 0.3s var(--ease),
              color 0.3s var(--ease), box-shadow 0.3s var(--ease);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }

.btn--gold {
  background: var(--gold);
  color: var(--navy-deep);
  box-shadow: 0 12px 30px -12px rgba(201, 169, 106, 0.7);
}
.btn--gold:hover { background: var(--gold-light); }

.btn--ghost {
  background: transparent;
  color: var(--off-white);
  border: 1px solid rgba(247, 244, 238, 0.45);
}
.btn--ghost:hover { border-color: var(--off-white); background: rgba(247, 244, 238, 0.08); }

.btn--navy {
  background: var(--navy);
  color: var(--off-white);
}
.btn--navy:hover { background: var(--navy-soft); }

/* ============ 5. HEADER FIXO (Bootstrap navbar) ============ */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1030;
  padding-top: 20px;
  transition: background 0.4s var(--ease), box-shadow 0.4s var(--ease), padding 0.4s var(--ease);
}
.site-header .navbar { padding-block: 0.7rem; transition: padding 0.4s var(--ease); }

.header__brand { display: flex; align-items: center; }
.header__logo {
  width: 56px;
  height: 56px;
  object-fit: cover;
  flex: none;
  transition: width 0.4s var(--ease), height 0.4s var(--ease);
}

/* CTA do header — mais compacto que o botão padrão */
.header__cta {
  padding: 0.58rem 1.35rem;
  font-size: 0.82rem;
}

/* Links */
.header__nav { gap: 0.35rem; align-items: center; }
.header__nav .nav-link {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(247, 244, 238, 0.85);
  position: relative;
  padding: 0.4rem 0.9rem;
  transition: color 0.25s var(--ease);
}
.header__nav .nav-link::after {
  content: "";
  position: absolute;
  left: 0.9rem; right: 0.9rem; bottom: 0.15rem;
  height: 1.5px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease);
}
.header__nav .nav-link:hover,
.header__nav .nav-link:focus { color: var(--off-white); }
.header__nav .nav-link:hover::after { transform: scaleX(1); }

/* Layout desktop em 3 zonas: logo | menu centralizado | WhatsApp */
@media (min-width: 992px) {
  .site-header .navbar > .container {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
  }
  .header__brand { justify-self: start; }
  /* display:contents no offcanvas + body para o menu/CTA entrarem no grid */
  .site-header .offcanvas-lg,
  .site-header .offcanvas-lg .offcanvas-body { display: contents !important; }
  .header__nav { justify-self: center; }
  .header__cta { justify-self: end; }
}

/* Estado "scrolled" — fundo claro (off-white), colado no topo */
.site-header.is-scrolled {
  background: var(--off-white);
  box-shadow: 0 6px 24px -14px rgba(7, 28, 52, 0.35);
  padding-top: 0;
}
.site-header.is-scrolled .navbar { padding-block: 0.75rem; }
.site-header.is-scrolled .header__logo { width: 48px; height: 48px; }
/* links em navy sobre o fundo claro */
.site-header.is-scrolled .header__nav .nav-link { color: var(--navy); }
.site-header.is-scrolled .header__nav .nav-link:hover { color: var(--navy-deep); }
.site-header.is-scrolled .header__toggle span { background: var(--navy); }

/* Botão hambúrguer (mobile) */
.header__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 32px;
  padding: 4px;
  border: none;
  box-shadow: none !important;
}
.header__toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--off-white);
  border-radius: 2px;
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}
.header__toggle:not(.collapsed) span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.header__toggle:not(.collapsed) span:nth-child(2) { opacity: 0; }
.header__toggle:not(.collapsed) span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============ 6. SEÇÃO 01 — HERO ============ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  color: var(--off-white);
  overflow: hidden;
}
.hero__media { position: absolute; inset: 0; z-index: 0; }
.hero__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* Máscara de leitura — concentrada no canto inferior-esquerdo (área do texto) */
.hero__mask {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(33deg,
      rgba(7,28,52,0.94) 0%,
      rgba(7,28,52,0.72) 24%,
      rgba(7,28,52,0.32) 46%,
      rgba(7,28,52,0) 64%),
    linear-gradient(0deg, rgba(7,28,52,0.5) 0%, rgba(7,28,52,0) 22%);
}
.hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-top: 8rem;
  padding-bottom: clamp(3.5rem, 7vh, 6rem);
}
.hero__title {
  font-size: clamp(2.3rem, 5vw, 4.3rem);
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 30px rgba(0,0,0,0.35);
  text-wrap: balance;
}
.hero__subtitle {
  font-size: clamp(1.05rem, 1.6vw, 1.3rem);
  line-height: 1.6;
  max-width: 620px;
  color: rgba(247, 244, 238, 0.9);
  margin-bottom: 2.5rem;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 1rem; }

/* ============ 6.1 HELPERS DE SEÇÃO (reutilizáveis) ============ */
.section { padding-block: var(--section-y); }
.section--light { background: var(--off-white); color: var(--ink); }
.section--sand { background: var(--sand); color: var(--ink); }
.section--navy { background: var(--navy); color: var(--off-white); }

.section__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: clamp(2rem, 4vw, 3.5rem);
}
.section__head--stack { flex-direction: column; align-items: flex-start; }
.section__head--center { flex-direction: column; align-items: center; text-align: center; }
.section__title {
  font-size: clamp(2rem, 4vw, 3.1rem);
  color: var(--navy);
}
.section--navy .section__title { color: var(--off-white); }
.section__intro {
  max-width: 620px;
  margin-top: 1.25rem;
  font-size: 1.08rem;
  color: var(--muted);
}
.section--navy .section__intro { color: rgba(247,244,238,0.8); }

/* ============ 6.2 CARROSSEL (componente reutilizável) ============ */
.carousel { position: relative; }
.carousel__track {
  display: flex;
  gap: 1.25rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  /* alinha o primeiro card ao container, permitindo "sangrar" nas bordas */
  padding-inline: max(var(--gutter), calc((100vw - var(--container)) / 2 + var(--gutter)));
  padding-block: 0.5rem;
  scrollbar-width: none;
  cursor: grab;
}
.carousel__track::-webkit-scrollbar { display: none; }
.carousel__track.is-dragging { cursor: grabbing; scroll-behavior: auto; scroll-snap-type: none; }
.carousel__track.is-dragging img { pointer-events: none; }

.carousel__nav { display: flex; gap: 0.6rem; flex: none; }
.carousel__btn {
  width: 48px; height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(10, 39, 72, 0.22);
  color: var(--navy);
  display: grid; place-items: center;
  transition: background 0.3s var(--ease), color 0.3s var(--ease),
              border-color 0.3s var(--ease), opacity 0.3s var(--ease);
}
.carousel__btn:hover { background: var(--navy); color: var(--off-white); border-color: var(--navy); }
.carousel__btn:disabled { opacity: 0.3; }
.carousel__btn:disabled:hover { background: transparent; color: var(--navy); border-color: rgba(10,39,72,0.22); }
.section--navy .carousel__btn { border-color: rgba(247,244,238,0.3); color: var(--off-white); }
.section--navy .carousel__btn:hover { background: var(--gold); color: var(--navy-deep); border-color: var(--gold); }

/* Card do carrossel "Momentos" */
.moment-card {
  position: relative;
  flex: 0 0 auto;
  width: clamp(230px, 25vw, 310px);
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  scroll-snap-align: start;
}
.moment-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}
.moment-card:hover img { transform: scale(1.06); }
.moment-card figcaption {
  position: absolute; inset: auto 0 0 0;
  padding: 2rem 1.25rem 1.1rem;
  color: var(--off-white);
  font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  background: linear-gradient(0deg, rgba(7,28,52,0.85), rgba(7,28,52,0));
}

/* ============ 6.3 MOMENTOS — marquee infinito ============ */
.moments { position: relative; overflow: hidden; }
.moments__viewport { position: relative; }

/* Máscara em degradê nas laterais — as fotos somem no fundo off-white */
.moments__viewport::before,
.moments__viewport::after {
  content: "";
  position: absolute;
  top: 0; bottom: 0;
  width: clamp(48px, 9vw, 160px);
  z-index: 4;
  pointer-events: none;
}
.moments__viewport::before {
  left: 0;
  background: linear-gradient(90deg, var(--off-white) 0%, rgba(247, 244, 238, 0) 100%);
}
.moments__viewport::after {
  right: 0;
  background: linear-gradient(270deg, var(--off-white) 0%, rgba(247, 244, 238, 0) 100%);
}
@media (max-width: 768px) {
  .moments__viewport::before,
  .moments__viewport::after { display: none; }
}

.moments__credits {
  margin: clamp(1.5rem, 3vw, 2.25rem) 0 0;
  font-size: 0.76rem;
  letter-spacing: 0.04em;
  color: var(--muted);
  opacity: 0.65;
}
.moments .carousel__track {
  padding-inline: 0;
  scroll-snap-type: none;      /* rolagem contínua, sem snap */
  scroll-behavior: auto;
}
.moment-card { cursor: pointer; }
.moment-card::after {          /* leve indicação de "clique para ampliar" */
  content: "";
  position: absolute; inset: 0;
  background: rgba(7,28,52,0);
  transition: background 0.35s var(--ease);
}
.moment-card:hover::after { background: rgba(7,28,52,0.12); }

/* Botões nas extremidades do navegador (surgem no hover) */
.moments__edge {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 54px; height: 54px;
  border-radius: 50%;
  background: rgba(247, 244, 238, 0.92);
  color: var(--navy);
  border: 1px solid rgba(10, 39, 72, 0.1);
  display: grid; place-items: center;
  box-shadow: 0 12px 34px -12px rgba(7, 28, 52, 0.45);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s var(--ease), background 0.3s var(--ease);
}
.moments__edge--prev { left: 1.25rem; }
.moments__edge--next { right: 1.25rem; }
.moments__edge:hover { background: #fff; }
@media (hover: hover) {
  .moments__viewport:hover .moments__edge { opacity: 1; pointer-events: auto; }
}

/* ============ 6.4 LIGHTBOX (modal de imagens) ============ */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: grid;
  grid-template-rows: 1fr auto;
  background: rgba(4, 14, 28, 0.92);
  backdrop-filter: blur(6px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s var(--ease), visibility 0.35s var(--ease);
}
.lightbox.is-open { opacity: 1; visibility: visible; }

.lightbox__stage {
  position: relative;
  display: grid;
  place-items: center;
  padding: clamp(1rem, 4vw, 3rem);
  min-height: 0;
}
.lightbox__stage img {
  max-width: min(92vw, 1100px);
  max-height: 72vh;
  width: auto; height: auto;
  object-fit: contain;
  border-radius: var(--radius-lg);
  box-shadow: 0 30px 80px -30px rgba(0, 0, 0, 0.8);
}
.lightbox__caption {
  position: absolute;
  bottom: clamp(0.5rem, 2vw, 1.25rem);
  left: 50%; transform: translateX(-50%);
  color: rgba(247, 244, 238, 0.85);
  font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase;
}

.lightbox__close {
  position: absolute;
  top: 1.25rem; right: 1.5rem;
  z-index: 3;
  width: 46px; height: 46px;
  border-radius: 50%;
  color: var(--off-white);
  border: 1px solid rgba(247, 244, 238, 0.25);
  display: grid; place-items: center;
  font-size: 1.4rem; line-height: 1;
  transition: background 0.3s var(--ease), border-color 0.3s var(--ease);
}
.lightbox__close:hover { background: rgba(247, 244, 238, 0.12); }

.lightbox__nav {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  z-index: 3;
  width: 54px; height: 54px;
  border-radius: 50%;
  color: var(--off-white);
  border: 1px solid rgba(247, 244, 238, 0.25);
  display: grid; place-items: center;
  transition: background 0.3s var(--ease), border-color 0.3s var(--ease);
}
.lightbox__nav:hover { background: rgba(247, 244, 238, 0.12); border-color: var(--gold); }
.lightbox__nav--prev { left: clamp(1rem, 3vw, 2.5rem); }
.lightbox__nav--next { right: clamp(1rem, 3vw, 2.5rem); }

.lightbox__thumbs {
  display: flex;
  gap: 0.6rem;
  overflow-x: auto;
  padding: 1rem clamp(1rem, 4vw, 3rem) 1.75rem;
  scrollbar-width: thin;
  scroll-behavior: smooth;
}
/* centraliza o conjunto quando sobra espaço; mantém rolagem quando estoura */
.lightbox__thumbs > :first-child { margin-inline-start: auto; }
.lightbox__thumbs > :last-child { margin-inline-end: auto; }
.lightbox__thumb {
  flex: 0 0 auto;
  width: 72px; height: 72px;
  border-radius: 6px;
  overflow: hidden;
  opacity: 0.45;
  border: 2px solid transparent;
  transition: opacity 0.25s var(--ease), border-color 0.25s var(--ease);
}
.lightbox__thumb img { width: 100%; height: 100%; object-fit: cover; }
.lightbox__thumb:hover { opacity: 0.8; }
.lightbox__thumb.is-active { opacity: 1; border-color: var(--gold); }

@media (max-width: 560px) {
  .lightbox__nav { display: none; } /* navega por swipe/thumbs no mobile */
  .lightbox__stage img { max-height: 62vh; }
}

/* ============ 6.5 SEÇÃO 03 — AUTORIDADE ============ */
/* grid: mobile = título → fotos → texto | desktop = fotos à esq., título+texto à dir. */
.authority__grid {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-areas: "head" "media" "text";
  row-gap: 2rem;
}
@media (min-width: 992px) {
  .authority__grid {
    grid-template-columns: 1fr 1fr;
    grid-template-areas: "media head" "media text";
    column-gap: clamp(2rem, 4vw, 3.5rem);
    row-gap: 1.5rem;
    align-items: center;
  }
}
.authority__head { grid-area: head; }
.authority__media { grid-area: media; align-self: center; }
.authority__text { grid-area: text; max-width: 620px; }
.authority__text p {
  color: rgba(247, 244, 238, 0.82);
  font-size: 1.06rem;
  line-height: 1.75;
  margin-bottom: 1.1rem;
}
.authority__text p:last-child { margin-bottom: 0; }

/* Mosaico de fotos — 3 verticais + 1 horizontal larga */
.auth-mosaic {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.65rem;
}
/* abaixo de 1200px (e em 2 colunas): mosaico fixo enquanto o texto rola */
@media (min-width: 992px) and (max-width: 1199.98px) {
  .authority .auth-media { align-self: stretch; }
  .authority .auth-mosaic { position: sticky; top: 110px; }
}
.auth-mosaic__cell {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: var(--radius-lg);
}
.auth-mosaic__wide {
  grid-column: 1 / -1;
  position: relative;
  margin: 0;
}
.auth-mosaic__wide img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: var(--radius-lg);
  display: block;
}
.auth-figure__badge {
  position: absolute;
  z-index: 2;
  left: 1rem; bottom: 1rem;
  background: var(--gold);
  color: var(--navy-deep);
  font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 0.55rem 1rem;
  border-radius: 50px;
  box-shadow: var(--shadow);
}

/* Cards de autoridade */
.auth-cards { margin-top: clamp(2.5rem, 5vw, 4rem); }
.auth-card {
  height: 100%;
  padding: 1.75rem 1.6rem;
  border: 1px solid rgba(247, 244, 238, 0.14);
  border-radius: var(--radius-lg);
  transition: transform 0.35s var(--ease), border-color 0.35s var(--ease),
              background 0.35s var(--ease);
}
.auth-card:hover {
  transform: translateY(-4px);
  border-color: rgba(201, 169, 106, 0.7);
  background: rgba(247, 244, 238, 0.04);
}
.auth-card__icon {
  display: inline-flex;
  color: var(--gold);
  margin-bottom: 1.1rem;
}
.auth-card__icon svg { width: 34px; height: 34px; }
.auth-card__title {
  font-family: var(--font-sans);
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.35;
  color: var(--off-white);
  letter-spacing: 0;
}

/* ============ 6.6 PULLQUOTE (frase de destaque — reutilizável) ============ */
.pullquote {
  position: relative;
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(1.4rem, 2.6vw, 2.15rem);
  line-height: 1.4;
  color: var(--navy);
  margin: 0;
}
.pullquote--band {
  margin-top: clamp(2.5rem, 5vw, 4rem);
  padding: clamp(2.75rem, 5vw, 4.5rem) clamp(1.75rem, 5vw, 4rem);
  background: var(--navy);
  color: var(--off-white);
  border-radius: var(--radius-lg);
  text-align: center;
}
.pullquote--band::before {
  content: "\201C";
  display: block;
  font-family: var(--font-serif);
  font-size: 4.5rem;
  line-height: 0.6;
  color: var(--gold);
  margin-bottom: 1.25rem;
}

/* ============ 6.7 SEÇÃO 04 — POSICIONAMENTO ============ */
.positioning__text { margin-top: 1.75rem; max-width: 640px; }
.positioning__text p {
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.75;
  margin-bottom: 1.1rem;
}
.positioning__text p:last-child { margin-bottom: 0; }
.positioning__figure { margin: 0; }
.positioning__figure img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

/* ============ 6.8 SEÇÃO 05 — SOLUÇÕES ============ */
.solutions__intro { margin-top: -0.5rem; margin-bottom: clamp(2.5rem, 5vw, 3.5rem); }

.solution-card {
  height: 100%;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(10, 39, 72, 0.1);
  border-radius: var(--radius-lg);
  transition: transform 0.35s var(--ease), border-color 0.35s var(--ease),
              box-shadow 0.35s var(--ease);
}
.solution-card:hover {
  transform: translateY(-5px);
  border-color: rgba(201, 169, 106, 0.7);
  box-shadow: var(--shadow);
}
.solution-card__media { overflow: hidden; }
.solution-card__media img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}
.solution-card:hover .solution-card__media img { transform: scale(1.05); }
.solution-card__body { padding: clamp(1.6rem, 3vw, 2.4rem); }
.solution-card__label {
  display: flex;
  align-items: baseline;
  gap: 0.6rem;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 1.15rem;
}
.solution-card__label b {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
  font-size: 1.8rem;
  letter-spacing: 0;
  text-transform: none;
  line-height: 1;
}
.solution-card__title {
  font-family: var(--font-serif);
  font-size: clamp(1.35rem, 2vw, 1.7rem);
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 0.9rem;
}
.solution-card__text {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
  margin: 0;
}

.solutions__cta {
  margin-top: clamp(2.5rem, 5vw, 3.5rem);
  display: flex;
  justify-content: center;
}

/* ============ 6.9 UTILITÁRIOS DE TEXTO / QUOTE ============ */
.prose p { color: var(--muted); font-size: 1.06rem; line-height: 1.75; margin-bottom: 1.1rem; }
.prose p:last-child { margin-bottom: 0; }
.section--navy .prose p { color: rgba(247, 244, 238, 0.82); }
.prose { margin-top: 1.75rem; max-width: 640px; }

.section--navy .pullquote { color: var(--off-white); }
.pullquote--left {
  border-left: 2px solid var(--gold);
  padding-left: 1.6rem;
  margin-top: clamp(2rem, 4vw, 3rem);
  max-width: 820px;
}

/* ============ 6.10 FAIXA DE MÍDIA (dentro de Sobre) ============ */
.media-strip {
  margin-top: clamp(2.5rem, 5vw, 4rem);
  padding-top: clamp(2rem, 4vw, 3rem);
  border-top: 1px solid rgba(247, 244, 238, 0.14);
  text-align: center;
}
.media-strip__label {
  display: block;
  margin-bottom: 1.5rem;
  font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold);
}
.media-strip__logos {
  list-style: none; margin: 0; padding: 0;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.9rem;
}
.media-strip__logos li {
  display: grid; place-items: center;
  min-height: 68px;
  padding: 0.9rem 1rem;
  border: 1px solid rgba(247, 244, 238, 0.14);
  border-radius: var(--radius);
  font-family: var(--font-serif);
  font-size: 1.05rem;
  color: rgba(247, 244, 238, 0.5);
  transition: border-color 0.3s var(--ease), color 0.3s var(--ease);
}
.media-strip__logos li:hover { border-color: rgba(201, 169, 106, 0.6); color: rgba(247, 244, 238, 0.85); }
@media (max-width: 680px) {
  .media-strip__logos { grid-template-columns: repeat(2, 1fr); }
}

/* ============ 6.11 SEÇÃO 06 — CONSULTORIA ============ */
.consultoria__title { position: relative; margin-bottom: 0; }
.consultoria__title::after {
  content: ""; display: block;
  width: 60px; height: 2px;
  background: var(--gold);
  margin-top: 1.5rem;
}

/* imagem horizontal + card de citação sobreposto */
.consultoria__figure { position: relative; margin: 0; }
.consultoria__figure img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius-lg);
}
.consultoria__quote {
  position: absolute;
  right: 1.25rem; bottom: 1.25rem;
  max-width: 260px; margin: 0;
  padding: 1.5rem 1.5rem 1.4rem;
  background: rgba(7, 28, 52, 0.92);
  border: 1px solid rgba(201, 169, 106, 0.4);
  border-radius: var(--radius-lg);
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.05rem; line-height: 1.4;
  color: var(--off-white);
  backdrop-filter: blur(2px);
}
.consultoria__quote::before {
  content: "\201C";
  display: block;
  font-family: var(--font-serif);
  font-size: 2.6rem; line-height: 0.4;
  color: var(--gold);
  margin-bottom: 0.85rem;
}

/* grade de cards com ícone */
.consultoria__grid { margin-top: clamp(2.5rem, 5vw, 3.5rem); }
.feature-card {
  height: 100%;
  padding: 1.6rem 1.5rem;
  border: 1px solid rgba(247, 244, 238, 0.12);
  border-radius: var(--radius-lg);
  transition: transform 0.35s var(--ease), border-color 0.35s var(--ease), background 0.35s var(--ease);
}
.feature-card:hover {
  transform: translateY(-4px);
  border-color: rgba(201, 169, 106, 0.6);
  background: rgba(247, 244, 238, 0.03);
}
.feature-card__icon {
  display: grid; place-items: center;
  width: 48px; height: 48px;
  border-radius: 50%;
  border: 1.5px solid rgba(201, 169, 106, 0.5);
  color: var(--gold);
  margin-bottom: 1.1rem;
}
.feature-card__icon svg { width: 24px; height: 24px; }
.feature-card__title {
  font-family: var(--font-serif);
  font-size: 1.15rem; line-height: 1.25;
  color: var(--off-white);
  margin-bottom: 0.6rem;
}
.feature-card__text { color: rgba(247, 244, 238, 0.62); font-size: 0.92rem; line-height: 1.55; margin: 0; }

/* barra final: frase + botão */
.consultoria__bar {
  margin-top: clamp(2.5rem, 5vw, 3.5rem);
  display: flex; align-items: center; justify-content: space-between; gap: 2rem;
  padding: clamp(1.75rem, 3vw, 2.5rem);
  border: 1px solid rgba(201, 169, 106, 0.35);
  border-radius: var(--radius-lg);
}
.consultoria__bar-quote {
  position: relative; margin: 0;
  padding-left: 2.75rem;
  max-width: 640px;
  font-family: var(--font-serif); font-style: italic;
  font-size: clamp(1.15rem, 1.8vw, 1.5rem); line-height: 1.4;
  color: var(--off-white);
}
.consultoria__bar-quote::before {
  content: "\201C";
  position: absolute; left: 0; top: 0;
  font-family: var(--font-serif); font-size: 3rem; line-height: 1;
  color: var(--gold);
}
.consultoria__bar .btn { flex: none; }

@media (max-width: 767.98px) {
  .consultoria__quote { position: static; max-width: none; margin-top: 1rem; }
  .consultoria__bar { flex-direction: column; align-items: flex-start; }
}

/* ============ 6.12 SEÇÃO 07 — EVENTOS ============ */
.events__head { margin-bottom: clamp(2.5rem, 4vw, 3.5rem); }

.events__figure { height: 100%; margin: 0; }
.events__figure img {
  width: 100%; height: 100%;
  min-height: 360px;
  object-fit: cover;
  border-radius: var(--radius-lg);
}
.events__card {
  height: 100%;
  display: flex; flex-direction: column; justify-content: center;
  padding: clamp(2rem, 3.5vw, 3.25rem);
  background: #fff;
  border: 1px solid rgba(10, 39, 72, 0.1);
  border-radius: var(--radius-lg);
}
.events__card-icon {
  display: grid; place-items: center;
  width: 58px; height: 58px;
  border-radius: 50%;
  background: rgba(201, 169, 106, 0.14);
  color: var(--gold);
  margin-bottom: 1.35rem;
}
.events__card-icon svg { width: 28px; height: 28px; }
.events__card-rule { width: 48px; height: 2px; background: var(--gold); margin-bottom: 1.5rem; }
.events__card .prose { margin-top: 0; max-width: none; }

.events__types { margin-top: clamp(1.5rem, 3vw, 2rem); }
.event-type {
  display: flex; align-items: center; gap: 1rem;
  height: 100%;
  padding: 1.1rem 1.3rem;
  background: #fff;
  border: 1px solid rgba(10, 39, 72, 0.1);
  border-radius: var(--radius-lg);
  transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease), transform 0.3s var(--ease);
}
.event-type:hover { border-color: rgba(201, 169, 106, 0.6); box-shadow: var(--shadow); transform: translateY(-3px); }
.event-type__icon { flex: none; color: var(--gold); }
.event-type__icon svg { width: 30px; height: 30px; }
.event-type__label {
  font-family: var(--font-serif);
  font-size: 1.1rem; line-height: 1.2;
  color: var(--navy);
}

.events__cta { margin-top: clamp(2.5rem, 4vw, 3.5rem); display: flex; justify-content: center; }

/* ============ 6.13 SEÇÃO 08 — COMO FUNCIONA (sticky + steps) ============ */
.how__aside {
  position: sticky;
  top: 110px;
  padding-right: 1rem;
}
.how__lead { margin-top: 1.25rem; max-width: 340px; color: var(--muted); line-height: 1.7; }
.how__ornament { display: block; margin: 1.75rem 0; color: var(--gold); }
.how__figure { margin: 1.75rem 0 0; }
.how__figure img {
  width: 100%; max-width: 340px;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

.steps { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 1.15rem; }
.step {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 1.5rem;
  align-items: center;
  padding: 1.5rem 1.85rem;
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(201, 169, 106, 0.3);
  border-radius: var(--radius-lg);
  transition: background 0.35s var(--ease), border-color 0.35s var(--ease);
}
.step:hover { background: rgba(255, 255, 255, 0.85); border-color: rgba(201, 169, 106, 0.65); }
.step__num {
  width: 64px; height: 64px;
  border-radius: 50%;
  border: 1.5px solid rgba(201, 169, 106, 0.6);
  display: grid; place-items: center;
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--gold);
}
.step__body { border-left: 1px solid rgba(201, 169, 106, 0.35); padding-left: 1.5rem; }
.step__title {
  font-family: var(--font-serif);
  font-size: 1.4rem; color: var(--navy);
  margin-bottom: 0.4rem;
}
.step__body p { color: var(--muted); line-height: 1.65; margin: 0; }

.how__note {
  margin-top: 1.15rem;
  display: flex; align-items: center; gap: 1.35rem;
  padding: 1.5rem 1.85rem;
  background: rgba(10, 39, 72, 0.05);
  border: 1px solid rgba(201, 169, 106, 0.3);
  border-radius: var(--radius-lg);
}
.how__note-icon {
  flex: none;
  width: 56px; height: 56px;
  border-radius: 50%;
  border: 1.5px solid rgba(201, 169, 106, 0.6);
  display: grid; place-items: center;
  color: var(--gold);
}
.how__note-icon svg { width: 26px; height: 26px; }
.how__note p { margin: 0; color: var(--muted); line-height: 1.6; }

@media (max-width: 991.98px) {
  .how__aside { position: static; margin-bottom: 2.5rem; }
  .how__figure { display: none; }
}
@media (max-width: 560px) {
  .step { grid-template-columns: 1fr; gap: 1rem; padding: 1.5rem; align-items: start; }
  .step__num { width: 52px; height: 52px; font-size: 1.25rem; }
  .step__body { border-left: none; padding-left: 0; }
  .how__note { flex-direction: column; align-items: flex-start; gap: 1rem; }
}

/* ============ 6.14 SEÇÃO 09 — DEPOIMENTOS ============ */
.testimonials .section__intro { margin-bottom: clamp(2rem, 4vw, 3rem); }
.testimonial-card {
  height: 100%; margin: 0;
  padding: clamp(1.75rem, 3vw, 2.5rem);
  background: #fff;
  border: 1px solid rgba(10, 39, 72, 0.1);
  border-radius: var(--radius-lg);
  display: flex; flex-direction: column; gap: 1.75rem;
}
.testimonial-card__quote { color: var(--gold); }
.testimonial-card__quote svg { width: 36px; height: 36px; }
.testimonial-card blockquote {
  margin: 0;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.25rem;
  color: var(--navy);
  line-height: 1.5;
  flex: 1;
}
.testimonial-card figcaption {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.15rem;
}
.testimonial-card figcaption b { color: var(--navy); font-size: 1rem; }
.testimonial-card figcaption small { color: var(--muted); font-size: 0.82rem; }

/* ============ 6.15 SEÇÃO 10 — FAQ (accordion) ============ */
.faq__aside { margin-bottom: 1.75rem; }
.faq .accordion { --bs-accordion-border-color: rgba(10, 39, 72, 0.12); }
.faq .accordion-item {
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(10, 39, 72, 0.14);
}
.faq .accordion-button {
  background: transparent;
  padding: 1.35rem 0;
  font-family: var(--font-serif);
  font-size: clamp(1.1rem, 1.8vw, 1.35rem);
  color: var(--navy);
  box-shadow: none;
}
.faq .accordion-button:not(.collapsed) { color: var(--navy); background: transparent; }
.faq .accordion-button:focus { box-shadow: none; }
.faq .accordion-button::after {
  width: 1.1rem; height: 1.1rem; background-size: 1.1rem;
}
.faq .accordion-body {
  padding: 0 0 1.4rem;
  color: var(--muted);
  line-height: 1.7;
  max-width: 760px;
}

/* ============ 6.16 SEÇÃO 11 — CTA FINAL ============ */
.cta {
  position: relative;
  overflow: hidden;
  color: var(--off-white);
  text-align: left;
}
.cta__bg {
  position: absolute; inset: 0; z-index: 0;
  background: url("../images/img-cta-final.png") center/cover no-repeat;
}
.cta__bg::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(7,28,52,0.94) 0%, rgba(7,28,52,0.78) 40%, rgba(7,28,52,0.35) 75%, rgba(7,28,52,0.15) 100%);
}
.cta__content { position: relative; z-index: 1; }
.cta__title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  line-height: 1.1;
  margin-bottom: 1.5rem;
}
.cta__text { margin-bottom: 2.25rem; }
.cta__text p { color: rgba(247, 244, 238, 0.85); font-size: 1.08rem; line-height: 1.7; margin: 0; }
.cta__btn { font-size: 1rem; padding: 1.1rem 2.25rem; }
.cta__phone {
  margin-top: 1.5rem;
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--gold-light);
}
.cta__regions { margin-top: 0.5rem; color: rgba(247, 244, 238, 0.6); font-size: 0.9rem; }

/* ============ 6.17 FOOTER ============ */
.footer {
  background: var(--navy-deep);
  color: rgba(247, 244, 238, 0.75);
  padding-block: clamp(3.5rem, 6vw, 5rem) 2rem;
}
.footer__top { padding-bottom: 2.5rem; border-bottom: 1px solid rgba(247, 244, 238, 0.1); }
.footer__logo { width: 54px; height: 54px; margin-bottom: 1.25rem; }
.footer__tag { font-family: var(--font-serif); font-size: 1.3rem; color: var(--off-white); line-height: 1.4; max-width: 340px; }
.footer__heading {
  font-size: 0.75rem; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1rem;
}
.footer__contacts { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 0.6rem; }
.footer a { transition: color 0.25s var(--ease); }
.footer a:hover { color: var(--off-white); }
.footer__bottom {
  padding-top: 2rem;
  font-size: 0.85rem;
  color: rgba(247, 244, 238, 0.5);
}

/* ============ 7. BOTÃO FLUTUANTE WHATSAPP ============ */
.wa-float {
  position: fixed;
  right: 1.4rem;
  bottom: 1.4rem;
  z-index: 90;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  box-shadow: 0 12px 30px -8px rgba(37, 211, 102, 0.6);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.wa-float:hover { transform: scale(1.08) translateY(-2px); }
.wa-float::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid #25d366;
  animation: waPulse 2.2s ease-out infinite;
}
@keyframes waPulse {
  0% { transform: scale(1); opacity: 0.7; }
  100% { transform: scale(1.5); opacity: 0; }
}

/* ============ 8. UTILITÁRIOS & RESPONSIVO ============ */
/* Menu mobile (< lg = 992px) — offcanvas deslizando da direita */
@media (max-width: 991.98px) {
  .header__toggle { display: flex; }

  .site-header .offcanvas {
    background: var(--navy-deep);
    width: min(82vw, 340px);
    border: none;
  }
  .offcanvas-header {
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid rgba(247, 244, 238, 0.12);
  }
  .offcanvas-title {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    color: var(--off-white);
  }
  .offcanvas-body { display: flex; flex-direction: column; padding: 1rem 1.5rem 2rem; }
  .header__nav { align-items: stretch; }
  .header__nav .nav-link {
    padding: 0.95rem 0.25rem;
    border-bottom: 1px solid rgba(247, 244, 238, 0.1);
    font-size: 1.05rem;
    color: rgba(247, 244, 238, 0.85);
  }
  .header__nav .nav-link::after { display: none; }
  /* mantém os links claros mesmo com o header "scrolled" (offcanvas é navy) */
  .site-header.is-scrolled .header__nav .nav-link { color: rgba(247, 244, 238, 0.85); }
  .site-header.is-scrolled .header__nav .nav-link:hover { color: var(--off-white); }
  .header__cta { display: inline-flex; margin-top: 1.35rem; width: 100%; }

  .offcanvas .header__social {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    margin-top: 1.5rem;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(247, 244, 238, 0.12);
  }
  .header__social a {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    color: rgba(247, 244, 238, 0.85);
    font-size: 0.95rem;
    transition: color 0.25s var(--ease);
  }
  .header__social a:hover { color: var(--gold); }
}

/* Instagram do menu só aparece no offcanvas (mobile) */
.header__social { display: none; }

@media (max-width: 680px) {
  .section__head { flex-direction: column; align-items: flex-start; }
  .carousel__nav { display: none; } /* no mobile navega por arraste/swipe */
}

/* ===== Espaçamento lateral no mobile (30px) ===== */
@media (max-width: 767.98px) {
  :root { --gutter: 30px; }
  .container { padding-left: 30px; padding-right: 30px; }
}

/* ===== HERO — mobile ===== */
@media (max-width: 991.98px) {
  .hero__mask {
    background:
      linear-gradient(180deg, rgba(7,28,52,0.6) 0%, rgba(7,28,52,0) 16%),
      linear-gradient(0deg, rgba(7,28,52,0.94) 0%, rgba(7,28,52,0.6) 45%, rgba(7,28,52,0.2) 72%, rgba(7,28,52,0.05) 100%);
  }
}
@media (max-width: 768px) {
  .hero { min-height: 90svh; }
  .hero__content { padding-top: 6rem; padding-bottom: clamp(2.5rem, 7vh, 4rem); }
  .hero__title { font-size: clamp(2rem, 8.5vw, 3rem); margin-bottom: 1.1rem; }
  .hero__subtitle { font-size: 1rem; line-height: 1.55; margin-bottom: 1.75rem; }
  .hero__actions { gap: 0.75rem; }
}

@media (max-width: 560px) {
  .hero__actions { flex-direction: column; align-items: stretch; }
  .hero__actions .btn { width: 100%; }
  .site-header { padding-top: 12px; }
  .header__logo { width: 46px; height: 46px; }
  .site-header.is-scrolled .header__logo { width: 42px; height: 42px; }
}

/* Acessibilidade — reduz movimento */
@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; }
  html { scroll-behavior: auto; }
}
