/* ─── FONTES SELF-HOSTED ──────────────────────────────────────── */
@font-face {
  font-family: 'Playfair Display';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('assets/fonts/playfair-display-v40-latin-700.woff2') format('woff2');
}
@font-face {
  font-family: 'Playfair Display';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url('assets/fonts/playfair-display-v40-latin-800.woff2') format('woff2');
}
@font-face {
  font-family: 'Playfair Display';
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url('assets/fonts/playfair-display-v40-latin-900.woff2') format('woff2');
}
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url('assets/fonts/roboto-v51-latin-300.woff2') format('woff2');
}
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('assets/fonts/roboto-v51-latin-400.woff2') format('woff2');
}
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('assets/fonts/roboto-v51-latin-500.woff2') format('woff2');
}
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('assets/fonts/roboto-v51-latin-700.woff2') format('woff2');
}

/* ─── NO-JS FALLBACK ─── */
.no-js [data-reveal] { opacity: 1; transform: none; }

/* ─── OVERFLOW HORIZONTAL GUARD ─── */
html, body { overflow-x: hidden; }

/* ═══════════════════════════════════════════════════
   DESIGN TOKENS — Brand Manual Prof. Daniel Diniz
═══════════════════════════════════════════════════ */
:root {
  /* Cores institucionais */
  --oceano:      #06346E; /* Principal */
  --oceano-dark: #041E42;
  --oceano-mid:  #0A4A9C;
  --persia:      #F6D58F; /* Secundária */
  --tangerina:   #FA9028; /* Apoio */
  --cha5:        #F27F00; /* Apoio */
  --crepusculo:  #656482; /* Apoio */
  --aurora:      #D0B794; /* Apoio */
  --artico:      #57799A; /* Apoio */
  --whatsapp:    #25D366;
  --whatsapp-dk: #1DA851;
  --texto:       #0D1B2A;
  --bg-quente:   #F8F6F0;
  --white:       #FFFFFF;

  /* Tipografia — Brand Manual */
  --font-display: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-body:    'Roboto', system-ui, -apple-system, sans-serif;

  /* Espaçamento */
  --sp-xs:  4px;
  --sp-sm:  8px;
  --sp-md:  16px;
  --sp-lg:  24px;
  --sp-xl:  40px;
  --sp-2xl: 64px;
  --sp-3xl: 96px;

  /* Layout */
  --max-w:      1140px;
  --nav-h:      72px;
  --radius-sm:  6px;
  --radius-md:  12px;
  --radius-full: 100px;

  /* Transições */
  --ease:   cubic-bezier(0.16, 1, 0.3, 1);
  --t-fast: 0.2s var(--ease);
  --t-mid:  0.4s var(--ease);
  --t-slow: 0.6s var(--ease);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-h);
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--texto);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ═══════════════════════════════════════════════════
   CONTAINER
═══════════════════════════════════════════════════ */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--sp-md);
}

/* ═══════════════════════════════════════════════════
   TIPOGRAFIA BASE
═══════════════════════════════════════════════════ */
h1, h2, h3 { font-family: var(--font-display); line-height: 1.15; }

/* ═══════════════════════════════════════════════════
   SCROLL REVEAL
═══════════════════════════════════════════════════ */
[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity var(--t-slow), transform var(--t-slow);
}
[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}
[data-reveal][data-delay="1"] { transition-delay: 100ms; }
[data-reveal][data-delay="2"] { transition-delay: 200ms; }
[data-reveal][data-delay="3"] { transition-delay: 300ms; }
[data-reveal][data-delay="4"] { transition-delay: 400ms; }

