/* ============================================================
   ELEVV ASSESSORIA — CLEAN DESIGN SYSTEM (UI/UX Refinado)
   Cores: Navy #0D1B2A | Dourado #D4AF37 | WhatsApp #25D366 | Fundo #FFFFFF / #F8FAFC
   ============================================================ */

/* ------------------------------------------------------------
   1. DESIGN TOKENS
   ------------------------------------------------------------ */
:root {
  /* Cores Principais */
  --c-navy-950: #060E17;
  --c-navy-900: #0D1B2A;  /* Navy Base */
  --c-navy-800: #152438;
  --c-navy-700: #1E334D;
  
  --c-gold-500: #C5A028;  /* Dourado Nobre */
  --c-gold-400: #D4AF37;
  --c-gold-300: #E5C866;
  --c-gold-100: #FAF2DA;
  --c-gold-50:  #FDFBF5;

  --c-whatsapp:     #25D366;
  --c-whatsapp-dark:#1EBE5D;
  --c-whatsapp-glow: rgba(37, 211, 102, 0.28);

  /* Fundos & Neutros */
  --c-white:    #FFFFFF;
  --c-bg-light: #F8FAFC;
  --c-bg-card:  #FFFFFF;
  --c-border:   #E2E8F0;
  --c-border-subtle: #EDF2F7;

  --c-text-main:  #0F172A;
  --c-text-muted: #475569;
  --c-text-light: #94A3B8;

  /* Tipografia */
  --font-main:  'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-serif: 'Playfair Display', Georgia, serif;

  /* Espaçamento & Estrutura */
  --container-max: 1180px;
  --header-height: 76px;
  --radius-sm:     8px;
  --radius-md:     12px;
  --radius-lg:     16px;
  --radius-xl:     24px;
  --radius-pill:   999px;

  /* Sombras Suaves */
  --shadow-xs: 0 1px 3px rgba(15, 23, 42, 0.04);
  --shadow-sm: 0 4px 12px rgba(15, 23, 42, 0.05);
  --shadow-md: 0 8px 24px rgba(15, 23, 42, 0.07);
  --shadow-lg: 0 16px 40px rgba(15, 23, 42, 0.10);
  --shadow-wa: 0 8px 25px var(--c-whatsapp-glow);

  /* Transições */
  --transition: all 0.24s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ------------------------------------------------------------
   2. RESET & BASE
   ------------------------------------------------------------ */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 36px);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-main);
  background-color: var(--c-bg-light);
  color: var(--c-text-main);
  line-height: 1.6;
  font-size: 15px;
  overflow-x: hidden;
}

img, svg {
  display: block;
  max-width: 100%;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul, ol {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

.container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: 20px;
}

.text-center { text-align: center; }
.text-gold { color: var(--c-gold-400) !important; }
.text-whatsapp { color: var(--c-whatsapp) !important; }
.text-white { color: var(--c-white) !important; }
.text-white-70 { color: rgba(255, 255, 255, 0.72) !important; }

/* ------------------------------------------------------------
   3. TOP ANNOUNCEMENT BAR
   ------------------------------------------------------------ */
.top-bar {
  background-color: var(--c-navy-950);
  color: rgba(255, 255, 255, 0.85);
  font-size: 12px;
  font-weight: 500;
  padding: 7px 0;
  border-bottom: 1px solid rgba(212, 175, 55, 0.12);
}

.top-bar__container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.top-bar__item {
  display: flex;
  align-items: center;
  gap: 7px;
}

.top-bar__item i {
  font-size: 12px;
}

@media (max-width: 768px) {
  .top-bar__item--contact { display: none; }
  .top-bar__container { justify-content: center; text-align: center; }
}

/* ------------------------------------------------------------
   4. HEADER & NAVBAR (Glassmorphism Clean)
   ------------------------------------------------------------ */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--c-border-subtle);
  box-shadow: var(--shadow-xs);
  transition: var(--transition);
}

.header.scrolled {
  box-shadow: var(--shadow-sm);
  background: rgba(255, 255, 255, 0.98);
}

.header__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
  gap: 20px;
}

/* Logo */
.header__logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

.header__logo-img {
  height: 54px;
  width: auto;
  max-width: 215px;
  object-fit: contain;
  transition: var(--transition);
}

.header__logo:hover .header__logo-img {
  transform: scale(1.02);
}

/* Nav Links Desktop */
.header__nav-list {
  display: flex;
  align-items: center;
  gap: 26px;
}

.header__nav-link {
  font-size: 14px;
  font-weight: 600;
  color: var(--c-navy-800);
  padding: 6px 0;
  position: relative;
  transition: var(--transition);
}

