/* ============================================================
   SI DESCOMPLIQUE BPO — Stylesheet compartilhado
   Paleta: Navy / Gold | Fonte: Inter (Google Fonts)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

/* ── Tokens ─────────────────────────────────────────────── */
:root {
  --navy:       #111b3a;
  --navy-deep:  #0b1433;
  --navy-mid:   #1a2850;
  --gold:       #a08a6f;
  --gold-soft:  #e1d7ca;
  --gold-light: rgba(160,138,111,.12);
  --white:      #fcfcfb;
  --off:        #f7f6f3;
  --text:       #1c2333;
  --muted:      #5d667a;
  --line:       rgba(17,27,58,.10);
  --shadow-sm:  0 4px 14px rgba(11,20,51,.08);
  --shadow:     0 18px 45px rgba(11,20,51,.13);
  --shadow-lg:  0 30px 70px rgba(0,0,0,.22);
  --radius:     18px;
  --radius-lg:  26px;
  --transition: .25s ease;
}

/* ── Reset básico ────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', Arial, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

/* ── Utilitários ─────────────────────────────────────────── */
.container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

section { padding: 96px 0; position: relative; }

.eyebrow {
  display: inline-block;
  padding: 7px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.eyebrow--light {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  color: var(--gold-soft);
}
.eyebrow--dark {
  background: var(--gold-light);
  border: 1px solid rgba(160,138,111,.2);
  color: var(--gold);
}

.section-head { max-width: 720px; margin-bottom: 48px; }
.section-head h2 {
  font-size: clamp(28px, 3.8vw, 46px);
  line-height: 1.06;
  letter-spacing: -.03em;
  color: var(--navy);
  margin-bottom: 14px;
}
.section-head p {
  font-size: 18px;
  color: var(--muted);
  line-height: 1.65;
}
.section-head--center { text-align: center; max-width: 720px; margin-inline: auto; }

/* ── Botões ──────────────────────────────────────────────── */
.btn, .btn-ghost, .btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 0 26px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 700;
  transition: var(--transition);
  white-space: nowrap;
  cursor: pointer;
  border: none;
}
.btn {
  background: var(--gold);
  color: #fff;
  box-shadow: 0 10px 24px rgba(160,138,111,.30);
}
.btn:hover { transform: translateY(-2px); filter: brightness(1.06); }

.btn-outline {
  border: 1.5px solid rgba(17,27,58,.18);
  color: var(--navy);
  background: #fff;
}
.btn-outline:hover { border-color: var(--navy); transform: translateY(-2px); }

.btn-ghost {
  border: 1.5px solid rgba(255,255,255,.22);
  color: #fff;
  background: rgba(255,255,255,.06);
}
.btn-ghost:hover { border-color: rgba(255,255,255,.45); transform: translateY(-2px); }

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