/* ═══════════════════════════════════════════════════
   BOTÕES GLOBAIS
═══════════════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-sm);
  font-family: var(--font-body);
  font-weight: 700;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: filter var(--t-fast), transform var(--t-fast);
  white-space: nowrap;
}
.btn:hover  { filter: brightness(1.08); }
.btn:active { transform: scale(0.97); }

.btn--wa {
  background: var(--whatsapp);
  color: var(--white);
  padding: 13px 22px;
  font-size: 14px;
  box-shadow: 0 4px 16px rgba(37,211,102,0.3);
}
.btn--sm  { padding: 9px 16px; font-size: 12px; }

.btn--outline {
  border: 1.5px solid rgba(6,52,110,0.25);
  color: var(--crepusculo);
  background: transparent;
  padding: 13px 20px;
  font-size: 14px;
}

/* ═══════════════════════════════════════════════════
   NAVEGAÇÃO
═══════════════════════════════════════════════════ */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(6,52,110,0.07);
  transition: background var(--t-mid), box-shadow var(--t-mid);
  height: var(--nav-h);
  display: flex;
  align-items: center;
}
.nav.scrolled {
  background: rgba(255,255,255,0.98);
  box-shadow: 0 2px 20px rgba(6,52,110,0.08);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-md);
}

.nav__logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.nav__logo-img {
  display: block;
  height: 60px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
}
@media (max-width: 480px) {
  .nav__logo-img { height: 48px; }
}

.nav__links {
  display: none;
  align-items: center;
  gap: var(--sp-xl);
}
.nav__link {
  font-size: 13px;
  font-weight: 500;
  color: var(--crepusculo);
  transition: color var(--t-fast);
}
.nav__link:hover { color: var(--oceano); }

.nav__cta { display: none; }

/* Hamburger */
.nav__burger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.nav__burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--oceano);
  border-radius: 2px;
  transition: transform var(--t-fast), opacity var(--t-fast);
}
.nav__burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile drawer */
.nav__mobile {
  position: fixed;
  top: var(--nav-h);
  left: 0; right: 0; bottom: 0;
  background: var(--oceano);
  display: flex;
  flex-direction: column;
  padding: var(--sp-2xl) var(--sp-xl);
  gap: var(--sp-lg);
  transform: translateX(100%);
  transition: transform var(--t-mid), visibility var(--t-mid);
  z-index: 99;
  visibility: hidden;
}
.nav__mobile.open {
  transform: translateX(0);
  visibility: visible;
}

.nav__mobile-link {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--white);
  border-bottom: 1px solid rgba(246,213,143,0.15);
  padding-bottom: var(--sp-md);
  transition: color var(--t-fast);
}
.nav__mobile-link:hover { color: var(--persia); }
.nav__mobile-cta { margin-top: var(--sp-lg); align-self: flex-start; }

@media (min-width: 768px) {
  .nav__links  { display: flex; }
  .nav__cta    { display: inline-flex; }
  .nav__burger { display: none; }
}

/* ═══════════════════════════════════════════════════
   UTILITÁRIOS TIPOGRÁFICOS
═══════════════════════════════════════════════════ */
.eyebrow {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--oceano);
  margin-bottom: var(--sp-md);
  display: flex;
  align-items: center;
  gap: var(--sp-sm);
}
.eyebrow::before {
  content: '';
  width: 20px;
  height: 2px;
  background: var(--persia);
  flex-shrink: 0;
}

.sec-tag {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--oceano);
  margin-bottom: var(--sp-md);
  display: flex;
  align-items: center;
  gap: var(--sp-sm);
}
.sec-tag::before {
  content: '';
  width: 20px;
  height: 2px;
  background: var(--persia);
  flex-shrink: 0;
}
.sec-tag--center { justify-content: center; }
.sec-tag--light  { color: var(--persia); }
.sec-tag--light::before { background: var(--persia); }

.sec-title {
  font-family: var(--font-display);
  font-size: clamp(22px, 3.5vw, 30px);
  font-weight: 800;
  color: var(--oceano);
  line-height: 1.15;
  letter-spacing: -0.4px;
  margin-bottom: var(--sp-md);
}
.sec-title--white  { color: var(--white); }
.sec-title--center { text-align: center; }

