/* ============================================================
   BEON VISTOS — style.css
   Paleta: Laranja #E8650A | Azul #1A3D8F | Branco #FFFFFF
   Tipografia: Montserrat (títulos) + Inter (corpo)
   ============================================================ */

/* ===== TOKENS ===== */
:root {
  --orange:       #E8650A;
  --orange-dark:  #C4520A;
  --orange-light: rgba(232, 101, 10, 0.10);
  --blue:         #1A3D8F;
  --blue-deep:    #0B2055;
  --blue-light:   #2352B8;
  --white:        #FFFFFF;
  --gray-light:   #F5F7FA;
  --gray-mid:     #E2E8F0;
  --text:         #1A1A2E;
  --text-muted:   #5A6070;

  --radius:     14px;
  --shadow:     0 4px 32px rgba(26, 61, 143, 0.12);
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);

  --font-display: 'Montserrat', sans-serif;
  --font-body:    'Inter', sans-serif;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

/* ===== TIPOGRAFIA ===== */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.15;
}
h1 { font-size: clamp(2rem, 6vw, 3.6rem); font-weight: 900; }
h2 { font-size: clamp(1.6rem, 4vw, 2.6rem); font-weight: 800; }
h3 { font-size: clamp(1.05rem, 2.5vw, 1.4rem); font-weight: 700; }
p  { line-height: 1.75; color: var(--text-muted); }

/* ===== UTILITÁRIOS ===== */
.container  { max-width: 1100px; margin: 0 auto; }
.section    { padding: 88px 5vw; }

.section-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 12px;
}
.section-title { margin-bottom: 16px; color: var(--text); }
.section-sub   { font-size: 1rem; max-width: 520px; margin-bottom: 44px; }

/* Reveal on scroll */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s var(--transition), transform 0.65s var(--transition);
}
.reveal.visible { opacity: 1; transform: none; }

/* ===== BOTÕES ===== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--orange);
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.92rem;
  padding: 14px 30px;
  border-radius: 50px;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 4px 20px rgba(232, 101, 10, 0.45);
  white-space: nowrap;
}
.btn-primary:hover {
  background: var(--orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(232, 101, 10, 0.5);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.92rem;
  padding: 14px 30px;
  border-radius: 50px;
  border: 1.5px solid rgba(255, 255, 255, 0.45);
  transition: background var(--transition), border-color var(--transition);
}
.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.10);
  border-color: rgba(255, 255, 255, 0.75);
}

/* ===== NAVBAR ===== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 5vw;
  background: rgba(255, 255, 255, 0.93);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(26, 61, 143, 0.07);
  transition: box-shadow var(--transition);
}
.nav.scrolled { box-shadow: 0 2px 24px rgba(26, 61, 143, 0.12); }

.nav-logo {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-display);
}
.nav-logo .star {
  color: var(--blue);
  font-size: 1.1rem;
  line-height: 1;
}
.nav-logo-inner     { display: flex; flex-direction: column; line-height: 1; }
.nav-logo .beon     { font-size: 1.45rem; font-weight: 900; color: var(--orange); line-height: 1; }
.nav-logo .vistos   { font-size: 0.6rem; font-weight: 800; letter-spacing: 0.2em; color: var(--blue); text-transform: uppercase; }

.nav-links { display: flex; gap: 32px; }
.nav-links a {
  font-size: 0.87rem;
  font-weight: 600;
  color: var(--text);
  transition: color var(--transition);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0; right: 0;
  height: 2px;
  background: var(--orange);
  transform: scaleX(0);
  transition: transform var(--transition);
  transform-origin: left;
}
.nav-links a:hover           { color: var(--orange); }
.nav-links a:hover::after    { transform: scaleX(1); }

.nav-cta {
  background: var(--orange);
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.84rem;
  padding: 10px 22px;
  border-radius: 50px;
  transition: background var(--transition), transform var(--transition);
  white-space: nowrap;
}
.nav-cta:hover { background: var(--orange-dark); transform: scale(1.04); }

@media (max-width: 768px) { .nav-links { display: none; } }

/* ===== HERO — usa 01.png como background ===== */
.hero {
  min-height: 100svh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 110px 5vw 70px;
  background:
    url('../img/01.png') center center / cover no-repeat;
}

