/* =====================================================
   BEBIDAS.CSS — Landing Page Distribuidores de Bebidas
   Oliveira Moreno Advogados
   Paleta: Azul Profundo + Dourado + Branco
===================================================== */

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

:root {
  /* Paleta bebidas */
  --beb-gold:       #F5C518;
  --beb-gold-dark:  #D4A90E;
  --beb-gold-light: #FDE87A;
  --beb-blue-deep:  #0D1B2A;
  --beb-blue-mid:   #1B2E45;
  --beb-blue-soft:  #243B55;
  --beb-blue-light: #2E4E6E;
  --beb-white:      #FFFFFF;
  --beb-off-white:  #F7F8FA;
  --beb-gray:       #6B7280;
  --beb-gray-light: #E5E7EB;
  --beb-green:      #27AE60;
  --beb-red:        #E74C3C;

  /* Typography */
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Inter', system-ui, sans-serif;

  /* Spacing */
  --section-gap: 90px;
  --container-max: 1180px;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0,0,0,.08);
  --shadow-md: 0 8px 30px rgba(0,0,0,.12);
  --shadow-lg: 0 16px 60px rgba(0,0,0,.18);

  /* Radii */
  --r-sm: 6px;
  --r-md: 12px;
  --r-lg: 20px;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--beb-white);
  color: var(--beb-blue-deep);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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

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

/* ---------- CONTAINER ---------- */
.beb-container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- BUTTONS ---------- */
.beb-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--r-md);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: .95rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all .25s ease;
  white-space: nowrap;
  text-decoration: none;
}
.beb-btn-gold {
  background: var(--beb-gold);
  color: var(--beb-blue-deep);
  border-color: var(--beb-gold);
}
.beb-btn-gold:hover {
  background: var(--beb-gold-dark);
  border-color: var(--beb-gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(245,197,24,.35);
}
.beb-btn-outline {
  background: transparent;
  color: var(--beb-white);
  border-color: rgba(255,255,255,.5);
}
.beb-btn-outline:hover {
  background: rgba(255,255,255,.1);
  border-color: var(--beb-white);
}
.beb-btn-header {
  background: var(--beb-gold);
  color: var(--beb-blue-deep);
  padding: 10px 20px;
  font-size: .88rem;
}
.beb-btn-header:hover { background: var(--beb-gold-dark); }
.beb-btn-wpp {
  background: #25D366;
  color: var(--beb-white);
  border-color: #25D366;
}
.beb-btn-wpp:hover { background: #1eba56; }
.beb-btn-lg { padding: 15px 32px; font-size: 1.05rem; }
.beb-btn-full { width: 100%; justify-content: center; }

/* ---------- HEADER ---------- */
.beb-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: var(--beb-blue-deep);
  border-bottom: 1px solid rgba(255,255,255,.06);
  transition: background .3s, box-shadow .3s;
}
.beb-header.scrolled {
  background: rgba(13,27,42,.97);
  box-shadow: 0 4px 20px rgba(0,0,0,.25);
}
.beb-header-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  padding-top: 14px;
  padding-bottom: 14px;
}
.beb-logo-link { flex-shrink: 0; }
.beb-logo { height: 42px; width: auto; }
.beb-logo-fallback {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--beb-gold);
}
.beb-nav {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-left: auto;
}
.beb-nav-link {
  padding: 7px 12px;
  font-size: .88rem;
  font-weight: 500;
  color: rgba(255,255,255,.8);
  border-radius: var(--r-sm);
  transition: color .2s, background .2s;
}
.beb-nav-link:hover {
  color: var(--beb-gold);
  background: rgba(245,197,24,.08);
}
.beb-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.beb-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--beb-white);
  border-radius: 2px;
  transition: all .3s;
}
.beb-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.beb-hamburger.open span:nth-child(2) { opacity: 0; }
.beb-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav */
.beb-mobile-nav {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 12px 24px 20px;
  background: var(--beb-blue-mid);
  border-top: 1px solid rgba(255,255,255,.06);
}
.beb-mobile-nav.open { display: flex; }
.beb-mobile-link {
  color: rgba(255,255,255,.85);
  font-size: .95rem;
  font-weight: 500;
  padding: 10px 12px;
  border-radius: var(--r-sm);
  transition: background .2s, color .2s;
}
.beb-mobile-link:hover { background: rgba(255,255,255,.07); color: var(--beb-gold); }

