/* ===== TOKENS ===== */
:root {
  --navy:      #1B2A8A;
  --navy-dark: #111D6B;
  --navy-deep: #0D1550;
  --gold:      #C9A840;
  --gold-light:#E2C46A;
  --gold-pale: #F5E9C0;
  --white:     #FFFFFF;
  --cream:     #F8F6F0;
  --gray-50:   #F9FAFB;
  --gray-100:  #F3F4F6;
  --gray-300:  #D1D5DB;
  --gray-500:  #6B7280;
  --gray-700:  #374151;
  --gray-900:  #111827;

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 24px;
  --radius-xl: 40px;

  --shadow-sm: 0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.06);
  --shadow-md: 0 4px 16px rgba(0,0,0,.10);
  --shadow-lg: 0 10px 40px rgba(0,0,0,.14);
  --shadow-gold: 0 8px 32px rgba(201,168,64,.30);

  --transition: 0.25s cubic-bezier(.4,0,.2,1);
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', sans-serif;
  color: var(--gray-900);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ===== CONTAINER ===== */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius-xl);
  font-weight: 600;
  font-size: .95rem;
  letter-spacing: .01em;
  transition: all var(--transition);
  white-space: nowrap;
}
.btn-gold {
  background: var(--gold);
  color: var(--navy-deep);
  box-shadow: var(--shadow-gold);
}
.btn-gold:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 12px 40px rgba(201,168,64,.40); }
.btn-navy {
  background: var(--navy);
  color: var(--white);
  box-shadow: var(--shadow-md);
}
.btn-navy:hover { background: var(--navy-dark); transform: translateY(-2px); }
.btn-outline {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--navy);
}
.btn-outline:hover { background: var(--navy); color: var(--white); }
.btn-outline-light {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,.5);
}
.btn-outline-light:hover { background: rgba(255,255,255,.15); border-color: var(--white); }
.full-w { width: 100%; }

/* ===== SECTION SHARED ===== */
.section { padding: 96px 0; }
.section-dark { background: var(--navy-deep); }
.section-light { background: var(--gray-50); }
.section-cream { background: var(--cream); }

.section-header { text-align: center; margin-bottom: 64px; }
.section-tag {
  display: inline-block;
  padding: 6px 18px;
  border-radius: 999px;
  background: rgba(27,42,138,.08);
  color: var(--navy);
  font-size: .8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 14px;
}
.tag-gold { background: rgba(201,168,64,.15); color: var(--gold-light); }
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--gray-900);
  margin-bottom: 16px;
}
.section-title.light { color: var(--white); }
.section-sub { color: var(--gray-500); font-size: 1.05rem; max-width: 560px; margin: 0 auto; line-height: 1.7; }
.section-sub.light { color: rgba(255,255,255,.65); }
.gold-text { color: var(--gold); }

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: all var(--transition);
}
.navbar.scrolled {
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-sm);
  padding: 10px 0;
}
.nav-inner {
  display: flex;
  align-items: center;
  gap: 40px;
}
.logo-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.logo-img {
  width: 82px;
  height: 82px;
  border-radius: 50%;
  object-fit: cover;
  transform: scale(1.13);
}
.logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  transition: color var(--transition);
}
.navbar.scrolled .logo-text { color: var(--navy-deep); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-left: auto;
}
.nav-links a {
  font-size: .9rem;
  font-weight: 500;
  color: rgba(255,255,255,.85);
  transition: color var(--transition);
}
.nav-links a:hover { color: var(--gold); }
.navbar.scrolled .nav-links a { color: var(--gray-700); }
.navbar.scrolled .nav-links a:hover { color: var(--navy); }
.nav-cta { padding: 10px 24px; font-size: .9rem; }
.navbar .btn-outline {
  color: var(--white);
  border-color: rgba(255,255,255,.5);
}
.navbar.scrolled .btn-outline { color: var(--navy); border-color: var(--navy); }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}
.navbar.scrolled .hamburger span { background: var(--navy); }
.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 16px 24px 24px;
  background: var(--white);
  border-top: 1px solid var(--gray-100);
}
.mobile-menu a {
  padding: 12px 0;
  border-bottom: 1px solid var(--gray-100);
  color: var(--gray-700);
  font-weight: 500;
}
.mobile-menu.open { display: flex; }

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 50%, #2D3FB5 100%);
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 50%, rgba(201,168,64,.12) 0%, transparent 60%),
    radial-gradient(ellipse 50% 80% at 10% 80%, rgba(255,255,255,.04) 0%, transparent 50%);
  pointer-events: none;
}
.hero-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.particle {
  position: absolute;
  color: var(--gold);
  opacity: 0;
  animation: float-up linear infinite;
}
.particle svg {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 0 6px rgba(201,168,64,.5));
}
@keyframes float-up {
  0%   { transform: translateY(0) rotate(0deg) scale(1); opacity: 0; }
  10%  { opacity: .3; }
  90%  { opacity: .1; }
  100% { transform: translateY(-120vh) rotate(20deg) scale(.6); opacity: 0; }
}