.header__nav-link:hover,
.header__nav-link.active {
  color: var(--c-gold-500);
}

.header__nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--c-gold-500);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.24s ease;
}

.header__nav-link:hover::after,
.header__nav-link.active::after {
  transform: scaleX(1);
  transform-origin: left;
}

/* Ações */
.header__actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Burger Mobile */
.header__burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: var(--c-bg-light);
  border: 1px solid var(--c-border);
  transition: var(--transition);
}

.header__burger:hover {
  background: var(--c-gold-50);
  border-color: var(--c-gold-300);
}

.header__burger .burger-bar {
  display: block;
  width: 20px;
  height: 2.2px;
  background-color: var(--c-navy-800);
  border-radius: 2px;
  transition: all 0.28s ease;
}

.header__burger.active {
  background: var(--c-navy-900);
  border-color: var(--c-navy-900);
}

.header__burger.active .burger-bar {
  background-color: var(--c-gold-400);
}

.header__burger.active .burger-bar:nth-child(1) { transform: translateY(7.2px) rotate(45deg); }
.header__burger.active .burger-bar:nth-child(2) { opacity: 0; }
.header__burger.active .burger-bar:nth-child(3) { transform: translateY(-7.2px) rotate(-45deg); }

/* Backdrop Mobile Drawer */
.mobile-drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(6, 14, 23, 0.55);
  backdrop-filter: blur(4px);
  z-index: 998;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.28s ease;
}

.mobile-drawer-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

/* Mobile Drawer */
.mobile-drawer {
  position: fixed;
  top: var(--header-height);
  left: 0;
  width: 100%;
  max-height: calc(100vh - var(--header-height));
  overflow-y: auto;
  background: var(--c-white);
  border-bottom: 2px solid var(--c-gold-500);
  box-shadow: var(--shadow-lg);
  z-index: 999;
  display: flex;
  flex-direction: column;
  transform: translateY(-110%);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.32s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.2s ease;
}

.mobile-drawer.open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.mobile-drawer__header {
  padding: 12px 18px 8px;
  background: var(--c-bg-light);
  border-bottom: 1px solid var(--c-border-subtle);
}

.mobile-drawer__title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--c-gold-500);
}

.mobile-drawer__list {
  display: flex;
  flex-direction: column;
}

.mobile-drawer__link {
  font-size: 15px;
  font-weight: 600;
  color: var(--c-navy-800);
  padding: 14px 18px;
  border-bottom: 1px solid var(--c-border-subtle);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: var(--transition);
}

.mobile-drawer__link span {
  display: flex;
  align-items: center;
  gap: 12px;
}

.mobile-drawer__link span i {
  color: var(--c-gold-500);
  font-size: 15px;
  width: 18px;
}

.mobile-drawer__arrow {
  font-size: 11px;
  color: var(--c-text-light);
}

.mobile-drawer__link:hover,
.mobile-drawer__link:active {
  background: var(--c-gold-50);
  color: var(--c-gold-500);
  padding-left: 22px;
}