/* ---------- SECTION COMMONS ---------- */
.beb-section { padding: var(--section-gap) 0; }
.beb-section-light { background: var(--beb-off-white); }
.beb-section-dark  { background: var(--beb-blue-deep); }
.beb-section-faq   { background: var(--beb-white); }
.beb-section-clients { background: var(--beb-white); }
.beb-section-cta   { background: var(--beb-blue-mid); }

.beb-section-header { text-align: center; margin-bottom: 56px; }
.beb-section-header-light { text-align: center; margin-bottom: 56px; }

.beb-section-tag {
  display: inline-block;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--beb-blue-light);
  background: rgba(46,78,110,.12);
  border: 1px solid rgba(46,78,110,.2);
  border-radius: 99px;
  padding: 4px 14px;
  margin-bottom: 14px;
}
.beb-section-tag-gold {
  color: var(--beb-gold-dark);
  background: rgba(245,197,24,.12);
  border-color: rgba(245,197,24,.3);
}
.beb-section-title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  font-weight: 800;
  line-height: 1.2;
  color: var(--beb-blue-deep);
  margin-bottom: 14px;
}
.beb-title-light { color: var(--beb-white); }

.beb-section-sub {
  font-size: 1.05rem;
  color: var(--beb-gray);
  max-width: 620px;
  margin: 0 auto;
}
.beb-sub-light { color: rgba(255,255,255,.7); }

/* ---------- HERO ---------- */
.beb-hero {
  position: relative;
  min-height: 100vh;
  background: linear-gradient(135deg, var(--beb-blue-deep) 0%, var(--beb-blue-soft) 60%, #1a3550 100%);
  display: flex;
  align-items: center;
  padding: 120px 0 60px;
  overflow: hidden;
}
.beb-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23F5C518' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.beb-hero-bg-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(245,197,24,.06) 0%, transparent 70%);
  pointer-events: none;
}
.beb-hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 60px;
  align-items: center;
  width: 100%;
}
.beb-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(245,197,24,.15);
  border: 1px solid rgba(245,197,24,.35);
  color: var(--beb-gold-light);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .08em;
  padding: 6px 14px;
  border-radius: 99px;
  margin-bottom: 22px;
}
.beb-hero-title {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.18;
  color: var(--beb-white);
  margin-bottom: 20px;
}
.beb-hero-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,.8);
  line-height: 1.75;
  margin-bottom: 26px;
  max-width: 560px;
}
.beb-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 32px;
}
.beb-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .82rem;
  font-weight: 600;
  color: var(--beb-gold);
  background: rgba(245,197,24,.1);
  border: 1px solid rgba(245,197,24,.25);
  padding: 5px 13px;
  border-radius: 99px;
}
.beb-hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 48px;
}
.beb-stat-row {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}
.beb-stat { text-align: center; }
.beb-stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--beb-gold);
  line-height: 1;
  margin-bottom: 4px;
}
.beb-stat-label {
  font-size: .78rem;
  color: rgba(255,255,255,.6);
  text-transform: uppercase;
  letter-spacing: .06em;
}
.beb-stat-div {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,.15);
}

/* Hero visual card */
.beb-hero-visual {
  display: flex;
  justify-content: center;
}
.beb-hero-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(245,197,24,.2);
  border-radius: var(--r-lg);
  padding: 32px 28px;
  width: 100%;
  max-width: 340px;
  backdrop-filter: blur(10px);
}
.beb-card-icon {
  font-size: 2.4rem;
  color: var(--beb-gold);
  margin-bottom: 12px;
}
.beb-card-label {
  font-size: .78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--beb-gold);
  margin-bottom: 6px;
}
.beb-card-value {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--beb-white);
  margin-bottom: 20px;
}
.beb-card-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
}
.beb-card-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .9rem;
  color: rgba(255,255,255,.85);
}
.beb-card-list li .fas { color: var(--beb-gold); font-size: .8rem; }
.beb-card-tag {
  display: inline-block;
  background: rgba(245,197,24,.15);
  border: 1px solid rgba(245,197,24,.3);
  color: var(--beb-gold);
  font-size: .75rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 99px;
}