/* ── Navegação ───────────────────────────────────────────── */
.site-nav {
  position: fixed;
  top: 0;
  inset-inline: 0;
  z-index: 100;
  padding: 0;
  transition: background var(--transition), box-shadow var(--transition), padding var(--transition);
}
.site-nav.scrolled {
  background: rgba(11,20,51,.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 4px 24px rgba(0,0,0,.24);
}
.site-nav--light {
  background: rgba(252,252,251,.97);
  border-bottom: 1px solid var(--line);
}
.site-nav--light.scrolled {
  background: rgba(252,252,251,.98);
  box-shadow: var(--shadow-sm);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 32px;
}

.nav-logo img { height: 38px; width: auto; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav-links a {
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,.80);
  transition: color var(--transition), background var(--transition);
}
.nav-links a:hover,
.nav-links a.active { color: #fff; background: rgba(255,255,255,.08); }

.site-nav--light .nav-links a { color: var(--muted); }
.site-nav--light .nav-links a:hover,
.site-nav--light .nav-links a.active { color: var(--navy); background: var(--gold-light); }

.nav-cta { flex-shrink: 0; }

/* burger */
.nav-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 6px;
  background: none;
  border: none;
  cursor: pointer;
  border-radius: 8px;
}
.nav-burger span {
  display: block;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: var(--transition);
}
.site-nav--light .nav-burger span { background: var(--navy); }
.nav-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-mobile {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 16px 20px 24px;
  background: var(--navy-deep);
  border-top: 1px solid rgba(255,255,255,.06);
}
.site-nav--light .nav-mobile { background: var(--white); border-top: 1px solid var(--line); }
.nav-mobile.open { display: flex; }
.nav-mobile a {
  padding: 12px 16px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 500;
  color: rgba(255,255,255,.80);
  transition: var(--transition);
}
.nav-mobile a:hover,
.nav-mobile a.active { background: rgba(255,255,255,.08); color: #fff; }
.site-nav--light .nav-mobile a { color: var(--muted); }
.site-nav--light .nav-mobile a:hover,
.site-nav--light .nav-mobile a.active { background: var(--gold-light); color: var(--navy); }
.nav-mobile .btn { width: 100%; margin-top: 8px; }

/* ── Hero ────────────────────────────────────────────────── */
.hero {
  position: relative;
  overflow: hidden;
  padding-top: 72px; /* nav height */
  background:
    linear-gradient(135deg, rgba(17,27,58,.98), rgba(11,20,51,.94)),
    url('../assets/logos/estampa.png') center/cover;
  color: #fff;
  min-height: 100vh;
  display: flex;
  align-items: center;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: url('../assets/logos/marca-dagua.png') no-repeat right 8% bottom 10%;
  background-size: 340px;
  opacity: .07;
  pointer-events: none;
}
.hero .container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  align-items: center;
  gap: 48px;
  padding: 80px 0 64px;
}
.hero h1 {
  font-size: clamp(38px, 5vw, 64px);
  line-height: 1.02;
  letter-spacing: -.035em;
  margin-bottom: 20px;
}
.hero p {
  font-size: 18px;
  color: rgba(255,255,255,.84);
  margin-bottom: 32px;
  max-width: 560px;
  line-height: 1.7;
}

/* hero card / foto */
.hero-visual {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.10);
  box-shadow: var(--shadow-lg);
  min-height: 580px;
  display: flex;
  align-items: flex-end;
}
.hero-visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}
.hero-badge {
  position: relative;
  z-index: 1;
  width: 100%;
  background: rgba(252,252,251,.96);
  color: var(--navy);
  padding: 20px 22px;
  margin: 20px;
  width: calc(100% - 40px);
  border-radius: 14px;
  box-shadow: var(--shadow);
}
.hero-badge strong { display: block; font-size: 17px; margin-bottom: 5px; }
.hero-badge span { color: var(--muted); font-size: 14px; }

/* ── Page hero (páginas internas) ───────────────────────── */
.page-hero {
  position: relative;
  overflow: hidden;
  padding-top: 72px;
  background:
    linear-gradient(135deg, rgba(17,27,58,.98), rgba(11,20,51,.94)),
    url('../assets/logos/estampa.png') center/cover;
  color: #fff;
  text-align: center;
}
.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: url('../assets/logos/marca-dagua.png') no-repeat center;
  background-size: 320px;
  opacity: .06;
  pointer-events: none;
}
.page-hero .container {
  position: relative;
  z-index: 1;
  padding: 88px 0 80px;
}
.page-hero h1 {
  font-size: clamp(34px, 4.5vw, 58px);
  line-height: 1.05;
  letter-spacing: -.03em;
  margin-bottom: 18px;
}
.page-hero p {
  font-size: 18px;
  color: rgba(255,255,255,.82);
  max-width: 640px;
  margin-inline: auto;
  line-height: 1.7;
}

/* ── Cards ───────────────────────────────────────────────── */
.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: var(--shadow-sm);
}
.card--dark {
  background: rgba(255,255,255,.06);
  border-color: rgba(255,255,255,.08);
}
.card-num {
  width: 44px; height: 44px;
  border-radius: 50%;
  display: grid; place-items: center;
  background: var(--gold-light);
  color: var(--gold);
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 18px;
}
.card h3 { font-size: 21px; color: var(--navy); margin-bottom: 10px; line-height: 1.2; }
.card p  { color: var(--muted); font-size: 15px; line-height: 1.65; }
.card--dark h3 { color: #fff; }
.card--dark p  { color: rgba(255,255,255,.72); }

.grid-3 { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 22px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 22px; }

/* ── Seção sobre / foto + texto ─────────────────────────── */
.split-grid {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 48px;
  align-items: center;
}
.split-grid--reverse { direction: rtl; }
.split-grid--reverse > * { direction: ltr; }

.photo-block {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--off);
}
.photo-block img { width: 100%; height: 100%; object-fit: cover; min-height: 480px; }

