/* ============================================================
   FORTES SEGUROS E BENEFÍCIOS — DESIGN SYSTEM
   style.css | Versão 2.0 — Refinado
   Paleta: Dourado (#B8952A) + Azul Marinho (#0D1B2A)
   Fonte: Montserrat
   ============================================================ */

/* ── Google Fonts ── */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,400;1,600&display=swap');

/* ============================================================
   1. CSS VARIABLES / DESIGN TOKENS
   ============================================================ */
:root {
  /* Gold palette */
  --gold-primary:   #B8952A;
  --gold-light:     #D4AF37;
  --gold-muted:     #E8C96A;
  --gold-pale:      #FDF6E3;
  --gold-dark:      #8C6E1A;

  /* Navy palette */
  --navy-dark:      #0D1B2A;
  --navy-mid:       #1A2E4A;
  --navy-light:     #2A4060;
  --navy-lighter:   #3A5070;

  /* Neutral */
  --white:          #FFFFFF;
  --gray-50:        #F9FAFB;
  --gray-100:       #F3F4F6;
  --gray-200:       #E5E7EB;
  --gray-300:       #D1D5DB;
  --gray-400:       #9CA3AF;
  --gray-500:       #6B7280;
  --gray-600:       #4B5563;
  --gray-700:       #374151;
  --gray-800:       #1F2937;
  --gray-900:       #111827;

  /* Semantic */
  --success:        #10B981;
  --error:          #EF4444;
  --warning:        #F59E0B;

  /* Typography */
  --font:           'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Font sizes — base 16px */
  --text-xs:        0.75rem;
  --text-sm:        0.875rem;
  --text-base:      1rem;
  --text-lg:        1.125rem;
  --text-xl:        1.25rem;
  --text-2xl:       1.5rem;
  --text-3xl:       1.875rem;
  --text-4xl:       2.25rem;
  --text-5xl:       3rem;

  /* Spacing */
  --space-1:  0.25rem;
  --space-2:  0.5rem;
  --space-3:  0.75rem;
  --space-4:  1rem;
  --space-5:  1.25rem;
  --space-6:  1.5rem;
  --space-8:  2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;

  /* Border radius */
  --radius-sm:   4px;
  --radius-md:   8px;
  --radius-lg:   12px;
  --radius-xl:   16px;
  --radius-2xl:  24px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-xs:   0 1px 2px rgba(0,0,0,0.05);
  --shadow-sm:   0 2px 8px rgba(0,0,0,0.08);
  --shadow-md:   0 4px 20px rgba(0,0,0,0.10);
  --shadow-lg:   0 10px 40px rgba(0,0,0,0.14);
  --shadow-xl:   0 20px 60px rgba(0,0,0,0.18);
  --shadow-gold: 0 6px 24px rgba(184,149,42,0.35);
  --shadow-navy: 0 8px 32px rgba(13,27,42,0.40);

  /* Transitions */
  --ease-fast:   150ms ease;
  --ease:        280ms cubic-bezier(.4,0,.2,1);
  --ease-slow:   480ms cubic-bezier(.4,0,.2,1);
  --ease-spring: 380ms cubic-bezier(0.34, 1.56, 0.64, 1);

  /* Z-index */
  --z-base:   1;
  --z-popup:  100;
  --z-sticky: 200;
  --z-nav:    300;
  --z-modal:  400;
  --z-toast:  500;

  /* ── Titles reduced 35% ── */
  --title-hero:    clamp(1.46rem, 3.25vw, 2.44rem);
  --title-section: clamp(1.14rem, 2.27vw, 1.63rem);
  --title-page:    clamp(1.3rem,  2.6vw,  1.95rem);
  --title-cta:     clamp(1.14rem, 1.95vw, 1.63rem);
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font);
  font-weight: 400;
  line-height: 1.6;
  color: var(--gray-700);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

button { font-family: var(--font); cursor: pointer; border: none; background: none; }

input, select, textarea { font-family: var(--font); }

ul, ol { list-style: none; }

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  color: var(--navy-dark);
}

/* ============================================================
   3. LAYOUT UTILITIES
   ============================================================ */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.container--narrow {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section { padding: var(--space-20) 0; }
.section--sm { padding: var(--space-12) 0; }

.section--dark {
  background: var(--navy-dark);
  color: var(--white);
}

.section--dark h1,
.section--dark h2,
.section--dark h3,
.section--dark h4 { color: var(--white); }

.section--dark p { color: rgba(255,255,255,0.75); }

.section--navy { background: var(--navy-mid); color: var(--white); }
.section--navy h1,
.section--navy h2,
.section--navy h3 { color: var(--white); }

.section--light { background: var(--gray-100); }
.section--gold-pale { background: var(--gold-pale); }

/* ── Section Header ── */
.section-header {
  text-align: center;
  margin-bottom: var(--space-12);
}

.section-header--left { text-align: left; }

.section-tag {
  display: inline-block;
  font-size: var(--text-xs);
  font-weight: 700;
  color: var(--gold-primary);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: var(--space-4);
  position: relative;
}

.section-tag::before {
  content: '';
  display: inline-block;
  width: 18px;
  height: 2px;
  background: var(--gold-primary);
  vertical-align: middle;
  margin-right: var(--space-2);
}

.section-tag::after {
  content: '';
  display: inline-block;
  width: 18px;
  height: 2px;
  background: var(--gold-primary);
  vertical-align: middle;
  margin-left: var(--space-2);
}

/* ── Títulos -35% ── */
.section-title {
  font-size: var(--title-section);
  font-weight: 800;
  color: var(--navy-dark);
  margin-bottom: var(--space-4);
  line-height: 1.18;
}

.section--dark .section-title,
.section--navy .section-title { color: var(--white); }

.section-subtitle {
  font-size: var(--text-base);
  color: var(--gray-500);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

.section--dark .section-subtitle,
.section--navy .section-subtitle { color: rgba(255,255,255,0.70); }

.section-header--left .section-subtitle { margin: 0; }

/* ── Grid ── */
.grid { display: grid; gap: var(--space-8); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

/* ── Flex ── */
.flex         { display: flex; }
.flex-center  { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.flex-col     { display: flex; flex-direction: column; }
.gap-4  { gap: var(--space-4); }
.gap-6  { gap: var(--space-6); }
.gap-8  { gap: var(--space-8); }

/* ── Text utilities ── */
.text-center  { text-align: center; }
.text-left    { text-align: left; }
.text-gold    { color: var(--gold-primary); }
.text-navy    { color: var(--navy-dark); }
.text-white   { color: var(--white); }
.text-gray    { color: var(--gray-500); }
.text-sm      { font-size: var(--text-sm); }
.text-lg      { font-size: var(--text-lg); }
.font-bold    { font-weight: 700; }
.font-semibold{ font-weight: 600; }
.font-medium  { font-weight: 500; }

/* ============================================================
   4. NAVIGATION
   ============================================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: var(--z-nav);
  padding: 1.1rem 0;
  transition: background var(--ease), backdrop-filter var(--ease),
              box-shadow var(--ease), padding var(--ease);
}

.navbar--scrolled {
  background: rgba(13,27,42,0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 2px 24px rgba(0,0,0,0.30);
  padding: 0.75rem 0;
}

.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-8);
}

.navbar__logo { display: flex; align-items: center; flex-shrink: 0; }

.navbar__logo img {
  height: 40px;
  width: auto;
  filter: brightness(0) invert(1);
  transition: filter var(--ease), opacity var(--ease);
}

.navbar__logo:hover img { opacity: .85; }

.navbar__links {
  display: flex;
  align-items: center;
  gap: var(--space-8);
}

.navbar__link {
  font-size: .8rem;
  font-weight: 600;
  color: rgba(255,255,255,0.80);
  letter-spacing: 0.5px;
  transition: color var(--ease);
  position: relative;
  padding-bottom: 3px;
}

.navbar__link::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold-primary), var(--gold-light));
  border-radius: var(--radius-full);
  transition: width var(--ease-spring);
}

.navbar__link:hover,
.navbar__link.active { color: var(--gold-light); }

.navbar__link:hover::after,
.navbar__link.active::after { width: 100%; }

.navbar__cta { flex-shrink: 0; }

/* ── Mobile hamburger ── */
.navbar__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
  background: none;
  border: none;
}

.navbar__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: var(--radius-full);
  transition: transform var(--ease), opacity var(--ease), width var(--ease);
  transform-origin: center;
}

.navbar__hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.navbar__hamburger.open span:nth-child(2) { opacity: 0; width: 0; }
.navbar__hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Mobile menu ── */
.navbar__mobile {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--navy-dark);
  z-index: var(--z-nav);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-6);
  opacity: 0;
  transform: translateX(100%);
  transition: transform var(--ease-slow), opacity var(--ease-slow);
}