/* ═══════════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════════ */
.hero {
  display: flex;
  flex-direction: column;
  background: var(--white);
}

.hero__left {
  padding: var(--sp-2xl) var(--sp-md) var(--sp-xl);
  display: flex;
  flex-direction: column;
  /* Textura: dot grid navy + gradiente radial do canto direito */
  background-color: var(--white);
  background-image:
    radial-gradient(ellipse 70% 80% at 110% 10%, rgba(6,52,110,0.06) 0%, transparent 65%),
    url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='2' cy='2' r='1.1' fill='%2306346E' fill-opacity='0.07'/%3E%3C/svg%3E");
  background-repeat: repeat, repeat;
  background-size: auto, 24px 24px;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(32px, 7vw, 56px);
  font-weight: 900;
  color: var(--oceano);
  line-height: 1.1;
  letter-spacing: -1px;
  margin-bottom: var(--sp-md);
}
.hero__title em {
  font-style: normal;
  color: var(--tangerina);
}

.hero__sub {
  font-size: 16px;
  color: var(--crepusculo);
  line-height: 1.7;
  margin-bottom: var(--sp-lg);
  max-width: 560px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-sm);
  margin-bottom: var(--sp-lg);
}

.hero__trust {
  display: flex;
  gap: var(--sp-xl);
  padding-top: var(--sp-lg);
  border-top: 1px solid rgba(6,52,110,0.08);
}
.trust-item { text-align: left; }
.trust-item__num {
  display: block;
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 900;
  color: var(--oceano);
  letter-spacing: -0.5px;
  line-height: 1;
  margin-bottom: 2px;
}
.trust-item span {
  font-size: 11px;
  color: var(--aurora);
  font-weight: 500;
}

/* Hero — checklist de diferenciais */
.hero__checklist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: var(--sp-lg);
}
.hero__check-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--crepusculo);
  line-height: 1.5;
}
.hero__check-item strong { color: var(--oceano); font-weight: 700; }
.hero__check-icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(246,213,143,0.2);
  border: 1.5px solid var(--persia);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--oceano);
  margin-top: 1px;
}


/* Hero — coluna direita (foto) */
.hero__right {
  background: var(--oceano);
  position: relative;
  overflow: hidden;
  min-height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 0 var(--sp-lg);
}
.hero__right::before,
.hero__right::after {
  content: '';
  position: absolute;
  border-radius: 50%;
}
.hero__right::before {
  top: -60px; right: -60px;
  width: 260px; height: 260px;
  border: 1px solid rgba(246,213,143,0.1);
}
.hero__right::after {
  bottom: 80px; left: -40px;
  width: 180px; height: 180px;
  background: rgba(246,213,143,0.04);
}

.hero__photo-wrap {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left center;
  display: block;
}
.hero__photo-overlay {
  position: absolute;
  inset: 0;
  /* Gradiente: escuro no topo (cards), translúcido no centro, escuro na base (badge) */
  background: linear-gradient(
    to bottom,
    rgba(6,52,110,0.15)  0%,
    rgba(6,52,110,0.05) 40%,
    rgba(6,52,110,0.55) 100%
  );
}

.hero__badge {
  position: relative;
  z-index: 3;
  background: rgba(246,213,143,0.1);
  border: 1px solid rgba(246,213,143,0.22);
  border-radius: var(--radius-md);
  padding: var(--sp-md);
  backdrop-filter: blur(4px);
  margin: 0 var(--sp-lg);
}
.hero__badge-name {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 3px;
}
.hero__badge-sub {
  font-size: 11px;
  color: rgba(246,213,143,0.7);
}
.hero__badge-stars {
  color: var(--persia);
  font-size: 13px;
  letter-spacing: 2px;
  margin-top: 6px;
}

