/* =============================================
   GRUPO COOPERCAR — REBRANDING 2026
   Design System & Global Styles
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Sora:wght@300;400;500;600;700;800&family=Inter:wght@300;400;500;600&display=swap');

/* ── CSS Variables ── */
:root {
  --color-brand-dark: #0a0f1e;
  --color-brand-navy: #0d1b3e;
  --color-brand-blue: #1a2f6b;
  --color-brand-accent: #4da6d9;
  --color-brand-gold: #6ec1e8;
  --color-brand-light: #d2eaf6;
  --color-white: #ffffff;
  --color-off-white: #f8f7f4;
  --color-gray-100: #f2f1ee;
  --color-gray-200: #e5e3dc;
  --color-gray-400: #9a9690;
  --color-gray-600: #6b6760;
  --color-gray-800: #2e2c28;
  --color-text: #1a1916;
  --color-text-muted: #5a5850;

  --font-heading: 'Sora', sans-serif;
  --font-body: 'Inter', sans-serif;

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;

  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 8px 32px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.18);
  --shadow-xl: 0 32px 80px rgba(0, 0, 0, 0.24);

  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);

  --container: 1200px;
  --section-py: 100px;
}

/* ── Reset & Base ── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

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

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

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

ul {
  list-style: none;
}

/* ── Utility Classes ── */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: var(--section-py) 0;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-brand-accent);
  margin-bottom: 16px;
}

.section-label::before {
  content: '';
  display: block;
  width: 28px;
  height: 2px;
  background: var(--color-brand-accent);
  border-radius: 2px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 800;
  line-height: 1.15;
  color: var(--color-brand-navy);
  margin-bottom: 20px;
}

.section-title span {
  color: var(--color-brand-accent);
}

.section-subtitle {
  font-size: 17px;
  line-height: 1.7;
  color: var(--color-text-muted);
  max-width: 620px;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 16px 32px;
  border-radius: 50px;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

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

.btn:hover::after {
  opacity: 1;
}

.btn-primary {
  background: linear-gradient(135deg, var(--color-brand-accent) 0%, var(--color-brand-gold) 100%);
  color: var(--color-white);
  box-shadow: 0 6px 24px rgba(77, 166, 217, 0.4);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(77, 166, 217, 0.55);
}

.btn-outline {
  background: transparent;
  color: var(--color-white);
  border: 2px solid rgba(255, 255, 255, 0.5);
}

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

.btn-outline-dark {
  background: transparent;
  color: var(--color-brand-navy);
  border: 2px solid var(--color-brand-navy);
}

.btn-outline-dark:hover {
  background: var(--color-brand-navy);
  color: var(--color-white);
  transform: translateY(-2px);
}

.btn-gold-outline {
  background: transparent;
  color: var(--color-brand-accent);
  border: 2px solid var(--color-brand-accent);
}

.btn-gold-outline:hover {
  background: var(--color-brand-accent);
  color: var(--color-brand-dark);
  transform: translateY(-2px);
}

.btn-sm {
  font-size: 13px;
  padding: 10px 22px;
}

/* ── Icons (SVG inline) ── */
.icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

/* =============================================
   HEADER / NAVBAR
   ============================================= */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: var(--transition);
  padding: 18px 0;
}

.navbar.scrolled {
  background: rgba(10, 15, 30, 0.96);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  padding: 12px 0;
  box-shadow: 0 4px 32px rgba(0, 0, 0, 0.4);
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.navbar-logo img {
  height: 52px;
  width: auto;
  transition: var(--transition);
}

.navbar-logo:hover img {
  opacity: 0.9;
}

.navbar-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-link {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.85);
  padding: 8px 16px;
  border-radius: 50px;
  transition: var(--transition);
}

.nav-link:hover {
  color: var(--color-white);
  background: rgba(255, 255, 255, 0.1);
}

.navbar-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-area-link {
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.6);
  padding: 8px 16px;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: var(--transition);
  text-transform: uppercase;
}

.nav-area-link:hover {
  color: var(--color-white);
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.08);
}

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

.hamburger-line {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-white);
  border-radius: 2px;
  transition: var(--transition);
}

.navbar-hamburger.active .hamburger-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.navbar-hamburger.active .hamburger-line:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.navbar-hamburger.active .hamburger-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(10, 15, 30, 0.98);
  backdrop-filter: blur(24px);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.mobile-menu.open {
  display: flex;
  opacity: 1;
  pointer-events: all;
}

.mobile-nav-link {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 700;
  color: var(--color-white);
  transition: var(--transition);
}

.mobile-nav-link:hover {
  color: var(--color-brand-gold);
}

.mobile-menu-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: none;
  border: none;
  color: white;
  font-size: 32px;
  cursor: pointer;
  line-height: 1;
}

/* =============================================
   HERO SECTION
   ============================================= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 0;
  overflow: hidden;
}

/* Container especial do hero — full-width, alinhado à esquerda */
.hero>.container {
  max-width: 100%;
  margin: 0;
  padding: 140px clamp(24px, 5vw, 80px) 80px;
  width: 100%;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('hero-bg.webp');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  transition: transform 0.1s ease-out;
}

/* Gradiente escuro na faixa esquerda — direita limpa para ver a família e o carro */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right,
      rgba(5, 10, 25, 0.92) 0%,
      rgba(5, 10, 25, 0.85) 25%,
      rgba(5, 10, 25, 0.50) 40%,
      rgba(5, 10, 25, 0.10) 55%,
      rgba(5, 10, 25, 0.00) 65%);
}

.hero-overlay-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 160px;
  background: linear-gradient(to top, rgba(5, 10, 25, 0.55), transparent);
}

/* Conteúdo ancorado à esquerda — 45% da viewport */
.hero-content {
  position: relative;
  z-index: 2;
  width: 45vw;
  max-width: 600px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(200, 168, 75, 0.15);
  border: 1px solid rgba(200, 168, 75, 0.4);
  backdrop-filter: blur(8px);
  border-radius: 50px;
  padding: 8px 18px;
  margin-bottom: 28px;
}

.hero-badge-dot {
  width: 7px;
  height: 7px;
  background: var(--color-brand-gold);
  border-radius: 50%;
  animation: pulse-dot 2s ease infinite;
}

@keyframes pulse-dot {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.6;
    transform: scale(1.3);
  }
}

.hero-badge span {
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-brand-gold);
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(28px, 3.2vw, 50px);
  font-weight: 800;
  line-height: 1.12;
  color: var(--color-white);
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.hero-title .highlight {
  background: linear-gradient(135deg, var(--color-brand-accent), var(--color-brand-gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: clamp(14px, 1.1vw, 16px);
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 32px;
  max-width: 480px;
}

.hero-ctas {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  gap: 32px;
  margin-top: 60px;
  flex-wrap: wrap;
}

.hero-stat {
  position: relative;
}

.hero-stat::after {
  content: '';
  position: absolute;
  right: -16px;
  top: 10%;
  height: 80%;
  width: 1px;
  background: rgba(255, 255, 255, 0.15);
}

.hero-stat:last-child::after {
  display: none;
}

.hero-stat-value {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 800;
  color: var(--color-brand-gold);
  line-height: 1;
  margin-bottom: 4px;
}

.hero-stat-label {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.05em;
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0.6;
  animation: bounce 2s ease infinite;
}

.scroll-indicator span {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
}

@keyframes bounce {

  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }

  50% {
    transform: translateX(-50%) translateY(6px);
  }
}

/* =============================================
   SECTION 2: PROVA DE SOLIDEZ (NÚMEROS)
   ============================================= */
.solidez-section {
  background: var(--color-brand-dark);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.solidez-section::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(200, 168, 75, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

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

.solidez-content .section-title {
  color: var(--color-white);
}

.solidez-content .section-subtitle {
  color: rgba(255, 255, 255, 0.65);
  margin-top: 16px;
}

.solidez-numbers {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.solidez-number-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 36px 28px;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}

.solidez-number-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-brand-accent), var(--color-brand-gold));
  opacity: 0;
  transition: var(--transition);
}

.solidez-number-card:hover {
  background: rgba(255, 255, 255, 0.07);
  transform: translateY(-2px);
}

.solidez-number-card:hover::before {
  opacity: 1;
}

.sn-icon {
  width: 36px;
  height: 36px;
  background: rgba(200, 168, 75, 0.12);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--color-brand-gold);
  font-size: 18px;
}

.sn-value {
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 800;
  color: var(--color-brand-gold);
  line-height: 1;
  margin-bottom: 8px;
}

.sn-label {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.4;
}

/* =============================================
   SECTION 3: COMO FUNCIONA (BENEFÍCIOS)
   ============================================= */
.beneficios-section {
  background: var(--color-off-white);
  padding: 100px 0;
  overflow: hidden;
  position: relative;
}

.beneficios-container-layout {
  max-width: 1300px;
}

.beneficios-header-v2 {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 60px;
}

.beneficios-header-v2 .section-label {
  justify-content: center;
}

.beneficios-header-v2 .section-subtitle {
  margin: 0 auto;
  text-align: center;
}

/* Infográfico Interativo (Desktop) */
.beneficios-infografico-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 56px;
  width: 100%;
  position: relative;
}

.infografico-col-left,
.infografico-col-right {
  width: 32%;
  display: flex;
  flex-direction: column;
  gap: 22px;
  position: relative;
  z-index: 5;
}

.infografico-car-center {
  width: 36%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 2;
}

.car-wrapper {
  position: relative;
  width: 100%;
  max-width: 440px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.infografico-car-img {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 20px 40px rgba(10, 15, 30, 0.18));
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  z-index: 2;
}

.beneficios-infografico-wrapper:hover .infografico-car-img {
  transform: scale(1.04) translateY(-3px);
}

.car-glow-effect {
  position: absolute;
  top: 55%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120%;
  height: 120%;
  background: radial-gradient(circle, rgba(77, 166, 217, 0.14) 0%, transparent 68%);
  z-index: 1;
  pointer-events: none;
}

/* Balloon Cards */
.beneficio-balloon-card {
  background: var(--color-white);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  box-shadow: 0 4px 18px rgba(10, 15, 30, 0.03);
  border: 1px solid rgba(13, 27, 62, 0.05);
  position: relative;
  transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.beneficio-balloon-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(10, 15, 30, 0.07);
  border-color: rgba(77, 166, 217, 0.3);
}

/* Linhas Conectoras - Esquerda (apontando para a direita) */
.infografico-col-left .beneficio-balloon-card::after {
  content: '';
  position: absolute;
  top: 50%;
  right: -24px;
  width: 24px;
  height: 1px;
  border-top: 1px dashed rgba(77, 166, 217, 0.4);
  transform: translateY(-50%);
  transition: border-color 0.3s ease;
}

.infografico-col-left .beneficio-balloon-card::before {
  content: '';
  position: absolute;
  top: 50%;
  right: -28px;
  width: 5px;
  height: 5px;
  background: var(--color-brand-accent);
  border-radius: 50%;
  transform: translateY(-50%);
  transition: background-color 0.3s ease;
}

/* Linhas Conectoras - Direita (apontando para a esquerda) */
.infografico-col-right .beneficio-balloon-card::after {
  content: '';
  position: absolute;
  top: 50%;
  left: -24px;
  width: 24px;
  height: 1px;
  border-top: 1px dashed rgba(77, 166, 217, 0.4);
  transform: translateY(-50%);
  transition: border-color 0.3s ease;
}