.navbar__mobile.open {
  display: flex;
  opacity: 1;
  transform: translateX(0);
}

.navbar__mobile .navbar__link {
  font-size: 1.4rem;
  color: var(--white);
  letter-spacing: 1px;
}

.navbar__mobile-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  color: var(--white);
  font-size: 1.75rem;
  padding: 0.5rem;
  cursor: pointer;
  opacity: 0.6;
  transition: opacity var(--ease), transform var(--ease);
}

.navbar__mobile-close:hover { opacity: 1; transform: rotate(90deg); }

/* ============================================================
   5. BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: 0.8rem 1.75rem;
  border-radius: var(--radius-md);
  font-family: var(--font);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  border: 2px solid transparent;
  transition: background var(--ease), color var(--ease), border-color var(--ease),
              transform var(--ease-fast), box-shadow var(--ease);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  backface-visibility: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0);
  transition: background var(--ease);
}

.btn:hover::after { background: rgba(255,255,255,0.08); }
.btn:active { transform: scale(0.97) !important; }

/* Primary — gold */
.btn-primary {
  background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
  color: var(--white);
  border-color: transparent;
  box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--gold-light), var(--gold-primary));
  box-shadow: 0 8px 32px rgba(184,149,42,0.50);
  transform: translateY(-2px);
}

/* Secondary */
.btn-secondary {
  background: var(--navy-dark);
  color: var(--white);
  border-color: var(--navy-dark);
}

.btn-secondary:hover {
  background: var(--navy-mid);
  border-color: var(--navy-mid);
  transform: translateY(-2px);
}

/* Outline white */
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.45);
}

.btn-outline:hover {
  background: rgba(255,255,255,0.10);
  border-color: rgba(255,255,255,0.90);
  transform: translateY(-2px);
}

/* Gold outline */
.btn-gold-outline {
  background: transparent;
  color: var(--gold-primary);
  border-color: var(--gold-primary);
}

.btn-gold-outline:hover {
  background: var(--gold-primary);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

/* WhatsApp */
.btn-whatsapp {
  background: #25D366;
  color: var(--white);
  border-color: #25D366;
  box-shadow: 0 6px 24px rgba(37,211,102,0.35);
}

.btn-whatsapp:hover {
  background: #1EBE5D;
  border-color: #1EBE5D;
  transform: translateY(-2px);
}

/* Sizes */
.btn-sm  { padding: 0.45rem 1.1rem; font-size: .72rem; }
.btn-lg  { padding: 0.9rem 2.2rem; font-size: .82rem; }
.btn-xl  { padding: 1.1rem 2.75rem; font-size: .875rem; border-radius: var(--radius-lg); }
.btn-block { width: 100%; }

.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  align-items: center;
}

/* ============================================================
   6. HERO (Home)
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--navy-dark);
  overflow: hidden;
  padding-top: 90px;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 50%, rgba(184,149,42,0.10) 0%, transparent 60%),
    radial-gradient(ellipse 50% 80% at 100% 80%, rgba(26,46,74,0.8) 0%, transparent 70%),
    radial-gradient(ellipse 60% 40% at 0% 20%, rgba(13,27,42,0.9) 0%, transparent 60%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100px;
  background: linear-gradient(to bottom, transparent, var(--white));
  pointer-events: none;
}

.hero__bg-shield {
  position: absolute;
  right: -3%;
  top: 50%;
  transform: translateY(-50%);
  width: min(520px, 48vw);
  height: auto;
  opacity: 0.04;
  pointer-events: none;
  user-select: none;
  animation: shieldFloat 7s ease-in-out infinite;
}

@keyframes shieldFloat {
  0%,100% { transform: translateY(-50%) rotate(-1deg); }
  50%      { transform: translateY(calc(-50% - 16px)) rotate(1deg); }
}

.hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(184,149,42,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(184,149,42,0.035) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.hero__content { position: relative; z-index: 2; max-width: 700px; }

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  background: rgba(184,149,42,0.10);
  border: 1px solid rgba(184,149,42,0.30);
  color: var(--gold-muted);
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 0.4rem 1rem;
  border-radius: var(--radius-full);
  margin-bottom: var(--space-6);
  animation: fadeDown .9s ease both;
}

.hero__badge::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--gold-primary);
  border-radius: 50%;
  animation: pulse 2s ease infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%  { opacity: 0.4; transform: scale(0.75); }
}

@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-12px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Title -35%: was clamp(2.25rem, 5vw, 3.75rem) */
.hero__title {
  font-size: var(--title-hero);
  font-weight: 900;
  color: var(--white);
  line-height: 1.12;
  margin-bottom: var(--space-6);
  letter-spacing: -0.3px;
  animation: fadeUp 1s ease .2s both;
}

.hero__title .text-gold {
  background: linear-gradient(135deg, var(--gold-primary), var(--gold-muted));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__subtitle {
  font-size: clamp(.9rem, 1.5vw, 1.05rem);
  color: rgba(255,255,255,0.68);
  line-height: 1.8;
  margin-bottom: var(--space-10);
  max-width: 560px;
  animation: fadeUp 1s ease .4s both;
}

.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  margin-bottom: var(--space-14);
  animation: fadeUp 1s ease .6s both;
}

.hero__scroll {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--space-2);
  color: rgba(255,255,255,0.40);
  font-size: .65rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  animation: fadeUp 1s ease .9s both;
}

.hero__scroll-arrow {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: bounce 2.5s ease infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50%  { transform: translateY(7px); }
}