@media (min-width: 768px) {
  .hero {
    flex-direction: row;
  }
  .hero__left {
    flex: 1;
    padding: var(--sp-xl) var(--sp-xl) var(--sp-xl) max(var(--sp-lg), calc((100vw - var(--max-w)) / 2 + var(--sp-md)));
    justify-content: center;
    background-image:
      radial-gradient(ellipse 55% 90% at 105% 5%, rgba(6,52,110,0.055) 0%, transparent 60%),
      url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='2' cy='2' r='1.1' fill='%2306346E' fill-opacity='0.065'/%3E%3C/svg%3E");
  }
  .hero__right { flex: 0 0 400px; min-height: unset; }
}
@media (min-width: 1024px) {
  .hero__right { flex: 0 0 46%; }
}
@media (min-width: 1440px) {
  .hero__right { flex: 0 0 50%; }
}

/* ═══════════════════════════════════════════════════
   SOBRE
═══════════════════════════════════════════════════ */
.sobre {
  padding: var(--sp-2xl) 0;
  background: var(--bg-quente);
}

.sobre__grid {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2xl);
}

.sobre__text {
  font-size: 14px;
  color: var(--crepusculo);
  line-height: 1.75;
  margin-bottom: var(--sp-lg);
}

.pills { display: flex; flex-wrap: wrap; gap: var(--sp-sm); }
.pill {
  font-size: 11px;
  font-weight: 600;
  color: var(--oceano);
  background: rgba(6,52,110,0.07);
  border: 1px solid rgba(6,52,110,0.15);
  padding: 5px 13px;
  border-radius: var(--radius-full);
}

.sobre__card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: var(--sp-lg) var(--sp-xl);
  border: 1px solid rgba(6,52,110,0.08);
  display: flex;
  flex-direction: column;
  gap: var(--sp-lg);
}

.val-item { display: flex; gap: var(--sp-md); align-items: flex-start; }
.val-item__icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  background: rgba(246,213,143,0.2);
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--persia);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--oceano);
}
.val-item__title {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  color: var(--oceano);
  margin-bottom: 3px;
}
.val-item__desc { font-size: 12px; color: var(--crepusculo); line-height: 1.55; }

@media (min-width: 768px) {
  .sobre { padding: var(--sp-3xl) 0; }
  .sobre__grid { flex-direction: row; align-items: center; gap: var(--sp-3xl); }
  .sobre__left { flex: 1; }
  .sobre__card { flex: 0 0 380px; }
}

/* ═══════════════════════════════════════════════════
   SERVIÇOS
═══════════════════════════════════════════════════ */
.servicos {
  padding: var(--sp-2xl) 0;
  background: var(--white);
}

.servicos__head {
  text-align: center;
  max-width: 480px;
  margin: 0 auto var(--sp-2xl);
}

.servicos__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-md);
}

.srv-card {
  border: 1px solid rgba(6,52,110,0.1);
  border-left: 4px solid var(--persia);
  border-radius: var(--radius-md);
  padding: var(--sp-xl);
  transition: transform var(--t-fast), box-shadow var(--t-fast), border-left-color var(--t-fast);
  cursor: default;
}
.srv-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(6,52,110,0.08);
  border-left-color: var(--tangerina);
}

.srv-card__num {
  display: block;
  font-size: 11px;
  font-weight: 700;
  color: var(--aurora);
  letter-spacing: 1px;
  margin-bottom: 10px;
  font-variant-numeric: tabular-nums;
}
.srv-card__name {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  color: var(--oceano);
  margin-bottom: var(--sp-sm);
  letter-spacing: -0.2px;
}
.srv-card__desc { font-size: 13px; color: var(--crepusculo); line-height: 1.65; margin-bottom: var(--sp-md); }
.srv-card__tag {
  font-size: 10px;
  font-weight: 600;
  color: var(--oceano);
  background: rgba(246,213,143,0.2);
  border: 1px solid rgba(246,213,143,0.5);
  padding: 4px 12px;
  border-radius: var(--radius-full);
  display: inline-block;
}