.mobile-drawer__footer {
  padding: 20px 18px;
  background: var(--c-bg-light);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.mobile-drawer__phone-hint {
  font-size: 12px;
  color: var(--c-text-muted);
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

/* ------------------------------------------------------------
   5. BOTÕES (Design Clean & Alta Conversão)
   ------------------------------------------------------------ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-main);
  font-weight: 700;
  border-radius: var(--radius-pill);
  transition: var(--transition);
  cursor: pointer;
  text-align: center;
  border: none;
  white-space: nowrap;
}

.btn--whatsapp {
  background-color: var(--c-whatsapp);
  color: var(--c-white);
  padding: 11px 22px;
  font-size: 14px;
  box-shadow: var(--shadow-wa);
}

.btn--whatsapp:hover {
  background-color: var(--c-whatsapp-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
}

.btn--pulse {
  animation: waPulse 3s infinite;
}

@keyframes waPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4); }
  50% { box-shadow: 0 0 0 10px rgba(37, 211, 102, 0); }
}

.btn--cta-main {
  background: linear-gradient(135deg, var(--c-whatsapp) 0%, var(--c-whatsapp-dark) 100%);
  color: var(--c-white);
  padding: 16px 30px;
  font-size: 16.5px;
  box-shadow: var(--shadow-wa);
}

.btn--cta-main .btn__icon-wa {
  font-size: 20px;
}

.btn--cta-main .btn__arrow {
  font-size: 13px;
  transition: transform 0.24s ease;
}

.btn--cta-main:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.45);
}

.btn--cta-main:hover .btn__arrow {
  transform: translateX(4px);
}

.btn--md { padding: 11px 22px; font-size: 14px; }
.btn--lg { padding: 15px 28px; font-size: 15.5px; }
.btn--xl { padding: 17px 34px; font-size: 17px; }
.btn--block { width: 100%; }

/* ------------------------------------------------------------
   6. HERO SECTION (Clean & Sofisticada)
   ------------------------------------------------------------ */
.hero-clean {
  position: relative;
  background: linear-gradient(170deg, var(--c-navy-950) 0%, var(--c-navy-900) 60%, #152438 100%);
  color: var(--c-white);
  padding: 65px 0 80px;
}

.hero-clean__grid {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  gap: 45px;
  align-items: center;
}

/* Tag Pill */
.tag-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(212, 175, 55, 0.12);
  color: var(--c-gold-300);
  border: 1px solid rgba(212, 175, 55, 0.3);
  padding: 5px 14px;
  border-radius: var(--radius-pill);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.tag-pill__dot {
  width: 7px;
  height: 7px;
  background-color: var(--c-whatsapp);
  border-radius: 50%;
  box-shadow: 0 0 6px var(--c-whatsapp);
}

.hero-clean__title {
  font-size: clamp(26px, 3.4vw, 40px);
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 18px;
  letter-spacing: -0.4px;
}

.highlight-gold {
  color: var(--c-gold-400);
}

.hero-clean__description {
  font-size: 15.5px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.65;
  margin-bottom: 22px;
}

/* Bullets */
.hero-clean__bullets {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 30px;
}

.hero-clean__bullets li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14.5px;
  color: rgba(255, 255, 255, 0.92);
}

.bullet-check {
  width: 22px;
  height: 22px;
  background: rgba(212, 175, 55, 0.18);
  border: 1px solid var(--c-gold-400);
  color: var(--c-gold-400);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  flex-shrink: 0;
  margin-top: 2px;
}

.hero-clean__cta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}

.hero-clean__cta-sub {
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.65);
  display: flex;
  align-items: center;
  gap: 6px;
  margin-left: 4px;
}

/* Card de Confiança Lateral */
.hero-trust-card {
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-radius: var(--radius-xl);
  padding: 34px 28px;
  text-align: center;
  box-shadow: var(--shadow-lg);
}

.hero-trust-card__img-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  margin: 0 auto 18px;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid rgba(212, 175, 55, 0.35);
  box-shadow: 0 8px 24px rgba(0,0,0,0.35);
  background: var(--c-navy-950);
}

.hero-real-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.4s ease;
}

.hero-trust-card:hover .hero-real-photo {
  transform: scale(1.04);
}

.hero-photo-badge {
  position: absolute;
  bottom: 8px;
  left: 8px;
  background: rgba(13, 27, 42, 0.85);
  backdrop-filter: blur(6px);
  color: var(--c-gold-300);
  font-size: 10.5px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(212, 175, 55, 0.3);
  display: flex;
  align-items: center;
  gap: 5px;
}

.hero-trust-card__title {
  font-size: 19px;
  font-weight: 700;
  color: var(--c-white);
  margin-bottom: 8px;
}

.hero-trust-card__desc {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 20px;
  line-height: 1.5;
}

.hero-trust-card__stats {
  display: flex;
  align-items: center;
  justify-content: space-around;
  background: rgba(0, 0, 0, 0.25);
  border-radius: var(--radius-md);
  padding: 12px;
  margin-bottom: 18px;
}

.stat-box__num {
  display: block;
  font-size: 22px;
  font-weight: 800;
  color: var(--c-gold-400);
}

.stat-box__label {
  font-size: 11.5px;
  color: rgba(255, 255, 255, 0.7);
}

.stat-box__divider {
  width: 1px;
  height: 32px;
  background: rgba(255, 255, 255, 0.12);
}

.hero-trust-card__rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.rating-stars {
  color: #FFC107;
  font-size: 13px;
  display: flex;
  gap: 2px;
}

.rating-label {
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.85);
}

/* ------------------------------------------------------------
   7. HEADERS DE SEÇÃO & BADGES
   ------------------------------------------------------------ */
.section-header {
  max-width: 660px;
  margin: 0 auto 44px;
}

.section-badge {
  display: inline-block;
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 1.2px;
  color: var(--c-gold-500);
  background: var(--c-gold-50);
  border: 1px solid var(--c-gold-100);
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  margin-bottom: 10px;
}

.section-title {
  font-size: clamp(22px, 2.8vw, 32px);
  font-weight: 800;
  color: var(--c-navy-800);
  line-height: 1.3;
  letter-spacing: -0.4px;
  margin-bottom: 10px;
}

.section-subtitle {
  font-size: 15px;
  color: var(--c-text-muted);
}

