/* =========================================================
   BEZ GROUP - Design System
   Where Small Businesses Become Giants
   ========================================================= */

:root {
  /* Brand colors */
  --gold: #c8a04d;
  --gold-light: #e0c079;
  --gold-soft: #d4b264;
  --gold-dark: #8a6d2c;
  --ink: #0a1f44;
  --ink-2: #0c2350;
  --ink-card: #112a54;
  --ink-line: #243a63;
  --cream: #f4f1ea;
  --paper: #fbfaf6;
  --text: #1a2436;
  --text-soft: #47526a;
  --muted: #7a8296;
  --muted-light: #aeb6c9;
  --white: #ffffff;

  /* Type */
  --serif: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  /* Layout */
  --container: 1180px;
  --radius: 4px;
  --radius-lg: 10px;
  --shadow: 0 18px 50px rgba(0, 0, 0, 0.12);
  --shadow-gold: 0 16px 40px rgba(200, 160, 77, 0.22);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--sans);
  color: var(--text);
  background: var(--paper);
  line-height: 1.65;
  font-size: 16px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ---------- Typography ---------- */
h1, h2, h3, h4 { font-family: var(--serif); font-weight: 700; line-height: 1.14; color: var(--ink); letter-spacing: -0.015em; }
h1 { font-size: clamp(2.4rem, 5.2vw, 4.1rem); font-weight: 800; }
h2 { font-size: clamp(1.9rem, 3.6vw, 2.9rem); }
h3 { font-size: clamp(1.3rem, 2.2vw, 1.7rem); }
p { color: var(--text-soft); }

.eyebrow {
  font-family: var(--sans);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-dark);
  display: inline-block;
  margin-bottom: 1rem;
}
.script { font-style: italic; color: var(--gold-dark); font-family: var(--serif); }