/* ============================================================
   7. PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  padding: 8rem 0 4.5rem;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 80% 50%, rgba(184,149,42,0.08) 0%, transparent 60%);
  pointer-events: none;
}

.page-hero__tag {
  display: inline-block;
  font-size: .65rem;
  font-weight: 700;
  color: var(--gold-primary);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: var(--space-3);
}

.page-hero__breadcrumb {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.45);
  margin-bottom: var(--space-5);
}

.page-hero__breadcrumb a { color: rgba(255,255,255,0.45); transition: color var(--ease); }
.page-hero__breadcrumb a:hover { color: var(--gold-light); }
.page-hero__breadcrumb span { color: rgba(255,255,255,0.25); }

/* Page title -35%: was clamp(2rem, 4vw, 3rem) */
.page-hero__title {
  font-size: var(--title-page);
  font-weight: 900;
  color: var(--white);
  margin-bottom: var(--space-4);
  line-height: 1.12;
}

.page-hero__subtitle {
  font-size: var(--text-base);
  color: rgba(255,255,255,0.65);
  max-width: 560px;
  line-height: 1.75;
}

/* ============================================================
   8. CARDS
   ============================================================ */
.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  transition: transform var(--ease), box-shadow var(--ease);
  border: 2px solid transparent;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
}

.card__body, .card-body { padding: var(--space-8); }

/* ── Service card ── */
.service-card {
  position: relative;
  text-align: center;
  cursor: default;
}

.service-card:hover {
  border-color: var(--gold-primary);
  box-shadow: 0 12px 40px rgba(184,149,42,0.20);
}

.card-icon {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--gold-pale), rgba(184,149,42,0.12));
  border: 1.5px solid rgba(184,149,42,0.20);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-5);
  transition: background var(--ease), transform var(--ease-spring), border-color var(--ease);
  color: var(--gold-primary);
}

.service-card:hover .card-icon {
  background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
  color: var(--white);
  transform: scale(1.10) rotate(-3deg);
  border-color: transparent;
}

.card-icon svg { width: 26px; height: 26px; }

.card-title {
  font-size: .9rem;
  font-weight: 700;
  color: var(--navy-dark);
  margin-bottom: var(--space-2);
}

.card-title a { color: inherit; transition: color var(--ease); }
.card-title a:hover { color: var(--gold-primary); }

.card-text {
  font-size: var(--text-sm);
  color: var(--gray-500);
  line-height: 1.65;
  margin-bottom: var(--space-5);
}

/* ── Stat card ── */
.stat-card {
  text-align: center;
  padding: var(--space-8) var(--space-6);
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(184,149,42,0.20);
  border-radius: var(--radius-lg);
  transition: border-color var(--ease), background var(--ease), transform var(--ease);
}

.stat-card:hover {
  border-color: rgba(184,149,42,0.50);
  background: rgba(255,255,255,0.08);
  transform: translateY(-3px);
}

.stat-number {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 900;
  color: var(--gold-primary);
  line-height: 1;
  margin-bottom: var(--space-2);
}

.stat-label {
  font-size: .75rem;
  color: rgba(255,255,255,0.60);
  font-weight: 500;
}

/* ── Testimonial card ── */
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  box-shadow: var(--shadow-md);
  border-top: 3px solid var(--gold-primary);
  transition: transform var(--ease), box-shadow var(--ease);
  position: relative;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
}

.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: var(--space-3);
  left: var(--space-5);
  font-size: 4.5rem;
  color: var(--gold-pale);
  font-family: Georgia, serif;
  line-height: 1;
  font-weight: 700;
}

.testimonial-stars { display: flex; gap: 3px; margin-bottom: var(--space-4); }
.testimonial-stars svg { width: 14px; height: 14px; color: var(--gold-primary); }

.testimonial-quote {
  font-size: var(--text-sm);
  color: var(--gray-600);
  line-height: 1.8;
  margin-bottom: var(--space-5);
  font-style: italic;
  position: relative;
  z-index: 1;
}

.testimonial-author { display: flex; align-items: center; gap: var(--space-3); }

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy-mid), var(--gold-primary));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-size: var(--text-xs);
  flex-shrink: 0;
}

.testimonial-name { font-weight: 700; color: var(--navy-dark); font-size: var(--text-sm); }
.testimonial-role { font-size: var(--text-xs); color: var(--gray-500); }

/* ── Value card ── */
.value-card {
  text-align: center;
  padding: var(--space-8) var(--space-6);
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border-bottom: 3px solid transparent;
  transition: border-color var(--ease), transform var(--ease), box-shadow var(--ease);
}

.value-card:hover {
  border-bottom-color: var(--gold-primary);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.value-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, var(--gold-pale), rgba(184,149,42,0.15));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-4);
  color: var(--gold-primary);
  transition: background var(--ease-spring), transform var(--ease-spring);
}

.value-card:hover .value-icon {
  background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
  color: var(--white);
  transform: scale(1.08);
}

.value-icon svg { width: 24px; height: 24px; }

.value-card h4 {
  font-size: .9rem;
  font-weight: 700;
  color: var(--navy-dark);
  margin-bottom: var(--space-2);
}

.value-card p { font-size: var(--text-sm); color: var(--gray-500); line-height: 1.6; }

/* ── Highlight / Feature card ── */
.feature-card {
  padding: var(--space-8);
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(184,149,42,0.18);
  border-radius: var(--radius-lg);
  transition: background var(--ease), border-color var(--ease), transform var(--ease);
}

.feature-card:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(184,149,42,0.45);
  transform: translateY(-3px);
}

.feature-card h4 { color: var(--gold-light); font-size: var(--text-base); margin-bottom: var(--space-3); }
.feature-card p  { color: rgba(255,255,255,0.65); font-size: var(--text-sm); line-height: 1.65; }

/* ============================================================
   9. PROCESS STEPS
   ============================================================ */
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-8);
  position: relative;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 1.875rem;
  left: calc(12.5% + 1.5rem);
  right: calc(12.5% + 1.5rem);
  height: 2px;
  background: linear-gradient(90deg, var(--gold-primary), var(--gold-light), var(--gold-primary));
  opacity: 0.25;
  pointer-events: none;
}

.process-steps--5 { grid-template-columns: repeat(5, 1fr); }

.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
}

.process-step-number {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
  color: var(--white);
  font-size: var(--text-lg);
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-5);
  box-shadow: var(--shadow-gold);
  flex-shrink: 0;
  transition: transform var(--ease-spring), box-shadow var(--ease);
  position: relative;
  z-index: 1;
}

.process-step:hover .process-step-number {
  transform: scale(1.12);
  box-shadow: 0 8px 32px rgba(184,149,42,0.55);
}

.process-step-content h4 {
  font-size: .88rem;
  font-weight: 700;
  margin-bottom: var(--space-2);
}

.process-step-content p {
  font-size: var(--text-sm);
  line-height: 1.65;
  max-width: 200px;
}

/* ============================================================
   10. DIFFERENTIALS
   ============================================================ */
.diff-list { display: flex; flex-direction: column; gap: var(--space-6); }

.diff-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-4);
  transition: transform var(--ease);
}

.diff-item:hover { transform: translateX(4px); }

.diff-icon {
  width: 42px;
  height: 42px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  flex-shrink: 0;
  box-shadow: var(--shadow-gold);
  transition: transform var(--ease-spring);
}

.diff-item:hover .diff-icon { transform: scale(1.08) rotate(-3deg); }

.diff-icon svg { width: 18px; height: 18px; }

.diff-content h4 {
  font-size: .9rem;
  font-weight: 700;
  color: var(--navy-dark);
  margin-bottom: var(--space-1);
}

.diff-content p { font-size: var(--text-sm); color: var(--gray-500); line-height: 1.6; }

/* ============================================================
   11. FORMS
   ============================================================ */