/* ------------------------------------------------------------
   8. NOSSA MISSÃO & PILARES DE CONFIANÇA (Cards com Fotos Reais)
   ------------------------------------------------------------ */
.section-mission {
  padding: 80px 0;
  background: var(--c-white);
}

.mission-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.mission-card {
  background: var(--c-bg-light);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
  box-shadow: var(--shadow-xs);
}

.mission-card:hover {
  transform: translateY(-5px);
  border-color: var(--c-gold-400);
  box-shadow: var(--shadow-md);
  background: var(--c-white);
}

.mission-card__img-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--c-navy-950);
}

.mission-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.45s ease;
}

.mission-card:hover .mission-card__img {
  transform: scale(1.05);
}

.mission-card__badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: rgba(13, 27, 42, 0.88);
  backdrop-filter: blur(6px);
  color: var(--c-gold-300);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(212, 175, 55, 0.35);
  display: flex;
  align-items: center;
  gap: 5px;
}

.mission-card__body {
  padding: 22px 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.mission-card__title {
  font-size: 17px;
  font-weight: 800;
  color: var(--c-navy-800);
  margin-bottom: 8px;
  line-height: 1.35;
}

.mission-card__text {
  font-size: 13.8px;
  color: var(--c-text-muted);
  line-height: 1.6;
}

/* ------------------------------------------------------------
   9. SEÇÃO PRINCIPAL: O DPVAT ACABOU (Carrossel Mobile & Tabs Desktop)
   ------------------------------------------------------------ */
.section-tabs-showcase {
  padding: 80px 0;
  background: var(--c-bg-light);
}

.mobile-swipe-hint {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--c-navy-800);
  background: var(--c-white);
  border: 1px solid var(--c-border);
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  margin-bottom: 20px;
  box-shadow: var(--shadow-xs);
  text-align: center;
}

.insurance-tabs-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 36px;
}

.tab-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--c-white);
  color: var(--c-navy-800);
  border: 1.5px solid var(--c-border);
  padding: 13px 22px;
  border-radius: var(--radius-pill);
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: var(--shadow-xs);
}

.tab-btn i {
  font-size: 16px;
  color: var(--c-gold-500);
  transition: var(--transition);
}

.tab-btn:hover {
  border-color: var(--c-gold-400);
  color: var(--c-gold-500);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.tab-btn.active {
  background: var(--c-navy-900);
  color: var(--c-white);
  border-color: var(--c-navy-900);
  box-shadow: var(--shadow-md);
}

.tab-btn.active i {
  color: var(--c-gold-400);
}

/* Wrapper do Carrossel */
.insurance-carousel-wrapper {
  position: relative;
  max-width: 1080px;
  margin: 0 auto;
  overflow: hidden;
  touch-action: pan-y;
  -webkit-overflow-scrolling: touch;
}

.insurance-carousel-track {
  display: flex;
  transition: transform 0.35s cubic-bezier(0.25, 1, 0.5, 1);
  will-change: transform;
  transform: translate3d(0, 0, 0);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.insurance-card-slide {
  flex: 0 0 100%;
  width: 100%;
  opacity: 1;
}

.slide-inner {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 36px;
  align-items: center;
  background: var(--c-white);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: var(--shadow-md);
}

.slide-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.tab-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  margin-bottom: 14px;
}

.tab-badge--gold { background: #FFF8E6; color: #B38600; border: 1px solid rgba(212, 175, 55, 0.3); }
.tab-badge--green { background: #E8F8EE; color: #0E9F6E; border: 1px solid rgba(14, 159, 110, 0.25); }
.tab-badge--blue { background: #EBF3FF; color: #1A56DB; border: 1px solid rgba(26, 86, 219, 0.25); }
.tab-badge--purple { background: #F3E8FF; color: #7E3AF2; border: 1px solid rgba(126, 58, 242, 0.25); }

.slide-title {
  font-size: clamp(22px, 2.5vw, 28px);
  font-weight: 800;
  color: var(--c-navy-800);
  line-height: 1.3;
  margin-bottom: 14px;
}

.slide-desc {
  font-size: 15px;
  color: var(--c-text-muted);
  line-height: 1.65;
  margin-bottom: 22px;
}

.slide-checklist {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
  width: 100%;
}

.slide-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14.5px;
  color: var(--c-navy-800);
  font-weight: 500;
  line-height: 1.5;
  text-align: left;
}

.slide-checklist li i {
  font-size: 17px;
  flex-shrink: 0;
  margin-top: 3px;
}

.slide-checklist li span {
  flex: 1;
  text-align: left;
  display: block;
}

.slide-checklist li strong {
  font-weight: 700;
  color: var(--c-navy-900);
}

.slide-action {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.slide-guarantee {
  font-size: 12.5px;
  color: var(--c-text-muted);
  display: flex;
  align-items: center;
  gap: 6px;
}

/* Imagem Real da Aba */
.slide-visual {
  width: 100%;
}

.slide-img-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--c-border);
  box-shadow: var(--shadow-sm);
  background: var(--c-navy-950);
}

.slide-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.5s ease;
}

.slide-img-wrapper:hover .slide-photo {
  transform: scale(1.04);
}

.slide-img-badge {
  position: absolute;
  bottom: 14px;
  left: 14px;
  background: rgba(13, 27, 42, 0.9);
  backdrop-filter: blur(8px);
  color: var(--c-gold-300);
  font-size: 11.5px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(212, 175, 55, 0.35);
  display: flex;
  align-items: center;
  gap: 7px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.25);
}

/* Controles de Navegação no Carrossel */
.insurance-carousel-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 24px;
}

