/* =========================================================
   EMBARCAÊ — TEMA WORDPRESS
   Paleta principal: Azul #2776b6
   Página campanha: Roxo #6B21A8 / Coral #E8547A
   ========================================================= */

/* ── RESET & BASE ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Nunito', sans-serif; color: #1a1a2e; background: #fff; line-height: 1.6; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }

/* ── CONTAINER ────────────────────────────────────────────── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }

/* ── TYPOGRAPHY ───────────────────────────────────────────── */
.section-badge {
  display: inline-block;
  background: #EFF6FF;
  color: #2776b6;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .35rem 1rem;
  border-radius: 999px;
  margin-bottom: 1rem;
}
.section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 900;
  line-height: 1.15;
  color: #1a1a2e;
  margin-bottom: 1rem;
}
.section-sub {
  font-size: 1.05rem;
  color: #64748b;
  max-width: 600px;
  margin: 0 auto;
}

/* ── BUTTONS ──────────────────────────────────────────────── */
.btn-coral {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  background: linear-gradient(135deg, #E8547A, #F97316);
  color: #fff;
  font-family: 'Nunito', sans-serif;
  font-size: .95rem;
  font-weight: 800;
  padding: .85rem 2rem;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(232,84,122,.35);
  transition: transform .2s, box-shadow .2s;
}
.btn-coral:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(232,84,122,.45); color: #fff; }
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(255,255,255,.15);
  color: #fff;
  font-family: 'Nunito', sans-serif;
  font-size: .95rem;
  font-weight: 700;
  padding: .85rem 2rem;
  border-radius: 999px;
  border: 2px solid rgba(255,255,255,.4);
  cursor: pointer;
  text-decoration: none;
  backdrop-filter: blur(8px);
  transition: background .2s, border-color .2s;
}
.btn-ghost:hover { background: rgba(255,255,255,.25); border-color: rgba(255,255,255,.7); color: #fff; }
.btn-blue {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  background: #2776b6;
  color: #fff;
  font-family: 'Nunito', sans-serif;
  font-size: .95rem;
  font-weight: 800;
  padding: .85rem 2rem;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(39,118,182,.3);
  transition: transform .2s, box-shadow .2s;
}
.btn-blue:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(39,118,182,.45); color: #fff; }

/* ── HEADER ───────────────────────────────────────────────── */
#site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0,0,0,.08);
  transition: box-shadow .3s;
}
.top-bar {
  background: linear-gradient(90deg, #2776b6, #1a5a9a);
  color: #fff;
  text-align: center;
  font-size: .78rem;
  font-weight: 700;
  padding: .4rem 1rem;
  letter-spacing: .03em;
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding-top: .75rem;
  padding-bottom: .75rem;
}
.logo-wrap { display: flex; align-items: center; gap: .75rem; text-decoration: none; }
.logo-icon {
  width: 42px; height: 42px;
  background: linear-gradient(135deg, #2776b6, #1a5a9a);
  color: #fff;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; font-weight: 900;
  box-shadow: 0 4px 12px rgba(39,118,182,.3);
  flex-shrink: 0;
}
.logo-name { font-size: 1.1rem; font-weight: 900; color: #2776b6; line-height: 1.2; }
.logo-sub  { font-size: .7rem; font-weight: 600; color: #94a3b8; text-transform: uppercase; letter-spacing: .08em; }
.nav-links { display: flex; align-items: center; gap: .25rem; margin-left: auto; }
.nav-link {
  font-size: .88rem; font-weight: 700; color: #374151;
  padding: .45rem .9rem; border-radius: 999px;
  transition: background .2s, color .2s;
}
.nav-link:hover { background: #EFF6FF; color: #2776b6; }
.header-cta {
  display: flex; align-items: center; gap: .5rem;
  background: linear-gradient(135deg, #E8547A, #F97316);
  color: #fff; font-size: .85rem; font-weight: 800;
  padding: .6rem 1.4rem; border-radius: 999px;
  box-shadow: 0 4px 16px rgba(232,84,122,.3);
  white-space: nowrap; flex-shrink: 0;
  transition: transform .2s, box-shadow .2s;
}
.header-cta:hover { transform: translateY(-1px); box-shadow: 0 8px 24px rgba(232,84,122,.4); color: #fff; }
.hamburger {
  display: none; background: none; border: none; cursor: pointer;
  color: #2776b6; padding: .4rem; margin-left: auto;
}
.mobile-menu {
  display: none; flex-direction: column; gap: .5rem;
  padding: 1rem 1.5rem 1.5rem;
  border-top: 1px solid #f1f5f9;
  background: #fff;
}
.mobile-menu.open { display: flex; }
.mobile-nav-link {
  font-size: 1rem; font-weight: 700; color: #374151;
  padding: .7rem 1rem; border-radius: 12px;
  transition: background .2s, color .2s;
}
.mobile-nav-link:hover { background: #EFF6FF; color: #2776b6; }
.mobile-cta {
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, #E8547A, #F97316);
  color: #fff; font-weight: 800; font-size: .95rem;
  padding: .85rem; border-radius: 999px; margin-top: .5rem;
  box-shadow: 0 4px 16px rgba(232,84,122,.3);
}

@media (max-width: 900px) {
  .nav-links, .header-cta { display: none; }
  .hamburger { display: flex; }
  .top-bar { display: none; }
}

/* ── HERO ─────────────────────────────────────────────────── */
#inicio {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 80px;
  overflow: hidden;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(26,26,46,.85) 0%, rgba(39,118,182,.6) 50%, rgba(26,26,46,.75) 100%);
}
.hero-content {
  position: relative; z-index: 2;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  padding: 4rem 1.5rem;
  color: #fff;
}
.hero-tag {
  display: inline-flex; align-items: center; gap: .5rem;
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.3);
  backdrop-filter: blur(8px);
  color: #fff; font-size: .85rem; font-weight: 700;
  padding: .5rem 1.25rem; border-radius: 999px;
  margin-bottom: 1.5rem;
}
.hero-title {
  font-size: clamp(2.2rem, 6vw, 4rem);
  font-weight: 900; line-height: 1.1;
  margin-bottom: 1.5rem; color: #fff;
}
.hero-sub {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  color: rgba(255,255,255,.9);
  max-width: 600px; margin: 0 auto 2.5rem;
  line-height: 1.7;
}
.hero-btns {
  display: flex; align-items: center; justify-content: center;
  gap: 1rem; flex-wrap: wrap; margin-bottom: 4rem;
}
.hero-stats {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  background: rgba(255,255,255,.1);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 20px; padding: 1.5rem 2rem;
}
.hero-stat-n { font-size: 1.8rem; font-weight: 900; color: #fff; }
.hero-stat-l { font-size: .78rem; font-weight: 600; color: rgba(255,255,255,.7); text-transform: uppercase; letter-spacing: .05em; }
@media (max-width: 600px) {
  .hero-stats { grid-template-columns: repeat(2, 1fr); }
}

/* ── DESTINOS ─────────────────────────────────────────────── */
#destinos { padding: 6rem 0; background: #f8fafc; }
.destinos-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.5rem; }
.destino-card {
  background: #fff; border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,.07);
  transition: transform .3s, box-shadow .3s;
}
.destino-card:hover { transform: translateY(-6px); box-shadow: 0 12px 40px rgba(0,0,0,.12); }
.destino-img-wrap { position: relative; height: 200px; overflow: hidden; }
.destino-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.destino-card:hover .destino-img-wrap img { transform: scale(1.05); }
.destino-tag {
  position: absolute; top: 1rem; left: 1rem;
  color: #fff; font-size: .75rem; font-weight: 800;
  padding: .3rem .8rem; border-radius: 999px;
}
.destino-body { padding: 1.5rem; }
.destino-title { font-size: 1.15rem; font-weight: 900; color: #1a1a2e; margin-bottom: .5rem; }
.destino-desc { font-size: .88rem; color: #64748b; line-height: 1.6; margin-bottom: 1rem; }
.destino-link { font-size: .88rem; font-weight: 800; color: #2776b6; transition: color .2s; }
.destino-link:hover { color: #1a5a9a; }

/* ── SERVIÇOS ─────────────────────────────────────────────── */
#servicos { padding: 6rem 0; background: #fff; }
.servicos-header { text-align: center; margin-bottom: 3.5rem; }
.disney-card {
  background: linear-gradient(135deg, #1a1a2e 0%, #2776b6 100%);
  border-radius: 24px;
  padding: 2.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 2rem;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.disney-card::before {
  content: '';
  position: absolute; top: -50%; right: -10%;
  width: 400px; height: 400px;
  background: rgba(255,255,255,.05);
  border-radius: 50%;
}
.disney-badge {
  display: inline-block;
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.3);
  color: #FCD34D; font-size: .78rem; font-weight: 800;
  padding: .35rem 1rem; border-radius: 999px;
  margin-bottom: 1rem;
}
.disney-title { font-size: 1.8rem; font-weight: 900; margin-bottom: 1rem; color: #fff; }
.disney-desc { color: rgba(255,255,255,.85); line-height: 1.7; margin-bottom: 1.5rem; }
.disney-list { list-style: none; margin-bottom: 2rem; }
.disney-list li {
  display: flex; align-items: center; gap: .6rem;
  color: rgba(255,255,255,.9); font-size: .9rem;
  padding: .4rem 0;
}
.disney-list li::before { content: '✓'; color: #4ADE80; font-weight: 900; flex-shrink: 0; }
.disney-parks { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; align-content: start; }
.park-card {
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 16px; padding: 1.25rem;
  text-align: center;
  transition: background .2s;
}
.park-card:hover { background: rgba(255,255,255,.18); }
.park-emoji { font-size: 2rem; margin-bottom: .5rem; }
.park-name { font-size: .9rem; font-weight: 800; color: #fff; margin-bottom: .25rem; }
.park-sub { font-size: .75rem; color: rgba(255,255,255,.65); }
.servicos-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-bottom: 2rem; }
.servico-card {
  background: #f8fafc; border-radius: 20px;
  padding: 2rem; border: 2px solid #e2e8f0;
  transition: border-color .2s, box-shadow .2s;
}
.servico-card:hover { border-color: #2776b6; box-shadow: 0 8px 32px rgba(39,118,182,.1); }
.servico-icon { font-size: 2.5rem; margin-bottom: 1rem; }
.servico-title { font-size: 1.25rem; font-weight: 900; color: #1a1a2e; margin-bottom: .75rem; }
.servico-desc { color: #64748b; line-height: 1.6; margin-bottom: 1.25rem; }
.servico-list { list-style: none; margin-bottom: 1.5rem; }
.servico-list li {
  display: flex; align-items: center; gap: .5rem;
  font-size: .88rem; color: #475569; padding: .3rem 0;
}
.servico-list li::before { content: '→'; color: #2776b6; font-weight: 900; }
.servico-link { font-size: .9rem; font-weight: 800; color: #2776b6; transition: color .2s; }
.servico-link:hover { color: #1a5a9a; }
.mundo-banner {
  background: linear-gradient(135deg, #1a5a9a, #2776b6);
  border-radius: 20px; padding: 2.5rem;
  display: flex; align-items: center; justify-content: space-between;
  gap: 2rem; color: #fff;
}
.mundo-text h3 { font-size: 1.4rem; font-weight: 900; margin-bottom: .5rem; }
.mundo-text p { color: rgba(255,255,255,.85); }
@media (max-width: 768px) {
  .disney-card { grid-template-columns: 1fr; }
  .servicos-cards { grid-template-columns: 1fr; }
  .mundo-banner { flex-direction: column; text-align: center; }
}

/* ── COMO FUNCIONA ────────────────────────────────────────── */
#como-funciona { padding: 6rem 0; background: #f8fafc; }
.como-header { text-align: center; margin-bottom: 3.5rem; }
.passos-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; margin-bottom: 3rem; }
.passo-card {
  background: linear-gradient(135deg, #2776b6, #1a5a9a);
  border-radius: 20px; padding: 2rem;
  text-align: center; color: #fff;
  position: relative;
}
.passo-num {
  font-size: .75rem; font-weight: 800; letter-spacing: .1em;
  text-transform: uppercase; color: rgba(255,255,255,.6);
  margin-bottom: .75rem;
}
.passo-icon { font-size: 2.5rem; margin-bottom: 1rem; }
.passo-title { font-size: 1rem; font-weight: 900; margin-bottom: .75rem; color: #fff; }
.passo-desc { font-size: .85rem; color: rgba(255,255,255,.8); line-height: 1.6; }
.como-cta { text-align: center; }
@media (max-width: 900px) {
  .passos-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 500px) {
  .passos-grid { grid-template-columns: 1fr; }
}

/* ── DEPOIMENTOS ──────────────────────────────────────────── */
#depoimentos { padding: 6rem 0; background: #fff; }
.depos-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-bottom: 3rem; }
.depo-card {
  background: #f8fafc; border-radius: 20px;
  padding: 1.75rem; border: 2px solid #e2e8f0;
  transition: border-color .2s, box-shadow .2s;
}
.depo-card:hover { border-color: #2776b6; box-shadow: 0 8px 32px rgba(39,118,182,.1); }
.depo-stars { display: flex; gap: .2rem; margin-bottom: 1rem; }
.depo-star { color: #FBBF24; font-size: 1.1rem; }
.depo-text { font-size: .9rem; color: #475569; line-height: 1.7; margin-bottom: 1.25rem; font-style: italic; }
.depo-footer { display: flex; align-items: center; gap: .75rem; border-top: 1px solid #e2e8f0; padding-top: 1rem; }
.depo-avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: linear-gradient(135deg, #2776b6, #1a5a9a);
  color: #fff; font-size: .85rem; font-weight: 900;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.depo-name { font-size: .9rem; font-weight: 800; color: #1a1a2e; }
.depo-dest { font-size: .78rem; color: #2776b6; font-weight: 600; }
.depos-cta { text-align: center; }
@media (max-width: 900px) {
  .depos-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .depos-grid { grid-template-columns: 1fr; }
}

/* ── CONTATO ──────────────────────────────────────────────── */
#contato { padding: 6rem 0; background: #f8fafc; }
.contato-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; max-width: 900px; margin: 0 auto; }
.contato-info-item { display: flex; align-items: flex-start; gap: 1rem; margin-bottom: 1.5rem; }
.contato-icon {
  width: 44px; height: 44px; background: #EFF6FF; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; flex-shrink: 0;
}
.contato-label { font-size: .78rem; font-weight: 700; color: #94a3b8; text-transform: uppercase; letter-spacing: .08em; margin-bottom: .2rem; }
.contato-val { font-size: .95rem; font-weight: 700; color: #1a1a2e; }
.contato-cta-card {
  background: linear-gradient(135deg, #1a1a2e, #2776b6);
  border-radius: 24px; padding: 2.5rem;
  text-align: center; color: #fff;
}
.contato-cta-card h3 { font-size: 1.4rem; font-weight: 900; margin: 1rem 0 .75rem; }
.contato-cta-card p { color: rgba(255,255,255,.8); margin-bottom: 1.75rem; line-height: 1.6; }
.contato-diferenciais { display: grid; grid-template-columns: 1fr 1fr; gap: .75rem; margin-top: 1.5rem; }
.contato-dif-item {
  display: flex; align-items: center; gap: .5rem;
  background: rgba(255,255,255,.1); border-radius: 10px; padding: .6rem .75rem;
}
.contato-dif-text { font-size: .8rem; font-weight: 700; color: rgba(255,255,255,.9); }
@media (max-width: 768px) {
  .contato-grid { grid-template-columns: 1fr; }
}

/* ── FOOTER ───────────────────────────────────────────────── */
#site-footer { background: #0f172a; color: rgba(255,255,255,.8); padding: 4rem 0 2rem; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
.footer-brand .logo-name { color: #fff; }
.footer-brand .logo-sub { color: rgba(255,255,255,.5); }
.footer-desc { font-size: .88rem; color: rgba(255,255,255,.6); line-height: 1.7; margin-bottom: 1.5rem; }
.footer-social { display: flex; gap: .75rem; }
.footer-social a {
  width: 36px; height: 36px; background: rgba(255,255,255,.1); border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.7); transition: background .2s, color .2s;
}
.footer-social a:hover { background: #2776b6; color: #fff; }
.footer-col h4 { font-size: .85rem; font-weight: 800; color: #fff; text-transform: uppercase; letter-spacing: .08em; margin-bottom: 1.25rem; }
.footer-col a { display: block; font-size: .88rem; color: rgba(255,255,255,.6); margin-bottom: .6rem; transition: color .2s; }
.footer-col a:hover { color: #2776b6; }
.footer-col p { font-size: .88rem; color: rgba(255,255,255,.6); margin-bottom: .6rem; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding-top: 2rem; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem; }
.footer-copy { font-size: .82rem; color: rgba(255,255,255,.4); }
.footer-links { display: flex; gap: 1.5rem; }
.footer-links a { font-size: .82rem; color: rgba(255,255,255,.4); transition: color .2s; }
.footer-links a:hover { color: #2776b6; }
@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 500px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* ── WHATSAPP FLOAT ───────────────────────────────────────── */
.wa-float {
  position: fixed; bottom: 2rem; right: 2rem; z-index: 9999;
  width: 60px; height: 60px; border-radius: 50%;
  background: #25D366;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 24px rgba(37,211,102,.4);
  animation: wa-pulse 2s infinite;
  transition: transform .2s;
}
.wa-float:hover { transform: scale(1.1); }
@keyframes wa-pulse {
  0%, 100% { box-shadow: 0 8px 24px rgba(37,211,102,.4); }
  50% { box-shadow: 0 8px 32px rgba(37,211,102,.7), 0 0 0 8px rgba(37,211,102,.15); }
}

/* =========================================================
   PÁGINA DE CAMPANHA — GUIA VIRTUAL DISNEY
   Paleta: Roxo #6B21A8 / Coral #E8547A
   ========================================================= */
.guia-virtual-page body,
body.guia-virtual-page { background: #fff; }

/* Header campanha */
.gv-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0,0,0,.08);
}
.gv-top-bar {
  background: linear-gradient(90deg, #6B21A8, #9333EA);
  color: #fff; text-align: center;
  font-size: .78rem; font-weight: 700;
  padding: .4rem 1rem; letter-spacing: .03em;
}
.gv-logo-icon {
  width: 42px; height: 42px;
  background: linear-gradient(135deg, #6B21A8, #9333EA);
  color: #fff; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; font-weight: 900;
  box-shadow: 0 4px 12px rgba(107,33,168,.3);
  flex-shrink: 0;
}
.gv-logo-name { font-size: 1.1rem; font-weight: 900; color: #6B21A8; line-height: 1.2; }
.gv-logo-sub  { font-size: .7rem; font-weight: 600; color: #94a3b8; text-transform: uppercase; letter-spacing: .08em; }
.gv-header .nav-link:hover { background: #F3E8FF; color: #6B21A8; }

/* Hero campanha */
.gv-hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center;
  padding-top: 80px; overflow: hidden;
}
.gv-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(59,7,100,.88) 0%, rgba(107,33,168,.65) 50%, rgba(26,26,46,.8) 100%);
}
.gv-hero-title {
  font-size: clamp(2.2rem, 6vw, 4rem);
  font-weight: 900; line-height: 1.1;
  margin-bottom: 1.5rem; color: #fff;
}
.gv-hero-title em { color: #F9A8C9; font-style: normal; }
.gv-hero-title strong { color: #FCD34D; }

/* Seção Sobre campanha */
.gv-sobre { padding: 6rem 0; background: #fff; }
.gv-sobre-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.gv-sobre-img { border-radius: 24px; overflow: hidden; box-shadow: 0 20px 60px rgba(107,33,168,.2); }
.gv-sobre-img img { width: 100%; height: auto; display: block; }
.gv-badge {
  display: inline-block;
  background: #F3E8FF; color: #6B21A8;
  font-size: .78rem; font-weight: 800;
  letter-spacing: .1em; text-transform: uppercase;
  padding: .35rem 1rem; border-radius: 999px;
  margin-bottom: 1rem;
}
.gv-title {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 900; line-height: 1.15;
  color: #1a1a2e; margin-bottom: 1.25rem;
}
.gv-title span { color: #6B21A8; }
.gv-text { font-size: .95rem; color: #475569; line-height: 1.7; margin-bottom: 1rem; }
.gv-features { margin: 1.5rem 0; }
.gv-feature { display: flex; align-items: center; gap: .75rem; padding: .5rem 0; font-size: .9rem; color: #374151; font-weight: 600; }
.gv-feature-dot { width: 8px; height: 8px; border-radius: 50%; background: #6B21A8; flex-shrink: 0; }
@media (max-width: 768px) {
  .gv-sobre-grid { grid-template-columns: 1fr; }
}

/* Serviço campanha */
.gv-servico { padding: 6rem 0; background: #f8fafc; }
.gv-servico-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.gv-servico-img { border-radius: 24px; overflow: hidden; box-shadow: 0 20px 60px rgba(0,0,0,.12); }
.gv-servico-img img { width: 100%; height: auto; display: block; }
@media (max-width: 768px) {
  .gv-servico-inner { grid-template-columns: 1fr; }
  .gv-servico-img { order: -1; }
}

/* Comparação */
.gv-comparacao { padding: 6rem 0; background: #fff; }
.gv-comp-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; margin-top: 3rem; }
.gv-comp-card { border-radius: 20px; padding: 2rem; }
.gv-comp-card.sem { background: #FFF1F2; border: 2px solid #FECDD3; }
.gv-comp-card.com { background: #F0FDF4; border: 2px solid #BBF7D0; }
.gv-comp-title { font-size: 1.1rem; font-weight: 900; margin-bottom: 1.25rem; color: #1a1a2e; }
.gv-comp-item { display: flex; align-items: flex-start; gap: .75rem; padding: .5rem 0; font-size: .9rem; color: #374151; border-bottom: 1px solid rgba(0,0,0,.06); }
.gv-comp-item:last-child { border-bottom: none; }
.gv-comp-icon-sem { color: #EF4444; font-weight: 900; flex-shrink: 0; }
.gv-comp-icon-com { color: #6B21A8; flex-shrink: 0; }
@media (max-width: 600px) {
  .gv-comp-grid { grid-template-columns: 1fr; }
}

/* Passos campanha */
.gv-passos { padding: 6rem 0; background: linear-gradient(135deg, #3B0764, #6B21A8); }
.gv-passos-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; margin-top: 3rem; }
.gv-passo {
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 20px; padding: 2rem; text-align: center; color: #fff;
}
.gv-passo-num { font-size: .75rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.6); margin-bottom: .75rem; }
.gv-passo-icon { font-size: 2.5rem; margin-bottom: 1rem; }
.gv-passo-title { font-size: 1rem; font-weight: 900; margin-bottom: .75rem; color: #fff; }
.gv-passo-desc { font-size: .85rem; color: rgba(255,255,255,.8); line-height: 1.6; }
@media (max-width: 900px) {
  .gv-passos-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 500px) {
  .gv-passos-grid { grid-template-columns: 1fr; }
}

/* Depoimentos campanha */
.gv-depos { padding: 6rem 0; background: #f8fafc; }
.gv-depos .depo-card:hover { border-color: #6B21A8; box-shadow: 0 8px 32px rgba(107,33,168,.1); }

/* Contato campanha */
.gv-contato { padding: 6rem 0; background: linear-gradient(135deg, #3B0764, #6B21A8); text-align: center; color: #fff; }
.gv-contato-inner { max-width: 600px; margin: 0 auto; }
.gv-contato h2 { font-size: clamp(1.8rem, 4vw, 2.5rem); font-weight: 900; margin: 1rem 0; }
.gv-contato p { color: rgba(255,255,255,.85); margin-bottom: 2.5rem; font-size: 1.05rem; line-height: 1.7; }
.gv-contato-info { display: flex; align-items: center; justify-content: center; gap: 2rem; flex-wrap: wrap; margin-top: 2rem; }
.gv-contato-item { font-size: .9rem; font-weight: 700; color: rgba(255,255,255,.8); }

/* Footer campanha */
.gv-footer { background: #1a0533; padding: 2rem 0; text-align: center; }
.gv-footer p { font-size: .82rem; color: rgba(255,255,255,.4); }

/* ── RESPONSIVIDADE GERAL ─────────────────────────────────── */
@media (max-width: 768px) {
  section { padding: 4rem 0 !important; }
  .hero-content { padding: 3rem 1rem; }
}

/* ── HERO SLIDESHOW ─────────────────────────────────────────────────────── */
.hero-slideshow{position:absolute;inset:0;z-index:0;}
.hero-slide{position:absolute;inset:0;background-size:cover;background-position:center;opacity:0;transition:opacity 1.2s ease-in-out;}
.hero-slide.active{opacity:1;}