.form-container { max-width: 760px; margin: 0 auto; }

.form-group { margin-bottom: var(--space-5); }

.form-label {
  display: block;
  font-size: .8rem;
  font-weight: 600;
  color: var(--gray-700);
  margin-bottom: var(--space-2);
}

.form-label .required { color: var(--error); margin-left: 3px; }

.form-control {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-md);
  font-family: var(--font);
  font-size: var(--text-sm);
  color: var(--gray-800);
  background: var(--white);
  transition: border-color var(--ease), box-shadow var(--ease);
  appearance: none;
  -webkit-appearance: none;
}

.form-control:focus {
  outline: none;
  border-color: var(--gold-primary);
  box-shadow: 0 0 0 4px rgba(184,149,42,0.10);
}

.form-control::placeholder { color: var(--gray-400); font-weight: 400; }

select.form-control {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23374151' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 0.875rem center;
  background-size: 14px;
  padding-right: 2.5rem;
  cursor: pointer;
}

textarea.form-control { resize: vertical; min-height: 120px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-5); }

.form-section {
  background: var(--gray-50);
  border-radius: var(--radius-lg);
  padding: var(--space-7, 1.75rem) var(--space-8);
  margin-bottom: var(--space-6);
  border-left: 3px solid var(--gold-primary);
  transition: box-shadow var(--ease);
}

.form-section:hover { box-shadow: var(--shadow-sm); }

.form-section-title {
  font-size: .72rem;
  font-weight: 800;
  color: var(--navy-dark);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: var(--space-5);
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

.form-section-title svg { width: 15px; height: 15px; color: var(--gold-primary); }

.form-check {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  margin-bottom: var(--space-3);
  cursor: pointer;
}

.form-check-input {
  width: 17px;
  height: 17px;
  border-radius: var(--radius-sm);
  border: 2px solid var(--gray-300);
  accent-color: var(--gold-primary);
  cursor: pointer;
  flex-shrink: 0;
  transition: border-color var(--ease);
}

.form-check-input:focus { outline: 2px solid rgba(184,149,42,0.3); }

.form-check-label {
  font-size: var(--text-sm);
  color: var(--gray-700);
  cursor: pointer;
  font-weight: 500;
}

.form-check-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-2); }

.form-radio-group { display: flex; flex-wrap: wrap; gap: var(--space-3); }

.radio-option {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-2) var(--space-5);
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: border-color var(--ease), background var(--ease);
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--gray-700);
}

.radio-option input[type="radio"] { display: none; }
.radio-option:has(input:checked),
.radio-option.selected {
  border-color: var(--gold-primary);
  background: var(--gold-pale);
  color: var(--navy-dark);
}

.form-hint { font-size: var(--text-xs); color: var(--gray-400); margin-top: var(--space-2); }
.form-error-msg { font-size: .8rem; color: var(--error); margin-top: var(--space-2); display: none; }

.form-success {
  background: rgba(16,185,129,0.08);
  border: 1px solid rgba(16,185,129,0.30);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  text-align: center;
  display: none;
}

.form-success h3 { color: var(--success); margin-bottom: var(--space-3); }

.lgpd-consent {
  background: var(--gold-pale);
  border: 1px solid rgba(184,149,42,0.25);
  border-radius: var(--radius-lg);
  padding: var(--space-4) var(--space-5);
  margin-bottom: var(--space-6);
}

.lgpd-consent .form-check-label { font-size: var(--text-xs); color: var(--gray-600); line-height: 1.5; }

/* Upload */
.file-upload-area {
  border: 2px dashed var(--gray-300);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  text-align: center;
  cursor: pointer;
  transition: border-color var(--ease), background var(--ease);
  position: relative;
}

.file-upload-area:hover,
.file-upload-area.dragover {
  border-color: var(--gold-primary);
  background: var(--gold-pale);
}

.file-upload-area input[type="file"] {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
  width: 100%;
}

.file-upload-icon { color: var(--gold-primary); margin-bottom: var(--space-3); }
.file-upload-icon svg { width: 36px; height: 36px; margin: 0 auto; }
.file-upload-text { font-size: var(--text-sm); color: var(--gray-500); }
.file-upload-text strong { color: var(--navy-dark); }

/* ============================================================
   12. FORM TYPE SELECTOR
   ============================================================ */
.type-selector { display: flex; gap: var(--space-4); margin-bottom: var(--space-8); }

.type-selector-card {
  flex: 1;
  padding: var(--space-5) var(--space-6);
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-lg);
  cursor: pointer;
  text-align: center;
  transition: all var(--ease);
  background: var(--white);
}

.type-selector-card:hover {
  border-color: var(--gold-primary);
  box-shadow: var(--shadow-gold);
  transform: translateY(-2px);
}

.type-selector-card.selected {
  border-color: var(--gold-primary);
  background: var(--gold-pale);
  box-shadow: var(--shadow-gold);
}

.type-selector-card .card-icon { margin-bottom: var(--space-2); }
.type-selector-card h4 { font-size: var(--text-sm); font-weight: 700; color: var(--navy-dark); margin-bottom: var(--space-1); }
.type-selector-card p  { font-size: var(--text-xs); color: var(--gray-500); }

/* ── Insurance type pills ── */
.insurance-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  margin-bottom: var(--space-6);
}

.insurance-tab {
  padding: 0.45rem 1.1rem;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-full);
  font-size: .78rem;
  font-weight: 600;
  color: var(--gray-600);
  cursor: pointer;
  transition: all var(--ease);
  background: var(--white);
}

.insurance-tab:hover { border-color: var(--gold-primary); color: var(--gold-primary); }
.insurance-tab.active { background: var(--gold-primary); border-color: var(--gold-primary); color: var(--white); }

.form-panel { display: none; }
.form-panel.active { display: block; animation: panelFadeIn .4s ease both; }

@keyframes panelFadeIn {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Capital faixas */
.capital-faixas {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-3);
}

.faixa-option {
  padding: var(--space-3) var(--space-4);
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-md);
  cursor: pointer;
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--gray-700);
  text-align: center;
  transition: all var(--ease);
  position: relative;
}

.faixa-option input { display: none; }

.faixa-option:has(input:checked) {
  border-color: var(--gold-primary);
  background: var(--gold-pale);
  color: var(--navy-dark);
}

/* ============================================================
   13. TIMELINE
   ============================================================ */
.timeline { position: relative; padding-left: 2rem; }

.timeline::before {
  content: '';
  position: absolute;
  left: 0.5rem;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--gold-primary), transparent);
}

.timeline-item { position: relative; padding-bottom: var(--space-7, 1.75rem); }
.timeline-item:last-child { padding-bottom: 0; }

.timeline-dot {
  position: absolute;
  left: -1.625rem;
  top: 4px;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: var(--gold-primary);
  border: 3px solid var(--white);
  box-shadow: 0 0 0 2px var(--gold-primary);
  transition: transform var(--ease-spring);
}

.timeline-item:hover .timeline-dot { transform: scale(1.4); }

.timeline-year {
  font-size: var(--text-xs);
  font-weight: 700;
  color: var(--gold-primary);
  letter-spacing: 1px;
  margin-bottom: var(--space-1);
}

.timeline-text { font-size: var(--text-sm); color: var(--gray-600); line-height: 1.6; }

/* ============================================================
   14. CTA SECTION
   ============================================================ */