.carousel-step-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--c-white);
  color: var(--c-navy-800);
  border: 1.5px solid var(--c-border);
  padding: 10px 18px;
  border-radius: var(--radius-pill);
  font-size: 13.5px;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: var(--shadow-xs);
}

.carousel-step-btn:hover {
  background: var(--c-navy-900);
  color: var(--c-white);
  border-color: var(--c-navy-900);
}

.carousel-step-dots {
  display: flex;
  align-items: center;
  gap: 8px;
}

.step-dot {
  width: 10px;
  height: 10px;
  background: var(--c-border);
  border-radius: 50%;
  cursor: pointer;
  transition: var(--transition);
}

.step-dot.active {
  background: var(--c-gold-500);
  width: 24px;
  border-radius: var(--radius-pill);
}

/* ------------------------------------------------------------
   10. MODALIDADES DE ACIDENTES (Grid 3x2)
   ------------------------------------------------------------ */
.section-services {
  padding: 75px 0;
  background: var(--c-white);
}

.services-clean-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.serv-card {
  background: var(--c-bg-light);
  border: 1px solid var(--c-border-subtle);
  border-radius: var(--radius-md);
  padding: 26px 22px;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
}

.serv-card:hover {
  transform: translateY(-4px);
  background: var(--c-white);
  border-color: var(--c-gold-300);
  box-shadow: var(--shadow-sm);
}

.serv-card--featured {
  background: linear-gradient(145deg, #FFFCF2 0%, #FFFFFF 100%);
  border: 1.5px solid var(--c-gold-400);
}

.serv-card__icon {
  width: 46px;
  height: 46px;
  background: var(--c-white);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 19px;
  color: var(--c-navy-800);
  margin-bottom: 16px;
  transition: var(--transition);
}

.serv-card:hover .serv-card__icon {
  background: var(--c-navy-900);
  color: var(--c-gold-400);
  border-color: var(--c-navy-900);
}

.serv-card__title {
  font-size: 17px;
  font-weight: 700;
  color: var(--c-navy-800);
  margin-bottom: 8px;
}

.serv-card__desc {
  font-size: 13.5px;
  color: var(--c-text-muted);
  line-height: 1.5;
  margin-bottom: 16px;
  flex-grow: 1;
}

.serv-card__link {
  font-size: 13px;
  font-weight: 700;
  color: var(--c-navy-800);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
}

.serv-card__link i {
  font-size: 10px;
  color: var(--c-gold-500);
  transition: var(--transition);
}

.serv-card:hover .serv-card__link {
  color: var(--c-gold-500);
}

.serv-card:hover .serv-card__link i {
  transform: translateX(3px);
}

/* ------------------------------------------------------------
   11. COMO FUNCIONA (Timeline Clean)
   ------------------------------------------------------------ */
.section-how {
  padding: 75px 0;
  background: var(--c-navy-900);
}

.timeline-clean {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 40px;
}

.time-step {
  flex: 1;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: var(--radius-md);
  padding: 24px 16px;
  text-align: center;
  position: relative;
  transition: var(--transition);
}

.time-step:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: var(--c-gold-400);
  transform: translateY(-3px);
}

.time-step__badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 24px;
  height: 24px;
  background: var(--c-gold-400);
  color: var(--c-navy-950);
  font-size: 12px;
  font-weight: 800;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.time-step__icon {
  font-size: 24px;
  color: var(--c-gold-400);
  margin-top: 6px;
  margin-bottom: 12px;
}

.time-step__title {
  font-size: 15px;
  font-weight: 700;
  color: var(--c-white);
  margin-bottom: 6px;
}

.time-step__desc {
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.45;
}