/* ===== HERO SCENE ===== */
.hero-scene {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: min(44%, 500px);
  height: 80vh;
  pointer-events: none;
  opacity: .18;
}
.hero-scene svg {
  width: 100%;
  height: 100%;
}
.hero-scene .draw-path {
  fill: none;
  stroke: var(--gold);
  stroke-linecap: round;
  stroke-linejoin: round;
}
@keyframes draw-stroke {
  0%   { stroke-dashoffset: var(--len); opacity: 0; }
  8%   { opacity: 1; }
  62%  { stroke-dashoffset: 0; opacity: 1; }
  88%  { stroke-dashoffset: 0; opacity: 0; }
  100% { stroke-dashoffset: 0; opacity: 0; }
}
@media (max-width: 1024px) {
  .hero-scene { display: none; }
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 140px 24px 100px;
  max-width: 780px;
}
.hero-badge {
  display: inline-block;
  padding: 6px 18px;
  border-radius: 999px;
  background: rgba(201,168,64,.2);
  border: 1px solid rgba(201,168,64,.4);
  color: var(--gold-light);
  font-size: .8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: 24px;
}
.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.6rem, 6vw, 4.2rem);
  font-weight: 900;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 24px;
}
.hero-title .gold-text { color: var(--gold); }
.hero-sub {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: rgba(255,255,255,.75);
  line-height: 1.7;
  margin-bottom: 40px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 64px;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}
.stat {}
.stat-num {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.stat-label {
  display: block;
  font-size: .8rem;
  color: rgba(255,255,255,.6);
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: .05em;
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,.15);
}
.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.5);
  font-size: .75rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  animation: bounce 2s ease-in-out infinite;
}
.hero-scroll svg { width: 20px; height: 20px; }
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(6px); }
}

/* ===== CARDS GRID ===== */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 28px;
}
.card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px; height: 0;
  background: linear-gradient(180deg, var(--gold), var(--navy));
  border-radius: 4px 0 0 4px;
  transition: height var(--transition);
}
.card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); border-color: var(--gold-pale); }
.card:hover::before { height: 100%; }
.card-icon {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, rgba(27,42,138,.08), rgba(201,168,64,.08));
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  color: var(--navy);
  transition: all var(--transition);
}
.card:hover .card-icon { background: var(--navy); color: var(--gold); }
.card-icon svg { width: 28px; height: 28px; }
.card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--gray-900);
  margin-bottom: 10px;
}
.card p { font-size: .92rem; color: var(--gray-500); line-height: 1.65; margin-bottom: 20px; }
.card-link {
  font-size: .88rem;
  font-weight: 600;
  color: var(--navy);
  transition: color var(--transition);
}
.card-link:hover { color: var(--gold); }

.servicos-mais {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-top: 48px;
  padding: 24px 32px;
  background: var(--cream);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gold-pale);
  flex-wrap: wrap;
}
.servicos-mais p {
  margin: 0;
  color: var(--gray-500);
  font-size: .95rem;
}
.servicos-mais .btn { padding: 10px 24px; font-size: .88rem; white-space: nowrap; }

/* ===== PLANS FAMILY STRIP ===== */
.plans-family-strip {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-radius: var(--radius-xl);
  overflow: hidden;
  margin-bottom: 48px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
}
.plans-family-text {
  padding: 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
}
.plans-family-text h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.25;
}
.plans-family-text p {
  color: rgba(255,255,255,.65);
  font-size: 1rem;
  line-height: 1.75;
}
.plans-family-img {
  height: 300px;
}
.plans-family-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
@media (max-width: 768px) {
  .plans-family-strip { grid-template-columns: 1fr; }
  .plans-family-img { height: 220px; }
  .plans-family-text { padding: 32px 24px; }
}