.infografico-col-right .beneficio-balloon-card::before {
  content: '';
  position: absolute;
  top: 50%;
  left: -28px;
  width: 5px;
  height: 5px;
  background: var(--color-brand-accent);
  border-radius: 50%;
  transform: translateY(-50%);
  transition: background-color 0.3s ease;
}

.beneficio-balloon-card:hover::after {
  border-color: var(--color-brand-accent);
}

.beneficio-balloon-card:hover::before {
  background-color: var(--color-brand-gold);
}

.bbc-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}

.bbc-icon-badge {
  width: 30px;
  height: 30px;
  background: rgba(77, 166, 217, 0.08);
  color: var(--color-brand-accent);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.beneficio-balloon-card:hover .bbc-icon-badge {
  background: var(--color-brand-accent);
  color: var(--color-white);
}

.bbc-title {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  color: var(--color-brand-navy);
}

.bbc-desc {
  font-size: 12.5px;
  color: var(--color-text-muted);
  line-height: 1.5;
}

.bbc-desc strong {
  color: var(--color-brand-navy);
}

.beneficios-cta {
  text-align: center;
  margin-top: 40px;
}

 /* =============================================
    SECTION 4: NICHO — POLICIAIS E TAXISTAS
   ============================================= */
.nicho-section {
  background: linear-gradient(135deg, var(--color-brand-navy) 0%, var(--color-brand-blue) 100%);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.nicho-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(200, 168, 75, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(200, 168, 75, 0.05) 0%, transparent 40%);
}

.nicho-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
}

.nicho-content .section-title {
  color: var(--color-white);
}

.nicho-content .section-subtitle {
  color: rgba(255, 255, 255, 0.7);
  margin-top: 16px;
}

.nicho-tags {
  display: flex;
  gap: 12px;
  margin-top: 32px;
  flex-wrap: wrap;
}

.nicho-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50px;
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 600;
  color: var(--color-white);
}

.nicho-tag-icon {
  font-size: 16px;
}

.nicho-visual {
  position: relative;
}

.nicho-card-visual {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-xl);
  padding: 40px;
}

.nicho-card-visual h4 {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 8px;
}

.nicho-card-visual p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 28px;
}

.nicho-benefit-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}

.nicho-benefit-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
}

.nicho-benefit-check {
  width: 22px;
  height: 22px;
  background: rgba(200, 168, 75, 0.15);
  border: 1px solid rgba(200, 168, 75, 0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-brand-gold);
  font-size: 11px;
  flex-shrink: 0;
}

/* =============================================
   SECTION 5: PROVIMED
   ============================================= */
.provimed-section {
  background: var(--color-white);
  padding: 100px 0;
}

.provimed-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.provimed-visual {
  position: relative;
}

.provimed-card {
  background: linear-gradient(135deg, #f0faf6 0%, #e8f5ee 100%);
  border: 1px solid #c5e8d5;
  border-radius: var(--radius-xl);
  padding: 48px;
  position: relative;
  overflow: hidden;
}

.provimed-card::before {
  content: '';
  position: absolute;
  top: -40px;
  right: -40px;
  width: 160px;
  height: 160px;
  background: radial-gradient(circle, rgba(34, 197, 94, 0.12) 0%, transparent 70%);
}

.provimed-logo-area {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 32px;
}

.provimed-icon-big {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #16a34a, #15803d);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: white;
  box-shadow: 0 8px 24px rgba(22, 163, 74, 0.3);
}

.provimed-logo-text h3 {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 800;
  color: #15803d;
}

.provimed-logo-text span {
  font-size: 12px;
  color: #4ade80;
  font-weight: 500;
}

.provimed-price-highlight {
  background: white;
  border: 1px solid #bbf7d0;
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  margin-top: 24px;
}

.provimed-price-highlight p {
  font-size: 13px;
  color: #16a34a;
  font-weight: 500;
  margin-bottom: 4px;
}

.provimed-price-value {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 800;
  color: #15803d;
  line-height: 1;
}

.provimed-price-cross {
  font-size: 14px;
  color: #9ca3af;
  margin-top: 8px;
}

.provimed-price-cross s {
  color: #d1d5db;
}

.provimed-content .section-subtitle {
  margin-top: 16px;
  margin-bottom: 32px;
}

.provimed-vantagens {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 36px;
}

.pv-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.pv-num {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, #16a34a, #15803d);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(22, 163, 74, 0.25);
}

.pv-text h5 {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 700;
  color: var(--color-brand-navy);
  margin-bottom: 4px;
}

.pv-text p {
  font-size: 14px;
  color: var(--color-text-muted);
  line-height: 1.5;
}

/* =============================================
   SECTION 6: HBS
   ============================================= */
.hbs-section {
  background: var(--color-brand-dark);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.hbs-bg-pattern {
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(45deg,
      transparent,
      transparent 40px,
      rgba(200, 168, 75, 0.02) 40px,
      rgba(200, 168, 75, 0.02) 41px);
}

.hbs-inner {
  position: relative;
  text-align: center;
}

.hbs-logo-area {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin-bottom: 40px;
}

.hbs-monogram {
  font-family: var(--font-heading);
  font-size: 80px;
  font-weight: 800;
  letter-spacing: -0.04em;
  background: linear-gradient(135deg, var(--color-brand-accent) 0%, var(--color-brand-gold) 50%, var(--color-brand-accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.hbs-tagline-sub {
  font-family: var(--font-heading);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: rgba(200, 168, 75, 0.5);
}

.hbs-title {
  font-family: var(--font-heading);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  color: var(--color-white);
  max-width: 580px;
  margin: 0 auto 20px;
  line-height: 1.2;
}

.hbs-subtitle {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.55);
  max-width: 480px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

/* =============================================
   SECTION 7: DEPOIMENTOS
   ============================================= */
.depoimentos-section {
  background: var(--color-gray-100);
  padding: 100px 0;
}

.depoimentos-header {
  text-align: center;
  margin-bottom: 60px;
}

.depoimentos-header .section-label {
  justify-content: center;
}

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

.depoimento-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-gray-200);
  transition: var(--transition);
  position: relative;
}

.depoimento-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.depoimento-quote {
  font-size: 48px;
  color: var(--color-brand-accent);
  font-family: Georgia, serif;
  line-height: 0.8;
  margin-bottom: 16px;
  opacity: 0.5;
}

.depoimento-text {
  font-size: 15px;
  line-height: 1.7;
  color: var(--color-text-muted);
  margin-bottom: 28px;
  font-style: italic;
}

.depoimento-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 20px;
}

.star {
  color: var(--color-brand-gold);
  font-size: 14px;
}

.depoimento-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.author-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-brand-blue), var(--color-brand-accent));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  color: white;
  flex-shrink: 0;
}

.author-info h5 {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  color: var(--color-brand-navy);
}

.author-info span {
  font-size: 12px;
  color: var(--color-gray-400);
}

/* =============================================
   SECTION 8: SIMULAÇÃO
   ============================================= */
.simulacao-section {
  background: var(--color-off-white);
  padding: 100px 0;
}

.simulacao-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.simulacao-content .section-subtitle {
  margin-top: 16px;
  margin-bottom: 40px;
}

.simulacao-features {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.sf-item {
  display: flex;
  align-items: center;
  gap: 16px;
}

.sf-icon {
  width: 46px;
  height: 46px;
  color: #168bc8;
  background: linear-gradient(145deg, #f1faff 0%, #dff3ff 100%);
  border: 1px solid rgba(73, 174, 226, 0.28);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow:
    0 8px 20px rgba(36, 145, 202, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  transition: transform 0.25s ease, box-shadow 0.25s ease, color 0.25s ease;
}

.sf-icon svg {
  width: 21px;
  height: 21px;
}

.sf-item:hover .sf-icon {
  color: var(--color-brand-navy);
  transform: translateY(-2px);
  box-shadow:
    0 11px 24px rgba(36, 145, 202, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

.sf-text h5 {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  color: var(--color-brand-navy);
  margin-bottom: 2px;
}

.sf-text p {
  font-size: 13px;
  color: var(--color-text-muted);
}

/* Form */
.simulacao-form-wrapper {
  background: var(--color-white);
  border-radius: var(--radius-xl);
  padding: 48px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--color-gray-200);
  position: sticky;
  top: 100px;
}

.form-title {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 800;
  color: var(--color-brand-navy);
  margin-bottom: 8px;
}

.form-subtitle {
  font-size: 14px;
  color: var(--color-text-muted);
  margin-bottom: 32px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group.full {
  grid-column: 1 / -1;
}

.form-label {
  display: block;
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-brand-navy);
  margin-bottom: 8px;
}

.form-input,
.form-select {
  width: 100%;
  padding: 14px 18px;
  border: 1.5px solid var(--color-gray-200);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--color-text);
  background: var(--color-off-white);
  transition: var(--transition);
  outline: none;
  appearance: none;
  -webkit-appearance: none;
}

.form-input:focus,
.form-select:focus {
  border-color: var(--color-brand-accent);
  background: var(--color-white);
  box-shadow: 0 0 0 4px rgba(200, 168, 75, 0.1);
}

.form-input::placeholder {
  color: var(--color-gray-400);
}

.form-select-wrapper {
  position: relative;
}

.form-select-wrapper::after {
  content: '▾';
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--color-gray-400);
  pointer-events: none;
  font-size: 12px;
}

.form-submit {
  width: 100%;
  padding: 18px;
  font-size: 15px;
  margin-top: 8px;
}

.form-privacy {
  text-align: center;
  margin-top: 16px;
  font-size: 11px;
  color: var(--color-gray-400);
  line-height: 1.5;
}

/* =============================================
   SECTION 9: CONTATO
   ============================================= */
.contato-section {
  background: var(--color-brand-dark);
  padding: 80px 0;
}

.contato-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 40px;
}

.contato-brand h3 {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 800;
  color: var(--color-white);
  margin-bottom: 12px;
}

.contato-brand p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.7;
  max-width: 300px;
  margin-bottom: 24px;
}

.social-links {
  display: flex;
  gap: 12px;
}

.social-link {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 16px;
  transition: var(--transition);
}

.social-link:hover {
  background: var(--color-brand-accent);
  border-color: var(--color-brand-accent);
  color: var(--color-brand-dark);
  transform: translateY(-2px);
}

.contato-col h4 {
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-brand-gold);
  margin-bottom: 20px;
}

.contato-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contato-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.5;
}

.contato-item-icon {
  color: var(--color-brand-gold);
  font-size: 15px;
  flex-shrink: 0;
  margin-top: 2px;
}

.contato-item a {
  color: rgba(255, 255, 255, 0.55);
  transition: var(--transition);
}

.contato-item a:hover {
  color: var(--color-brand-gold);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-copy {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.3);
}

.footer-links {
  display: flex;
  gap: 24px;
}

.footer-links a {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.3);
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--color-brand-gold);
}

/* =============================================
   FLOATING WHATSAPP BUTTON
   ============================================= */
.whatsapp-float {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 900;
}

.whatsapp-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: white;
  border: none;
  border-radius: 50px;
  padding: 16px 22px;
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 8px 32px rgba(37, 211, 102, 0.5);
  transition: var(--transition);
  text-decoration: none;
}

.whatsapp-btn:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 16px 48px rgba(37, 211, 102, 0.6);
}

.whatsapp-btn svg {
  width: 22px;
  height: 22px;
}

/* =============================================
   ANIMATIONS
   ============================================= */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s cubic-bezier(0.22, 0.61, 0.36, 1),
              transform 0.6s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* element scrolled out through the top of the viewport exits upward */
.fade-up--above:not(.visible) {
  transform: translateY(-24px);
}