.time-arrow {
  color: var(--c-gold-400);
  font-size: 18px;
  opacity: 0.5;
}

/* ------------------------------------------------------------
   12. DEPOIMENTOS (Carrossel Clean)
   ------------------------------------------------------------ */
.section-testimonials {
  padding: 75px 0;
  background: var(--c-white);
}

.carousel-clean {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  overflow: hidden;
}

.carousel-clean__track {
  display: flex;
  gap: 20px;
  transition: transform 0.35s ease-in-out;
}

.testi-card {
  flex: 0 0 calc(50% - 10px);
  background: var(--c-bg-light);
  border: 1px solid var(--c-border-subtle);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-xs);
  transition: var(--transition);
}

.testi-card:hover {
  border-color: var(--c-gold-300);
  box-shadow: var(--shadow-sm);
}

.testi-card__stars {
  color: #FFC107;
  font-size: 13px;
  margin-bottom: 14px;
  display: flex;
  gap: 3px;
}

.testi-card__quote {
  font-size: 14px;
  font-style: italic;
  color: var(--c-text-main);
  line-height: 1.6;
  margin-bottom: 18px;
  flex-grow: 1;
}

.testi-card__author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--c-border-subtle);
}

.testi-card__avatar-img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center;
  border: 2px solid var(--c-gold-400);
  box-shadow: 0 2px 8px rgba(0,0,0,0.12);
  flex-shrink: 0;
}

.testi-card__avatar {
  width: 44px;
  height: 44px;
  background: var(--c-navy-900);
  color: var(--c-gold-400);
  font-weight: 800;
  font-size: 15px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.testi-card__name {
  font-size: 14.5px;
  font-weight: 700;
  color: var(--c-navy-800);
}

.testi-card__tag {
  display: block;
  font-size: 12px;
  color: var(--c-gold-500);
  font-weight: 600;
}

.carousel-clean__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 26px;
}

.ctrl-btn {
  width: 38px;
  height: 38px;
  background: var(--c-white);
  border: 1px solid var(--c-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-navy-800);
  transition: var(--transition);
}

.ctrl-btn:hover {
  background: var(--c-navy-900);
  color: var(--c-white);
  border-color: var(--c-navy-900);
}

.ctrl-dots {
  display: flex;
  gap: 6px;
}

.carousel-dot {
  width: 8px;
  height: 8px;
  background: var(--c-border);
  border-radius: 50%;
  cursor: pointer;
  transition: var(--transition);
}

.carousel-dot.active {
  background: var(--c-gold-500);
  width: 20px;
  border-radius: var(--radius-pill);
}

/* ------------------------------------------------------------
   13. FAQ ACCORDION (Clean)
   ------------------------------------------------------------ */
.section-faq {
  padding: 75px 0;
  background: var(--c-bg-light);
}

.section-faq__container {
  max-width: 800px;
}

.faq-clean-accordion {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 30px;
}

.faq-clean-item {
  background: var(--c-white);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: var(--transition);
}

.faq-clean-item.active {
  border-color: var(--c-gold-400);
  box-shadow: var(--shadow-xs);
}

.faq-clean-header {
  width: 100%;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  text-align: left;
}

.faq-clean-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--c-navy-800);
  transition: var(--transition);
}

.faq-clean-item.active .faq-clean-title {
  color: var(--c-gold-500);
}

.faq-clean-icon {
  width: 24px;
  height: 24px;
  background: var(--c-bg-light);
  color: var(--c-navy-800);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  flex-shrink: 0;
  transition: var(--transition);
}

.faq-clean-item.active .faq-clean-icon {
  background: var(--c-gold-400);
  color: var(--c-navy-950);
  transform: rotate(45deg);
}

.faq-clean-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.28s ease-out;
}

.faq-clean-body p {
  padding: 0 20px 18px;
  font-size: 14px;
  color: var(--c-text-muted);
  line-height: 1.6;
}

.faq-cta-box {
  background: var(--c-white);
  border: 1px dashed var(--c-gold-300);
  border-radius: var(--radius-md);
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.faq-cta-box p {
  font-weight: 600;
  color: var(--c-navy-800);
  font-size: 14.5px;
}

/* ------------------------------------------------------------
   14. CONTATO & LOCALIZAÇÃO (Clean Card com Foto Real de Fachada)
   ------------------------------------------------------------ */
.section-location {
  padding: 75px 0;
  background: var(--c-navy-950);
  color: var(--c-white);
}

.location-clean-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--c-navy-900);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.loc-info-card {
  padding: 30px 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.loc-facade-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 20px;
  border: 1px solid rgba(212, 175, 55, 0.3);
  background: var(--c-navy-950);
}