/* Overlay escuro sobre a foto para legibilidade do texto */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    100deg,
    rgba(11, 32, 85, 0.88) 0%,
    rgba(26, 61, 143, 0.72) 55%,
    rgba(26, 61, 143, 0.35) 100%
  );
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 640px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(232, 101, 10, 0.18);
  border: 1px solid rgba(232, 101, 10, 0.40);
  color: #FFB87A;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 7px 16px;
  border-radius: 50px;
  margin-bottom: 24px;
  opacity: 0;
  animation: fadeUp 0.6s 0.2s forwards;
}
.hero-eyebrow-icon { width: 16px; height: 16px; fill: #FFB87A; }

.hero h1 {
  color: var(--white);
  margin-bottom: 20px;
  opacity: 0;
  animation: fadeUp 0.6s 0.4s forwards;
}
.hero h1 span { color: var(--orange); }

.hero-sub {
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.05rem;
  margin-bottom: 36px;
  max-width: 480px;
  opacity: 0;
  animation: fadeUp 0.6s 0.6s forwards;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  opacity: 0;
  animation: fadeUp 0.6s 0.8s forwards;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 52px;
  opacity: 0;
  animation: fadeUp 0.6s 1.0s forwards;
}
.hero-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 12px;
  padding: 12px 18px;
}
.hero-badge-icon {
  width: 28px; height: 28px;
  flex-shrink: 0;
  color: var(--orange);
  stroke: var(--orange);
}
.hero-badge-text { font-size: 0.82rem; color: rgba(255,255,255,0.82); font-weight: 500; line-height: 1.35; }
.hero-badge-text strong { color: var(--white); display: block; font-size: 0.9rem; margin-bottom: 2px; }

/* Divisor diagonal */
.hero-divider      { background: var(--gray-light); line-height: 0; margin-top: -1px; }
.hero-divider svg  { display: block; width: 100%; }

/* ===== SERVIÇOS ===== */
.services          { background: var(--gray-light); }
.services-grid     { display: grid; grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); gap: 24px; }

.service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 30px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--orange);
}
.service-card:nth-child(2)::before { background: var(--blue); }
.service-card:hover { transform: translateY(-6px); box-shadow: 0 16px 52px rgba(26,61,143,0.16); }

.service-icon { width: 44px; height: 44px; fill: var(--orange); margin-bottom: 18px; }
.service-card:nth-child(2) .service-icon { fill: var(--blue); }
.service-card h3 { margin-bottom: 12px; }
.service-card p  { font-size: 0.91rem; }

.service-tag {
  display: inline-block;
  margin-top: 20px;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--orange);
  background: var(--orange-light);
  padding: 5px 13px;
  border-radius: 50px;
}
.service-card:nth-child(2) .service-tag { color: var(--blue); background: rgba(26,61,143,0.09); }

/* ===== PASSO A PASSO ===== */
.steps { background: var(--white); }
.steps-list { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 40px; }
.step { display: flex; flex-direction: column; }

.step-num {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--blue);
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  box-shadow: 0 0 0 7px rgba(26,61,143,0.10);
  flex-shrink: 0;
}
.step:nth-child(odd) .step-num { background: var(--orange); box-shadow: 0 0 0 7px rgba(232,101,10,0.10); }
.step h3 { margin-bottom: 8px; }
.step p  { font-size: 0.88rem; }

/* ===== GALERIA DE ANÚNCIOS ===== */
.ads-gallery { background: var(--gray-light); }