/* ---------- Layout ---------- */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; }
section { padding: clamp(80px, 9.5vw, 136px) 0; }
.section-head { max-width: 760px; margin-bottom: 64px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 { margin-bottom: 20px; }
.gold-rule { width: 64px; height: 3px; background: var(--gold); border: none; margin: 22px 0; }
.center .gold-rule { margin-left: auto; margin-right: auto; }


.bg-dark { background: var(--ink); color: var(--cream); }
.bg-dark h1, .bg-dark h2, .bg-dark h3, .bg-dark h4 { color: var(--cream); }
.bg-dark p { color: var(--muted-light); }
.bg-cream { background: var(--cream); }
.bg-paper { background: var(--paper); }
.text-gold { color: var(--gold) !important; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--sans); font-weight: 600; font-size: 0.9rem;
  letter-spacing: 0.02em; padding: 14px 28px; border-radius: 9px;
  cursor: pointer; transition: transform 0.28s var(--ease), box-shadow 0.28s var(--ease), background 0.28s, color 0.28s, border-color 0.28s;
  border: 1.5px solid transparent; text-align: center; line-height: 1;
}
.btn svg { flex-shrink: 0; }
.btn-gold { background: linear-gradient(135deg, #cba64d 0%, #e2c079 100%); color: var(--ink); box-shadow: 0 8px 20px rgba(200,160,77,0.22); }
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 14px 32px rgba(200,160,77,0.4); filter: brightness(1.04); }
.btn-outline { border-color: var(--gold); color: var(--gold); background: transparent; }
.btn-outline:hover { background: var(--gold); color: var(--ink); transform: translateY(-2px); box-shadow: 0 12px 28px rgba(200,160,77,0.3); }
.btn-dark { background: var(--ink); color: var(--cream); }
.btn-dark:hover { background: var(--ink-2); transform: translateY(-2px); box-shadow: 0 12px 28px rgba(10,31,68,0.35); }
.btn-ghost { border-color: rgba(10,31,68,0.2); color: var(--ink); background: transparent; }
.btn-ghost:hover { border-color: var(--ink); background: rgba(10,31,68,0.05); transform: translateY(-2px); }
.btn-row { display: flex; flex-wrap: wrap; gap: 14px; }

/* ---------- Media images ---------- */
.media-img { width: 100%; display: block; border-radius: var(--radius-lg); object-fit: cover; }
.media-portrait { aspect-ratio: 3/4; }

/* ---------- Growth announcement bar ---------- */
.topbar {
  background: linear-gradient(90deg, #0c2350 0%, #143063 55%, #0c2350 100%);
  border-bottom: 1px solid var(--gold-dark);
  color: var(--cream); font-size: 0.86rem;
}
.topbar-inner { display: flex; align-items: center; gap: 14px; padding: 9px 24px; }
.topbar-badge {
  flex-shrink: 0; background: var(--gold); color: var(--ink);
  font-size: 0.66rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  padding: 4px 10px; border-radius: 30px;
}
.topbar p { margin: 0; color: var(--cream); flex: 1; min-width: 0; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.topbar p b { color: var(--gold); font-weight: 700; }
.topbar-link { flex-shrink: 0; color: var(--gold); font-weight: 600; white-space: nowrap; border-bottom: 1px solid transparent; }
.topbar-link:hover { border-color: var(--gold); }
.topbar-close {
  flex-shrink: 0; background: none; border: none; color: var(--muted-light);
  font-size: 1.3rem; line-height: 1; cursor: pointer; padding: 2px 4px; transition: color 0.2s;
}
.topbar-close:hover { color: var(--gold); }
.topbar.hide { display: none; }
@media (max-width: 760px) {
  .topbar-inner { padding: 8px 14px; gap: 10px; justify-content: center; }
  .topbar-badge, .topbar-link { display: none; }
  .topbar p { white-space: normal; text-align: center; font-size: 0.76rem; line-height: 1.35; }
}

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(10, 31, 68, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--ink-line);
}
.nav { display: flex; align-items: center; justify-content: space-between; height: 76px; }
.brand { display: flex; align-items: center; gap: 12px; }
.brand .mark { width: 34px; height: 34px; }
.brand .brand-text { font-family: var(--serif); font-size: 1.28rem; font-weight: 700; letter-spacing: 0.14em; color: var(--gold); }
.brand .logo-img { height: 48px; width: auto; display: block; }
.footer-logo { height: 64px; width: auto; margin-bottom: 8px; }
.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a {
  font-size: 0.86rem; font-weight: 500; letter-spacing: 0.03em; color: var(--cream);
  position: relative; padding: 6px 0; transition: color 0.25s;
}
.nav-links a:hover, .nav-links a.active { color: var(--gold); }
.nav-links a.active::after {
  content: ""; position: absolute; bottom: -2px; left: 0; width: 100%; height: 2px; background: var(--gold);
}
.nav-cta { display: inline-flex; }
.nav-app { display: inline-flex; }
.nav-app svg { width: 16px; height: 16px; }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; flex-direction: column; gap: 5px; padding: 8px; }
.nav-toggle span { width: 24px; height: 2px; background: var(--gold); transition: 0.3s; }

/* Dropdown submenus */
.nav-item { position: relative; display: flex; align-items: center; }
.nav-item > a { display: inline-flex; align-items: center; gap: 6px; }
.nav-item .caret { width: 6px; height: 6px; border-right: 1.6px solid currentColor; border-bottom: 1.6px solid currentColor; transform: rotate(45deg) translateY(-1px); opacity: 0.7; transition: transform 0.25s; }
.nav-item:hover .caret { transform: rotate(45deg) translateY(1px); }
.nav-sub {
  position: absolute; top: 100%; left: -14px; min-width: 200px;
  background: var(--ink-2); border: 1px solid var(--ink-line); border-radius: 10px;
  padding: 8px; display: flex; flex-direction: column; gap: 2px;
  opacity: 0; visibility: hidden; transform: translateY(8px); transition: opacity 0.22s var(--ease), transform 0.22s var(--ease), visibility 0.22s;
  box-shadow: 0 18px 44px rgba(0,0,0,0.4); z-index: 60;
}
.nav-item:hover .nav-sub, .nav-item:focus-within .nav-sub { opacity: 1; visibility: visible; transform: none; }
.nav-sub a { padding: 10px 12px; border-radius: 6px; font-size: 0.86rem; color: var(--muted-light); white-space: nowrap; }
.nav-sub a::after { display: none !important; }
.nav-sub a:hover, .nav-sub a.active { background: rgba(200,160,77,0.12); color: var(--gold); }

/* ---------- Hero ---------- */
.hero {
  position: relative; min-height: 88vh; display: flex; align-items: center;
  background: var(--ink);
  color: var(--cream); overflow: hidden; padding: 80px 0;
}
.hero-video {
  position: absolute; top: 0; right: 0; width: 50%; height: 100%;
  object-fit: cover; object-position: center 25%; z-index: 0; pointer-events: none;
}
.hero-overlay {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background:
    linear-gradient(90deg,
      rgba(8,22,48,1) 0%,
      rgba(8,22,48,1) 50%,
      rgba(9,24,52,0.6) 66%,
      rgba(10,28,60,0.22) 86%,
      rgba(11,30,64,0) 100%),
    linear-gradient(0deg, rgba(8,22,48,0.5) 0%, rgba(8,22,48,0) 42%);
}
.hero-inner { position: relative; z-index: 2; max-width: 620px; }
.hero-audio {
  position: absolute; right: 24px; bottom: 24px; z-index: 4;
  display: inline-flex; align-items: center; gap: 9px;
  background: rgba(10,31,68,0.55); border: 1px solid rgba(200,160,77,0.55);
  color: var(--gold); padding: 10px 16px 10px 13px; border-radius: 40px;
  cursor: pointer; backdrop-filter: blur(6px); transition: all 0.25s var(--ease);
  font-family: var(--sans); font-size: 0.8rem; font-weight: 600; letter-spacing: 0.04em;
}
.hero-audio:hover { background: var(--gold); color: var(--ink); border-color: var(--gold); }
.hero-audio svg { width: 20px; height: 20px; flex-shrink: 0; }
.hero-audio .ic-sound { display: none; }
.hero-audio.is-on .ic-muted { display: none; }
.hero-audio.is-on .ic-sound { display: inline; }
@media (max-width: 760px) {
  .hero-audio { right: 16px; bottom: 16px; padding: 9px; }
  .hero-audio .hero-audio-label { display: none; }
}
@media (max-width: 760px) {
  .hero-video { inset: 0; width: 100%; height: 100%; max-width: none; object-fit: cover; }
  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(8,22,48,0.82) 0%, rgba(9,24,52,0.66) 45%, rgba(10,26,56,0.86) 100%);
  }
}
.hero h1 { color: var(--cream); margin-bottom: 22px; min-height: 2.3em; font-size: clamp(1.9rem, 3.9vw, 3.1rem); }
.hero h1 .gold { color: var(--gold); }
.typed { color: var(--gold); white-space: pre-line; }
.type-cursor {
  display: inline-block; width: 3px; height: 0.95em; background: var(--gold);
  margin-left: 6px; vertical-align: -0.08em; animation: blink 1s steps(1) infinite;
}
@keyframes blink { 50% { opacity: 0; } }
.hero .lead { font-size: 1.18rem; color: var(--muted-light); max-width: 600px; margin-bottom: 16px; }
.hero .tagline {
  font-size: 0.78rem; letter-spacing: 0.26em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 34px;
}
.hero-meta {
  margin-top: 40px; display: flex; gap: 22px; flex-wrap: nowrap;
}
.hero-meta > div { flex: 1 1 0; min-width: 0; }
.hero-meta .num { font-family: var(--serif); font-size: 1.5rem; color: var(--gold); line-height: 1; }
.hero-meta .lbl { font-size: 0.66rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted-light); margin-top: 6px; }
@media (max-width: 420px) {
  .hero-meta { gap: 14px; }
  .hero-meta .num { font-size: 1.3rem; }
  .hero-meta .lbl { font-size: 0.6rem; }
}