.loc-facade-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.4s ease;
}

.loc-facade-wrap:hover .loc-facade-img {
  transform: scale(1.04);
}

.loc-facade-badge {
  position: absolute;
  bottom: 8px;
  left: 8px;
  background: rgba(13, 27, 42, 0.85);
  backdrop-filter: blur(6px);
  color: var(--c-gold-300);
  font-size: 10.5px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(212, 175, 55, 0.3);
  display: flex;
  align-items: center;
  gap: 5px;
}

.loc-logo-wrap {
  margin-bottom: 22px;
}

.loc-logo-img {
  max-width: 200px;
  height: auto;
}

.loc-details-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 26px;
}

.loc-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.loc-item i {
  font-size: 16px;
  margin-top: 3px;
}

.loc-item strong {
  display: block;
  font-size: 13.5px;
  color: var(--c-white);
  margin-bottom: 2px;
}

.loc-item p, .loc-item a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.72);
}

.loc-item a:hover {
  color: var(--c-gold-300);
}

.loc-map-card {
  min-height: 340px;
}

/* ------------------------------------------------------------
   15. FOOTER INSTITUCIONAL (Desktop e Mobile UX)
   ------------------------------------------------------------ */
.footer-main {
  background: #060D15;
  color: rgba(255, 255, 255, 0.7);
  padding: 55px 0 0;
  border-top: 1px solid rgba(212, 175, 55, 0.2);
  font-size: 13.5px;
}

.footer-main__container {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr 1.1fr;
  gap: 40px;
  padding-bottom: 45px;
}

.footer-main__brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}

.footer-main__logo-link {
  display: inline-block;
}

.footer-main__logo {
  height: 40px;
  width: auto;
}

.footer-main__tagline {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.6;
  max-width: 320px;
}

.footer-main__nav-title {
  display: block;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--c-gold-400);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 16px;
}