@media (min-width: 768px) {
  .servicos { padding: var(--sp-3xl) 0; }
  .servicos__grid { grid-template-columns: 1fr 1fr; }
}

/* ═══════════════════════════════════════════════════
   DEPOIMENTOS
═══════════════════════════════════════════════════ */
.depoimentos {
  padding: var(--sp-2xl) 0;
  background: var(--oceano);
}

.dep-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-md);
  margin-top: var(--sp-2xl);
}

.dep-card {
  background: rgba(246,213,143,0.06);
  border: 1px solid rgba(246,213,143,0.14);
  border-radius: var(--radius-md);
  padding: var(--sp-xl);
}
.dep-card__quote {
  font-family: var(--font-display);
  font-size: 64px;
  font-weight: 900;
  color: var(--persia);
  line-height: 0.7;
  margin-bottom: var(--sp-md);
  user-select: none;
}
.dep-card__text {
  font-size: 14px;
  color: rgba(255,255,255,0.82);
  line-height: 1.75;
  font-style: italic;
  font-weight: 300;
  margin-bottom: var(--sp-lg);
}
.dep-card__author strong {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--white);
  font-family: var(--font-body);
  margin-bottom: 2px;
}
.dep-card__author span { font-size: 11px; color: var(--artico); }
.dep-card__stars { color: var(--persia); font-size: 12px; letter-spacing: 2px; margin-top: 6px; }

@media (min-width: 768px) {
  .depoimentos { padding: var(--sp-3xl) 0; }
  .dep-grid { grid-template-columns: 1fr 1fr; }
}

/* ═══════════════════════════════════════════════════
   CTA FINAL
═══════════════════════════════════════════════════ */
.cta-sec {
  padding: var(--sp-3xl) 0;
  background: linear-gradient(135deg, var(--oceano) 0%, var(--oceano-mid) 100%);
  position: relative;
  overflow: hidden;
}
.cta-sec::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 340px; height: 340px;
  border-radius: 50%;
  border: 1px solid rgba(246,213,143,0.07);
}
.cta-sec::after {
  content: '';
  position: absolute;
  bottom: -40px; left: -40px;
  width: 200px; height: 200px;
  border-radius: 50%;
  background: rgba(246,213,143,0.03);
}

.cta-sec__inner {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 560px;
}

.cta-sec__eyebrow {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--persia);
  margin-bottom: var(--sp-md);
}
.cta-sec__title {
  font-family: var(--font-display);
  font-size: clamp(28px, 5vw, 38px);
  font-weight: 900;
  color: var(--white);
  letter-spacing: -0.7px;
  line-height: 1.15;
  margin-bottom: var(--sp-sm);
}
.cta-sec__sub {
  font-size: 15px;
  color: rgba(255,255,255,0.65);
  margin-bottom: var(--sp-xl);
  line-height: 1.65;
}
.cta-sec__btn { font-size: 15px; padding: 16px 36px; box-shadow: 0 6px 28px rgba(37,211,102,0.35); }
.cta-sec__micro { font-size: 12px; color: rgba(255,255,255,0.35); margin-top: var(--sp-md); }

/* ═══════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════ */
.footer {
  background: var(--oceano-dark);
  padding: var(--sp-lg) 0;
  border-top: 1px solid rgba(246,213,143,0.08);
}
.footer__inner {
  display: flex;
  flex-direction: column;
  gap: var(--sp-sm);
  align-items: center;
  text-align: center;
}
.footer__logo { font-family: var(--font-display); font-size: 14px; font-weight: 700; color: rgba(255,255,255,0.7); }
.footer__meta { font-size: 12px; color: rgba(255,255,255,0.3); }
.footer__social { display: flex; gap: var(--sp-lg); }
.footer__social-link { font-size: 12px; color: rgba(255,255,255,0.35); transition: color var(--t-fast); }
.footer__social-link:hover { color: var(--persia); }