/* ---------- Page banner (interior pages) ---------- */
.page-banner {
  background: radial-gradient(120% 120% at 80% 0%, #1b1a14 0%, var(--ink) 60%);
  color: var(--cream); padding: 96px 0 84px; text-align: center; position: relative; overflow: hidden;
}
.page-banner h1 { color: var(--cream); position: relative; z-index: 2; }
.page-banner p { color: var(--muted-light); max-width: 620px; margin: 18px auto 0; position: relative; z-index: 2; }
.crumbs { font-size: 0.78rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold); margin-bottom: 18px; position: relative; z-index: 2; }
.crumbs a { color: var(--muted-light); }
.crumbs a:hover { color: var(--gold); }

/* ---------- Grid helpers ---------- */
.grid { display: grid; gap: 34px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.phone-video { display: flex; justify-content: center; }
.phone-video video { width: 100%; max-width: 300px; aspect-ratio: 9 / 16; object-fit: cover; border-radius: 22px; box-shadow: 0 24px 60px rgba(0,0,0,0.4); border: 1px solid rgba(200,160,77,0.4); background: #000; }
/* ---------- PTX floating button + popup ---------- */
.ptx-fab {
  position: fixed; right: 22px; bottom: 22px; z-index: 1200;
  width: 60px; height: 60px; border-radius: 50%; border: none; cursor: pointer;
  background: linear-gradient(135deg, #cba64d 0%, #e2c079 100%); color: var(--ink);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 26px rgba(200,160,77,0.45); transition: transform 0.25s var(--ease), box-shadow 0.25s;
  animation: ptxPulse 2.6s ease-in-out infinite;
}
.ptx-fab svg { width: 26px; height: 26px; }
.ptx-fab:hover { transform: translateY(-3px) scale(1.05); box-shadow: 0 16px 34px rgba(200,160,77,0.55); }
@keyframes ptxPulse { 0%,100% { box-shadow: 0 10px 26px rgba(200,160,77,0.45); } 50% { box-shadow: 0 10px 26px rgba(200,160,77,0.45), 0 0 0 12px rgba(200,160,77,0); } }

.ptx-bubble {
  position: fixed; right: 22px; bottom: 94px; z-index: 1200;
  width: min(300px, calc(100vw - 44px)); background: var(--ink-2); color: var(--cream);
  border: 1px solid rgba(200,160,77,0.4); border-radius: 14px; padding: 15px 16px 15px 18px;
  box-shadow: 0 18px 44px rgba(0,0,0,0.4); transform: translateY(14px) scale(0.96);
  opacity: 0; pointer-events: none; transition: opacity 0.3s, transform 0.3s var(--ease);
}
.ptx-bubble.show { opacity: 1; transform: none; pointer-events: auto; cursor: pointer; }
.ptx-bubble b { display: block; color: var(--gold); font-size: 0.9rem; margin-bottom: 3px; }
.ptx-bubble span { display: block; font-size: 0.84rem; line-height: 1.4; color: var(--muted-light); }
.ptx-bubble::after { content: ""; position: absolute; right: 24px; bottom: -8px; width: 16px; height: 16px; background: var(--ink-2); border-right: 1px solid rgba(200,160,77,0.4); border-bottom: 1px solid rgba(200,160,77,0.4); transform: rotate(45deg); }
.ptx-bubble-close { position: absolute; top: 6px; right: 9px; background: none; border: none; color: var(--muted-light); font-size: 1.15rem; line-height: 1; cursor: pointer; }
.ptx-bubble-close:hover { color: var(--gold); }

.ptx-overlay {
  position: fixed; inset: 0; z-index: 1300; background: rgba(6,15,33,0.72); backdrop-filter: blur(4px);
  display: flex; align-items: center; justify-content: center; padding: 24px;
  opacity: 0; pointer-events: none; transition: opacity 0.28s;
}
.ptx-overlay.open { opacity: 1; pointer-events: auto; }
.ptx-modal {
  position: relative; width: min(460px, 100%); background: var(--ink-2); color: var(--cream);
  border: 1px solid rgba(200,160,77,0.35); border-radius: 20px; padding: 34px 30px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.5); transform: translateY(16px) scale(0.97); transition: transform 0.3s var(--ease);
}
.ptx-overlay.open .ptx-modal { transform: none; }
.ptx-modal-close { position: absolute; top: 12px; right: 15px; background: none; border: none; color: var(--muted-light); font-size: 1.7rem; line-height: 1; cursor: pointer; }
.ptx-modal-close:hover { color: var(--gold); }
.ptx-eyebrow { display: inline-block; font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold); font-weight: 700; margin-bottom: 8px; }
.ptx-modal h3 { font-size: 1.7rem; color: #fff; }
.ptx-modal p { margin-top: 10px; color: var(--muted-light); line-height: 1.55; }
.ptx-points { list-style: none; margin: 18px 0 24px; padding: 0; }
.ptx-points li { position: relative; padding-left: 26px; margin: 9px 0; font-size: 0.92rem; color: var(--cream); }
.ptx-points li::before { content: ""; position: absolute; left: 0; top: 6px; width: 14px; height: 14px; border-radius: 50%; background: linear-gradient(135deg, #cba64d, #e2c079); }
.ptx-cta { width: 100%; }
@media (max-width: 460px) { .ptx-fab { width: 54px; height: 54px; right: 16px; bottom: 16px; } .ptx-bubble { right: 16px; bottom: 82px; } .ptx-cta { width: 100%; } }

.ig-list > div { margin: 3px 0; line-height: 1.3; }
.ig-tag { color: var(--muted-light); font-size: 0.82rem; margin-left: 4px; }
.hope-logo { display: flex; justify-content: center; }
.hope-logo img { width: 100%; max-width: 420px; background: #fff; border-radius: 18px; padding: 30px; box-shadow: 0 18px 44px rgba(10,31,68,0.14); }
.founders-photo { max-width: 860px; margin: 0 auto; border-radius: 16px; overflow: hidden; box-shadow: 0 24px 60px rgba(10,31,68,0.22); border: 1px solid rgba(200,160,77,0.35); }
.founders-photo img { display: block; width: 100%; height: auto; }
.privilege-grid { grid-template-columns: repeat(5, 1fr); gap: 22px; }
.privilege-grid .card { padding: 26px 20px; }
@media (max-width: 900px) { .privilege-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 620px) { .privilege-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 420px) { .privilege-grid { grid-template-columns: 1fr; } }
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 68px; align-items: center; }

/* ---------- Cards ---------- */
.card {
  background: var(--white); border: 1px solid #ece8df; border-radius: var(--radius-lg);
  padding: 38px 32px; transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: var(--gold); }
.bg-dark .card, .card.dark {
  background: var(--ink-card); border-color: var(--ink-line);
}
.bg-dark .card:hover, .card.dark:hover { border-color: var(--gold); box-shadow: var(--shadow-gold); }
.bg-dark .card h3, .card.dark h3 { color: var(--cream); }
.bg-dark .card p, .card.dark p { color: var(--muted-light); }

.card .ic {
  width: 52px; height: 52px; display: flex; align-items: center; justify-content: center;
  border-radius: 10px; background: rgba(200,160,77,0.12); color: var(--gold); margin-bottom: 22px;
}
.card .ic svg { width: 26px; height: 26px; }
.card h3 { margin-bottom: 12px; }
.card p { line-height: 1.68; }
.card .num-big { font-family: var(--serif); font-size: 2.6rem; color: var(--gold); line-height: 1; }


/* Stat tiles */
.stat-tile {
  border: 1px solid rgba(200,160,77,0.35); border-radius: var(--radius-lg);
  padding: 34px 24px; text-align: center; background: rgba(200,160,77,0.04);
  backdrop-filter: blur(6px); transition: transform 0.3s var(--ease), border-color 0.3s, box-shadow 0.3s;
}
.stat-tile:hover { transform: translateY(-4px); border-color: var(--gold); box-shadow: var(--shadow-gold); }
.stat-tile .n { font-family: var(--serif); font-size: 2.8rem; color: var(--gold); line-height: 1; font-weight: 700; }
.stat-tile .t { font-size: 0.84rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-soft); margin-top: 12px; font-weight: 500; }
.bg-dark .stat-tile .t { color: var(--muted-light); }


/* Value cards (icon + name) */
.value-card {
  background: var(--ink-card); border: 1px solid var(--ink-line); border-radius: var(--radius-lg);
  padding: 26px 16px; text-align: center; display: flex; flex-direction: column; align-items: center; gap: 13px;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s;
}
.value-card:hover { transform: translateY(-5px); border-color: var(--gold); box-shadow: var(--shadow-gold); }
.value-card .v-ic {
  width: 54px; height: 54px; border-radius: 50%; background: rgba(200,160,77,0.12);
  color: var(--gold); display: flex; align-items: center; justify-content: center;
}
.value-card .v-ic svg { width: 26px; height: 26px; }
.value-card .v-name { font-family: var(--serif); font-weight: 600; color: var(--cream); font-size: 1.02rem; line-height: 1.3; }

/* ---------- About visual (Quem somos) ---------- */
.about-visual { display: flex; flex-direction: column; gap: 20px; height: 100%; }
.about-photo { width: 100%; height: auto; flex: 0 0 auto; min-height: 0; aspect-ratio: 1200 / 630; object-fit: contain; }
.about-quote { margin: 0; font-size: 0.92rem; line-height: 1.5; padding: 22px 28px; }

/* Founder facts */
.founder-fact { display: flex; gap: 12px; align-items: flex-start; }
.founder-fact .ff-ic { width: 42px; height: 42px; border-radius: 10px; background: rgba(200,160,77,0.14); color: var(--gold); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.founder-fact .ff-ic svg { width: 22px; height: 22px; }
.founder-fact .ff-t { color: var(--cream); font-weight: 600; font-size: 0.95rem; line-height: 1.2; }
.founder-fact .ff-s { color: var(--muted-light); font-size: 0.84rem; margin-top: 2px; }
.founder-photo-wrap { position: relative; border-radius: var(--radius-lg); overflow: hidden; min-height: 460px; border: 1px solid var(--ink-line); }
.founder-photo { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center bottom; }
@media (max-width: 760px) { .founder-photo-wrap { min-height: 420px; } }

/* Card CTA */
.card-cta { display: inline-flex; align-items: center; gap: 6px; color: var(--gold-dark); font-weight: 600; font-size: 0.85rem; margin-top: 16px; transition: gap 0.25s var(--ease), color 0.25s; }
.card:hover .card-cta { gap: 12px; color: var(--gold); }
.bg-dark .card-cta, .card.dark .card-cta { color: var(--gold); }

/* ---------- Testimonials (modern) ---------- */
.testi {
  background: linear-gradient(180deg, var(--ink-card) 0%, #0e2650 100%);
  border: 1px solid var(--ink-line); border-radius: 16px; padding: 34px 30px;
  position: relative; display: flex; flex-direction: column; gap: 18px; overflow: hidden;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s;
}
.testi::before {
  content: "\201C"; position: absolute; top: 2px; right: 22px; font-family: var(--serif);
  font-size: 5.5rem; color: var(--gold); opacity: 0.16; line-height: 1; pointer-events: none;
}
.testi:hover { transform: translateY(-6px); border-color: var(--gold); box-shadow: var(--shadow-gold); }
.testi .stars { color: var(--gold); letter-spacing: 3px; font-size: 0.9rem; }
.testi .t-quote { font-family: var(--serif); font-style: italic; font-size: 1.1rem; color: var(--cream); line-height: 1.55; flex: 1; position: relative; z-index: 1; }
.testi .t-author { display: flex; align-items: center; gap: 13px; margin-top: 6px; padding-top: 18px; border-top: 1px solid var(--ink-line); }
.testi .t-avatar { width: 46px; height: 46px; border-radius: 50%; background: rgba(200,160,77,0.14); border: 1px solid var(--gold); color: var(--gold); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.testi .t-avatar svg { width: 22px; height: 22px; }
.testi .t-name { color: var(--cream); font-weight: 600; font-size: 0.95rem; }
.testi .t-role { color: var(--muted-light); font-size: 0.8rem; }

/* ---------- Quote block ---------- */
.quote {
  border: 1.5px solid var(--gold); border-radius: var(--radius-lg); padding: 34px 38px;
  font-family: var(--serif); font-style: italic; font-size: 1.3rem; color: var(--ink); text-align: center;
  position: relative;
}
.bg-dark .quote { color: var(--cream); }
.quote.solid { background: var(--gold); color: var(--ink); border: none; font-weight: 700; }

/* ---------- Timeline ---------- */
.timeline { position: relative; margin-top: 20px; }
.timeline::before {
  content: ""; position: absolute; left: 0; top: 8px; bottom: 8px; width: 3px;
  background: var(--gold); transform: scaleY(0); transform-origin: top;
  transition: transform 1.1s var(--ease);
}
.timeline.line-in::before { transform: scaleY(1); }
.timeline .t-item {
  padding: 6px 0 30px 28px; position: relative;
  opacity: 0; transform: translateY(22px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}
.timeline .t-item.in { opacity: 1; transform: none; }
.timeline .t-item::before {
  content: ""; position: absolute; left: -6px; top: 8px; width: 15px; height: 15px;
  background: var(--gold); border-radius: 50%; box-shadow: 0 0 0 4px rgba(200,160,77,0.18);
  transform: scale(0); transition: transform 0.45s var(--ease) 0.1s;
}
.timeline .t-item.in::before { transform: scale(1); }
.timeline .t-item:last-child { padding-bottom: 0; }
.timeline .t-year { font-family: var(--serif); font-size: 1.2rem; color: var(--gold-dark); margin-bottom: 6px; }
.bg-dark .timeline .t-year { color: var(--gold); }

/* ---------- Pricing ---------- */
.price-card {
  border-radius: var(--radius-lg); padding: 44px 34px; background: var(--ink-card);
  border: 1px solid var(--ink-line); color: var(--cream); display: flex; flex-direction: column;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s;
}
.price-card:hover { transform: translateY(-8px); border-color: var(--gold); box-shadow: var(--shadow-gold); }
.price-card.featured { border-color: var(--gold); box-shadow: var(--shadow-gold); position: relative; }
.price-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--gold); color: var(--ink); font-size: 0.7rem; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; padding: 6px 16px; border-radius: 30px;
}
.tier-badge {
  width: 56px; height: 56px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
  margin-bottom: 22px; font-size: 1.5rem;
}
.tier-gold { background: var(--gold); color: #fff; }
.tier-plat { background: #aab0bd; color: #fff; }
.tier-diamond { background: linear-gradient(135deg, #b8901f, #e4c766); color: #fff; }
.tier-badge svg { width: 27px; height: 27px; }
.price-card .tier-name { font-family: var(--serif); font-size: 1.55rem; color: var(--gold); }
.price-card .tier-sub { font-size: 0.85rem; color: var(--muted-light); font-style: italic; margin-bottom: 20px; }
.price-card .price { font-family: var(--serif); font-size: 2.7rem; color: var(--cream); line-height: 1; }
.price-card .price small { font-size: 0.9rem; color: var(--muted-light); font-family: var(--sans); }
.price-card .price-sub { font-size: 0.82rem; color: var(--muted-light); margin: 8px 0 24px; line-height: 1.45; }
.feature-list { margin: 0 0 26px; }
.feature-list li { display: flex; gap: 10px; padding: 8px 0; font-size: 0.9rem; color: var(--muted-light); border-bottom: 1px dashed var(--ink-line); }
.feature-list li::before { content: "✓"; color: var(--gold); font-weight: 700; flex-shrink: 0; }
.price-card .btn { margin-top: auto; }
.plan-groups { margin-bottom: 28px; }
.plan-group + .plan-group { margin-top: 18px; }
.pg-label {
  display: block; font-size: 0.68rem; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--gold); font-weight: 700; margin-bottom: 6px; padding-top: 14px; border-top: 1px solid var(--ink-line);
}
.plan-group:first-child .pg-label { padding-top: 0; border-top: none; }
.plan-group .feature-list { margin: 0; }
.plan-group .feature-list li { border-bottom: none; padding: 6px 0; }

/* ---------- Comparison table ---------- */
.table-wrap { overflow-x: auto; border-radius: var(--radius-lg); border: 1px solid var(--ink-line); box-shadow: var(--shadow); }
table.compare { width: 100%; border-collapse: collapse; min-width: 640px; background: var(--ink-card); color: var(--cream); }
table.compare th, table.compare td { padding: 18px 24px; text-align: left; border-bottom: 1px solid var(--ink-line); font-size: 0.92rem; }
table.compare thead th { background: var(--ink); color: var(--gold); font-family: var(--serif); font-size: 1.05rem; letter-spacing: 0.04em; padding: 22px 24px; }

table.compare tbody td { color: var(--muted-light); }
table.compare tbody td:first-child { color: var(--cream); font-weight: 500; }
table.compare tr.highlight td { background: rgba(200,160,77,0.1); color: var(--gold); font-weight: 600; }
table.compare .yes { color: var(--gold); }
table.compare .no { color: #7a5a5a; }

/* ---------- Process steps ---------- */
.steps { counter-reset: step; }
.step {
  display: flex; gap: 22px; padding: 22px 0; border-bottom: 1px solid #e7e2d8;
}
.bg-dark .step { border-color: var(--ink-line); }
.step:last-child { border-bottom: none; }
.step .step-n {
  flex-shrink: 0; width: 46px; height: 46px; border-radius: 50%; background: var(--gold); color: var(--ink);
  display: flex; align-items: center; justify-content: center; font-family: var(--serif); font-weight: 700; font-size: 1.2rem;
}
.step h3 { margin-bottom: 6px; }

/* ---------- Blog ---------- */
.post-card {
  background: var(--white); border: 1px solid #ece8df; border-radius: var(--radius-lg); overflow: hidden;
  display: flex; flex-direction: column; transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s;
}
.post-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: var(--gold); }
.post-thumb { aspect-ratio: 16/9; display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, #161512, #2a2616); color: var(--gold); position: relative; }
.post-thumb svg { width: 54px; height: 54px; opacity: 0.85; }
.post-thumb .cat {
  position: absolute; top: 14px; left: 14px; background: var(--gold); color: var(--ink);
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; padding: 5px 12px; border-radius: 20px;
}
.post-body { padding: 26px; display: flex; flex-direction: column; flex: 1; }
.post-meta { font-size: 0.76rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--muted); margin-bottom: 12px; }
.post-body h3 { margin-bottom: 12px; font-size: 1.25rem; }
.post-body p { font-size: 0.92rem; flex: 1; }
.post-body .read { color: var(--gold-dark); font-weight: 600; font-size: 0.85rem; margin-top: 16px; display: inline-flex; gap: 6px; }
.post-card:hover .read { gap: 12px; }

/* Article */
.article { max-width: 760px; margin: 0 auto; }
.article p { font-size: 1.05rem; color: var(--text-soft); margin-bottom: 22px; line-height: 1.8; }
.article h2 { margin: 40px 0 16px; }
.article h3 { margin: 30px 0 12px; }
.article ul.bullets { margin: 0 0 22px 0; }
.article ul.bullets li { position: relative; padding-left: 26px; margin-bottom: 10px; color: var(--text-soft); }
.article ul.bullets li::before { content: "◆"; position: absolute; left: 0; color: var(--gold); font-size: 0.8rem; top: 2px; }
.article blockquote {
  border-left: 4px solid var(--gold); padding: 8px 24px; margin: 28px 0; font-family: var(--serif);
  font-style: italic; font-size: 1.3rem; color: var(--ink);
}

/* ---------- Form ---------- */
.form-card { background: var(--white); border: 1px solid #ece8df; border-radius: var(--radius-lg); padding: 40px; box-shadow: var(--shadow); }
.field { margin-bottom: 20px; }
.field label { display: block; font-size: 0.82rem; font-weight: 600; letter-spacing: 0.04em; margin-bottom: 8px; color: var(--ink); }
.field input, .field select, .field textarea {
  width: 100%; padding: 13px 16px; border: 1.5px solid #ded8cc; border-radius: var(--radius);
  font-family: var(--sans); font-size: 0.95rem; background: var(--paper); color: var(--text); transition: border-color 0.25s;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--gold); }
.field textarea { resize: vertical; min-height: 130px; }
.form-note { font-size: 0.82rem; color: var(--muted); margin-top: 8px; }
.muted-card { background: var(--ink); color: var(--cream); border: 1px solid var(--ink-line); border-radius: var(--radius-lg); padding: 40px; box-shadow: var(--shadow); }
.muted-card h3 { color: var(--cream); }
.contact-line { display: flex; gap: 16px; align-items: flex-start; padding: 18px 0; border-bottom: 1px solid var(--ink-line); }
.contact-line .ic { color: var(--gold); flex-shrink: 0; margin-top: 2px; }
.contact-line .ic svg { width: 22px; height: 22px; }
.contact-line .lbl { font-size: 0.74rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted-light); }
.contact-line .val { color: var(--cream); font-size: 1.02rem; }
.contact-line a.val:hover { color: var(--gold); }

.form-success {
  display: none; background: rgba(200,160,77,0.12); border: 1.5px solid var(--gold);
  border-radius: var(--radius); padding: 16px 20px; color: var(--gold-dark); font-weight: 600; margin-bottom: 20px;
}
.form-success.show { display: block; }

/* ---------- CTA band ---------- */
.cta-band { background: var(--gold); text-align: center; }
.cta-band h2 { color: var(--ink); margin-bottom: 18px; }
.cta-band p { color: #3a2f08; max-width: 600px; margin: 0 auto 30px; }
.cta-band .btn-dark { background: var(--ink); }

/* ---------- Logo strip ---------- */
.logo-wall { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1px; background: var(--ink-line); border: 1px solid var(--ink-line); border-radius: var(--radius-lg); overflow: hidden; }
.logo-wall .cell { background: var(--ink-card); aspect-ratio: 16/10; display: flex; align-items: center; justify-content: center;
  font-family: var(--serif); color: var(--muted-light); font-size: 0.9rem; letter-spacing: 0.08em; }

/* ---------- Logo cloud (empresas parceiras) ---------- */
.logo-cloud {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px;
  background: transparent; border: none; border-radius: var(--radius-lg);
}
.lc-cell {
  position: relative; background: #ffffff; min-height: 210px;
  display: flex; align-items: center; justify-content: center; padding: 32px 36px; text-align: center;
  font-size: 1.05rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold-dark); font-weight: 700;
  border-radius: var(--radius-lg); border: 1.5px solid rgba(12,35,80,0.12); box-shadow: 0 8px 24px rgba(0,0,0,0.06);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s;
}
.lc-cell:hover { transform: translateY(-6px); box-shadow: 0 16px 36px rgba(0,0,0,0.12); border-color: var(--gold); }
.lc-cell.lc-more { color: var(--gold-dark); background: var(--paper); border: 2.5px dashed var(--gold); font-size: 1.1rem; font-weight: 700; }
.lc-cell img { max-height: 135px; max-width: 95%; width: auto; height: auto; object-fit: contain; filter: contrast(106%); transition: transform 0.35s var(--ease); }
.lc-cell:hover img { transform: scale(1.08); }
@media (max-width: 1100px) { .logo-cloud { grid-template-columns: repeat(3, 1fr); gap: 20px; } .lc-cell { min-height: 180px; padding: 24px; } .lc-cell img { max-height: 110px; } }
@media (max-width: 760px) { .logo-cloud { grid-template-columns: repeat(2, 1fr); gap: 14px; } .lc-cell { min-height: 140px; padding: 18px; } .lc-cell img { max-height: 85px; } }
@media (max-width: 480px) { .logo-cloud { grid-template-columns: 1fr; } }





/* ---------- Footer ---------- */
.site-footer { background: var(--ink); color: #cbd3e2; padding: 72px 0 32px; border-top: 1px solid var(--ink-line); }
.site-footer p { color: #cbd3e2; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 40px; margin-bottom: 50px; }
.footer-grid h4 { color: var(--gold); font-family: var(--sans); font-size: 0.82rem; letter-spacing: 0.16em; text-transform: uppercase; margin-bottom: 18px; }
.footer-grid a { display: block; font-size: 0.9rem; padding: 5px 0; color: var(--muted-light); transition: color 0.2s; }
.footer-grid a:hover { color: var(--gold); }
.footer-brand .brand-text { font-family: var(--serif); font-size: 1.5rem; color: var(--gold); letter-spacing: 0.12em; }
.footer-brand p { font-size: 0.9rem; margin: 14px 0; max-width: 280px; }
.footer-tag { font-style: italic; font-family: var(--serif); color: var(--gold-soft); }
.footer-bottom { border-top: 1px solid var(--ink-line); padding-top: 26px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 14px; font-size: 0.82rem; color: var(--muted); }
.social-row { display: flex; gap: 12px; margin-top: 16px; }
.social-row a { width: 40px; height: 40px; border: 1px solid var(--ink-line); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--gold); transition: all 0.25s; }
.social-row a:hover { background: var(--gold); color: var(--ink); border-color: var(--gold); }
.social-row svg { width: 18px; height: 18px; }

/* ---------- Gallery ---------- */
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.gallery-item {
  position: relative; aspect-ratio: 4/3; border-radius: var(--radius-lg); overflow: hidden;
  background: linear-gradient(135deg, #0e2148 0%, #1c2f57 100%);
  border: 1px solid var(--ink-line); display: flex; align-items: center; justify-content: center;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s;
}
.gallery-item.tall { aspect-ratio: 3/4; grid-row: span 2; }
.gallery-item:hover { transform: translateY(-4px); border-color: var(--gold); box-shadow: var(--shadow-gold); }
.gallery-item img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.gallery-item .ph { color: var(--gold); opacity: 0.5; }
.gallery-item .ph svg { width: 44px; height: 44px; }
.gallery-item .cap {
  position: absolute; left: 0; bottom: 0; width: 100%; padding: 16px;
  background: linear-gradient(0deg, rgba(8,22,48,0.9) 0%, rgba(8,22,48,0) 100%);
  color: var(--cream); font-size: 0.86rem; font-weight: 600; letter-spacing: 0.02em; z-index: 2;
}
@media (max-width: 760px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } .gallery-item.tall { grid-row: span 1; aspect-ratio: 4/3; } }
/* ---------- Helper Margins ---------- */
.mt-s { margin-top: 18px; } .mt-m { margin-top: 32px; } .mt-l { margin-top: 54px; }
.mb-s { margin-bottom: 18px; } .mb-m { margin-bottom: 36px; } .mb-l { margin-bottom: 58px; }

/* ---------- Novidades da Semana (BEZ News) ---------- */
.news-week-section { background: var(--paper); border-top: 1px solid rgba(200, 160, 77, 0.15); }

.news-week-grid {
  display: grid; grid-template-columns: 380px 1fr; gap: 40px; align-items: start;
  background: var(--white); border: 1px solid rgba(12, 35, 80, 0.08);
  border-radius: var(--radius-lg); padding: 32px; box-shadow: var(--shadow);
}
.news-flyer-card { position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: 0 12px 30px rgba(0,0,0,0.15); }
.news-flyer-img { width: 100%; height: auto; display: block; border-radius: var(--radius-lg); transition: transform 0.4s var(--ease); }
.news-flyer-card:hover .news-flyer-img { transform: scale(1.02); }
.news-badge {
  position: absolute; top: 16px; left: 16px; background: linear-gradient(135deg, #cba64d 0%, #e2c079 100%);
  color: var(--ink); font-weight: 700; font-size: 0.76rem; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 6px 14px; border-radius: 20px; box-shadow: 0 4px 12px rgba(0,0,0,0.25); z-index: 2;
}
.news-info-card { display: flex; flex-direction: column; gap: 16px; }
.news-subhead { font-size: 0.8rem; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold-dark); }
.news-info-card h3 { font-size: clamp(1.6rem, 2.8vw, 2.2rem); color: var(--ink); margin: 0; }
.news-lead { font-size: 1.05rem; color: var(--text-soft); line-height: 1.6; }
.news-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 4px; }
.tag-pill {
  background: rgba(200, 160, 77, 0.12); color: var(--gold-dark); font-weight: 600;
  font-size: 0.82rem; padding: 6px 14px; border-radius: 20px; border: 1px solid rgba(200, 160, 77, 0.25);
}
.news-video-preview { margin-top: 12px; background: var(--ink); border-radius: var(--radius-lg); padding: 20px; color: var(--cream); }
.news-video-preview h4 { color: var(--gold-light); font-size: 0.95rem; margin-bottom: 12px; font-weight: 600; }
.news-video-player { width: 100%; max-height: 280px; border-radius: 8px; background: #000; outline: none; }

.news-newsletter-box {
  margin-top: 16px; padding: 22px; background: var(--cream); border-radius: var(--radius-lg);
  border-left: 4px solid var(--gold);
}
.news-newsletter-box h4 { font-size: 1.1rem; color: var(--ink); margin-bottom: 6px; }
.news-newsletter-box p { font-size: 0.88rem; color: var(--text-soft); margin-bottom: 14px; }
.news-form { display: flex; gap: 10px; flex-wrap: wrap; }
.news-input {
  flex: 1; min-width: 220px; padding: 12px 16px; border-radius: 8px; border: 1.5px solid rgba(12, 35, 80, 0.2);
  font-family: var(--sans); font-size: 0.9rem; outline: none; transition: border-color 0.2s;
}
.news-input:focus { border-color: var(--gold); }

@media (max-width: 940px) {
  .news-week-grid { grid-template-columns: 1fr; gap: 28px; padding: 22px; }
  .news-flyer-card { max-width: 440px; margin: 0 auto; }
}

/* ---------- Responsive ---------- */
@media (max-width: 940px) {
  .nav-links {
    position: fixed; top: 76px; right: 0; width: min(80vw, 320px); height: calc(100vh - 76px);
    background: var(--ink-2); flex-direction: column; align-items: flex-start; gap: 4px;
    padding: 30px 28px; transform: translateX(110%); transition: transform 0.35s var(--ease);
    border-left: 1px solid var(--ink-line);
  }
  .nav-links.open { transform: none; }
  .nav-links a { width: 100%; padding: 14px 0; border-bottom: 1px solid var(--ink-line); font-size: 1rem; }
  .nav-toggle { display: flex; }
  .nav-cta { display: none; }
  .nav-app { padding: 9px 15px; font-size: 0.78rem; margin-right: 6px; }
  .nav-item { flex-direction: column; align-items: flex-start; width: 100%; }
  .nav-item > a { width: 100%; }
  .nav-item .caret { display: none; }
  .nav-sub { position: static; opacity: 1; visibility: visible; transform: none; background: transparent; border: none; box-shadow: none; padding: 0 0 6px 16px; min-width: 0; }
  .nav-sub a { border-bottom: none; padding: 10px 0; font-size: 0.92rem; color: var(--muted-light); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
}
@media (max-width: 760px) {
  .grid-2, .grid-3, .split { grid-template-columns: 1fr; }
  .split { gap: 36px; }
  .hero { min-height: auto; }
  .hero-meta { gap: 26px; }
  .logo-wall { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .quote { font-size: 1.1rem; padding: 26px; }
}
@media (max-width: 600px) {
  h1[style*="nowrap"], h2[style*="nowrap"] { white-space: normal !important; }
}
@media (max-width: 460px) {
  .grid-4 { grid-template-columns: 1fr; }
  .logo-wall { grid-template-columns: repeat(2, 1fr); }
  .btn { width: 100%; justify-content: center; }
  .brand .brand-text { font-size: 1.05rem; }
  .nav-app { width: auto; padding: 8px 13px; font-size: 0.74rem; margin-right: 4px; }
}