.ads-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.ad-card {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}
.ad-card:hover { transform: translateY(-5px); box-shadow: 0 12px 40px rgba(26,61,143,0.18); }
.ad-card img   { width: 100%; height: 100%; object-fit: cover; display: block; }

@media (max-width: 768px) { .ads-grid { grid-template-columns: 1fr; } }

/* ===== DISNEY ===== */
.disney-section { background: var(--white); }

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.split-img {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.split-img img { width: 100%; height: 420px; object-fit: cover; display: block; }

.split-img-badge {
  position: absolute;
  bottom: 20px; left: 20px;
  background: var(--orange);
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.82rem;
  padding: 10px 18px;
  border-radius: 10px;
  box-shadow: 0 4px 18px rgba(232,101,10,0.45);
  letter-spacing: 0.02em;
}

.perks-list { margin-top: 22px; display: flex; flex-direction: column; gap: 16px; }
.perk {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 0.91rem;
  color: var(--text-muted);
}
.perk-icon {
  flex-shrink: 0;
  width: 30px; height: 30px;
  background: var(--orange-light);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.perk-icon svg { width: 16px; height: 16px; fill: var(--orange); }

@media (max-width: 768px) {
  .split { grid-template-columns: 1fr; gap: 36px; }
  .split-img-first { order: -1; }
}

/* ===== VISTO ===== */
.visa-section { background: var(--gray-light); }

.fear-box {
  background: var(--white);
  border-left: 4px solid var(--orange);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 20px 24px;
  margin-bottom: 26px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
}
.fear-box p       { color: var(--text); font-size: 0.92rem; }
.fear-box strong  { color: var(--orange); }

/* ===== ESTATÍSTICAS ===== */
.stats { background: var(--orange); padding: 64px 5vw; }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 36px;
  text-align: center;
}
.stat-num {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 2.8rem;
  color: var(--white);
  line-height: 1;
}
.stat-num sub { font-size: 1.8rem; vertical-align: baseline; }
.stat-label   { color: rgba(255,255,255,0.82); font-size: 0.85rem; margin-top: 6px; font-weight: 500; }

/* ===== DEPOIMENTOS ===== */
.testimonials-section { background: var(--white); }

/* Imagem principal de avaliações — largura completa com bordas arredondadas */
.testi-hero {
  margin-bottom: 32px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.testi-hero img { width: 100%; max-height: 600px; object-fit: cover; object-position: top; display: block; }

/* Grid dos dois depoimentos lado a lado */
.testi-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.testi-photo-card {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}
.testi-photo-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(26,61,143,0.16); }
.testi-photo-card img   { width: 100%; display: block; object-fit: cover; }

@media (max-width: 640px) { .testi-grid { grid-template-columns: 1fr; } }

/* ===== FAQ ===== */
.faq { background: var(--gray-light); }
.faq-list { display: flex; flex-direction: column; gap: 12px; max-width: 760px; }

.faq-item {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
  overflow: hidden;
}
.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 20px 26px;
  cursor: pointer;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.94rem;
  color: var(--text);
  background: none;
  border: none;
  text-align: left;
  user-select: none;
  transition: color var(--transition);
  gap: 16px;
}
.faq-q:hover { color: var(--orange); }

.faq-icon {
  flex-shrink: 0;
  width: 20px; height: 20px;
  fill: none;
  stroke: var(--orange);
  stroke-width: 2.5;
  stroke-linecap: round;
  transition: transform var(--transition);
}
.faq-item.open .faq-icon { transform: rotate(45deg); }

.faq-a {
  max-height: 0;
  overflow: hidden;
  font-size: 0.9rem;
  padding: 0 26px;
  color: var(--text-muted);
  transition: max-height 0.4s ease, padding 0.3s;
}
.faq-item.open .faq-a { max-height: 300px; padding: 0 26px 20px; }