/* ===== PLANS GRID ===== */
.plans-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
  margin-bottom: 64px;
  align-items: start;
}
.plan-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  position: relative;
  transition: all var(--transition);
}
.plan-card:hover { background: rgba(255,255,255,.1); border-color: rgba(201,168,64,.4); }
.plan-featured {
  background: rgba(201,168,64,.08);
  border-color: rgba(201,168,64,.5);
  transform: scale(1.03);
}
.plan-badge-top {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--navy-deep);
  font-size: .75rem;
  font-weight: 700;
  padding: 6px 20px;
  border-radius: 999px;
  white-space: nowrap;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.plan-badge {
  display: inline-block;
  padding: 4px 14px;
  border-radius: 999px;
  background: rgba(201,168,64,.15);
  color: var(--gold);
  font-size: .75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .07em;
  margin-bottom: 12px;
}
.plan-header h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}
.plan-header p { font-size: .9rem; color: rgba(255,255,255,.55); line-height: 1.6; margin-bottom: 28px; }
.plan-features { margin-bottom: 32px; display: flex; flex-direction: column; gap: 12px; }
.plan-features li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: .9rem; color: rgba(255,255,255,.8); line-height: 1.5;
}
.check {
  flex-shrink: 0;
  color: var(--gold);
  font-size: 1rem;
  line-height: 1.5;
}

/* ===== OPERADORAS ===== */
.operadoras { text-align: center; }
.operadoras-title {
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: rgba(255,255,255,.4);
  margin-bottom: 20px;
}
.operadoras-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 24px;
}
.operadoras-list span {
  padding: 8px 20px;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 999px;
  color: rgba(255,255,255,.6);
  font-size: .85rem;
  font-weight: 500;
  transition: all var(--transition);
}
.operadoras-list span:hover { border-color: var(--gold); color: var(--gold); }

/* ===== DIFERENCIAIS ===== */
.diff-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.diff-text .section-tag { margin-bottom: 14px; }
.diff-text .section-title { text-align: left; margin-bottom: 16px; }
.diff-desc { color: var(--gray-500); line-height: 1.5; margin-bottom: 1.5em; font-size: 1rem; }
.diff-items { display: flex; flex-direction: column; gap: 28px; margin-bottom: 40px; }
.diff-item { display: flex; gap: 16px; align-items: flex-start; }
.diff-icon {
  width: 48px; height: 48px;
  background: linear-gradient(135deg, var(--navy), var(--navy-dark));
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--gold);
  box-shadow: 0 4px 12px rgba(27,42,138,.2);
}
.diff-icon svg { width: 22px; height: 22px; }
.diff-item h4 { font-size: 1rem; font-weight: 600; color: var(--gray-900); margin-bottom: 4px; }
.diff-item p { font-size: .88rem; color: var(--gray-500); line-height: 1.6; }

.diff-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 460px;
}
.diff-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
}
.diff-orb-1 {
  width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(27,42,138,.15), transparent);
  top: 0; right: 0;
}
.diff-orb-2 {
  width: 220px; height: 220px;
  background: radial-gradient(circle, rgba(201,168,64,.12), transparent);
  bottom: 0; left: 0;
}
.diff-card-float {
  position: relative;
  z-index: 2;
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 24px;
  box-shadow: var(--shadow-lg);
  text-align: center;
  width: 100%;
  max-width: 360px;
  overflow: hidden;
}
.deise-photo-wrap {
  width: 100%;
  height: 300px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 20px;
}
.deise-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.deise-info {
  margin-bottom: 20px;
}
.deise-name {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 4px;
}
.deise-role {
  display: block;
  font-size: .8rem;
  color: var(--gray-500);
  letter-spacing: .01em;
}
.float-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.float-stat {
  background: var(--cream);
  border-radius: var(--radius-md);
  padding: 16px 10px;
}
.float-num {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--navy);
}
.float-label {
  display: block;
  font-size: .72rem;
  color: var(--gray-500);
  margin-top: 4px;
  line-height: 1.4;
}