/* ---------- PROBLEMA ---------- */
.beb-problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}
.beb-problem-card {
  background: var(--beb-white);
  border: 1px solid var(--beb-gray-light);
  border-radius: var(--r-md);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  transition: transform .3s, box-shadow .3s;
}
.beb-problem-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.beb-problem-card-center {
  border-color: var(--beb-gold);
  box-shadow: 0 0 0 1px var(--beb-gold), var(--shadow-sm);
  position: relative;
}
.beb-problem-icon {
  font-size: 1.8rem;
  color: var(--beb-blue-light);
  margin-bottom: 16px;
}
.beb-icon-gold { color: var(--beb-gold-dark) !important; }
.beb-icon-green { color: var(--beb-green) !important; }
.beb-problem-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--beb-blue-deep);
  margin-bottom: 10px;
}
.beb-problem-card p { font-size: .95rem; color: var(--beb-gray); line-height: 1.7; }

/* Highlight box */
.beb-highlight-box {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background: linear-gradient(135deg, #0D1B2A, #1B2E45);
  border-radius: var(--r-md);
  padding: 28px 32px;
  border-left: 4px solid var(--beb-gold);
}
.beb-highlight-icon {
  font-size: 2rem;
  color: var(--beb-gold);
  flex-shrink: 0;
  margin-top: 4px;
}
.beb-highlight-text strong {
  display: block;
  font-size: 1.05rem;
  color: var(--beb-gold);
  margin-bottom: 8px;
}
.beb-highlight-text p { font-size: .95rem; color: rgba(255,255,255,.75); line-height: 1.7; }

/* ---------- OPORTUNIDADE ---------- */
.beb-oport-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}
.beb-oport-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r-md);
  padding: 32px 26px;
  text-align: center;
  transition: transform .3s, border-color .3s;
  position: relative;
}
.beb-oport-card:hover {
  transform: translateY(-4px);
  border-color: rgba(245,197,24,.3);
}
.beb-oport-card-featured {
  background: rgba(245,197,24,.08);
  border-color: rgba(245,197,24,.4);
}
.beb-oport-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--beb-gold);
  color: var(--beb-blue-deep);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 99px;
}
.beb-oport-num {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--beb-gold);
  line-height: 1;
  margin-bottom: 8px;
}
.beb-oport-pct {
  font-family: var(--font-display);
  font-size: 3.2rem;
  font-weight: 800;
  color: var(--beb-gold);
  line-height: 1;
  margin-bottom: 4px;
}
.beb-oport-pct-label {
  font-size: .8rem;
  font-weight: 700;
  color: var(--beb-gold-light);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 14px;
}
.beb-oport-card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--beb-white);
  margin-bottom: 10px;
}
.beb-oport-card p { font-size: .92rem; color: rgba(255,255,255,.7); }
.beb-oport-ref {
  display: block;
  font-size: .75rem;
  color: rgba(255,255,255,.4);
  margin-top: 14px;
}
.beb-oport-seal {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(39,174,96,.15);
  border: 1px solid rgba(39,174,96,.3);
  color: #6fe09a;
  font-size: .78rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 99px;
  margin-top: 14px;
}
.beb-oport-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: left;
  margin-bottom: 12px;
}
.beb-oport-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .9rem;
  color: rgba(255,255,255,.8);
}
.beb-oport-list .fas { color: var(--beb-gold); margin-top: 3px; flex-shrink: 0; }
.beb-oport-note { font-size: .82rem; color: rgba(255,255,255,.5); }

/* Sectors */
.beb-sectors { text-align: center; }
.beb-sectors-label {
  font-size: .85rem;
  font-weight: 600;
  color: rgba(255,255,255,.5);
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: 16px;
}
.beb-sectors-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}
.beb-sector-item {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: .85rem;
  font-weight: 600;
  color: rgba(255,255,255,.8);
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.1);
  padding: 7px 16px;
  border-radius: 99px;
}
.beb-sector-item .fas { color: var(--beb-gold); }