@media (min-width: 768px) {
  .footer__inner { flex-direction: row; justify-content: space-between; text-align: left; }
}

/* ═══════════════════════════════════════════════════
   WHATSAPP FLUTUANTE
═══════════════════════════════════════════════════ */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 56px;
  height: 56px;
  background: var(--whatsapp);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.45);
  z-index: 200;
  transition: transform var(--t-fast), box-shadow var(--t-fast);
  animation: wa-pulse 3s ease-in-out infinite;
}
.wa-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37,211,102,0.6);
  animation: none;
}

@keyframes wa-pulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.45); }
  50%       { box-shadow: 0 4px 32px rgba(37,211,102,0.7), 0 0 0 8px rgba(37,211,102,0.1); }
}

/* ═══════════════════════════════════════════════════
   POLISH — RESPONSIVIDADE MOBILE
═══════════════════════════════════════════════════ */
@media (max-width: 767px) {
  .sobre,
  .servicos,
  .depoimentos,
  .cta-sec { padding: var(--sp-xl) 0; }

  .hero__left { padding-top: var(--sp-xl); }

  .hero__trust {
    gap: var(--sp-lg);
    overflow-x: auto;
    padding-bottom: var(--sp-sm);
  }

  .hero__actions { flex-direction: column; align-items: stretch; }
  .hero__actions .btn { width: 100%; justify-content: center; }

  .servicos__grid { gap: var(--sp-sm); }

  .cta-sec__btn { width: 100%; justify-content: center; }

  .wa-float { width: 48px; height: 48px; bottom: 20px; right: 16px; }
}

/* ═══════════════════════════════════════════════════
   ACESSIBILIDADE
═══════════════════════════════════════════════════ */
:focus-visible {
  outline: 2px solid var(--persia);
  outline-offset: 3px;
  border-radius: 3px;
}

@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1; transform: none; transition: none; }
  .wa-float { animation: none; }
  html { scroll-behavior: auto; }
}

@media print {
  .nav, .wa-float { display: none; }
}

/* ─── COOKIE BANNER ──────────────────────────────────────────── */
.btn--primary {
  background: #06346E;
  color: #fff;
  border: none;
}
.btn--ghost {
  background: transparent;
  color: #06346E;
  border: 1px solid #06346E;
}

.cookie-banner {
  position: fixed;
  bottom: 1rem;
  left: 1rem;
  right: 1rem;
  max-width: 720px;
  margin: 0 auto;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 12px 40px rgba(6, 52, 110, 0.15);
  padding: 1.25rem 1.5rem;
  z-index: 9999;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.cookie-banner.show {
  opacity: 1;
  transform: translateY(0);
}
.cookie-banner__inner {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.cookie-banner__text {
  font-size: 0.875rem;
  line-height: 1.5;
  color: #2a2a2a;
  margin: 0;
}
.cookie-banner__text a {
  color: #06346E;
  font-weight: 500;
}
.cookie-banner__actions {
  display: flex;
  gap: 0.5rem;
  justify-content: flex-end;
  flex-wrap: wrap;
}
@media (min-width: 640px) {
  .cookie-banner__inner {
    flex-direction: row;
    align-items: center;
  }
  .cookie-banner__text {
    flex: 1;
  }
}

/* ─── PÁGINA DE PRIVACIDADE ─────────────────────────────────── */
.privacy {
  max-width: 760px;
  padding: 6rem 1.5rem 4rem;
}
.privacy__title {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--oceano);
  margin-bottom: 0.5rem;
}
.privacy__updated {
  color: #6b7280;
  margin-bottom: 2rem;
}
.privacy h2 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--oceano);
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}
.privacy p, .privacy ul {
  margin-bottom: 1rem;
  line-height: 1.7;
}
.privacy ul {
  padding-left: 1.5rem;
  list-style: disc;
}
.privacy ul li {
  margin-bottom: 0.5rem;
}
.privacy a {
  color: var(--oceano);
  text-decoration: underline;
}