/* ===== CTA FINAL ===== */
.cta-section {
  background: linear-gradient(135deg, var(--blue), var(--blue-deep));
  padding: 88px 5vw;
  text-align: center;
}
.cta-section h2    { color: var(--white); margin-bottom: 16px; }
.cta-section p     { color: rgba(255,255,255,0.70); max-width: 460px; margin: 0 auto 36px; font-size: 1rem; }
.cta-address       { color: rgba(255,255,255,0.38); font-size: 0.78rem; margin-top: 18px; }

/* ===== FOOTER ===== */
footer {
  background: var(--text);
  color: rgba(255,255,255,0.55);
  padding: 52px 5vw 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 40px;
}
.footer-brand-logo {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 14px;
}
/* estrela branca no footer */
.footer-brand-logo .star        { color: var(--white); font-size: 1rem; }
.footer-brand-logo .beon        { font-family: var(--font-display); font-weight: 900; font-size: 1.35rem; color: var(--orange); }
.footer-brand-logo .vistos      { font-size: 0.58rem; font-weight: 800; letter-spacing: 0.2em; color: var(--blue-light); text-transform: uppercase; }
.footer-brand-logo-inner        { display: flex; flex-direction: column; line-height: 1; }
.footer-desc                    { font-size: 0.84rem; line-height: 1.7; }

.footer-col h4 {
  font-family: var(--font-display);
  color: var(--white);
  font-size: 0.86rem;
  font-weight: 700;
  margin-bottom: 16px;
}
.footer-col a {
  display: block;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.52);
  margin-bottom: 10px;
  transition: color var(--transition);
}
.footer-col a:hover { color: var(--orange); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 0.76rem;
}

@media (max-width: 640px) { .footer-grid { grid-template-columns: 1fr; gap: 32px; } }

/* ===== WHATSAPP FLUTUANTE ===== */
.wpp-float {
  position: fixed;
  bottom: 24px; right: 22px;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 10px;
}
.wpp-label {
  background: var(--white);
  color: var(--text);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.76rem;
  padding: 8px 14px;
  border-radius: 50px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.14);
  white-space: nowrap;
  opacity: 0;
  transform: translateX(6px);
  transition: opacity 0.3s, transform 0.3s;
  pointer-events: none;
}
.wpp-float:hover .wpp-label { opacity: 1; transform: translateX(0); }

.wpp-btn {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.42);
  transition: transform var(--transition), box-shadow var(--transition);
  animation: wppPop 3s ease-in-out infinite;
}
.wpp-btn:hover { transform: scale(1.1); box-shadow: 0 8px 28px rgba(37,211,102,0.58); animation: none; }
.wpp-btn svg   { width: 28px; height: 28px; fill: white; }

@keyframes wppPop {
  0%, 100% { transform: scale(1); }
  50%       { transform: scale(1.06); }
}

/* ===== ANIMAÇÕES ===== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: none; }
}

/* ===== ACESSIBILIDADE ===== */
:focus-visible { outline: 3px solid var(--orange); outline-offset: 3px; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}


/* ============================================================
   ADIÇÕES v3 — Vistos expandidos + Diferenciais + Hero flag
   ============================================================ */

/* ===== HERO: bandeira americana decorativa ===== */
.hero-flag {
  position: absolute;
  right: 0; top: 0; bottom: 0;
  width: 52%;
  opacity: 0.08;
  pointer-events: none;
  overflow: hidden;
}
.hero-flag svg {
  width: 100%;
  height: 100%;
}

/* Hero agora usa a imagem como bg — overlay cobre mais à direita */
.hero {
  background: url('../img/01.png') center center / cover no-repeat;
}
.hero-overlay {
  background: linear-gradient(
    105deg,
    rgba(11, 32, 85, 0.93) 0%,
    rgba(26, 61, 143, 0.78) 50%,
    rgba(26, 61, 143, 0.40) 100%
  );
}

/* 3 badges no hero (era 2) */
.hero-badges { flex-wrap: wrap; gap: 14px; }
.hero-badge  { flex: 1 1 220px; }