/* ===== TESTIMONIALS ===== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.testimonial {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-100);
  transition: all var(--transition);
}
.testimonial:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.testimonial-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}
.stars { color: var(--gold); font-size: 1.1rem; letter-spacing: 2px; }
.google-badge {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: .75rem;
  font-weight: 600;
  color: var(--gray-500);
}
.testimonial p { color: var(--gray-700); font-size: .95rem; line-height: 1.7; margin-bottom: 24px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.author-avatar {
  width: 52px; height: 52px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 1rem; letter-spacing: .5px;
  color: #fff;
  flex-shrink: 0;
  box-shadow: 0 0 0 3px #fff, 0 0 0 5px currentColor;
}
.testimonial:nth-child(1) .author-avatar { background: linear-gradient(135deg, #1b6ca8, #0d3d6b); color: #1b6ca8; }
.testimonial:nth-child(2) .author-avatar { background: linear-gradient(135deg, #b06a1a, #7a3f00); color: #b06a1a; }
.testimonial:nth-child(3) .author-avatar { background: linear-gradient(135deg, #7b3fa0, #4a1a6b); color: #7b3fa0; }
.testimonial:nth-child(4) .author-avatar { background: linear-gradient(135deg, #1a8c6b, #0d5242); color: #1a8c6b; }
.testimonial-author strong { display: block; font-size: .92rem; color: var(--gray-900); }
.testimonial-author span { font-size: .8rem; color: var(--gray-500); }

/* ===== CONTACT ===== */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: start;
}
.contact-text .section-title { text-align: left; margin-bottom: 16px; }
.contact-text .section-sub { text-align: left; margin: 0 0 40px; }
.contact-channels { display: flex; flex-direction: column; gap: 16px; }
.channel-item {
  display: flex; align-items: center; gap: 16px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-md);
  padding: 18px 22px;
  transition: all var(--transition);
}
.channel-item:hover { background: rgba(255,255,255,.1); border-color: var(--gold); }
.channel-icon {
  width: 44px; height: 44px;
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.channel-icon svg { width: 22px; height: 22px; }
.whatsapp-icon { background: #25D366; color: var(--white); }
.email-icon { background: var(--navy); color: var(--gold); }
.channel-item strong { display: block; color: var(--white); font-size: .95rem; margin-bottom: 2px; }
.channel-item span { font-size: .82rem; color: rgba(255,255,255,.5); }

.contact-form {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: var(--shadow-lg);
}
.contact-form h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 28px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.form-group label { font-size: .82rem; font-weight: 600; color: var(--gray-700); }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--gray-300);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: .9rem;
  color: var(--gray-900);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(27,42,138,.1);
}
.form-group textarea { resize: vertical; }
.form-note {
  text-align: center;
  margin-top: 12px;
  font-size: .8rem;
  color: var(--gray-500);
}

/* ===== FOOTER ===== */
.footer {
  background: var(--navy-deep);
  padding: 64px 0 0;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-brand .footer-logo {
  width: 56px; height: 56px;
  border-radius: 50%;
  margin-bottom: 16px;
}
.footer-brand p { font-size: .88rem; color: rgba(255,255,255,.5); line-height: 1.7; max-width: 260px; }
.footer-links h4, .footer-contact h4 {
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: rgba(255,255,255,.4);
  margin-bottom: 16px;
}
.footer-links a, .footer-contact a {
  display: block;
  font-size: .9rem;
  color: rgba(255,255,255,.65);
  margin-bottom: 10px;
  transition: color var(--transition);
}
.footer-links a:hover, .footer-contact a:hover { color: var(--gold); }
.social-links { display: flex; gap: 12px; margin-top: 20px; }
.social-links a {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.6);
  transition: all var(--transition);
  margin: 0;
}
.social-links a:hover { background: var(--gold); color: var(--navy-deep); }
.social-links svg { width: 16px; height: 16px; }
.footer-bottom {
  padding: 20px 0;
  background: rgba(0,0,0,.2);
}
.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .8rem;
  color: rgba(255,255,255,.35);
  flex-wrap: wrap;
  gap: 8px;
}

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

/* ===== BRAND MARQUEE ===== */
.brand-marquee {
  position: relative;
  margin-top: 56px;
  padding: 32px 0;
  overflow: hidden;
}
.marquee-fade {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}
.marquee-fade-left  { left:  0; background: linear-gradient(90deg,  var(--navy-deep) 0%, transparent 100%); }
.marquee-fade-right { right: 0; background: linear-gradient(270deg, var(--navy-deep) 0%, transparent 100%); }
.marquee-track {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: marquee-scroll 55s linear infinite;
}
.brand-marquee:hover .marquee-track { animation-play-state: paused; }

@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.brand-chip {
  flex: 0 0 auto;
  height: 110px;
  min-width: 190px;
  padding: 14px 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #FFFFFF;
  border-radius: 16px;
  box-shadow: 0 4px 18px rgba(0,0,0,.22), 0 1px 0 rgba(255,255,255,.06) inset;
  transition: transform .25s ease, box-shadow .25s ease;
}
.brand-chip:hover { transform: translateY(-3px); box-shadow: 0 10px 28px rgba(0,0,0,.32); }

.brand-chip img {
  display: block;
  width: 175px;
  height: 72px;
  object-fit: contain;
  background-color: #FFFFFF;
  -webkit-user-drag: none;
  user-select: none;
}