.footer-main__links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-main__links a {
  color: rgba(255, 255, 255, 0.75);
  font-size: 13.5px;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.footer-main__links a:hover {
  color: var(--c-gold-300);
  transform: translateX(4px);
}

.footer-main__contact {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.footer-contact-item i {
  font-size: 16px;
  margin-top: 3px;
  flex-shrink: 0;
}

.footer-contact-item div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.footer-contact-item span {
  font-size: 11.5px;
  color: rgba(255, 255, 255, 0.55);
}

.footer-contact-item strong, .footer-contact-item a {
  font-size: 13.5px;
  color: var(--c-white);
  font-weight: 700;
}

.footer-contact-item a:hover {
  color: var(--c-whatsapp);
}

/* Bottom Bar */
.footer-main__bottom {
  background: #02060A;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 22px 0 35px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
}

.footer-main__bottom-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
}

.footer-main__copy {
  color: rgba(255, 255, 255, 0.7);
  font-size: 12.5px;
}

.footer-main__disclaimer {
  font-size: 11px;
  line-height: 1.55;
  max-width: 860px;
  color: rgba(255, 255, 255, 0.45);
}

/* ------------------------------------------------------------
   16. BOTÃO FLUTUANTE WHATSAPP
   ------------------------------------------------------------ */
.float-wa-container {
  position: fixed;
  bottom: 22px;
  right: 22px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 6px;
}

.float-wa-badge {
  background: var(--c-navy-950);
  color: var(--c-white);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  box-shadow: 0 4px 12px rgba(0,0,0,0.25);
  display: flex;
  align-items: center;
  gap: 6px;
  border: 1px solid rgba(255,255,255,0.08);
  animation: floatTooltip 3s ease-in-out infinite;
}

.float-wa-badge__ping {
  width: 6px;
  height: 6px;
  background: var(--c-whatsapp);
  border-radius: 50%;
  box-shadow: 0 0 6px var(--c-whatsapp);
}

.float-wa-btn {
  width: 58px;
  height: 58px;
  background: linear-gradient(135deg, var(--c-whatsapp) 0%, var(--c-whatsapp-dark) 100%);
  color: var(--c-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  box-shadow: var(--shadow-wa);
  transition: var(--transition);
}

.float-wa-btn:hover {
  transform: scale(1.08);
  box-shadow: 0 10px 28px rgba(37, 211, 102, 0.5);
}

@keyframes floatTooltip {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}

/* ------------------------------------------------------------
   17. RESPONSIVIDADE & UI/UX MOBILE
   ------------------------------------------------------------ */
@media (max-width: 992px) {
  :root { 
    --header-height: 74px; 
  }
  
  /* Header Mobile */
  .header__container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-inline: 16px;
  }

  .header__logo {
    margin: 0 auto;
    display: flex;
    justify-content: center;
  }

  .header__logo-img {
    height: 48px;
    max-width: 200px;
    display: block;
    margin: 0 auto;
  }

  .header__nav { display: none; }
  .header__cta-desktop { display: none !important; }
  .header__burger { display: flex; }

  .header__actions {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
  }

  /* Hero */
  .hero-clean {
    padding: 42px 0 52px;
  }

  .hero-clean__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .hero-clean__visual {
    order: 2;
    max-width: 420px;
    margin: 0 auto;
    width: 100%;
  }

  /* Missão & Compromisso Mobile */
  .section-mission { padding: 50px 0; }
  .mission-cards-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .mission-card__img-wrap {
    width: 100%;
    aspect-ratio: 16 / 10;
    height: auto;
  }

  /* Abas / Carrossel no Mobile */
  .section-tabs-showcase { 
    padding: 45px 0; 
  }
  
  .insurance-tabs-nav {
    display: none; /* Oculta as abas no mobile para simplificar */
  }

  .mobile-swipe-hint {
    display: flex; /* Exibe o guia intuitivo de deslize */
  }

  .slide-inner {
    grid-template-columns: 1fr;
    padding: 22px 18px;
    gap: 20px;
    border-radius: var(--radius-lg);
  }

  .slide-visual {
    order: -1;
  }

  .slide-img-wrapper {
    width: 100%;
    aspect-ratio: 4 / 3;
    height: auto;
  }

  .slide-title {
    font-size: 20px;
    margin-bottom: 10px;
  }

  .slide-desc {
    font-size: 14px;
    margin-bottom: 16px;
    line-height: 1.55;
  }

  .slide-checklist {
    gap: 8px;
    margin-bottom: 20px;
  }

  .slide-checklist li {
    font-size: 13.5px;
  }

  .slide-action {
    flex-direction: column;
    width: 100%;
    gap: 10px;
  }

  .btn--block-mobile {
    width: 100%;
    padding: 15px 20px;
    font-size: 15px;
  }

  .insurance-carousel-controls {
    display: flex;
    justify-content: space-between;
    margin-top: 18px;
  }

  /* Serviços */
  .section-services { padding: 50px 0; }
  .services-clean-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  /* Como Funciona */
  .section-how { padding: 50px 0; }
  .timeline-clean {
    flex-direction: column;
    gap: 16px;
  }

  .time-step {
    width: 100%;
    max-width: 400px;
  }

  .time-arrow {
    transform: rotate(90deg);
    margin: -4px 0;
  }

  /* Depoimentos */
  .section-testimonials { padding: 50px 0; }
  .testi-card {
    flex: 0 0 100%;
  }

  /* FAQ */
  .section-faq { padding: 50px 0; }

  /* Localização */
  .section-location { padding: 50px 0; }
  .location-clean-grid {
    grid-template-columns: 1fr;
  }

  .loc-info-card {
    padding: 26px 20px;
  }

  .loc-map-card {
    height: 240px;
    min-height: 240px;
  }

  /* Rodapé Mobile */
  .footer-main {
    padding: 42px 0 0;
  }

  .footer-main__container {
    grid-template-columns: 1fr;
    gap: 32px;
    padding-bottom: 30px;
  }

  .footer-main__brand {
    align-items: flex-start;
  }

  .footer-main__tagline {
    max-width: 100%;
  }

  .footer-main__bottom {
    padding: 22px 0 95px; /* Espaço extra para o botão flutuante do WhatsApp não cobrir o texto */
  }

  .footer-main__bottom-container {
    text-align: left;
    align-items: flex-start;
  }
}

/* Telas Pequenas (<= 540px) */
@media (max-width: 540px) {
  :root { 
    --header-height: 70px; 
  }

  .container {
    padding-inline: 14px;
  }

  .header__container { 
    padding-inline: 12px; 
  }

  .header__actions { 
    right: 12px; 
  }

  .header__logo-img { 
    height: 44px; 
    max-width: 180px; 
  }

  .header__burger { 
    width: 40px; 
    height: 40px; 
  }

  .section-header {
    margin-bottom: 30px;
  }

  .section-title {
    font-size: 21px;
  }

  .section-subtitle {
    font-size: 14px;
  }

  .hero-clean__title { 
    font-size: 23px; 
  }

  .btn--cta-main { 
    width: 100%; 
    padding: 14px 20px;
    font-size: 15px;
  }

  .pillars-clean-grid {
    grid-template-columns: 1fr;
  }

  .float-wa-container { 
    bottom: 16px; 
    right: 16px; 
  }

  .float-wa-btn { 
    width: 52px; 
    height: 52px; 
    font-size: 26px; 
  }
}