.cta-section { text-align: center; }

/* CTA title -35%: was clamp(1.75rem, 3vw, 2.5rem) */
.cta-section .section-title {
  font-size: var(--title-cta);
}

/* ============================================================
   15. CONTACT PAGE
   ============================================================ */
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-4);
  padding: var(--space-4) 0;
  border-bottom: 1px solid var(--gray-100);
}

.contact-info-item:last-child { border-bottom: none; }

.contact-info-icon {
  width: 42px;
  height: 42px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--gold-pale), rgba(184,149,42,0.12));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-primary);
  flex-shrink: 0;
  transition: background var(--ease-spring), transform var(--ease-spring);
}

.contact-info-item:hover .contact-info-icon {
  background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
  color: var(--white);
  transform: scale(1.08);
}

.contact-info-icon svg { width: 18px; height: 18px; }

.contact-info-label {
  font-size: .65rem;
  font-weight: 700;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: var(--space-1);
}

.contact-info-value {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--navy-dark);
}

.social-links { display: flex; gap: var(--space-3); }

.social-link {
  width: 42px;
  height: 42px;
  border-radius: var(--radius-md);
  border: 2px solid var(--gray-200);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-500);
  transition: all var(--ease);
}

.social-link:hover {
  border-color: var(--gold-primary);
  color: var(--gold-primary);
  background: var(--gold-pale);
  transform: translateY(-3px);
}

.social-link svg { width: 18px; height: 18px; }

/* ============================================================
   16. FOOTER
   ============================================================ */
.footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.70);
  padding: var(--space-16) 0 0;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: var(--space-12);
  padding-bottom: var(--space-12);
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.footer__brand-logo { margin-bottom: var(--space-4); }

.footer__brand-logo img {
  height: 38px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: .9;
}

.footer__brand-text {
  font-size: var(--text-sm);
  line-height: 1.7;
  color: rgba(255,255,255,0.55);
  margin-bottom: var(--space-6);
}

.footer__col-title {
  font-size: .65rem;
  font-weight: 800;
  color: var(--gold-primary);
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-bottom: var(--space-5);
}

.footer__links { display: flex; flex-direction: column; gap: var(--space-3); }

.footer__link {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.55);
  transition: color var(--ease), padding-left var(--ease);
}

.footer__link:hover { color: var(--gold-light); padding-left: 4px; }

.footer__contact-item {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.55);
  margin-bottom: var(--space-3);
  transition: color var(--ease);
}

.footer__contact-item:hover { color: var(--gold-light); }

.footer__contact-item svg {
  width: 15px;
  height: 15px;
  color: var(--gold-primary);
  flex-shrink: 0;
}

.footer__bottom {
  padding: var(--space-5) 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-4);
}

.footer__copyright { font-size: var(--text-xs); color: rgba(255,255,255,0.35); }

.footer__bottom-links { display: flex; gap: var(--space-6); }

.footer__bottom-link {
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.35);
  transition: color var(--ease);
}

.footer__bottom-link:hover { color: var(--gold-light); }

.footer__cassibox-credit {
  margin-top: 18px;
  text-align: center;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 8px;
  font-weight: 400;
  line-height: 1.4;
  color: #414042;
}

.footer__cassibox-credit a {
  color: #414042;
  text-decoration: none;
}

.footer__cassibox-credit a:hover,
.footer__cassibox-credit a:focus-visible {
  color: #414042;
  text-decoration: underline;
}

/* ============================================================
   17. WHATSAPP POPUP
   ============================================================ */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: var(--z-popup);
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 1rem;
}

.whatsapp-fab {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25D366;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(37,211,102,0.50);
  cursor: pointer;
  transition: transform var(--ease-spring), box-shadow var(--ease);
  border: none;
  position: relative;
  z-index: 2;
  flex-shrink: 0;
}

.whatsapp-fab svg { width: 26px; height: 26px; }

.whatsapp-fab:hover {
  transform: scale(1.12);
  box-shadow: 0 10px 40px rgba(37,211,102,0.65);
}

.whatsapp-fab::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: #25D366;
  animation: whatsapp-ring 2.2s ease infinite;
  z-index: -1;
}

@keyframes whatsapp-ring {
  0%   { transform: scale(1); opacity: 0.65; }
  100% { transform: scale(1.9); opacity: 0; }
}

.whatsapp-popup-card {
  width: 300px;
  background: var(--white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  overflow: hidden;
  transform-origin: bottom right;
  transform: scale(0) translateY(10px);
  opacity: 0;
  transition: transform var(--ease-spring), opacity var(--ease);
  pointer-events: none;
}

.whatsapp-float.open .whatsapp-popup-card {
  transform: scale(1) translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.whatsapp-popup-header {
  background: #075E54;
  color: var(--white);
  padding: var(--space-4) var(--space-5);
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.whatsapp-popup-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-primary), var(--navy-mid));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: var(--text-sm);
  color: var(--white);
  flex-shrink: 0;
}

.whatsapp-popup-header h5 { font-size: var(--text-sm); font-weight: 700; color: var(--white); margin-bottom: 2px; }
.whatsapp-popup-header p  { font-size: var(--text-xs); color: rgba(255,255,255,0.72); }

.whatsapp-popup-body { padding: var(--space-5); }

.whatsapp-bubble {
  background: var(--gray-100);
  border-radius: var(--radius-lg) var(--radius-lg) var(--radius-lg) var(--radius-sm);
  padding: var(--space-3) var(--space-4);
  font-size: var(--text-sm);
  color: var(--gray-800);
  line-height: 1.55;
  margin-bottom: var(--space-4);
}

.whatsapp-popup-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  width: 100%;
  padding: var(--space-3);
  background: #25D366;
  color: var(--white);
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: var(--text-sm);
  text-decoration: none;
  transition: background var(--ease);
}

.whatsapp-popup-link:hover { background: #1EBE5D; }
.whatsapp-popup-link svg { width: 17px; height: 17px; }

/* ============================================================
   17b. SCROLL TO TOP BUTTON
   ============================================================ */
.scroll-top-btn {
  position: fixed;
  bottom: 6.5rem;
  right: 2.1rem;
  z-index: var(--z-sticky);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--navy-mid);
  border: 2px solid rgba(184,149,42,0.40);
  color: var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  transform: translateY(16px) scale(0.85);
  transition: opacity var(--ease), transform var(--ease-spring),
              background var(--ease), border-color var(--ease);
  pointer-events: none;
  box-shadow: 0 4px 16px rgba(13,27,42,0.35);
}

.scroll-top-btn.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.scroll-top-btn:hover {
  background: var(--gold-primary);
  border-color: var(--gold-primary);
  color: var(--white);
  transform: translateY(-3px) scale(1.05);
}

.scroll-top-btn svg { width: 18px; height: 18px; }

/* ============================================================
   18. BREADCRUMB
   ============================================================ */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-sm);
  margin-bottom: var(--space-4);
  color: var(--gray-400);
}

.breadcrumb a { color: var(--gray-400); transition: color var(--ease); }
.breadcrumb a:hover { color: var(--gold-primary); }
.breadcrumb-sep { color: var(--gray-300); font-size: var(--text-xs); }
.breadcrumb-current { color: var(--gold-primary); font-weight: 600; }

/* ============================================================
   19. ALERTS / MESSAGES
   ============================================================ */