/* Logos verticais (Bradesco, Zurich) — caixa mais quadrada para acomodar eixo vertical */
.brand-chip.portrait {
  min-width: 110px;
  padding: 10px 18px;
}
.brand-chip.portrait img { width: 88px; height: 82px; }

@media (max-width: 768px) {
  .brand-chip { height: 84px; min-width: 150px; padding: 10px 16px; }
  .brand-chip img { width: 140px; height: 58px; }
  .brand-chip.portrait { min-width: 90px; padding: 8px 14px; }
  .brand-chip.portrait img { width: 68px; height: 64px; }
  .marquee-track { animation-duration: 45s; gap: 14px; }
}

/* ===== COOKIE BANNER ===== */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 9999;
  background: var(--navy-deep);
  border-top: 2px solid var(--gold);
  padding: 16px 24px;
  transform: translateY(100%);
  transition: transform .4s ease;
}
.cookie-banner.visible { transform: translateY(0); }
.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.cookie-text {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  flex: 1;
  min-width: 260px;
  color: rgba(255,255,255,.85);
  font-size: .88rem;
  line-height: 1.5;
}
.cookie-text svg { flex-shrink: 0; margin-top: 2px; color: var(--gold); }
.cookie-text p { margin: 0; }
.cookie-link {
  background: none;
  border: none;
  color: var(--gold);
  cursor: pointer;
  font-size: inherit;
  font-weight: 600;
  padding: 0;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.cookie-actions { display: flex; gap: 10px; flex-shrink: 0; }
.btn-cookie {
  padding: 9px 20px;
  border-radius: 8px;
  font-size: .85rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: opacity .2s;
}
.btn-cookie:hover { opacity: .85; }
.btn-cookie-recusar { background: rgba(255,255,255,.12); color: #fff; }
.btn-cookie-aceitar { background: var(--gold); color: var(--navy-deep); }

/* ===== PRIVACY MODAL ===== */
.privacy-overlay {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(0,0,0,.6);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease;
}
.privacy-overlay.visible { opacity: 1; pointer-events: all; }
.privacy-modal {
  background: #fff;
  border-radius: 16px;
  max-width: 640px;
  width: 100%;
  max-height: 85vh;
  display: flex;
  flex-direction: column;
  box-shadow: 0 24px 60px rgba(0,0,0,.3);
}
.privacy-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 28px;
  border-bottom: 1px solid #eee;
}
.privacy-header h2 { font-family: 'Playfair Display', serif; font-size: 1.25rem; color: var(--navy-deep); margin: 0; }
.privacy-close {
  background: none;
  border: none;
  font-size: 1.6rem;
  cursor: pointer;
  color: var(--gray-500);
  line-height: 1;
  padding: 0 4px;
}
.privacy-close:hover { color: var(--navy); }
.privacy-body {
  padding: 24px 28px;
  overflow-y: auto;
  flex: 1;
  font-size: .92rem;
  color: var(--gray-500);
  line-height: 1.6;
}
.privacy-body h3 { color: var(--navy-deep); font-size: 1rem; margin: 20px 0 6px; }
.privacy-body p { margin: 0 0 12px; }
.privacy-update { font-size: .8rem; color: #aaa; margin-top: 24px; }
.privacy-footer {
  padding: 16px 28px;
  border-top: 1px solid #eee;
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}
.privacy-footer .btn-cookie-recusar { color: var(--navy); background: rgba(27,42,138,.08); }

@media (max-width: 600px) {
  .cookie-content { flex-direction: column; align-items: flex-start; }
  .cookie-actions { width: 100%; }
  .btn-cookie { flex: 1; text-align: center; }
  .privacy-body { padding: 16px 20px; }
  .privacy-header, .privacy-footer { padding: 14px 20px; }
}

/* ===== HIDE MOB ===== */
@media (max-width: 768px) {
  .hide-mob { display: none; }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .diff-layout { grid-template-columns: 1fr; gap: 48px; }
  .diff-visual { min-height: 300px; }
  .contact-layout { grid-template-columns: 1fr; gap: 48px; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .section { padding: 64px 0; }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .cards-grid { grid-template-columns: 1fr; }
  .plans-grid { grid-template-columns: 1fr; }
  .plan-featured { transform: none; }
  .hero-content { padding-top: 110px; }
  .hero-actions { flex-direction: column; }
  .hero-stats { gap: 20px; }
  .stat-divider { display: none; }
  .form-row { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .contact-form { padding: 28px 20px; }
  .testimonials-grid { grid-template-columns: 1fr; }

}