/* ---------- CLIENTES / LOGOS ---------- */
.beb-logos-row {
  display: flex;
  justify-content: center;
  align-items: stretch;
  flex-wrap: wrap;
  gap: 30px;
  margin-bottom: 30px;
}
.beb-logo-card {
  background: var(--beb-white);
  border: 1px solid var(--beb-gray-light);
  border-radius: var(--r-md);
  padding: 28px 36px 22px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-width: 200px;
  max-width: 240px;
  flex: 1;
  transition: box-shadow .3s, transform .3s, border-color .3s;
  box-shadow: var(--shadow-sm);
}
.beb-logo-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-5px);
  border-color: var(--beb-gold);
}
.beb-client-logo {
  max-height: 80px;
  max-width: 160px;
  width: auto;
  object-fit: contain;
  filter: grayscale(30%);
  transition: filter .35s;
}
.beb-logo-card:hover .beb-client-logo { filter: none; }
.beb-logo-name {
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--beb-gray);
  text-align: center;
  border-top: 1px solid var(--beb-gray-light);
  padding-top: 10px;
  width: 100%;
  transition: color .3s;
}
.beb-logo-card:hover .beb-logo-name { color: var(--beb-blue-deep); }
.beb-clients-note {
  text-align: center;
  font-size: .87rem;
  color: var(--beb-gray);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 8px;
}
.beb-clients-note .fas { color: var(--beb-green); }

/* ---------- COMO FUNCIONA ---------- */
.beb-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 48px;
  position: relative;
}
.beb-step {
  display: flex;
  align-items: flex-start;
  gap: 0;
  position: relative;
}
.beb-step-num {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--beb-blue-deep);
  border: 3px solid var(--beb-gold);
  color: var(--beb-gold);
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
  margin-top: 4px;
}
.beb-step-connector {
  position: absolute;
  left: 27px;
  top: 60px;
  bottom: -24px;
  width: 2px;
  background: linear-gradient(to bottom, var(--beb-gold), rgba(245,197,24,.1));
  z-index: 1;
}
.beb-step:last-child .beb-step-connector { display: none; }
.beb-step-content {
  background: var(--beb-white);
  border: 1px solid var(--beb-gray-light);
  border-radius: var(--r-md);
  padding: 28px 28px;
  margin-left: 24px;
  margin-bottom: 28px;
  flex: 1;
  transition: border-color .3s, box-shadow .3s;
}
.beb-step-content:hover {
  border-color: var(--beb-gold);
  box-shadow: var(--shadow-sm);
}
.beb-step-content h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--beb-blue-deep);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.beb-step-content h3 .fas { color: var(--beb-gold); }
.beb-step-content p { font-size: .95rem; color: var(--beb-gray); line-height: 1.7; }

/* Lucro box */
.beb-lucro-box {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background: linear-gradient(135deg, #0D1B2A, #1B2E45);
  border-radius: var(--r-md);
  padding: 28px 32px;
  border-left: 4px solid var(--beb-gold);
}
.beb-lucro-icon {
  font-size: 2rem;
  color: var(--beb-gold);
  flex-shrink: 0;
  margin-top: 4px;
}
.beb-lucro-text strong {
  display: block;
  font-size: 1.05rem;
  color: var(--beb-white);
  margin-bottom: 8px;
}
.beb-lucro-text p { font-size: .95rem; color: rgba(255,255,255,.7); line-height: 1.7; }

/* ---------- URGÊNCIA ---------- */
.beb-urgency {
  background: linear-gradient(135deg, #7B1D0F, #C0392B);
  padding: 48px 0;
}
.beb-urgency-inner {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}
.beb-urgency-icon {
  font-size: 2.5rem;
  color: rgba(255,255,255,.9);
  flex-shrink: 0;
}
.beb-urgency-text { flex: 1; min-width: 260px; }
.beb-urgency-text h2 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--beb-white);
  margin-bottom: 8px;
}
.beb-urgency-text p { font-size: .95rem; color: rgba(255,255,255,.85); line-height: 1.7; }