.alert {
  padding: var(--space-4) var(--space-5);
  border-radius: var(--radius-md);
  font-size: var(--text-sm);
  margin-bottom: var(--space-6);
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
}

.alert svg { width: 17px; height: 17px; flex-shrink: 0; margin-top: 1px; }

.alert-success { background: rgba(16,185,129,0.08); border: 1px solid rgba(16,185,129,0.25); color: #065F46; }
.alert-error   { background: rgba(239,68,68,0.08);  border: 1px solid rgba(239,68,68,0.25);  color: #991B1B; }
.alert-info    { background: rgba(184,149,42,0.08); border: 1px solid rgba(184,149,42,0.25); color: var(--navy-dark); }

/* ============================================================
   20. SCROLL ANIMATIONS — Enhanced
   ============================================================ */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(.4,0,.2,1),
              transform 0.7s cubic-bezier(.4,0,.2,1);
}

.animate-on-scroll.animated {
  opacity: 1;
  transform: translateY(0);
}

.animate-on-scroll.delay-1 { transition-delay: 0.08s; }
.animate-on-scroll.delay-2 { transition-delay: 0.18s; }
.animate-on-scroll.delay-3 { transition-delay: 0.28s; }
.animate-on-scroll.delay-4 { transition-delay: 0.38s; }
.animate-on-scroll.delay-5 { transition-delay: 0.48s; }

.animate-left  { transform: translateX(-36px); }
.animate-right { transform: translateX(36px); }
.animate-left.animated, .animate-right.animated { transform: translateX(0); }

.animate-scale { transform: scale(0.90); opacity: 0; }
.animate-scale.animated { transform: scale(1); opacity: 1; }

/* ── Stagger children ── */
.stagger-children > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.stagger-children.animated > *:nth-child(1) { transition-delay: 0.05s; }
.stagger-children.animated > *:nth-child(2) { transition-delay: 0.12s; }
.stagger-children.animated > *:nth-child(3) { transition-delay: 0.19s; }
.stagger-children.animated > *:nth-child(4) { transition-delay: 0.26s; }
.stagger-children.animated > *:nth-child(5) { transition-delay: 0.33s; }
.stagger-children.animated > *:nth-child(6) { transition-delay: 0.40s; }
.stagger-children.animated > *:nth-child(7) { transition-delay: 0.47s; }
.stagger-children.animated > *:nth-child(8) { transition-delay: 0.54s; }

.stagger-children.animated > * {
  opacity: 1;
  transform: translateY(0);
}

/* ── Floating micro-animation ── */
@keyframes floatY {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-8px); }
}

.float-anim { animation: floatY 4s ease-in-out infinite; }

/* ── Shimmer for cards ── */
@keyframes shimmer {
  0%   { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

/* ============================================================
   21. PRIVACY POLICY CONTENT
   ============================================================ */
.policy-content h2 {
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--navy-dark);
  margin: var(--space-8) 0 var(--space-3);
}

.policy-content h3 {
  font-size: var(--text-base);
  font-weight: 700;
  color: var(--navy-mid);
  margin: var(--space-6) 0 var(--space-3);
}

.policy-content p {
  font-size: var(--text-base);
  color: var(--gray-600);
  line-height: 1.8;
  margin-bottom: var(--space-4);
}

.policy-content ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin-bottom: var(--space-4);
}

.policy-content li {
  font-size: var(--text-base);
  color: var(--gray-600);
  line-height: 1.8;
  margin-bottom: var(--space-2);
}

/* ============================================================
   22. COVERAGE LIST
   ============================================================ */
.coverage-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-3);
}

.coverage-item {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-3) var(--space-4);
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--gray-200);
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--gray-700);
  transition: border-color var(--ease), background var(--ease), transform var(--ease);
}

.coverage-item:hover {
  border-color: var(--gold-primary);
  background: var(--gold-pale);
  transform: translateX(3px);
}

.coverage-check {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--gold-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--white);
}

.coverage-check svg { width: 11px; height: 11px; }

/* ============================================================
   23. MISC UTILITIES
   ============================================================ */
.divider {
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-primary), var(--gold-light));
  border-radius: var(--radius-full);
  margin: var(--space-4) auto;
}

.divider--left { margin: var(--space-4) 0; }

.badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-1);
  padding: 0.2rem 0.7rem;
  border-radius: var(--radius-full);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.5px;
}

.badge-gold { background: var(--gold-pale); color: var(--gold-dark); border: 1px solid rgba(184,149,42,0.25); }
.badge-navy { background: rgba(13,27,42,0.08); color: var(--navy-dark); }

.gold-line {
  display: block;
  width: 44px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-primary), var(--gold-light));
  border-radius: var(--radius-full);
  margin: var(--space-4) 0;
}

.mb-0 { margin-bottom: 0; }
.mb-4 { margin-bottom: var(--space-4); }
.mb-6 { margin-bottom: var(--space-6); }
.mb-8 { margin-bottom: var(--space-8); }
.mt-4 { margin-top: var(--space-4); }
.mt-6 { margin-top: var(--space-6); }
.mt-8 { margin-top: var(--space-8); }

/* ============================================================
   24. RESPONSIVE — TABLET (≤ 1024px)
   ============================================================ */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }

  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .process-steps--5 { grid-template-columns: repeat(3, 1fr); }
  .process-steps::before { display: none; }

  .footer__grid { grid-template-columns: 1fr 1fr; gap: var(--space-8); }
  .navbar__links { gap: var(--space-6); }
}

/* ============================================================
   25. RESPONSIVE — MOBILE (≤ 768px)
   ============================================================ */
@media (max-width: 768px) {
  .navbar__links,
  .navbar__cta { display: none; }

  .navbar__hamburger { display: flex; }

  .hero { min-height: 100svh; padding-top: 80px; }
  .hero__bg-shield { display: none; }
  .hero__ctas { flex-direction: column; }
  .hero__ctas .btn { width: 100%; justify-content: center; }

  .grid-2,
  .grid-3,
  .grid-4 { grid-template-columns: 1fr; }

  .process-steps,
  .process-steps--5 { grid-template-columns: 1fr; }

  .form-row { grid-template-columns: 1fr; }
  .form-check-grid { grid-template-columns: 1fr; }
  .capital-faixas { grid-template-columns: 1fr; }
  .type-selector { flex-direction: column; }
  .insurance-tabs { gap: var(--space-2); }

  .coverage-list { grid-template-columns: 1fr; }

  .footer__grid { grid-template-columns: 1fr; gap: var(--space-8); }
  .footer__bottom { flex-direction: column; text-align: center; }
  .footer__bottom-links { justify-content: center; }

  .whatsapp-popup-card { width: 275px; }
  .whatsapp-float { bottom: 1.5rem; right: 1.25rem; }
  .scroll-top-btn { bottom: 6rem; right: 1.4rem; }

  .page-hero { padding: 6.5rem 0 3rem; }
  .section { padding: var(--space-12) 0; }

  .social-links { flex-wrap: wrap; }
}

/* ============================================================
   26. RESPONSIVE — SMALL MOBILE (≤ 480px)
   ============================================================ */
@media (max-width: 480px) {
  .container { padding: 0 1rem; }
  .card__body, .card-body { padding: var(--space-5); }
  .form-section { padding: var(--space-4); }
  .btn-group { flex-direction: column; }
  .btn-group .btn { width: 100%; justify-content: center; }
}