/* ===== SEÇÃO VISTOS ===== */
.vistos-section { background: var(--gray-light); }

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

@media (max-width: 1024px) { .vistos-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px)  { .vistos-grid { grid-template-columns: 1fr; } }

/* Card base */
.visto-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 26px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative;
  overflow: hidden;
}
.visto-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gray-mid);
  transition: background var(--transition);
}
.visto-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 48px rgba(26,61,143,0.16);
}
.visto-card:hover::before { background: var(--orange); }

/* Card em destaque — turismo (primeiro) */
.visto-card--featured {
  border: 2px solid var(--orange);
  grid-column: span 1;
}
.visto-card--featured::before { background: var(--orange); height: 4px; }

/* Card CTA final */
.visto-card--cta {
  background: linear-gradient(145deg, var(--blue-deep), var(--blue));
  color: var(--white);
  align-items: flex-start;
}
.visto-card--cta::before { background: var(--orange); }
.visto-card--cta h3  { color: var(--white); }
.visto-card--cta p   { color: rgba(255,255,255,0.72); font-size: 0.9rem; }

.visto-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.visto-icon {
  width: 32px; height: 32px;
  flex-shrink: 0;
  color: var(--blue);
  stroke: var(--blue);
}
.visto-card--featured .visto-icon { color: var(--orange); stroke: var(--orange); }
.visto-card--cta .visto-icon      { color: rgba(255,255,255,0.6); stroke: rgba(255,255,255,0.6); }

.visto-tipo {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  color: var(--white);
  background: var(--blue);
  padding: 4px 10px;
  border-radius: 50px;
  white-space: nowrap;
}
.visto-card--featured .visto-tipo { background: var(--orange); }
.visto-card--cta .visto-tipo      { background: rgba(255,255,255,0.18); }

.visto-card h3 { font-size: 1.05rem; margin: 0; }
.visto-card p  { font-size: 0.88rem; margin: 0; }

.visto-includes {
  list-style: none;
  margin: 4px 0 0;
  display: flex;
  flex-direction: column;
  gap: 7px;
  flex: 1;
}
.visto-includes li {
  font-size: 0.83rem;
  color: var(--text-muted);
  padding-left: 16px;
  position: relative;
}
.visto-includes li::before {
  content: '';
  position: absolute;
  left: 0; top: 8px;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--orange);
  flex-shrink: 0;
}
.visto-card--cta .visto-includes li { color: rgba(255,255,255,0.65); }
.visto-card--cta .visto-includes li::before { background: rgba(255,255,255,0.45); }

.visto-cta {
  display: inline-block;
  margin-top: 6px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.8rem;
  color: var(--orange);
  border: 1.5px solid var(--orange);
  padding: 8px 18px;
  border-radius: 50px;
  transition: background var(--transition), color var(--transition);
  align-self: flex-start;
  white-space: nowrap;
}
.visto-cta:hover { background: var(--orange); color: var(--white); }

.visto-icon-lg {
  width: 44px; height: 44px;
  stroke: rgba(255,255,255,0.5);
  margin-bottom: 4px;
}

/* ===== DIFERENCIAIS ===== */
.diferenciais-section { background: var(--white); }

.diferenciais-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 900px)  { .diferenciais-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px)  { .diferenciais-grid { grid-template-columns: 1fr; } }

.dif-card {
  padding: 28px 24px;
  border-radius: var(--radius);
  background: var(--gray-light);
  border: 1px solid var(--gray-mid);
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}
.dif-card:hover {
  border-color: var(--orange);
  box-shadow: 0 6px 28px rgba(232,101,10,0.10);
  transform: translateY(-3px);
}
.dif-icon {
  width: 36px; height: 36px;
  stroke: var(--orange);
  margin-bottom: 14px;
}
.dif-card h3 { font-size: 1rem; margin-bottom: 8px; }
.dif-card p  { font-size: 0.87rem; }