/* ---------- 7 CAMADAS ---------- */
.beb-security-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}
.beb-security-group-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--beb-gold);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(245,197,24,.2);
}
.beb-security-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 20px;
}
.beb-security-num {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(245,197,24,.15);
  border: 2px solid var(--beb-gold);
  color: var(--beb-gold);
  font-family: var(--font-display);
  font-size: .9rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.beb-security-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--r-md);
  padding: 20px 22px;
  flex: 1;
  transition: border-color .3s, transform .3s;
}
.beb-security-card:hover {
  border-color: rgba(245,197,24,.3);
  transform: translateX(4px);
}
.beb-security-card-featured {
  background: rgba(245,197,24,.06);
  border-color: rgba(245,197,24,.3);
}
.beb-security-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
  flex-wrap: wrap;
  gap: 6px;
}
.beb-security-label {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .12em;
  color: var(--beb-gold);
  background: rgba(245,197,24,.12);
  padding: 2px 10px;
  border-radius: 99px;
}
.beb-security-ref {
  font-size: .72rem;
  color: rgba(255,255,255,.4);
}
.beb-security-card h4 {
  font-size: .9rem;
  font-weight: 700;
  color: var(--beb-white);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.beb-security-card p { font-size: .88rem; color: rgba(255,255,255,.65); line-height: 1.65; }
.beb-security-cta {
  text-align: center;
}
.beb-security-cta p {
  color: rgba(255,255,255,.6);
  margin-bottom: 20px;
  font-size: .95rem;
}

/* ---------- ESPECIALISTA ---------- */
.beb-specialist-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 56px;
  align-items: flex-start;
  background: var(--beb-white);
  border: 1px solid var(--beb-gray-light);
  border-radius: var(--r-lg);
  padding: 48px;
  box-shadow: var(--shadow-md);
}
.beb-specialist-photo-wrap {
  position: relative;
  flex-shrink: 0;
}
.beb-specialist-photo {
  width: 200px;
  height: 245px;
  object-fit: cover;
  border-radius: var(--r-md);
  display: block;
}
.beb-specialist-oab {
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--beb-gold);
  color: var(--beb-blue-deep);
  font-size: .75rem;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 99px;
  white-space: nowrap;
}
.beb-specialist-name {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--beb-blue-deep);
  margin-bottom: 6px;
}
.beb-specialist-title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--beb-gold-dark);
  margin-bottom: 18px;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.beb-specialist-bio {
  font-size: 1rem;
  color: var(--beb-gray);
  line-height: 1.75;
  margin-bottom: 24px;
  max-width: 540px;
}
.beb-specialist-creds {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 32px;
}
.beb-specialist-creds li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: .95rem;
  color: var(--beb-blue-deep);
}
.beb-specialist-creds .fas {
  color: var(--beb-gold-dark);
  margin-top: 4px;
  flex-shrink: 0;
}

/* ---------- FAQ ---------- */
.beb-faq-list {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.beb-faq-item {
  border: 1px solid var(--beb-gray-light);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: border-color .2s;
}
.beb-faq-item[open] { border-color: var(--beb-gold); }
.beb-faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  cursor: pointer;
  list-style: none;
  font-weight: 600;
  font-size: 1rem;
  color: var(--beb-blue-deep);
  background: var(--beb-white);
  transition: background .2s;
}
.beb-faq-q::-webkit-details-marker { display: none; }
.beb-faq-item[open] .beb-faq-q { background: var(--beb-off-white); }
.beb-faq-icon {
  font-size: .8rem;
  color: var(--beb-gold-dark);
  flex-shrink: 0;
  transition: transform .3s;
}
.beb-faq-item[open] .beb-faq-icon { transform: rotate(45deg); }
.beb-faq-a {
  padding: 0 24px 20px;
  background: var(--beb-off-white);
  animation: fadeDown .25s ease;
}
.beb-faq-a p { font-size: .95rem; color: var(--beb-gray); line-height: 1.75; }
@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ---------- CONTATO CTA ---------- */
.beb-cta-wrapper {
  display: grid;
  grid-template-columns: 1fr 460px;
  gap: 60px;
  align-items: flex-start;
}
.beb-cta-title {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 800;
  color: var(--beb-white);
  margin-bottom: 14px;
  line-height: 1.25;
}
.beb-cta-text > p {
  font-size: 1rem;
  color: rgba(255,255,255,.75);
  margin-bottom: 32px;
}
.beb-contact-links {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.beb-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  color: var(--beb-white);
  font-size: .95rem;
  transition: opacity .2s;
}
.beb-contact-item:hover { opacity: .8; }
.beb-contact-item .fas,
.beb-contact-item .fab {
  font-size: 1.3rem;
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--beb-gold);
}
.beb-contact-wpp .fab { color: #25D366; }
.beb-contact-item > div { display: flex; flex-direction: column; gap: 2px; }
.beb-contact-item strong { font-weight: 700; }
.beb-contact-item span { color: rgba(255,255,255,.7); font-size: .9rem; }

/* Form */
.beb-cta-form-card {
  background: var(--beb-white);
  border-radius: var(--r-lg);
  padding: 36px 32px;
  box-shadow: var(--shadow-lg);
}
.beb-cta-form-card h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--beb-blue-deep);
  margin-bottom: 6px;
}
.beb-form-sub { font-size: .88rem; color: var(--beb-gray); margin-bottom: 24px; }
.beb-form { display: flex; flex-direction: column; gap: 16px; }
.beb-form-group { display: flex; flex-direction: column; gap: 6px; }
.beb-form-group label { font-size: .85rem; font-weight: 600; color: var(--beb-blue-deep); }
.beb-form-group input,
.beb-form-group select {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--beb-gray-light);
  border-radius: var(--r-sm);
  font-family: var(--font-body);
  font-size: .95rem;
  color: var(--beb-blue-deep);
  background: var(--beb-white);
  transition: border-color .2s;
  outline: none;
}
.beb-form-group input:focus,
.beb-form-group select:focus { border-color: var(--beb-gold); }