/* ============================================================
   27. PRINT STYLES
   ============================================================ */
@media print {
  .navbar, .whatsapp-float, .scroll-top-btn, .footer { display: none; }
  body { font-size: 12pt; color: #000; }
  a { text-decoration: underline; }
}


/* ============================================================
   28. REFINAMENTOS DE LAYOUT E FLUIDEZ — 2026
   ============================================================ */

/* Compatibilidade entre as duas nomenclaturas de hero usadas no projeto. */
.page-hero-content {
  position: relative;
  z-index: 1;
}

.page-hero-tag {
  display: inline-block;
  font-size: .65rem;
  font-weight: 700;
  color: var(--gold-primary);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: var(--space-3);
}

.page-hero-title {
  color: var(--white);
  font-weight: 900;
  line-height: 1.12;
  margin-bottom: var(--space-4);
}

.page-hero-subtitle {
  font-size: var(--text-base);
  color: rgba(255,255,255,.65);
  max-width: 620px;
  line-height: 1.75;
}

/* Destaques reduzidos em 35%, inclusive estilos locais das páginas. */
.hero__title { font-size: var(--title-hero) !important; }
.page-hero__title,
.page-hero-title { font-size: var(--title-page) !important; }
.section-title { font-size: var(--title-section) !important; }
.cta-final h2,
.cta-section__title,
.svc-cta-title,
.svc-desc-title { font-size: var(--title-cta) !important; }

/* Animações mais suaves, sem mudar a estrutura do site. */
.animate-on-scroll {
  filter: blur(3px);
  transition: opacity .72s cubic-bezier(.22,.61,.36,1),
              transform .72s cubic-bezier(.22,.61,.36,1),
              filter .72s cubic-bezier(.22,.61,.36,1);
  will-change: transform, opacity, filter;
}
.animate-on-scroll.animated { filter: blur(0); }

.page-hero::before {
  animation: heroGlow 9s ease-in-out infinite alternate;
}
@keyframes heroGlow {
  from { transform: translate3d(-2%, 0, 0) scale(1); opacity: .78; }
  to   { transform: translate3d(3%, 1%, 0) scale(1.08); opacity: 1; }
}

.card,
.service-card,
.type-selector-card,
.highlight-card,
.diff-card,
.process-step,
.svc-cov-item,
.diff-item {
  transition-duration: .36s !important;
  transition-timing-function: cubic-bezier(.22,.61,.36,1) !important;
}

.btn {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 28%, rgba(255,255,255,.20) 48%, transparent 68%);
  transform: translateX(-135%);
  transition: transform .55s ease;
  z-index: -1;
  pointer-events: none;
}
.btn:hover::after { transform: translateX(135%); }

/* Seleção de seguro — somente na entrada geral da cotação. */
.insurance-choice-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}
.insurance-choice-card {
  min-height: 185px;
  padding: 1.6rem;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  background: var(--white);
  box-shadow: var(--shadow-xs);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  transition: transform .35s cubic-bezier(.22,.61,.36,1), box-shadow .35s ease, border-color .35s ease;
}
.insurance-choice-card::before {
  content: '';
  position: absolute;
  width: 120px;
  height: 120px;
  right: -50px;
  top: -50px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(184,149,42,.15), transparent 68%);
  transition: transform .45s ease;
}
.insurance-choice-card:hover {
  transform: translateY(-6px);
  border-color: rgba(184,149,42,.55);
  box-shadow: 0 18px 45px rgba(13,27,42,.11);
}
.insurance-choice-card:hover::before { transform: scale(1.35); }
.insurance-choice-card__marker {
  width: 34px;
  height: 3px;
  border-radius: var(--radius-full);
  background: linear-gradient(90deg, var(--gold-primary), var(--gold-light));
  margin-bottom: 1.15rem;
}
.insurance-choice-card h3 {
  font-size: .98rem;
  margin-bottom: .65rem;
}
.insurance-choice-card p {
  font-size: .8rem;
  color: var(--gray-500);
  line-height: 1.65;
  margin-bottom: 1.15rem;
  flex: 1;
}
.insurance-choice-card__action {
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .8px;
  text-transform: uppercase;
  color: var(--gold-dark);
}

/* Fluxo único: Aquisição / Renovação. */
.request-shell {
  max-width: 900px;
  margin: 0 auto;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 22px;
  box-shadow: 0 24px 70px rgba(13,27,42,.10);
  padding: clamp(1.25rem, 3vw, 2.5rem);
}
.request-product-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.2rem;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, rgba(13,27,42,.035), rgba(184,149,42,.08));
  border: 1px solid rgba(184,149,42,.18);
  border-radius: var(--radius-lg);
}
.request-product-summary > div { display: flex; flex-direction: column; gap: .2rem; }
.request-product-summary__eyebrow {
  font-size: .62rem;
  font-weight: 800;
  color: var(--gold-dark);
  letter-spacing: 1.6px;
  text-transform: uppercase;
}
.request-product-summary strong { font-size: 1rem; color: var(--navy-dark); }
.request-product-summary__change {
  font-size: .72rem;
  font-weight: 700;
  color: var(--gold-dark);
  white-space: nowrap;
}
.request-product-summary__change:hover { text-decoration: underline; }

.request-mode-selector {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .85rem;
  margin-bottom: 2rem;
}
.request-mode-card {
  min-height: 92px;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.15rem;
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-lg);
  transition: transform .3s ease, border-color .3s ease, background .3s ease, box-shadow .3s ease;
}
.request-mode-card:hover {
  transform: translateY(-3px);
  border-color: rgba(184,149,42,.65);
  box-shadow: var(--shadow-sm);
}
.request-mode-card.selected {
  border-color: var(--gold-primary);
  background: var(--gold-pale);
  box-shadow: 0 8px 22px rgba(184,149,42,.12);
}
.request-mode-card__icon {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--navy-dark);
  color: var(--white);
  font-size: 1.25rem;
  font-weight: 700;
}
.request-mode-card.selected .request-mode-card__icon { background: var(--gold-primary); }
.request-mode-card > div { display: flex; flex-direction: column; gap: .25rem; }
.request-mode-card strong { font-size: .86rem; color: var(--navy-dark); }
.request-mode-card small { font-size: .72rem; color: var(--gray-500); line-height: 1.4; }