/* ── Seção escura (processo) ─────────────────────────────── */
.section-dark {
  background: var(--navy-deep);
  color: #fff;
}
.section-dark .section-head h2 { color: #fff; }
.section-dark .section-head p  { color: rgba(255,255,255,.72); }

/* ── Pill tags ───────────────────────────────────────────── */
.pill-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 16px; }
.pill {
  border-radius: 999px;
  border: 1px solid rgba(17,27,58,.12);
  padding: 9px 16px;
  font-size: 13px;
  font-weight: 500;
  color: var(--navy);
  background: var(--off);
}

/* ── Lista com bullet gold ───────────────────────────────── */
.check-list { display: grid; gap: 14px; }
.check-list li {
  padding-left: 28px;
  position: relative;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
}
.check-list li::before {
  content: "•";
  position: absolute;
  left: 8px;
  color: var(--gold);
  font-size: 22px;
  line-height: 1;
  top: -2px;
}

/* ── Proof / highlight box ───────────────────────────────── */
.proof-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 28px;
  align-items: center;
}
.proof-box {
  background: linear-gradient(180deg, #fff, var(--off));
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 36px;
  box-shadow: var(--shadow);
}

/* ── CTA section ─────────────────────────────────────────── */
.cta-section {
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(17,27,58,.98), rgba(11,20,51,.94)),
    url('../assets/logos/estampa.png') center/cover;
  color: #fff;
  text-align: center;
}
.cta-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background: url('../assets/logos/marca-dagua.png') no-repeat center;
  background-size: 360px;
  opacity: .06;
  pointer-events: none;
}
.cta-section .container { position: relative; z-index: 1; }
.cta-section h2 {
  font-size: clamp(28px, 3.8vw, 50px);
  line-height: 1.06;
  letter-spacing: -.03em;
  margin-bottom: 16px;
}
.cta-section p {
  max-width: 680px;
  margin: 0 auto 32px;
  color: rgba(255,255,255,.82);
  font-size: 18px;
  line-height: 1.7;
}
.mini-note {
  font-size: 14px;
  color: rgba(255,255,255,.55);
  margin-top: 18px;
}

/* ── Contato cards ───────────────────────────────────────── */
.contact-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: var(--transition);
}
.contact-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.contact-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  display: grid; place-items: center;
  background: var(--gold-light);
  color: var(--gold);
  font-size: 22px;
}
.contact-card h3 { font-size: 20px; color: var(--navy); }
.contact-card p  { font-size: 15px; color: var(--muted); line-height: 1.6; }
.contact-card a.link {
  font-size: 15px;
  font-weight: 600;
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ── Footer ──────────────────────────────────────────────── */
.site-footer {
  background: var(--navy-deep);
  color: rgba(255,255,255,.72);
  padding: 36px 0 100px;
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-brand { display: flex; align-items: center; gap: 20px; }
.footer-brand img { height: 40px; width: auto; }
.footer-brand-copy { font-size: 14px; line-height: 1.6; }
.footer-links { display: flex; gap: 20px; flex-wrap: wrap; font-size: 14px; }
.footer-links a { transition: color var(--transition); }
.footer-links a:hover { color: #fff; }

/* ── WhatsApp flutuante ──────────────────────────────────── */
.whatsapp-float {
  position: fixed;
  right: 22px; bottom: 22px;
  z-index: 200;
  width: 60px; height: 60px;
  border-radius: 50%;
  display: grid; place-items: center;
  background: #25d366;
  color: #fff;
  box-shadow: 0 14px 32px rgba(37,211,102,.38);
  font-size: 26px;
  transition: var(--transition);
  line-height: 1;
}
.whatsapp-float:hover { transform: translateY(-3px) scale(1.05); }

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero .container { grid-template-columns: 1fr; }
  .hero-visual { min-height: 440px; }
  .split-grid,
  .proof-grid { grid-template-columns: 1fr; }
  .split-grid--reverse { direction: ltr; }
}

@media (max-width: 900px) {
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .nav-links, .nav-cta { display: none; }
  .nav-burger { display: flex; }
}

@media (max-width: 640px) {
  section { padding: 72px 0; }
  .grid-3, .grid-2 { grid-template-columns: 1fr; }
  .container { width: calc(100% - 28px); }
  .cta-row { flex-direction: column; }
  .cta-row .btn,
  .cta-row .btn-outline,
  .cta-row .btn-ghost { width: 100%; }
  .section-head p,
  .hero p,
  .cta-section p,
  .page-hero p { font-size: 16px; }
  .hero-visual { min-height: 380px; }
  .proof-box { padding: 24px; }
  .card { padding: 24px; }
}