/* ---------- FOOTER ---------- */
.beb-footer {
  background: var(--beb-blue-deep);
  padding-top: 56px;
}
.beb-footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.beb-footer-logo { height: 38px; width: auto; margin-bottom: 12px; }
.beb-footer-brand p { font-size: .9rem; color: rgba(255,255,255,.55); line-height: 1.6; }
.beb-footer-cnpj { font-size: .8rem; color: rgba(255,255,255,.3) !important; margin-top: 10px; }
.beb-footer-nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.beb-footer-nav a {
  font-size: .9rem;
  color: rgba(255,255,255,.55);
  transition: color .2s;
}
.beb-footer-nav a:hover { color: var(--beb-gold); }
.beb-footer-contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.beb-footer-contact a,
.beb-footer-contact span {
  font-size: .9rem;
  color: rgba(255,255,255,.55);
  display: flex;
  align-items: flex-start;
  gap: 8px;
  transition: color .2s;
}
.beb-footer-contact a:hover { color: var(--beb-gold); }
.beb-footer-contact .fas,
.beb-footer-contact .fab { color: var(--beb-gold); flex-shrink: 0; margin-top: 3px; }
.beb-footer-bottom {
  padding: 20px 0;
}
.beb-footer-bottom p {
  font-size: .8rem;
  color: rgba(255,255,255,.3);
  text-align: center;
  margin-bottom: 4px;
}

/* ---------- FLOAT WHATSAPP ---------- */
.beb-float-wpp {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25D366;
  color: var(--beb-white);
  font-size: 1.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(37,211,102,.4);
  transition: transform .3s, box-shadow .3s;
}
.beb-float-wpp:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 32px rgba(37,211,102,.55);
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
  .beb-nav, .beb-btn-header { display: none; }
  .beb-hamburger { display: flex; }
  .beb-hero-inner { grid-template-columns: 1fr; }
  .beb-hero-visual { display: none; }
  .beb-security-wrapper { grid-template-columns: 1fr; }
  .beb-cta-wrapper { grid-template-columns: 1fr; }
  .beb-specialist-card { grid-template-columns: 1fr; text-align: center; }
  .beb-specialist-photo-wrap { display: flex; flex-direction: column; align-items: center; }
  .beb-specialist-photo { width: 180px; height: 220px; }
  .beb-specialist-oab { position: static; transform: none; margin-top: 10px; }
  .beb-specialist-creds li { text-align: left; }
  .beb-footer-inner { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  :root { --section-gap: 60px; }
  .beb-problem-grid { grid-template-columns: 1fr; }
  .beb-oport-grid { grid-template-columns: 1fr; }
  .beb-urgency-inner { flex-direction: column; text-align: center; }
  .beb-highlight-box { flex-direction: column; }
  .beb-lucro-box { flex-direction: column; }
  .beb-step-content { margin-left: 16px; }
  .beb-cta-form-card { padding: 28px 22px; }
}

@media (max-width: 480px) {
  .beb-hero-title { font-size: 1.75rem; }
  .beb-hero-ctas { flex-direction: column; }
  .beb-stat-row { gap: 18px; }
  .beb-stat-div { display: none; }
  .beb-logos-row { flex-direction: column; align-items: center; }
}