.form-section-note {
  margin: -.55rem 0 1.25rem;
  color: var(--gray-500);
  font-size: .78rem;
  line-height: 1.6;
}
.upload-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}
.upload-grid--three { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.file-upload-area {
  min-height: 150px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: rgba(255,255,255,.75);
}
.file-upload-area:hover { transform: translateY(-2px); }
.selected-insurance-field {
  padding: .9rem 1rem;
  border: 1.5px solid rgba(184,149,42,.35);
  background: var(--gold-pale);
  color: var(--navy-dark);
  font-size: .9rem;
  font-weight: 700;
  border-radius: var(--radius-md);
}
.form-submit-row { text-align: center; }
.form-submit-row .form-hint { max-width: 560px; margin: .85rem auto 0; }

/* Contato: um único bloco com dados, horário e mapa. */
.contact-unified-card {
  max-width: 1050px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.3fr .7fr;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 24px 70px rgba(13,27,42,.10);
}
.contact-unified-card__form { padding: clamp(1.5rem, 3vw, 2.5rem); }
.contact-block-heading { margin-bottom: 1.75rem; }
.contact-unified-card__hours {
  padding: clamp(1.5rem, 3vw, 2.5rem);
  background: linear-gradient(155deg, var(--navy-dark), var(--navy-mid));
  color: var(--white);
}
.contact-hours-title {
  display: flex;
  align-items: center;
  gap: .85rem;
  margin-bottom: 1.5rem;
}
.contact-hours-title .contact-info-icon { background: rgba(184,149,42,.16); }
.contact-hours-title > div:last-child { display: flex; flex-direction: column; gap: .2rem; }
.contact-hours-title span {
  font-size: .6rem;
  text-transform: uppercase;
  letter-spacing: 1.8px;
  color: var(--gold-muted);
  font-weight: 800;
}
.contact-hours-title strong { font-size: .86rem; color: var(--white); }
.contact-hours-list { display: flex; flex-direction: column; }
.contact-hours-list > div {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: .9rem 0;
  border-bottom: 1px solid rgba(255,255,255,.10);
  font-size: .78rem;
}
.contact-hours-list > div:last-child { border-bottom: 0; }
.contact-hours-list span { color: rgba(255,255,255,.62); }
.contact-hours-list strong { color: var(--white); text-align: right; }
.contact-hours-list .is-closed { color: #FCA5A5; }
.contact-unified-card__map {
  grid-column: 1 / -1;
  border-top: 1px solid var(--gray-200);
  min-height: 320px;
}
.contact-unified-card__map iframe { min-height: 320px; }

/* Botão SUBIR: área de clique maior e feedback visual mais claro. */
.scroll-top-btn {
  width: 46px;
  height: 46px;
  outline: none;
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
}
.scroll-top-btn:focus-visible {
  box-shadow: 0 0 0 4px rgba(184,149,42,.28), 0 4px 16px rgba(13,27,42,.35);
}
.scroll-top-btn:active { transform: translateY(0) scale(.94); }

@media (max-width: 900px) {
  .insurance-choice-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .upload-grid--three { grid-template-columns: 1fr 1fr; }
  .contact-unified-card { grid-template-columns: 1fr; }
  .contact-unified-card__map { grid-column: auto; }
}

@media (max-width: 640px) {
  .insurance-choice-grid,
  .request-mode-selector,
  .upload-grid,
  .upload-grid--three { grid-template-columns: 1fr; }
  .request-product-summary { align-items: flex-start; flex-direction: column; }
  .request-mode-card { min-height: 84px; }
  .request-shell { border-radius: 16px; }
  .contact-unified-card { border-radius: 16px; }
}

@media (prefers-reduced-motion: reduce) {
  .page-hero::before,
  .float-anim,
  .whatsapp-fab::before { animation: none !important; }
  .animate-on-scroll,
  .stagger-children > * { transition: none !important; filter: none !important; }
  .btn::after { display: none; }
}


/* Aviso discreto de entrega de respostas por e-mail */
.form-email-note {
  margin: 8px 0 0;
  font-size: 11px;
  line-height: 1.45;
  color: rgba(65, 64, 66, 0.72);
}

.section--dark .form-email-note,
.footer .form-email-note {
  color: rgba(255, 255, 255, 0.5);
}


/* ============================================================
   29. ESTABILIDADE RESPONSIVA / NAVEGAÇÃO — revisão mobile
   Mantém a estrutura original e corrige apenas regressões de UI.
   ============================================================ */

/* Impede que transforms/animações e elementos flutuantes ampliem a
   largura navegável da página em navegadores mobile. */
html,
body {
  max-width: 100%;
  overflow-x: hidden;
}


/* Logo específico do cabeçalho: sem filtro monocromático que apagava
   os detalhes dourados e o F interno do escudo. */
.navbar__logo img {
  width: 301px;
  height: auto;
  max-width: 301px;
  filter: none;
}

/* Grids/flex-items podem ter min-content maior que a coluna em telas
   estreitas; min-width:0 permite a contração correta sem distorção. */
.grid-2 > *,
.grid-3 > *,
.grid-4 > *,
.sobre-grid > *,
.dif-grid > *,
.stats-grid > *,
.services-grid > *,
.process-grid > *,
.insurance-choice-grid > *,
.request-mode-selector > *,
.upload-grid > *,
.contact-unified-card > * {
  min-width: 0;
}

/* O popup nunca pode ser maior que a viewport. */
.whatsapp-float {
  max-width: calc(100vw - 2rem);
}

.whatsapp-popup-card {
  width: min(300px, calc(100vw - 2rem));
  max-width: 100%;
}

@media (max-width: 768px) {
  .navbar {
    padding: .75rem 0;
  }

  .navbar--scrolled {
    padding: .55rem 0;
  }

  .navbar__logo img {
    width: 144px;
    height: auto;
    max-width: min(144px, calc(100vw - 110px));
  }

  /* A regra original esconde .navbar__links para retirar o menu desktop.
     Esta exceção restaura explicitamente a lista que vive DENTRO do menu mobile. */
  .navbar__mobile {
    height: 100dvh;
    min-height: 100vh;
    overflow-y: auto;
    overscroll-behavior: contain;
    padding: 5.25rem 1.25rem 2rem;
    justify-content: flex-start;
  }

  .navbar__mobile .navbar__links {
    display: flex;
    width: 100%;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.15rem;
  }

  .navbar__mobile .navbar__links li {
    display: block;
    width: 100%;
    text-align: center;
  }

  .navbar__mobile .navbar__link {
    display: inline-flex;
    justify-content: center;
    font-size: 1.12rem;
    line-height: 1.35;
    padding: .35rem .5rem;
  }

  .navbar__mobile .btn-group {
    width: min(100%, 330px);
    margin-left: auto;
    margin-right: auto;
  }

  .navbar__mobile .btn-group .btn {
    width: 100%;
    max-width: 100%;
  }

  /* Evita que o halo do FAB ultrapasse a viewport e gere barra horizontal. */
  .whatsapp-float {
    right: 2rem;
    bottom: 1.5rem;
    max-width: calc(100vw - 2.5rem);
  }

  .whatsapp-popup-card {
    width: min(285px, calc(100vw - 3rem));
  }

  .scroll-top-btn {
    right: 2rem;
  }

  /* O brilho decorativo da home permanece dentro do hero. */
  .hero__glow {
    right: 0 !important;
    width: 100% !important;
  }

  .hero__badge {
    max-width: 100%;
    white-space: normal;
    line-height: 1.45;
  }

  .hero__badge::before { flex: 0 0 7px; }

  .btn {
    max-width: 100%;
    white-space: normal;
    text-align: center;
  }

  .form-submit-row .btn {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .navbar__logo img {
    width: 129.6px;
    height: auto;
    max-width: min(129.6px, calc(100vw - 100px));
  }

  .btn-lg,
  .btn-xl {
    padding-left: 1.2rem;
    padding-right: 1.2rem;
  }

  .form-submit-row .btn-xl {
    padding-left: .9rem;
    padding-right: .9rem;
    line-height: 1.35;
  }

  .dif-cta-box {
    padding: 1.5rem;
  }

  .whatsapp-float {
    right: 1.75rem;
    max-width: calc(100vw - 2rem);
  }

  .whatsapp-popup-card {
    width: min(275px, calc(100vw - 2.5rem));
  }

  .scroll-top-btn {
    right: 1.75rem;
  }
}