/* stagger only on the way in; exits leave together for a snappy feel */
.fade-up-delay-1.visible { transition-delay: 0.08s; }
.fade-up-delay-2.visible { transition-delay: 0.16s; }
.fade-up-delay-3.visible { transition-delay: 0.24s; }
.fade-up-delay-4.visible { transition-delay: 0.32s; }

@media (prefers-reduced-motion: reduce) {
  .fade-up {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

/* Counter animation */
.count-up {
  display: inline-block;
}

/* =============================================
   RESPONSIVE — TABLET (max 1024px)
   ============================================= */
@media (max-width: 1024px) {
  :root {
    --section-py: 72px;
  }

  .solidez-grid,
  .nicho-inner,
  .provimed-inner,
  .simulacao-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .beneficios-split-container {
    flex-direction: column;
    gap: 40px;
  }

  .beneficios-visual-side {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
  }

  .beneficios-grid-side {
    width: 100%;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .depoimentos-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contato-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .contato-brand {
    grid-column: 1 / -1;
  }

  .solidez-numbers {
    grid-template-columns: repeat(2, 1fr);
  }

  .navbar-nav {
    display: none;
  }

  .navbar-hamburger {
    display: flex;
  }

  .hero-stats {
    gap: 24px;
  }

  /* tablet: conteúdo na esquerda com largura generosa */
  .hero-content {
    width: 55vw;
    max-width: 520px;
  }
}

/* =============================================
   RESPONSIVE — MOBILE (max 768px)
   ============================================= */
@media (max-width: 768px) {
  :root {
    --section-py: 60px;
  }

  .hero {
    align-items: flex-start;
    padding: 130px 0 60px;
    min-height: 100svh;
  }

  /* mobile: conteúdo full-width, padding do container cuida das margens */
  .hero-content {
    width: 100%;
    max-width: none;
  }

  .hero>.container {
    padding-top: 120px;
    padding-bottom: 60px;
  }

  .hero-bg {
    background-position: 65% center;
  }

  .hero-overlay {
    background: linear-gradient(to bottom,
        rgba(5, 10, 25, 0.88) 0%,
        rgba(5, 10, 25, 0.75) 55%,
        rgba(5, 10, 25, 0.55) 100%);
  }

  .hero-title {
    font-size: clamp(28px, 7.5vw, 40px);
  }

  .hero-ctas {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-ctas .btn {
    width: 100%;
    justify-content: center;
  }

  .hero-stats {
    gap: 20px;
    margin-top: 40px;
  }

  .hero-stat::after {
    display: none;
  }

  .beneficios-grid-side {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .beneficios-visual-side {
    max-width: 100%;
  }

  .solidez-numbers {
    grid-template-columns: 1fr 1fr;
  }

  .depoimentos-grid {
    grid-template-columns: 1fr;
  }

  .contato-grid {
    grid-template-columns: 1fr;
  }

  .simulacao-form-wrapper {
    padding: 28px 20px;
    position: static;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .hbs-monogram {
    font-size: 60px;
  }

  .navbar-actions .btn {
    display: none;
  }

  .nicho-visual {
    order: -1;
  }

  .whatsapp-btn span {
    display: none;
  }

  .whatsapp-float {
    bottom: 24px;
    right: 24px;
  }

  .whatsapp-btn {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    padding: 0;
    justify-content: center;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

/* =============================================
   RESPONSIVE — SMALL MOBILE (max 480px)
   ============================================= */
@media (max-width: 480px) {
  .solidez-numbers {
    grid-template-columns: 1fr;
  }

  .hero-stats {
    flex-direction: column;
    gap: 16px;
  }

  .nicho-tags {
    flex-direction: column;
  }

  .navbar-logo img {
    height: 40px;
  }

  .provimed-card {
    padding: 28px 24px;
  }
}
/* =============================================
   COOPERCAR BENEFICIOS BACKGROUND 2026
   ============================================= */
.beneficios-section {
  background-color: #f4f8fb;
  background-image:
    linear-gradient(180deg, rgba(247, 250, 252, 0.98) 0%, rgba(247, 250, 252, 0.82) 22%, rgba(247, 250, 252, 0.18) 48%, rgba(247, 250, 252, 0.82) 82%, rgba(247, 250, 252, 0.98) 100%),
    linear-gradient(90deg, rgba(247, 250, 252, 0.96) 0%, rgba(247, 250, 252, 0.45) 30%, rgba(247, 250, 252, 0.06) 50%, rgba(247, 250, 252, 0.45) 70%, rgba(247, 250, 252, 0.96) 100%),
    url('cotacao-bg.webp');
  background-position: center, center, center 54%;
  background-size: cover, cover, min(100%, 1680px) auto;
  background-repeat: no-repeat;
  padding: 96px 0 88px;
}

.beneficios-section::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 50% 58%, rgba(255, 255, 255, 0) 0 25%, rgba(244, 248, 251, 0.36) 52%, rgba(244, 248, 251, 0.7) 100%),
    linear-gradient(180deg, transparent 65%, rgba(244, 248, 251, 0.82) 100%);
}

.beneficios-container-layout {
  position: relative;
  z-index: 1;
}

.beneficios-header-v2 {
  margin: 0 auto 52px;
  padding: 28px 34px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.86);
  border-radius: 24px;
  box-shadow: 0 20px 60px rgba(13, 27, 62, 0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.beneficios-infografico-wrapper {
  gap: 20px;
  margin-bottom: 44px;
}

.infografico-col-left,
.infografico-col-right {
  width: 31%;
}

.infografico-car-center {
  width: 38%;
  min-height: 610px;
}

.car-focus-ring {
  position: absolute;
  top: 48%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 92%;
  aspect-ratio: 1;
  border-radius: 50%;
  border: 1px solid rgba(77, 166, 217, 0.2);
  box-shadow: 0 0 0 12px rgba(255, 255, 255, 0.08), inset 0 0 80px rgba(77, 166, 217, 0.08);
  pointer-events: none;
}

.beneficio-balloon-card {
  background: rgba(255, 255, 255, 0.88);
  border-radius: 16px;
  padding: 17px 20px;
  box-shadow: 0 12px 36px rgba(13, 27, 62, 0.1);
  border-color: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.beneficio-balloon-card:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 18px 44px rgba(10, 15, 30, 0.15);
}

@media (max-width: 1024px) {
  .beneficios-section {
    background-position: center, center, center 42%;
    background-size: cover, cover, auto 760px;
  }

  .beneficios-infografico-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: start;
    gap: 22px;
  }

  .infografico-car-center {
    grid-column: 1 / -1;
    grid-row: 1;
    width: 100%;
    min-height: 390px;
  }

  .infografico-col-left,
  .infografico-col-right {
    width: 100%;
    grid-row: 2;
  }

  .car-focus-ring {
    width: min(420px, 55vw);
  }

  .infografico-col-left .beneficio-balloon-card::after,
  .infografico-col-left .beneficio-balloon-card::before,
  .infografico-col-right .beneficio-balloon-card::after,
  .infografico-col-right .beneficio-balloon-card::before {
    display: none;
  }
}

@media (max-width: 768px) {
  .beneficios-section {
    padding: 64px 0;
    background-position: center, center, center 245px;
    background-size: cover, cover, auto 430px;
  }

  .beneficios-section::before {
    background: linear-gradient(180deg, rgba(244, 248, 251, 0.2) 0 430px, rgba(244, 248, 251, 0.95) 590px, #f4f8fb 100%);
  }

  .beneficios-header-v2 {
    margin-bottom: 20px;
    padding: 24px 20px;
    border-radius: 20px;
  }

  .beneficios-infografico-wrapper {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .infografico-car-center {
    width: 100%;
    min-height: 300px;
    order: -1;
  }

  .infografico-col-left,
  .infografico-col-right {
    width: 100%;
    gap: 16px;
  }

  .car-focus-ring {
    width: min(310px, 86vw);
  }

  .beneficio-balloon-card {
    background: rgba(255, 255, 255, 0.95);
  }
}

@media (max-width: 480px) {
  .beneficios-header-v2 {
    padding: 22px 16px;
  }

  .beneficios-section {
    background-size: cover, cover, auto 390px;
  }

  .infografico-car-center {
    min-height: 270px;
  }
}
/* =============================================
   SECOES 2 E 4 UNIFICADAS 2026
   ============================================= */
.solidez-profissionais {
  padding: 96px 0;
  background:
    radial-gradient(circle at 50% 42%, rgba(77, 166, 217, 0.2), transparent 36%),
    linear-gradient(135deg, #071326 0%, #0d2342 52%, #07172d 100%);
}

.solidez-profissionais::before {
  top: auto;
  right: auto;
  inset: 0;
  width: auto;
  height: auto;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(to bottom, transparent, black 24%, black 76%, transparent);
  opacity: 0.55;
}

.section-anchor {
  position: absolute;
  top: 0;
}

.unified-heading {
  position: relative;
  z-index: 2;
  max-width: 780px;
  margin: 0 auto 52px;
  text-align: center;
}

.unified-heading .section-label {
  justify-content: center;
}

.unified-heading .section-title {
  color: var(--color-white);
  font-size: clamp(32px, 4vw, 52px);
}

.unified-heading .section-title span,
.unified-offers h3 span {
  color: var(--color-brand-accent);
}

.unified-heading .section-subtitle {
  color: rgba(255, 255, 255, 0.68);
  margin: 16px auto 0;
}

.unified-showcase {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 0.95fr 1.08fr 1fr;
  gap: 28px;
  align-items: center;
}

.unified-results {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.unified-stat-card {
  min-height: 190px;
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 20px;
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.18);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.unified-stat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.26);
}

.unified-stat-icon {
  width: 40px;
  height: 40px;
  margin-bottom: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-brand-accent), #287bd0);
  color: white;
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 800;
  box-shadow: 0 8px 18px rgba(77, 166, 217, 0.3);
}

.unified-stat-card strong {
  font-family: var(--font-heading);
  color: var(--color-brand-navy);
  font-size: clamp(24px, 2.4vw, 34px);
  line-height: 1;
  letter-spacing: -0.04em;
}

.unified-stat-card > span:last-child {
  margin-top: 8px;
  color: var(--color-text-muted);
  font-size: 12px;
  line-height: 1.45;
}

.unified-portrait {
  position: relative;
  height: 560px;
  margin: 0;
  overflow: hidden;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.38);
  isolation: isolate;
}

.unified-portrait::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 48%, rgba(4, 11, 24, 0.92) 100%);
  pointer-events: none;
}

.unified-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% center;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.unified-portrait:hover img {
  transform: scale(1.035);
}

.unified-portrait figcaption {
  position: absolute;
  z-index: 2;
  left: 26px;
  right: 26px;
  bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  color: white;
}

.unified-portrait figcaption strong {
  font-family: var(--font-heading);
  font-size: 18px;
}

.unified-portrait figcaption span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
}

.unified-offers {
  padding: 16px 0 16px 8px;
}

.unified-offers-kicker {
  display: inline-flex;
  margin-bottom: 16px;
  color: var(--color-brand-gold);
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.unified-offers h3 {
  max-width: 430px;
  margin-bottom: 16px;
  color: white;
  font-family: var(--font-heading);
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.1;
  letter-spacing: -0.035em;
}

.unified-offers > p {
  margin-bottom: 26px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 14px;
  line-height: 1.7;
}

.professional-offer {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 12px;
  padding: 17px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.professional-offer-icon {
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  border-radius: 14px;
  background: rgba(77, 166, 217, 0.14);
  font-size: 22px;
}

.professional-offer div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.professional-offer strong {
  color: white;
  font-family: var(--font-heading);
  font-size: 14px;
}

.professional-offer div span {
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
  line-height: 1.45;
}

.unified-cta {
  width: 100%;
  margin-top: 18px;
  justify-content: center;
  text-align: center;
}

@media (max-width: 1100px) {
  .unified-showcase {
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
  }

  .unified-portrait {
    height: 500px;
  }

  .unified-offers {
    grid-column: 1 / -1;
    max-width: 720px;
    margin: 8px auto 0;
    padding: 24px;
    text-align: center;
  }

  .unified-offers h3 {
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 768px) {
  .solidez-profissionais {
    padding: 64px 0;
  }

  .unified-heading {
    margin-bottom: 32px;
  }

  .unified-showcase {
    display: flex;
    flex-direction: column;
    gap: 24px;
  }

  .unified-portrait {
    order: 1;
    width: 100%;
    height: min(118vw, 500px);
  }

  .unified-results {
    order: 2;
    width: 100%;
  }

  .unified-offers {
    order: 3;
    width: 100%;
    margin: 0;
    padding: 8px 0 0;
  }

  .unified-stat-card {
    min-height: 160px;
    padding: 20px 16px;
  }

  .unified-offers h3 {
    font-size: 30px;
  }
}

@media (max-width: 480px) {
  .unified-results {
    gap: 8px;
  }

  .unified-stat-card {
    min-height: 150px;
    padding: 17px 13px;
    border-radius: 16px;
  }

  .unified-stat-icon {
    width: 34px;
    height: 34px;
    margin-bottom: 18px;
  }

  .unified-stat-card strong {
    font-size: 22px;
  }

  .unified-stat-card > span:last-child {
    font-size: 11px;
  }

  .unified-portrait {
    border-radius: 22px;
  }
}
/* =============================================
   BACKGROUND FULL BLEED V2
   ============================================= */
.solidez-profissionais {
  min-height: 760px;
  padding: 88px 0;
  background-color: #071326;
  background-image:
    linear-gradient(90deg, rgba(4, 13, 28, 0.9) 0%, rgba(4, 13, 28, 0.52) 29%, rgba(4, 13, 28, 0.06) 47%, rgba(4, 13, 28, 0.18) 60%, rgba(4, 13, 28, 0.72) 77%, rgba(4, 13, 28, 0.94) 100%),
    linear-gradient(180deg, rgba(4, 13, 28, 0.12) 0%, rgba(4, 13, 28, 0.18) 62%, rgba(4, 13, 28, 0.72) 100%),
    url('coopercar-profissionais.webp');
  background-position: center, center, center;
  background-size: cover, cover, cover;
  background-repeat: no-repeat;
}

.solidez-profissionais::before {
  background: linear-gradient(180deg, rgba(4, 13, 28, 0.08), rgba(4, 13, 28, 0.2));
  opacity: 1;
  mask-image: none;
}

.solidez-profissionais .container {
  position: relative;
  z-index: 2;
}

.solidez-profissionais .unified-showcase {
  min-height: 584px;
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(250px, 0.85fr) minmax(360px, 1fr);
  gap: 24px;
  align-items: center;
}

.solidez-profissionais .unified-results {
  grid-column: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.solidez-profissionais .unified-stat-card {
  min-height: 184px;
  padding: 22px 19px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.24);
}

.solidez-profissionais .unified-stat-card strong {
  font-size: clamp(25px, 2.2vw, 33px);
}

.solidez-profissionais .unified-offers {
  grid-column: 3;
  max-width: 460px;
  margin: 0;
  padding: 34px 0 34px 12px;
  text-align: left;
}

.solidez-profissionais .unified-offers h2 {
  margin-bottom: 18px;
  color: white;
  font-family: var(--font-heading);
  font-size: clamp(34px, 3.5vw, 52px);
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -0.045em;
  text-wrap: balance;
}

.solidez-profissionais .unified-offers h2 span {
  color: var(--color-brand-accent);
}

.professional-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 26px 0 18px;
}

.professional-categories > span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 12px 15px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(5, 15, 31, 0.54);
  color: white;
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 700;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.professional-categories b {
  font-size: 17px;
  line-height: 1;
}

.professional-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 7px 16px;
  margin-bottom: 24px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
}

.professional-highlights span {
  position: relative;
  padding-left: 15px;
}

.professional-highlights span::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--color-brand-accent);
  font-weight: 800;
}

.solidez-profissionais .unified-cta {
  width: auto;
  min-width: 290px;
  margin-top: 0;
}

@media (max-width: 1160px) {
  .solidez-profissionais {
    background-position: center, center, 50% center;
  }

  .solidez-profissionais .unified-showcase {
    grid-template-columns: minmax(290px, 0.9fr) minmax(170px, 0.55fr) minmax(320px, 1fr);
    gap: 16px;
  }

  .solidez-profissionais .unified-stat-card {
    min-height: 170px;
    padding: 19px 16px;
  }

  .solidez-profissionais .unified-offers {
    grid-column: 3;
    padding-left: 0;
    text-align: left;
  }
}

@media (max-width: 900px) {
  .solidez-profissionais {
    min-height: auto;
    background-image:
      linear-gradient(180deg, rgba(4, 13, 28, 0.03) 0%, rgba(4, 13, 28, 0.22) 340px, rgba(4, 13, 28, 0.93) 600px, #071326 760px),
      url('coopercar-profissionais.webp');
    background-position: center top, 52% top;
    background-size: auto 760px, auto 650px;
  }

  .solidez-profissionais .unified-showcase {
    min-height: 0;
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding-top: 460px;
  }

  .solidez-profissionais .unified-results {
    order: 1;
    width: min(100%, 620px);
  }

  .solidez-profissionais .unified-offers {
    order: 2;
    width: min(100%, 620px);
    max-width: 620px;
    padding: 0;
    text-align: left;
  }

  .solidez-profissionais .unified-offers h2 {
    margin-left: 0;
    margin-right: 0;
  }
}

@media (max-width: 560px) {
  .solidez-profissionais {
    padding: 56px 0 64px;
    background-image:
      linear-gradient(180deg, rgba(4, 13, 28, 0.02) 0%, rgba(4, 13, 28, 0.22) 260px, rgba(4, 13, 28, 0.96) 475px, #071326 610px),
      url('coopercar-profissionais.webp');
    background-position: center top, 51% top;
    background-size: auto 620px, auto 470px;
  }

  .solidez-profissionais .unified-showcase {
    padding-top: 340px;
  }

  .solidez-profissionais .unified-stat-card {
    min-height: 152px;
    padding: 17px 13px;
  }

  .solidez-profissionais .unified-offers h2 {
    font-size: 32px;
  }

  .professional-categories {
    flex-direction: column;
    align-items: stretch;
  }

  .professional-categories > span {
    justify-content: center;
  }

  .solidez-profissionais .unified-cta {
    width: 100%;
    min-width: 0;
  }
}
/* =============================================
   BENEFICIOS PALCO FLUTUANTE V3
   ============================================= */
.beneficios-section {
  padding: 88px 0 76px;
  background: #ffffff;
}

.beneficios-section::before {
  background: radial-gradient(circle at 50% 52%, rgba(77, 166, 217, 0.06), transparent 36%);
}

.beneficios-header-v2 {
  margin-bottom: 32px;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.beneficios-infografico-wrapper {
  min-height: 650px;
  display: grid;
  grid-template-columns: 29% 42% 29%;
  align-items: stretch;
  gap: 0;
  margin-bottom: 34px;
  padding: 22px 0;
  background-image: url('cotacao-bg.webp');
  background-position: center;
  background-size: 100% auto;
  background-repeat: no-repeat;
  isolation: isolate;
}

.beneficios-infografico-wrapper::before {
  content: '';
  position: absolute;
  z-index: -1;
  inset: 10% 22%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(77, 166, 217, 0.1), transparent 70%);
  filter: blur(12px);
}

.infografico-col-left,
.infografico-col-right {
  width: auto;
  min-width: 0;
  height: 100%;
  padding: 12px 0;
  justify-content: space-between;
  gap: 20px;
}

.infografico-car-center {
  width: auto;
  min-height: 600px;
}

.car-focus-ring {
  display: none;
}

.beneficio-balloon-card {
  width: calc(100% - 54px);
  min-height: 108px;
  padding: 17px 18px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(13, 27, 62, 0.08);
  border-radius: 17px;
  box-shadow: 0 14px 36px rgba(13, 27, 62, 0.13);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  will-change: transform;
}

.infografico-col-left .beneficio-balloon-card:nth-child(odd) {
  margin-left: 48px;
}

.infografico-col-left .beneficio-balloon-card:nth-child(even) {
  margin-right: 48px;
}

.infografico-col-right .beneficio-balloon-card:nth-child(odd) {
  margin-right: 48px;
  align-self: flex-end;
}

.infografico-col-right .beneficio-balloon-card:nth-child(even) {
  margin-left: 48px;
  align-self: flex-end;
}

.infografico-col-left .beneficio-balloon-card::after,
.infografico-col-left .beneficio-balloon-card::before,
.infografico-col-right .beneficio-balloon-card::after,
.infografico-col-right .beneficio-balloon-card::before {
  display: none;
}

.beneficio-balloon-card.visible {
  animation: beneficioFloat 5.2s ease-in-out infinite;
}

.infografico-col-left .beneficio-balloon-card:nth-child(2),
.infografico-col-right .beneficio-balloon-card:nth-child(3) {
  animation-delay: -1.4s;
  animation-duration: 5.8s;
}

.infografico-col-left .beneficio-balloon-card:nth-child(3),
.infografico-col-right .beneficio-balloon-card:nth-child(2) {
  animation-delay: -2.8s;
  animation-duration: 6.2s;
}

.infografico-col-left .beneficio-balloon-card:nth-child(4),
.infografico-col-right .beneficio-balloon-card:nth-child(4) {
  animation-delay: -4s;
  animation-duration: 5.5s;
}

.beneficio-balloon-card:hover {
  animation-play-state: paused;
  transform: translateY(-6px) scale(1.015);
  background: white;
  box-shadow: 0 22px 48px rgba(13, 27, 62, 0.2);
}

.beneficio-balloon-card.visible .bbc-icon-badge {
  animation: beneficioIconPulse 3.2s ease-in-out infinite;
}

@keyframes beneficioFloat {
  0%, 100% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(0, -9px, 0);
  }
}

@keyframes beneficioIconPulse {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(77, 166, 217, 0);
  }
  50% {
    box-shadow: 0 0 0 6px rgba(77, 166, 217, 0.11);
  }
}

@media (max-width: 1024px) {
  .beneficios-infografico-wrapper {
    min-height: 570px;
    grid-template-columns: 30% 40% 30%;
    gap: 0;
    padding: 12px 0;
    background-size: auto 570px;
  }

  .infografico-car-center {
    grid-column: 2;
    grid-row: 1;
    min-height: 540px;
  }

  .infografico-col-left,
  .infografico-col-right {
    width: auto;
    grid-row: 1;
  }

  .infografico-col-left {
    grid-column: 1;
  }

  .infografico-col-right {
    grid-column: 3;
  }

  .beneficio-balloon-card {
    width: calc(100% - 24px);
    min-height: 102px;
    padding: 14px;
  }

  .infografico-col-left .beneficio-balloon-card:nth-child(n),
  .infografico-col-right .beneficio-balloon-card:nth-child(n) {
    margin-left: 12px;
    margin-right: 12px;
  }
}

@media (max-width: 820px) {
  .beneficios-infografico-wrapper {
    min-height: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: start;
    gap: 18px;
    padding-top: 350px;
    background-position: center top;
    background-size: auto 360px;
  }

  .infografico-car-center {
    display: none;
  }

  .infografico-col-left,
  .infografico-col-right {
    width: 100%;
    height: auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 0;
  }

  .infografico-col-left {
    grid-column: 1;
  }

  .infografico-col-right {
    grid-column: 2;
  }

  .beneficio-balloon-card,
  .infografico-col-left .beneficio-balloon-card:nth-child(n),
  .infografico-col-right .beneficio-balloon-card:nth-child(n) {
    width: 100%;
    min-height: 116px;
    margin: 0;
    align-self: stretch;
  }
}

@media (max-width: 560px) {
  .beneficios-section {
    padding: 62px 0;
  }

  .beneficios-header-v2 {
    margin-bottom: 20px;
  }

  .beneficios-infografico-wrapper {
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding-top: 286px;
    background-size: auto 300px;
  }

  .infografico-col-left,
  .infografico-col-right {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .beneficio-balloon-card,
  .infografico-col-left .beneficio-balloon-card:nth-child(n),
  .infografico-col-right .beneficio-balloon-card:nth-child(n) {
    min-height: 146px;
    padding: 14px 12px;
  }

  .bbc-header {
    align-items: flex-start;
  }

  .bbc-title {
    font-size: 13px;
  }

  .bbc-desc {
    font-size: 11.5px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .beneficio-balloon-card.visible,
  .beneficio-balloon-card.visible .bbc-icon-badge {
    animation: none;
  }
}
/* =============================================
   PROVIMED HEALTH HERO 2026
   ============================================= */
.provimed-health-hero {
  position: relative;
  min-height: 760px;
  padding: 82px 0;
  overflow: hidden;
  background-color: #eaf5f8;
  background-image:
    linear-gradient(90deg, rgba(234, 245, 248, 0.05) 0%, rgba(234, 245, 248, 0.05) 42%, rgba(234, 245, 248, 0.5) 64%, rgba(234, 245, 248, 0.9) 100%),
    url('provimed-saude-familia.webp');
  background-position: center, center;
  background-size: cover, cover;
  background-repeat: no-repeat;
}

.provimed-health-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(6, 38, 65, 0.08));
}

.provimed-health-hero .container {
  position: relative;
  z-index: 1;
}

.provimed-health-layout {
  min-height: 596px;
  display: grid;
  grid-template-columns: 52% 48%;
  align-items: center;
}

.provimed-health-spacer {
  min-height: 1px;
}

.provimed-health-content {
  padding: 42px 44px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 28px 70px rgba(14, 62, 83, 0.18);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.provimed-partner-badge {
  width: fit-content;
  margin-bottom: 24px;
  padding: 9px 13px 9px 9px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border: 1px solid rgba(28, 139, 151, 0.16);
  border-radius: 999px;
  background: rgba(232, 249, 248, 0.9);
  color: #176b73;
  font-size: 11px;
  letter-spacing: 0.02em;
}

.provimed-partner-badge strong {
  font-family: var(--font-heading);
  color: #0d5560;
}

.provimed-partner-icon {
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, #2aa6a8, #187c91);
  color: white;
  font-size: 15px;
  font-weight: 800;
}

.provimed-health-content .section-label {
  color: #19838e;
}

.provimed-health-content .section-title {
  margin-top: 6px;
  color: var(--color-brand-navy);
  font-size: clamp(32px, 3.5vw, 48px);
  line-height: 1.08;
  text-wrap: balance;
}

.provimed-health-content .section-title span {
  color: #1c929a;
}

.provimed-health-content > .section-subtitle {
  max-width: 600px;
  margin-top: 17px;
  margin-bottom: 28px;
  color: #536779;
  font-size: 14px;
  line-height: 1.75;
}

.provimed-health-benefits {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 30px;
}

.provimed-health-benefit {
  min-height: 118px;
  padding: 16px;
  display: flex;
  gap: 12px;
  border: 1px solid rgba(24, 124, 145, 0.11);
  border-radius: 16px;
  background: rgba(244, 251, 251, 0.84);
  transition: transform 0.3s ease, border-color 0.3s ease, background-color 0.3s ease;
}

.provimed-health-benefit:hover {
  transform: translateY(-3px);
  border-color: rgba(24, 124, 145, 0.28);
  background: white;
}

.provimed-health-benefit > span {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  border-radius: 11px;
  background: linear-gradient(135deg, #2aa6a8, #187c91);
  color: white;
  font-size: 17px;
  font-weight: 800;
  box-shadow: 0 8px 16px rgba(24, 124, 145, 0.2);
}

.provimed-health-benefit h3 {
  margin-bottom: 5px;
  color: var(--color-brand-navy);
  font-family: var(--font-heading);
  font-size: 13px;
}

.provimed-health-benefit p {
  color: #647687;
  font-size: 11.5px;
  line-height: 1.5;
}

.provimed-health-cta {
  background: linear-gradient(135deg, #1f969e, #166f83);
  box-shadow: 0 12px 28px rgba(24, 124, 145, 0.25);
}

.provimed-health-cta:hover {
  background: linear-gradient(135deg, #1a858d, #115f72);
  box-shadow: 0 16px 34px rgba(24, 124, 145, 0.32);
}

@media (max-width: 1024px) {
  .provimed-health-layout {
    grid-template-columns: 46% 54%;
  }

  .provimed-health-content {
    padding: 34px 30px;
  }
}

@media (max-width: 820px) {
  .provimed-health-hero {
    min-height: auto;
    padding: 54px 0 64px;
    background-image:
      linear-gradient(180deg, rgba(234, 245, 248, 0.02) 0%, rgba(234, 245, 248, 0.1) 300px, rgba(234, 245, 248, 0.92) 500px, #eaf5f8 650px),
      url('provimed-saude-familia.webp');
    background-position: center top, 29% top;
    background-size: auto 670px, auto 520px;
  }

  .provimed-health-layout {
    min-height: 0;
    display: block;
    padding-top: 390px;
  }

  .provimed-health-spacer {
    display: none;
  }

  .provimed-health-content {
    max-width: 680px;
    margin: 0 auto;
  }
}

@media (max-width: 560px) {
  .provimed-health-hero {
    padding-top: 40px;
    background-image:
      linear-gradient(180deg, rgba(234, 245, 248, 0.02) 0%, rgba(234, 245, 248, 0.15) 225px, rgba(234, 245, 248, 0.96) 380px, #eaf5f8 500px),
      url('provimed-saude-familia.webp');
    background-position: center top, 27% top;
    background-size: auto 500px, auto 390px;
  }

  .provimed-health-layout {
    padding-top: 285px;
  }

  .provimed-health-content {
    padding: 27px 20px;
    border-radius: 22px;
  }

  .provimed-health-benefits {
    grid-template-columns: 1fr;
  }

  .provimed-health-benefit {
    min-height: 0;
  }

  .provimed-health-cta {
    width: 100%;
    justify-content: center;
    text-align: center;
  }
}
/* =============================================
   HBS FASHION HERO 2026
   ============================================= */
.hbs-fashion-hero {
  position: relative;
  min-height: 760px;
  padding: 88px 0;
  overflow: hidden;
  background-color: #050b16;
  background-image:
    linear-gradient(90deg, rgba(3, 9, 20, 0.96) 0%, rgba(3, 9, 20, 0.9) 34%, rgba(3, 9, 20, 0.5) 58%, rgba(3, 9, 20, 0.14) 82%, rgba(3, 9, 20, 0.22) 100%),
    linear-gradient(180deg, rgba(3, 9, 20, 0.05), rgba(3, 9, 20, 0.52)),
    url('hbs-editorial-premium.webp');
  background-position: center, center, right center;
  background-size: cover, cover, auto 100%;
  background-repeat: no-repeat;
}

.hbs-fashion-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 14% 35%, rgba(200, 168, 75, 0.1), transparent 32%),
    linear-gradient(180deg, transparent 72%, rgba(3, 9, 20, 0.72) 100%);
}

.hbs-fashion-hero .container {
  position: relative;
  z-index: 2;
}

.hbs-fashion-layout {
  min-height: 584px;
  display: grid;
  grid-template-columns: 56% 44%;
  align-items: center;
}

.hbs-fashion-content {
  max-width: 680px;
}

.hbs-brand-lockup {
  width: fit-content;
  margin-bottom: 34px;
  display: flex;
  align-items: center;
  gap: 18px;
}

.hbs-brand-lockup .hbs-monogram {
  font-size: 64px;
  line-height: 0.85;
  background: linear-gradient(135deg, #f1d78a, #b58a24);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hbs-brand-lockup .hbs-logo-img {
  display: block;
  height: 60px;
  width: auto;
}

.hbs-brand-lockup > div:last-child {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-left: 18px;
  border-left: 1px solid rgba(200, 168, 75, 0.32);
}

.hbs-brand-lockup span {
  color: rgba(255, 255, 255, 0.78);
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 700;
}

.hbs-brand-lockup small {
  color: rgba(200, 168, 75, 0.72);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hbs-fashion-eyebrow {
  display: block;
  margin-bottom: 15px;
  color: #d4b75f;
  font-family: var(--font-heading);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hbs-fashion-hero .hbs-title {
  max-width: 650px;
  margin: 0 0 22px;
  color: white;
  font-size: clamp(38px, 4.6vw, 66px);
  line-height: 1.02;
  letter-spacing: -0.045em;
  text-align: left;
  text-wrap: balance;
}

.hbs-fashion-hero .hbs-title span {
  color: #d4b75f;
}

.hbs-fashion-hero .hbs-subtitle {
  max-width: 590px;
  margin: 0 0 30px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 15px;
  line-height: 1.75;
  text-align: left;
}

.hbs-fashion-features {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 32px;
}

.hbs-fashion-features > div {
  padding: 12px 15px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border: 1px solid rgba(200, 168, 75, 0.2);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.055);
  color: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.hbs-fashion-features span {
  color: #d4b75f;
  font-size: 12px;
}

.hbs-fashion-features strong {
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 700;
}

.hbs-fashion-cta {
  padding: 17px 25px;
  border: 1px solid #d4b75f;
  background: linear-gradient(135deg, #d4b75f, #a77b1f);
  color: #07101f;
  box-shadow: 0 14px 34px rgba(200, 168, 75, 0.22);
}

.hbs-fashion-cta:hover {
  color: #07101f;
  transform: translateY(-3px);
  box-shadow: 0 20px 42px rgba(200, 168, 75, 0.3);
}

@media (max-width: 1024px) {
  .hbs-fashion-layout {
    grid-template-columns: 62% 38%;
  }

  .hbs-fashion-hero {
    background-position: center, center, right center;
  }
}

@media (max-width: 820px) {
  .hbs-fashion-hero {
    min-height: auto;
    padding: 48px 0 68px;
    background-image:
      linear-gradient(180deg, rgba(3, 9, 20, 0.02) 0%, rgba(3, 9, 20, 0.15) 310px, rgba(3, 9, 20, 0.94) 530px, #050b16 670px),
      url('hbs-editorial-premium.webp');
    background-position: center top, 68% top;
    background-size: auto 700px, auto 540px;
  }

  .hbs-fashion-layout {
    min-height: 0;
    display: block;
    padding-top: 420px;
  }

  .hbs-fashion-content {
    max-width: 680px;
  }

  .hbs-fashion-spacer {
    display: none;
  }
}

@media (max-width: 560px) {
  .hbs-fashion-hero {
    padding-top: 34px;
    background-image:
      linear-gradient(180deg, rgba(3, 9, 20, 0.02) 0%, rgba(3, 9, 20, 0.16) 245px, rgba(3, 9, 20, 0.96) 410px, #050b16 530px),
      url('hbs-editorial-premium.webp');
    background-position: center top, 68% top;
    background-size: auto 550px, auto 410px;
  }

  .hbs-fashion-layout {
    padding-top: 315px;
  }

  .hbs-brand-lockup {
    gap: 13px;
    margin-bottom: 26px;
  }

  .hbs-brand-lockup .hbs-monogram {
    font-size: 52px;
  }

  .hbs-brand-lockup .hbs-logo-img {
    height: 44px;
  }

  .hbs-fashion-hero .hbs-title {
    font-size: 38px;
  }

  .hbs-fashion-features {
    flex-direction: column;
    align-items: stretch;
  }

  .hbs-fashion-features > div {
    justify-content: center;
  }

  .hbs-fashion-cta {
    width: 100%;
    justify-content: center;
    text-align: center;
  }
}
/* =============================================
   APLICATIVO DO ASSOCIADO 2026
   ============================================= */
.app-associado-section {
  position: relative;
  z-index: 4;
  scroll-margin-top: 82px;
  padding: 28px 0 34px;
  background: #ffffff;
}

.app-associado-card {
  position: relative;
  min-height: 150px;
  padding: 26px 30px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
  overflow: hidden;
  border: 1px solid rgba(77, 166, 217, 0.2);
  border-radius: 24px;
  background:
    radial-gradient(circle at 78% 0%, rgba(77, 166, 217, 0.23), transparent 36%),
    linear-gradient(120deg, #07152a 0%, #0d2b4e 58%, #0c3d66 100%);
  box-shadow: 0 18px 48px rgba(7, 21, 42, 0.16);
}

.app-associado-card::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: linear-gradient(90deg, black, transparent 74%);
}

.app-associado-card > * {
  position: relative;
  z-index: 1;
}

.app-associado-icon {
  width: 66px;
  height: 66px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(117, 199, 238, 0.28);
  border-radius: 20px;
  background: rgba(77, 166, 217, 0.14);
  color: #78c7ec;
  box-shadow: inset 0 0 28px rgba(77, 166, 217, 0.08);
}

.app-associado-copy > span {
  display: block;
  margin-bottom: 5px;
  color: #78c7ec;
  font-family: var(--font-heading);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.app-associado-copy h2 {
  margin-bottom: 6px;
  color: white;
  font-family: var(--font-heading);
  font-size: clamp(20px, 2.1vw, 28px);
  line-height: 1.15;
  letter-spacing: -0.025em;
}

.app-associado-copy p {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
  line-height: 1.55;
}

.app-associado-action {
  min-width: 235px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 8px;
}

.app-download-btn {
  min-height: 62px;
  padding: 12px 19px;
  justify-content: flex-start;
  gap: 12px;
  border: 1px solid rgba(255, 255, 255, 0.84);
  background: white;
  color: var(--color-brand-navy);
  box-shadow: 0 12px 28px rgba(2, 10, 24, 0.2);
}

.app-download-btn:hover {
  background: #eef8fd;
  color: var(--color-brand-navy);
  transform: translateY(-3px);
  box-shadow: 0 17px 34px rgba(2, 10, 24, 0.28);
}

.app-download-btn > span {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1px;
}

.app-download-btn small {
  color: #64748b;
  font-family: var(--font-body);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.app-download-btn strong {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 800;
}

.app-platform-note {
  color: rgba(255, 255, 255, 0.46);
  font-size: 9px;
  text-align: center;
}

@media (max-width: 820px) {
  .app-associado-card {
    grid-template-columns: auto 1fr;
  }

  .app-associado-action {
    grid-column: 1 / -1;
    width: 100%;
  }

  .app-download-btn {
    justify-content: center;
  }
}

@media (max-width: 560px) {
  .app-associado-section {
    padding: 18px 0 26px;
  }

  .app-associado-card {
    padding: 24px 20px;
    grid-template-columns: 1fr;
    gap: 17px;
    text-align: center;
    border-radius: 20px;
  }

  .app-associado-icon {
    margin: 0 auto;
  }

  .app-associado-copy p {
    font-size: 12px;
  }

  .app-download-btn > span {
    align-items: flex-start;
    text-align: left;
  }
}
/* =============================================
   DEPOIMENTOS REAIS EM VIDEO 2026
   ============================================= */
.depoimentos-reais {
  padding: 92px 0;
  background:
    radial-gradient(circle at 50% 0%, rgba(77, 166, 217, 0.08), transparent 34%),
    #f5f7f9;
}

.depoimentos-reais .depoimentos-header {
  max-width: 780px;
  margin: 0 auto 46px;
}

.depoimentos-intro {
  max-width: 580px;
  margin: 16px auto 0;
  color: var(--color-text-muted);
  font-size: 14px;
  line-height: 1.7;
  text-align: center;
}

.depoimentos-video-grid {
  align-items: start;
}

.depoimento-video-card {
  overflow: hidden;
  padding: 10px 10px 14px;
  border: 1px solid rgba(13, 27, 62, 0.08);
  border-radius: 20px;
  background: white;
  box-shadow: 0 16px 42px rgba(13, 27, 62, 0.1);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.depoimento-video-card:hover {
  transform: translateY(-6px);
  border-color: rgba(77, 166, 217, 0.28);
  box-shadow: 0 24px 54px rgba(13, 27, 62, 0.16);
}

.depoimento-video-frame {
  position: relative;
  width: 100%;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  border-radius: 14px;
  background: #071326;
}

.depoimento-video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.depoimento-video-meta {
  padding: 13px 8px 2px;
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--color-brand-navy);
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 700;
}

.depoimento-video-badge {
  width: 26px;
  height: 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  border-radius: 50%;
  background: rgba(77, 166, 217, 0.12);
  color: var(--color-brand-accent);
  font-size: 9px;
  padding-left: 1px;
}

@media (max-width: 768px) {
  .depoimentos-reais {
    padding: 64px 0;
  }

  .depoimentos-reais .depoimentos-header {
    margin-bottom: 32px;
  }

  .depoimento-video-card:hover {
    transform: none;
  }
}
/* PREVIEW ESTAVEL DOS DEPOIMENTOS */
.depoimento-video-preview {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  overflow: hidden;
  padding: 0;
  border: 0;
  background: transparent;
  color: white;
  font: inherit;
  cursor: pointer;
}

.depoimento-video-preview::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(3, 9, 20, 0.06), rgba(3, 9, 20, 0.62));
  transition: background-color 0.3s ease;
}

.depoimento-video-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.01);
  transition: transform 0.55s cubic-bezier(0.16, 1, 0.3, 1);
}

.depoimento-preview-overlay {
  position: absolute;
  z-index: 2;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 11px;
  color: white;
  text-align: center;
}

.depoimento-preview-overlay strong {
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 800;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.65);
}

.depoimento-play-button {
  width: 58px;
  height: 58px;
  padding-left: 4px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(255, 255, 255, 0.85);
  border-radius: 50%;
  background: rgba(77, 166, 217, 0.92);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
  font-size: 17px;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.depoimento-video-preview:hover img {
  transform: scale(1.06);
}

.depoimento-video-preview:hover .depoimento-play-button {
  transform: scale(1.08);
  background: #2f98d4;
}

.depoimento-video-preview:focus-visible {
  outline: 3px solid var(--color-brand-accent);
  outline-offset: -3px;
}
/* =============================================
   SOBRE O GRUPO COOPERCAR 2026
   ============================================= */
.sobre-section {
  position: relative;
  padding: var(--section-py) 0;
  background-color: #fff;
}

.sobre-head {
  max-width: 640px;
  margin-bottom: 40px;
}
.sobre-head .section-title {
  margin-bottom: 18px;
  font-size: clamp(28px, 3.4vw, 42px);
  letter-spacing: -.02em;
}
.sobre-lead {
  margin-bottom: 12px;
  color: var(--color-brand-navy);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.65;
}
.sobre-copy {
  margin: 0;
  color: var(--color-text-muted);
  font-size: 14px;
  line-height: 1.75;
}
.sobre-copy strong { color: var(--color-brand-navy); font-weight: 700; }

/* image mosaic — large tile at left, two tiles top-right, accent strip bottom-right */
.sobre-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr 1fr;
  grid-template-rows: repeat(2, 208px);
  gap: 16px;
}
.sobre-tile {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: 18px;
  background: var(--color-gray-100);
}
.sobre-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.sobre-tile-lg {
  grid-column: 1;
  grid-row: 1 / span 2;
}
.sobre-grid > .sobre-tile--driver { grid-column: 2; grid-row: 1; }
.sobre-grid > .sobre-tile--team   { grid-column: 3; grid-row: 1; }
.sobre-tile-accent {
  grid-column: 2 / span 2;
  grid-row: 2;
}

.sobre-tile--family img { object-position: center center; }
.sobre-tile--driver img { object-position: center center; }
.sobre-tile--team img { object-position: center 25%; }

.sobre-tile figcaption {
  position: absolute;
  left: 14px;
  bottom: 14px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  max-width: calc(100% - 28px);
  padding: 7px 15px 7px 8px;
  border-radius: 999px;
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  font-family: var(--font-heading);
  font-size: 12.5px;
  font-weight: 600;
  line-height: 1.25;
  color: var(--color-brand-navy);
  box-shadow: 0 8px 24px -10px rgba(13,27,62,.4);
}
.sobre-tag-icon {
  flex: 0 0 auto;
  display: inline-flex;
  width: 24px;
  height: 24px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: var(--color-brand-accent);
  color: #fff;
}
.sobre-tag-icon svg { width: 13px; height: 13px; }

.sobre-tile-accent {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 44px;
  text-align: center;
  background: linear-gradient(135deg, var(--color-brand-accent) 0%, var(--color-brand-gold) 100%);
}
.sobre-tile-accent p {
  margin: 0;
  max-width: 480px;
  color: #fff;
  font-family: var(--font-heading);
  font-size: clamp(17px, 1.7vw, 22px);
  font-weight: 500;
  line-height: 1.45;
}
.sobre-tile-accent strong { font-weight: 800; }

/* stats row */
.sobre-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 44px;
  padding-top: 34px;
  border-top: 1px solid var(--color-gray-200);
}
.sobre-stat { text-align: center; }
.sobre-stat-value {
  display: block;
  font-family: var(--font-heading);
  font-size: clamp(30px, 4vw, 44px);
  font-weight: 800;
  letter-spacing: -.02em;
  color: var(--color-brand-accent);
}
.sobre-stat-label {
  display: block;
  margin-top: 6px;
  font-size: 13px;
  color: var(--color-text-muted);
}

@media (max-width: 920px) {
  .sobre-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 240px 190px auto;
  }
  .sobre-tile-lg { grid-column: 1 / span 2; grid-row: 1; }
  .sobre-grid > .sobre-tile--driver { grid-column: 1; grid-row: 2; }
  .sobre-grid > .sobre-tile--team   { grid-column: 2; grid-row: 2; }
  .sobre-tile-accent { grid-column: 1 / span 2; grid-row: 3; padding: 28px 24px; }
}

@media (max-width: 560px) {
  .sobre-head { margin-bottom: 28px; }
  .sobre-grid {
    grid-template-columns: 1fr;
    grid-template-rows: none;
    grid-auto-rows: 200px;
    gap: 12px;
  }
  .sobre-tile-lg,
  .sobre-grid > .sobre-tile--driver,
  .sobre-grid > .sobre-tile--team,
  .sobre-tile-accent {
    grid-column: 1;
    grid-row: auto;
  }
  .sobre-tile-accent { min-height: 160px; }
  .sobre-stats {
    grid-template-columns: 1fr;
    gap: 20px;
    text-align: center;
  }
}

/* =============================================
   O GRUPO / EQUIPE
   ============================================= */
.grupo-section {
  position: relative;
  padding: var(--section-py) 0;
  background: #fff;
  overflow: hidden;
  text-align: center;
}
.grupo-section .container { position: relative; z-index: 1; }

.grupo-label { justify-content: center; }

.grupo-title {
  max-width: 780px;
  margin: 0 auto 18px;
}
.grupo-title span { color: var(--color-brand-accent); }

.grupo-lead {
  max-width: 640px;
  margin: 0 auto;
  color: var(--color-text-muted);
  font-size: 15px;
  line-height: 1.75;
}

.grupo-empresas {
  list-style: none;
  margin: 28px auto 0;
  padding: 0;
  max-width: 900px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.grupo-empresas li {
  padding: 14px 12px;
  border: 1px solid var(--color-gray-200);
  border-radius: 14px;
  background: var(--color-white);
}
.grupo-empresas strong {
  display: block;
  color: var(--color-brand-navy);
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
}
.grupo-empresas span {
  display: block;
  margin-top: 3px;
  color: var(--color-text-muted);
  font-size: 12px;
  line-height: 1.35;
}

.grupo-photo {
  position: relative;
  max-width: 940px;
  margin: 40px auto 0;
}
.grupo-photo img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: auto;
  margin: 0 auto;
}

@media (max-width: 720px) {
  .grupo-empresas {
    grid-template-columns: repeat(2, 1fr);
    max-width: 420px;
  }
  .grupo-photo { margin-top: 32px; }
}

/* COTACAO: PERSISTENCIA E STATUS */
.form-honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}
.form-status {
  min-height: 18px;
  margin-top: 10px;
  color: var(--color-brand-blue);
  font-size: 11px;
  font-weight: 600;
  text-align: center;
}
.form-submit:disabled {
  cursor: wait;
  opacity: .72;
}
/* =============================================
   RODAPE INSTITUCIONAL 2026
   ============================================= */
.footer-2026 {
  position: relative;
  padding: 72px 0 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 10% 0%, rgba(77, 166, 217, .14), transparent 30%),
    linear-gradient(160deg, #0b1835 0%, #07101f 72%);
}
.footer-2026::before {
  content: '';
  position: absolute;
  width: 460px;
  height: 460px;
  right: -210px;
  bottom: -260px;
  border: 1px solid rgba(110, 193, 232, .1);
  border-radius: 50%;
  box-shadow: 0 0 0 70px rgba(110, 193, 232, .025);
}
.footer-2026 .container {
  position: relative;
  z-index: 1;
}
.footer-help-panel {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 26px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, .72);
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 26px 70px rgba(0, 0, 0, .28);
}
.footer-help-copy {
  align-self: center;
  padding: 18px 20px 18px 12px;
}
.footer-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 13px;
  color: var(--color-brand-accent);
  font-family: var(--font-heading);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.footer-eyebrow::before {
  content: '';
  width: 25px;
  height: 2px;
  background: currentColor;
}
.footer-help-copy h2 {
  margin-bottom: 16px;
  color: var(--color-brand-navy);
  font-family: var(--font-heading);
  font-size: clamp(29px, 4vw, 46px);
  font-weight: 800;
  letter-spacing: -.04em;
  line-height: 1.08;
}
.footer-help-copy h2 span {
  color: var(--color-brand-accent);
}
.footer-help-copy > p {
  max-width: 560px;
  margin-bottom: 25px;
  color: var(--color-text-muted);
  font-size: 14px;
  line-height: 1.72;
}
.footer-help-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 17px;
}
.footer-whatsapp-cta {
  padding: 14px 24px;
  font-size: 12px;
}
.footer-email-link {
  color: var(--color-brand-navy);
  font-size: 12px;
  font-weight: 600;
  transition: var(--transition);
}
.footer-email-link:hover {
  color: var(--color-brand-accent);
}
.footer-map {
  position: relative;
  min-height: 330px;
  overflow: hidden;
  border-radius: 20px;
  background: #e7edf3;
}
.footer-map iframe {
  width: 100%;
  height: 100%;
  min-height: 330px;
  display: block;
  border: 0;
}
.footer-map > a {
  position: absolute;
  right: 14px;
  bottom: 14px;
  padding: 10px 14px;
  border-radius: 50px;
  background: rgba(7, 16, 31, .9);
  color: #fff;
  font-family: var(--font-heading);
  font-size: 10px;
  font-weight: 700;
  box-shadow: 0 8px 24px rgba(0, 0, 0, .26);
  backdrop-filter: blur(8px);
  transition: var(--transition);
}
.footer-map > a:hover {
  background: var(--color-brand-accent);
  transform: translateY(-2px);
}
.footer-main-grid {
  display: grid;
  grid-template-columns: 1.15fr .8fr 1.2fr 1fr;
  gap: 44px;
  padding: 62px 0 50px;
}
.footer-brand-block {
  min-width: 0;
}
.footer-logo {
  display: inline-flex;
  min-height: 58px;
  align-items: center;
  margin-bottom: 14px;
}
.footer-logo img {
  width: 155px;
  height: auto;
  max-height: 76px;
  object-fit: contain;
  object-position: left center;
}
.footer-brand-block > p {
  max-width: 280px;
  margin-bottom: 15px;
  color: rgba(255, 255, 255, .56);
  font-size: 12px;
  line-height: 1.7;
}
.footer-brand-block > small {
  display: block;
  color: rgba(255, 255, 255, .35);
  font-size: 10px;
}
.footer-social {
  display: flex;
  gap: 8px;
  margin-top: 20px;
}
.footer-social a {
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 50px;
  color: rgba(255, 255, 255, .68);
  font-family: var(--font-heading);
  font-size: 9px;
  font-weight: 700;
  transition: var(--transition);
}
.footer-social a:hover {
  border-color: var(--color-brand-accent);
  background: var(--color-brand-accent);
  color: #07101f;
}
.footer-main-grid h3 {
  margin-bottom: 20px;
  color: #fff;
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .09em;
  text-transform: uppercase;
}
.footer-nav-block,
.footer-contact-block,
.footer-address-block {
  min-width: 0;
}
.footer-nav-block {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 11px;
}
.footer-nav-block h3 {
  margin-bottom: 9px;
}
.footer-nav-block a {
  position: relative;
  padding-left: 14px;
  color: rgba(255, 255, 255, .56);
  font-size: 11px;
  transition: var(--transition);
}
.footer-nav-block a::before {
  content: '';
  position: absolute;
  left: 0;
  top: .67em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--color-brand-accent);
}
.footer-nav-block a:hover {
  padding-left: 18px;
  color: #fff;
}
.footer-contact-block {
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.footer-contact-block h3 {
  margin-bottom: 7px;
}
.footer-contact-block a {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.footer-contact-block span,
.footer-hours span {
  color: var(--color-brand-accent);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.footer-contact-block strong {
  overflow-wrap: anywhere;
  color: rgba(255, 255, 255, .74);
  font-size: 11px;
  font-weight: 500;
  transition: var(--transition);
}
.footer-contact-block a:hover strong {
  color: #fff;
}
.footer-address-block address {
  margin-bottom: 21px;
  color: rgba(255, 255, 255, .62);
  font-size: 11px;
  font-style: normal;
  line-height: 1.75;
}
.footer-hours p {
  margin-top: 4px;
  color: rgba(255, 255, 255, .62);
  font-size: 11px;
  line-height: 1.7;
}
.footer-2026 .footer-bottom {
  min-height: 72px;
  margin: 0;
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, .08);
}
.footer-since {
  color: rgba(255, 255, 255, .3);
  font-size: 11px;
}
@media (max-width: 1024px) {
  .footer-main-grid {
    grid-template-columns: 1.15fr .8fr 1fr;
  }
  .footer-address-block {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    padding-top: 6px;
    border-top: 1px solid rgba(255, 255, 255, .07);
  }
  .footer-address-block h3 {
    grid-column: 1 / -1;
    margin-bottom: 0;
  }
}
@media (max-width: 820px) {
  .footer-2026 {
    padding-top: 48px;
  }
  .footer-help-panel {
    grid-template-columns: 1fr;
  }
  .footer-help-copy {
    padding: 10px 8px 2px;
  }
  .footer-map,
  .footer-map iframe {
    min-height: 290px;
  }
  .footer-main-grid {
    grid-template-columns: 1fr 1fr;
    gap: 38px;
    padding-top: 48px;
  }
  .footer-brand-block {
    grid-column: 1 / -1;
  }
}
@media (max-width: 560px) {
  .footer-2026 {
    padding-top: 28px;
  }
  .footer-help-panel {
    gap: 20px;
    padding: 18px;
    border-radius: 22px;
  }
  .footer-help-copy {
    padding: 8px 2px 0;
  }
  .footer-help-copy h2 {
    font-size: 30px;
  }
  .footer-help-actions {
    align-items: stretch;
    flex-direction: column;
  }
  .footer-whatsapp-cta {
    width: 100%;
  }
  .footer-email-link {
    overflow-wrap: anywhere;
    text-align: center;
  }
  .footer-map,
  .footer-map iframe {
    min-height: 245px;
  }
  .footer-main-grid {
    grid-template-columns: 1fr;
    gap: 34px;
    padding: 42px 2px 36px;
  }
  .footer-brand-block,
  .footer-address-block {
    grid-column: auto;
  }
  .footer-address-block {
    display: block;
    padding-top: 28px;
  }
  .footer-address-block h3 {
    margin-bottom: 20px;
  }
  .footer-2026 .footer-bottom {
    align-items: flex-start;
    text-align: left;
  }
}
/* HERO MOBILE - FOCO FAMILIA E VEICULO */
@media (max-width: 768px) {
  .hero-bg {
    background-position: 48% center;
  }

  .hero-overlay {
    background: linear-gradient(to bottom,
      rgba(5, 10, 25, .9) 0%,
      rgba(5, 10, 25, .77) 52%,
      rgba(5, 10, 25, .54) 100%);
  }
}
/* INDICADORES DA HERO CENTRALIZADOS NO MOBILE */
@media (max-width: 480px) {
  .hero-stats {
    align-items: center;
    text-align: center;
  }

  .hero-stat {
    width: 100%;
  }
}
/* HERO MOBILE - IMAGEM LIVRE SEM INDICADORES */
@media (max-width: 768px) {
  .hero > .container {
    padding-top: 90px;
    padding-bottom: 64px;
  }

  .hero-stats {
    display: none;
  }
}
/* HERO MOBILE - FOTO LIVRE E CONTEUDO ABAIXO */
@media (max-width: 768px) {
  .hero {
    display: block;
    min-height: 0;
    padding: 0;
    background: #071326;
  }

  .hero-bg {
    inset: 0 0 auto;
    height: 520px;
    background-size: cover;
    background-position: 48% center;
    transform: none !important;
  }

  .hero-overlay {
    inset: 0 0 auto;
    height: 520px;
    background: linear-gradient(180deg,
      rgba(5, 10, 25, .72) 0%,
      rgba(5, 10, 25, .18) 52%,
      #071326 100%);
  }

  .hero-overlay-bottom {
    top: 350px;
    bottom: auto;
    height: 180px;
    background: linear-gradient(to top, #071326 0%, transparent 100%);
  }

  .hero > .container {
    padding: 430px 24px 64px;
  }
}

@media (max-width: 480px) {
  .hero-bg,
  .hero-overlay {
    height: 490px;
  }

  .hero-overlay-bottom {
    top: 325px;
    height: 175px;
  }

  .hero > .container {
    padding-top: 405px;
  }
}
/* NAVBAR EM TRES AREAS 2026 */
@media (min-width: 1025px) {
  .navbar > .container {
    max-width: 100%;
    padding-right: clamp(24px, 5vw, 80px);
    padding-left: clamp(24px, 5vw, 80px);
  }

  .navbar-inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
    gap: 24px;
  }

  .navbar-logo {
    justify-self: start;
  }

  .navbar-nav {
    justify-self: center;
  }

  .navbar-actions {
    justify-self: end;
  }
}
/* RAINBOW BADGE - ASSOCIACAO REGIONAL */
:root {
  --rainbow-1: #1d4ed8;
  --rainbow-2: #2563eb;
  --rainbow-3: #0ea5e9;
  --rainbow-4: #38bdf8;
  --rainbow-5: #67e8f9;
}

.hero-badge {
  position: relative;
  isolation: isolate;
  border: 1px solid transparent;
  background:
    linear-gradient(rgba(8, 16, 34, .94), rgba(8, 16, 34, .94)) padding-box,
    linear-gradient(90deg,
      var(--rainbow-1),
      var(--rainbow-2),
      var(--rainbow-3),
      var(--rainbow-4),
      var(--rainbow-5),
      var(--rainbow-1)) border-box;
  background-size: 100% 100%, 200% 100%;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .08),
    0 8px 28px rgba(8, 16, 34, .35);
  animation: hero-rainbow-border 2.8s linear infinite;
}

.hero-badge::before {
  content: '';
  position: absolute;
  z-index: -1;
  right: 18%;
  bottom: -6px;
  left: 18%;
  height: 7px;
  border-radius: 50%;
  background: linear-gradient(90deg,
    var(--rainbow-1),
    var(--rainbow-2),
    var(--rainbow-3),
    var(--rainbow-4),
    var(--rainbow-5),
    var(--rainbow-1));
  background-size: 200% 100%;
  filter: blur(10px);
  opacity: .72;
  animation: hero-rainbow-glow 2.8s linear infinite;
}

.hero-badge span {
  color: #eaf8ff;
  text-shadow: 0 1px 12px rgba(34, 211, 238, .22);
}

.hero-badge-dot {
  background: #67d8ff;
  box-shadow: 0 0 12px rgba(103, 216, 255, .85);
}

@keyframes hero-rainbow-border {
  from {
    background-position: 0 0, 0% 50%;
  }
  to {
    background-position: 0 0, 200% 50%;
  }
}

@keyframes hero-rainbow-glow {
  from {
    background-position: 0% 50%;
  }
  to {
    background-position: 200% 50%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-badge,
  .hero-badge::before {
    animation: none;
  }
}
/* =============================================
   MODAL CONDICAO PROFISSIONAL 2026
   ============================================= */
.modal-profissional {
  width: min(680px, calc(100% - 32px));
  max-width: 680px;
  max-height: min(90vh, 760px);
  margin: auto;
  padding: 0;
  overflow: auto;
  border: 0;
  border-radius: 24px;
  background: transparent;
  color: var(--color-brand-navy);
  box-shadow: 0 32px 90px rgba(1, 8, 20, .48);
}
.modal-profissional:not([open]) {
  display: none;
}
.modal-profissional::backdrop {
  background: rgba(3, 9, 22, .76);
  backdrop-filter: blur(8px);
}
.modal-profissional-card {
  overflow: hidden;
  border: 1px solid rgba(77, 166, 217, .18);
  border-radius: 24px;
  background: #fff;
}
.modal-profissional-header {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  padding: 28px 30px 25px;
  background:
    radial-gradient(circle at 90% 0%, rgba(77, 166, 217, .24), transparent 38%),
    linear-gradient(145deg, #071326, #102a55);
}
.modal-profissional-header span {
  display: block;
  margin-bottom: 8px;
  color: #67d8ff;
  font-family: var(--font-heading);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .15em;
  text-transform: uppercase;
}
.modal-profissional-header h2 {
  max-width: 500px;
  margin-bottom: 8px;
  color: #fff;
  font-family: var(--font-heading);
  font-size: clamp(23px, 4vw, 32px);
  font-weight: 800;
  letter-spacing: -.03em;
  line-height: 1.15;
}
.modal-profissional-header p {
  color: rgba(255, 255, 255, .62);
  font-size: 12px;
}
.modal-profissional-close {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 50%;
  background: rgba(255, 255, 255, .08);
  color: #fff;
  font-size: 25px;
  line-height: 1;
  cursor: pointer;
  transition: var(--transition);
}
.modal-profissional-close:hover {
  border-color: rgba(255, 255, 255, .45);
  background: rgba(255, 255, 255, .16);
  transform: rotate(5deg);
}
#form-condicao-profissional {
  position: relative;
  padding: 28px 30px 25px;
}
.modal-form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 16px;
}
.modal-profissional .form-group {
  margin: 0;
}
.modal-profissional .form-label {
  color: var(--color-brand-navy);
}
.modal-profissional .form-input {
  width: 100%;
}
.modal-profissional-submit {
  width: 100%;
  margin-top: 6px;
}
.modal-profissional-submit:disabled {
  cursor: wait;
  opacity: .7;
}
.modal-profissional-status {
  min-height: 18px;
  margin-top: 9px;
  color: var(--color-brand-blue);
  font-size: 10px;
  font-weight: 600;
  text-align: center;
}
.modal-profissional-privacy {
  color: var(--color-gray-400);
  font-size: 9px;
  line-height: 1.5;
  text-align: center;
}
@media (max-width: 620px) {
  .modal-profissional {
    width: calc(100% - 22px);
    max-height: calc(100dvh - 22px);
    border-radius: 19px;
  }
  .modal-profissional-card {
    border-radius: 19px;
  }
  .modal-profissional-header {
    padding: 23px 20px 21px;
  }
  .modal-profissional-header h2 {
    font-size: 24px;
  }
  #form-condicao-profissional {
    padding: 23px 20px 20px;
  }
  .modal-form-row {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-bottom: 14px;
  }
}
/* =============================================
   MODAL PROVIMED 2026
   ============================================= */
.modal-provimed {
  max-width: 620px;
}
.modal-provimed-header {
  background:
    radial-gradient(circle at 90% 0%, rgba(75, 211, 202, .25), transparent 40%),
    linear-gradient(145deg, #08262f, #0f5968);
}
.modal-provimed-header > div > span {
  color: #76e4dc;
}
.modal-provimed-options {
  display: grid;
  gap: 12px;
  padding: 26px 28px 24px;
}
.modal-provimed-option {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 15px;
  min-height: 82px;
  padding: 15px 17px;
  border: 1px solid rgba(15, 89, 104, .12);
  border-radius: 16px;
  background: #f7fbfb;
  box-shadow: 0 7px 20px rgba(8, 38, 47, .05);
  transition: var(--transition);
}
.modal-provimed-option:hover {
  border-color: rgba(31, 150, 158, .36);
  background: #eefafa;
  box-shadow: 0 13px 28px rgba(8, 38, 47, .11);
  transform: translateY(-2px);
}
.modal-provimed-number {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: linear-gradient(135deg, #1f969e, #166f83);
  color: #fff;
  font-family: var(--font-heading);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .06em;
}
.modal-provimed-option strong {
  display: block;
  margin-bottom: 3px;
  color: var(--color-brand-navy);
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 800;
}
.modal-provimed-option small {
  display: block;
  color: var(--color-text-muted);
  font-size: 10px;
  line-height: 1.45;
}
.modal-provimed-option > b {
  color: #1f969e;
  font-size: 20px;
  transition: transform var(--transition);
}
.modal-provimed-option:hover > b {
  transform: translateX(3px);
}
.modal-provimed-note {
  margin-top: 2px;
  color: var(--color-gray-400);
  font-size: 9px;
  line-height: 1.5;
  text-align: center;
}
@media (max-width: 560px) {
  .modal-provimed-options {
    padding: 20px 17px 18px;
  }
  .modal-provimed-option {
    gap: 11px;
    min-height: 76px;
    padding: 13px;
  }
  .modal-provimed-number {
    width: 36px;
    height: 36px;
  }
}
/* =============================================
   RESPONSIVIDADE MOBILE SEM OVERFLOW 2026
   ============================================= */
html,
body {
  width: 100%;
  max-width: 100%;
  overflow-x: clip;
}

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

.container,
.container > *,
.simulacao-inner,
.simulacao-content,
.simulacao-form-wrapper,
.form-row,
.form-group,
.sf-text,
.beneficios-infografico-wrapper,
.infografico-col-left,
.infografico-col-right,
.beneficio-balloon-card,
.footer-main-grid,
.footer-help-panel {
  min-width: 0;
}

.form-honeypot {
  left: auto !important;
  width: 1px !important;
  height: 1px !important;
  margin: -1px !important;
  padding: 0 !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  clip-path: inset(50%) !important;
  white-space: nowrap !important;
}

@supports not (overflow: clip) {
  html,
  body {
    overflow-x: hidden;
  }
}

@media (max-width: 1024px) {
  .simulacao-inner {
    grid-template-columns: minmax(0, 1fr);
    width: 100%;
  }

  .simulacao-content,
  .simulacao-form-wrapper {
    width: 100%;
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .container {
    width: 100%;
    max-width: 100%;
  }

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

  .form-input,
  .form-select,
  .form-submit {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .sf-item {
    min-width: 0;
  }

  .sf-text {
    overflow-wrap: anywhere;
  }

  .infografico-col-left,
  .infografico-col-right {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .beneficio-balloon-card {
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  .modal-profissional {
    max-width: calc(100% - 22px);
  }

  .modal-form-row,
  .modal-provimed-option {
    min-width: 0;
  }
}

@media (max-width: 380px) {
  .container {
    padding-right: 18px;
    padding-left: 18px;
  }

  .navbar-inner {
    gap: 10px;
  }

  .navbar-logo img {
    max-width: 72px;
    object-fit: contain;
  }

  .nav-area-link {
    padding: 7px 10px;
    font-size: 10px;
  }

  .hero-badge {
    max-width: 100%;
    padding-right: 13px;
    padding-left: 13px;
  }

  .hero-badge span {
    font-size: 9px;
    letter-spacing: .11em;
  }

  .infografico-col-left,
  .infografico-col-right {
    grid-template-columns: minmax(0, 1fr);
  }

  .beneficio-balloon-card,
  .infografico-col-left .beneficio-balloon-card:nth-child(n),
  .infografico-col-right .beneficio-balloon-card:nth-child(n) {
    min-height: 0;
  }

  .simulacao-form-wrapper {
    padding-right: 16px;
    padding-left: 16px;
    border-radius: 20px;
  }

  .modal-profissional-header,
  #form-condicao-profissional {
    padding-right: 16px;
    padding-left: 16px;
  }

  .modal-provimed-options {
    padding-right: 14px;
    padding-left: 14px;
  }

  .modal-provimed-option {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .modal-provimed-option > b {
    display: none;
  }

  .footer-help-panel {
    padding: 15px;
  }
}