/* ==========================================
   CAVENSEG SEGUROS — style.css
   Versão melhorada: visual + SEO-friendly
   ========================================== */

/* ===== VARIÁVEIS DE COR ===== */
:root {
  --primary: #17286C;
  --primary-dark: #0f1a47;
  --primary-light: #1e3480;
  --accent: #2563EB;
  --gray: #BCBDC1;
  --dark: #1a1a2e;
  --white: #ffffff;
  --light: #f4f6fb;
  --text: #4a4a5a;
  --text-light: #6b7280;
  --green-wa: #25D366;
  --shadow: rgba(23, 40, 108, 0.12);
  --shadow-strong: rgba(23, 40, 108, 0.22);
}

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

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

body {
  font-family: 'Poppins', sans-serif;
  overflow-x: hidden;
  color: var(--text);
  background: #fff;
  line-height: 1.6;
}

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

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

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* ===== HEADER ===== */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  background: rgba(23, 40, 108, 0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: box-shadow 0.3s;
}

.navbar {
  height: 85px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.logo img {
  height: 65px;
  width: auto;
}

.nav-links {
  display: flex;
  gap: 28px;
  list-style: none;
}

.nav-links a {
  color: rgba(255,255,255,0.85);
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.3s;
  position: relative;
  padding-bottom: 3px;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gray);
  transition: width 0.3s;
}

.nav-links a:hover {
  color: #fff;
}

.nav-links a:hover::after {
  width: 100%;
}

/* ===== BOTÕES ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 24px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: #fff;
  color: var(--primary);
}

.btn-primary:hover {
  background: var(--light);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.btn-whatsapp {
  background: var(--green-wa);
  color: #fff;
}

.btn-whatsapp:hover {
  background: #1da851;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(37,211,102,0.35);
}

.btn-outline {
  border: 2px solid rgba(255,255,255,0.7);
  color: #fff;
  background: transparent;
}

.btn-outline:hover {
  background: #fff;
  color: var(--primary);
  border-color: #fff;
  transform: translateY(-2px);
}

.btn-outline-light {
  border: 2px solid rgba(255,255,255,0.7);
  color: #fff;
  background: transparent;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 24px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s;
}

.btn-outline-light:hover {
  background: #fff;
  color: var(--primary);
  transform: translateY(-2px);
}

.mobile-toggle {
  display: none;
  font-size: 26px;
  color: #fff;
  cursor: pointer;
  padding: 5px;
  border: 0;
  background: transparent;
}

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

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

.hero-content {
  max-width: 720px;
  padding-top: 100px;
  padding-bottom: 80px;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  color: #fff;
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 28px;
  backdrop-filter: blur(6px);
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 3.6rem;
  line-height: 1.12;
  color: #fff;
  margin-bottom: 22px;
  font-weight: 800;
}

.hero h1 span {
  color: #a8c4ff;
  display: block;
}

.hero p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.88);
  margin-bottom: 36px;
  max-width: 560px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

/* Indicadores de confiança no hero */
.hero-trust {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.80);
  font-size: 0.88rem;
}

.trust-item i {
  color: #fbbf24;
  font-size: 0.95rem;
}

/* ===== SEÇÕES GENÉRICAS ===== */
section {
  padding: 90px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 55px;
}

.section-title span {
  color: var(--primary);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  font-size: 0.82rem;
}

.section-title h2 {
  font-size: 2.4rem;
  margin-top: 10px;
  color: var(--dark);
  font-weight: 700;
  line-height: 1.25;
}

.section-subtitle {
  margin-top: 14px;
  color: var(--text-light);
  font-size: 1rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

.section-title.light span,
.section-title.light h2 {
  color: rgba(255,255,255,0.75);
}

.section-title.light h2 {
  color: #fff;
}

/* ===== SERVIÇOS ===== */
#servicos {
  background: #fff;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 22px;
}

.service-card {
  background: #fff;
  padding: 32px 22px;
  border-radius: 16px;
  box-shadow: 0 4px 20px var(--shadow);
  text-align: center;
  transition: all 0.3s;
  border: 1px solid rgba(23,40,108,0.07);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transform: scaleX(0);
  transition: transform 0.3s;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px var(--shadow-strong);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, #eef2ff, #e0e7ff);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  transition: all 0.3s;
}

.service-card:hover .service-icon {
  background: linear-gradient(135deg, var(--primary), var(--accent));
}

.service-icon i {
  font-size: 26px;
  color: var(--primary);
  transition: color 0.3s;
}

.service-card:hover .service-icon i {
  color: #fff;
}

.service-card h3 {
  font-size: 1rem;
  margin-bottom: 10px;
  color: var(--dark);
  font-weight: 600;
}

.service-card p {
  font-size: 0.88rem;
  line-height: 1.65;
  color: var(--text-light);
}

/* ===== STATS / DIFERENCIAIS ===== */
.stats {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, var(--primary-light) 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.stats::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
}

.stats::after {
  content: '';
  position: absolute;
  bottom: -60px;
  left: -60px;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
}

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

.stats-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 30px;
  text-align: center;
}

.stat-item {
  padding: 20px 10px;
}

.stat-item i {
  font-size: 38px;
  margin-bottom: 16px;
  color: rgba(255,255,255,0.6);
}

.stat-item h3 {
  font-size: 2.1rem;
  margin-bottom: 8px;
  font-weight: 700;
  color: #fff;
}

.stat-item p {
  font-size: 0.9rem;
  line-height: 1.5;
  color: rgba(255,255,255,0.72);
}

/* ===== SOBRE ===== */
.about {
  background: var(--light);
}

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

.about-image {
  position: relative;
}

.about-image img {
  width: 100%;
  aspect-ratio: 996 / 1014;
  height: auto;
  object-fit: cover;
  object-position: center;
  border-radius: 20px;
  box-shadow: 0 20px 60px var(--shadow-strong);
}

.about-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--primary);
  color: #fff;
  padding: 18px 24px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: 0 10px 30px var(--shadow-strong);
}

.about-badge i {
  font-size: 28px;
  color: rgba(255,255,255,0.7);
}

.about-badge strong {
  display: block;
  font-size: 1.3rem;
  font-weight: 700;
}

.about-badge span {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.7);
}

.about-content .eyebrow {
  color: var(--primary);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  font-size: 0.82rem;
  display: block;
  margin-bottom: 14px;
}

.about-content h2 {
  font-size: 2.2rem;
  margin-bottom: 22px;
  color: var(--dark);
  line-height: 1.25;
  font-weight: 700;
}

.about-content p {
  line-height: 1.85;
  margin-bottom: 18px;
  color: var(--text);
}

.about-list {
  list-style: none;
  margin-bottom: 32px;
}

.about-list li {
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  font-size: 0.97rem;
}

.about-list i {
  color: var(--primary);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.about-content .btn {
  background: var(--primary);
  color: #fff;
}

.about-content .btn:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px var(--shadow-strong);
}

/* ===== GOOGLE ===== */
.google-section {
  background: #fff;
}

.google-grid {
  max-width: 1140px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: stretch;
}

.google-box {
  margin: auto;
  padding: 60px 50px;
  border-radius: 24px;
  box-shadow: 0 10px 50px rgba(0,0,0,0.08);
  text-align: center;
  border: 1px solid rgba(0,0,0,0.06);
  width: 100%;
}

.google-map-box {
  position: relative;
  min-height: 340px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 10px 50px rgba(0,0,0,0.08);
  border: 1px solid rgba(0,0,0,0.06);
}

.google-map-box iframe {
  display: block;
  min-height: 340px;
}

.google-map-link {
  position: absolute;
  left: 16px;
  bottom: 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  color: var(--dark);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 10px 16px;
  border-radius: 50px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.18);
  transition: transform 0.3s;
}

.google-map-link i {
  color: var(--primary);
}

.google-map-link:hover {
  transform: translateY(-2px);
}

@media (max-width: 860px) {
  .google-grid { grid-template-columns: 1fr; }
  .google-box { padding: 40px 25px; }
}

.google-logo {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 14px;
  color: var(--text-light);
}

.g-letter {
  color: #4285F4;
  font-size: 1.9rem;
}

.google-stars {
  font-size: 2.2rem;
  color: #f5b301;
  margin-bottom: 20px;
  letter-spacing: 4px;
}

.google-box h2 {
  font-size: 1.9rem;
  margin-bottom: 14px;
  color: var(--dark);
  font-weight: 700;
}

.google-box p {
  margin-bottom: 30px;
  line-height: 1.8;
  color: var(--text-light);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.google-box .btn {
  background: var(--primary);
  color: #fff;
}

.google-box .btn:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px var(--shadow-strong);
}

/* ===== CONSÓRCIOS ===== */
.consorcios {
  background: var(--light);
}

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

.consorcio-card {
  text-align: left;
  border-radius: 16px;
  background: #fff;
  overflow: hidden;
  transition: all 0.3s;
  border: 1px solid rgba(23,40,108,0.07);
  box-shadow: 0 4px 15px var(--shadow);
}

.consorcio-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px var(--shadow-strong);
}

.consorcio-card-img {
  width: 100%;
  aspect-ratio: 4 / 3;
  background: #d8dde6;
  overflow: hidden;
}

.consorcio-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.consorcio-card-body {
  padding: 32px;
}

.consorcio-card-icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: var(--light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.consorcio-card-icon i {
  font-size: 24px;
  color: var(--primary);
}

.consorcio-card h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 10px;
}

.consorcio-card p {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.5;
  margin-bottom: 18px;
}

.consorcio-card-link {
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
  font-size: 0.9rem;
}

.consorcio-card-link i {
  font-size: 0.8rem;
  margin-left: 4px;
}

/* ===== CTA FINAL ===== */
.cta-final {
  background:
    linear-gradient(160deg, rgba(15,26,71,0.93) 0%, rgba(23,40,108,0.88) 100%),
    url('../images/hero-cta.webp') center/cover no-repeat;
  text-align: center;
  color: #fff;
  padding: 110px 0;
}

.cta-final h2 {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  margin-bottom: 20px;
  font-weight: 800;
}

.cta-final p {
  max-width: 680px;
  margin: 0 auto 38px;
  line-height: 1.85;
  color: rgba(255,255,255,0.85);
  font-size: 1.05rem;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}

/* ===== FOOTER ===== */
footer {
  background: #0f1120;
  color: #fff;
  padding: 80px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.3fr;
  gap: 50px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-grid-minimal {
  grid-template-columns: minmax(0, 1.4fr) minmax(320px, 1fr);
}

.footer-logo img {
  height: 65px;
  margin-bottom: 18px;
}

.footer-logo-img {
  padding: 5px 8px;
  border-radius: 10px;
}

.footer-column p {
  color: rgba(255,255,255,0.6);
  line-height: 1.8;
  font-size: 0.93rem;
  margin-bottom: 8px;
}

.footer-social {
  display: flex;
  gap: 14px;
  margin-top: 20px;
}

.footer-social a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: rgba(255,255,255,0.75);
  transition: all 0.3s;
}

.footer-social a:hover {
  background: var(--primary);
  color: #fff;
  transform: translateY(-3px);
}

.footer-column h4 {
  margin-bottom: 22px;
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.5px;
}

.footer-column ul {
  list-style: none;
}

.footer-column li {
  margin-bottom: 11px;
}

.footer-column ul a {
  color: rgba(255,255,255,0.6);
  font-size: 0.93rem;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  gap: 6px;
}

.footer-column ul a:hover {
  color: #fff;
  padding-left: 4px;
}

.footer-contact p {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px;
  color: rgba(255,255,255,0.65);
  font-size: 0.93rem;
}

.footer-contact p i {
  color: var(--gray);
  margin-top: 2px;
  flex-shrink: 0;
}

.footer-contact a {
  color: rgba(255,255,255,0.65);
  transition: color 0.3s;
}

.footer-contact a:hover {
  color: #fff;
}

.copyright {
  padding-top: 28px;
  text-align: center;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.4);
  line-height: 1.7;
}

/* ===== WHATSAPP FLUTUANTE ===== */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 62px;
  height: 62px;
  background: var(--green-wa);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  color: #fff;
  z-index: 9998;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.45);
  transition: all 0.3s;
  animation: pulse-wa 2.5s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 35px rgba(37, 211, 102, 0.55);
}

@keyframes pulse-wa {
  0%, 100% { box-shadow: 0 8px 25px rgba(37, 211, 102, 0.45); }
  50% { box-shadow: 0 8px 35px rgba(37, 211, 102, 0.70); }
}

/* ===== RESPONSIVO ===== */
@media (max-width: 1100px) {
  .services-grid { grid-template-columns: repeat(3, 1fr); }
  .consorcio-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(3, 1fr); }
  .hero h1 { font-size: 3rem; }
}

@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; }
  .about-image { order: -1; }
  .about-badge { right: 10px; bottom: -15px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .mobile-toggle { display: block; }

  .nav-links {
    display: none;
    position: absolute;
    top: 85px;
    left: 0;
    width: 100%;
    background: var(--primary-dark);
    flex-direction: column;
    padding: 25px 30px;
    gap: 5px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
  }

  .nav-links.active { display: flex; }

  .nav-links a {
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    font-size: 1rem;
  }

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

  .hero { text-align: center; }
  .hero h1 { font-size: 2.3rem; }
  .hero p { margin-left: auto; margin-right: auto; }
  .hero-buttons { justify-content: center; }
  .hero-trust { justify-content: center; }

  .services-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .consorcio-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }

  .section-title h2 { font-size: 1.9rem; }
  .cta-final h2 { font-size: 2.1rem; }
  .google-box { padding: 40px 25px; }
  .google-box h2 { font-size: 1.6rem; }

  section { padding: 70px 0; }
}

@media (max-width: 480px) {
  .services-grid { grid-template-columns: 1fr; }
  .consorcio-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: 2rem; }
  .hero-trust { flex-direction: column; gap: 12px; }
  .about-badge { position: static; margin-top: 20px; justify-content: center; }
}

/* ===== ACESSIBILIDADE ===== */
:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
}


/* ===== AJUSTES DE ACESSIBILIDADE E CONTEÚDO ===== */
.google-map-frame {
  width: 100%;
  height: 100%;
  min-height: 340px;
  border: 0;
}

.consorcio-cta {
  margin-top: 50px;
  text-align: center;
}

.btn-service {
  background: var(--primary);
  color: #fff;
  justify-content: center;
}

.btn-service:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
}

/* ===== PÁGINA DE CONSÓRCIOS ===== */
.inner-hero {
  min-height: 610px;
  padding-top: 165px;
  padding-bottom: 90px;
  display: flex;
  align-items: center;
  color: #fff;
}

.inner-hero-content {
  max-width: 780px;
}

.inner-hero h1 {
  max-width: 760px;
  margin-bottom: 22px;
  color: #fff;
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.3rem, 5vw, 3.8rem);
  line-height: 1.12;
}

.inner-hero p {
  max-width: 650px;
  margin-bottom: 32px;
  color: rgba(255,255,255,0.88);
  font-size: 1.08rem;
  line-height: 1.8;
}

.consorcio-detail-grid {
  gap: 32px;
}

.consorcio-detail-grid .consorcio-card h2 {
  margin-bottom: 12px;
  color: var(--primary);
  font-size: 1.45rem;
}

.detail-list {
  margin: 20px 0 26px;
  list-style: none;
}

.detail-list li {
  display: flex;
  gap: 10px;
  margin-bottom: 12px;
  color: var(--text);
  line-height: 1.55;
}

.detail-list i {
  flex-shrink: 0;
  margin-top: 4px;
  color: var(--primary);
}

.consorcio-info {
  background: var(--light);
}

.info-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(280px, 0.8fr);
  gap: 55px;
  align-items: center;
}

.info-grid .eyebrow {
  display: block;
  margin-bottom: 12px;
  color: var(--primary);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
}

.info-grid h2 {
  margin-bottom: 20px;
  color: var(--dark);
  font-size: 2.2rem;
}

.info-grid p {
  margin-bottom: 15px;
  line-height: 1.8;
}

.info-card {
  padding: 38px;
  border-radius: 18px;
  background: var(--primary);
  color: #fff;
  box-shadow: 0 16px 40px var(--shadow-strong);
}

.info-card > i {
  margin-bottom: 18px;
  font-size: 36px;
  color: rgba(255,255,255,0.75);
}

.info-card h3 {
  margin-bottom: 12px;
  font-size: 1.35rem;
}

.info-card p {
  margin: 0;
  color: rgba(255,255,255,0.82);
}

[aria-current="page"] {
  color: #fff !important;
}

@media (max-width: 900px) {
  .info-grid { grid-template-columns: 1fr; }
  .inner-hero { min-height: 560px; }
}

@media (max-width: 768px) {
  .inner-hero { padding-top: 145px; text-align: center; }
  .inner-hero p { margin-right: auto; margin-left: auto; }
  .inner-hero .hero-badge { margin-right: auto; margin-left: auto; }
  .consorcio-detail-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .inner-hero { min-height: auto; padding-top: 135px; padding-bottom: 70px; }
  .inner-hero h1 { font-size: 2.1rem; }
  .info-card, .consorcio-card-body { padding: 26px 22px; }
  .btn-service { width: 100%; }
}
/* ===== PÁGINAS DE SERVIÇOS ===== */
.service-hero {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}


.service-content { background: #fff; }
.content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(280px, .75fr);
  gap: 60px;
  align-items: start;
}

.service-content .eyebrow {
  display: block;
  margin-bottom: 12px;
  color: var(--primary);
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
}

.service-content h2 {
  margin-bottom: 20px;
  color: var(--dark);
  font-size: clamp(1.8rem, 4vw, 2.35rem);
  line-height: 1.25;
}

.service-content p {
  margin-bottom: 17px;
  line-height: 1.8;
}

.feature-list { margin-top: 28px; list-style: none; }
.feature-list li { display: flex; gap: 14px; margin-bottom: 20px; }
.feature-list li > i {
  display: flex;
  flex: 0 0 30px;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #e8edff;
  color: var(--primary);
}
.feature-list strong { display: block; margin-bottom: 3px; color: var(--dark); }
.feature-list span { display: block; color: var(--text-light); line-height: 1.6; }

.service-aside {
  position: sticky;
  top: 120px;
  padding: 38px;
  border-radius: 18px;
  background: var(--primary);
  color: #fff;
  box-shadow: 0 16px 40px var(--shadow-strong);
}
.service-aside > i { margin-bottom: 18px; color: rgba(255,255,255,.75); font-size: 38px; }
.service-aside h3 { margin-bottom: 12px; font-size: 1.35rem; }
.service-aside p { margin: 0; color: rgba(255,255,255,.82); }

.service-band { background: var(--light); }
.benefit-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.benefit-grid article {
  padding: 34px 28px;
  border: 1px solid rgba(23,40,108,.08);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 6px 24px var(--shadow);
}
.benefit-grid article > i { margin-bottom: 18px; color: var(--primary); font-size: 30px; }
.benefit-grid h3 { margin-bottom: 10px; color: var(--dark); }
.benefit-grid p { color: var(--text-light); line-height: 1.7; }
.source-note { margin-top: 26px; padding: 17px 20px; border-left: 4px solid var(--primary); background: var(--light); font-size: .9rem; }
.source-note a { color: var(--primary); font-weight: 600; text-decoration: underline; }

.about-actions { display: flex; flex-wrap: wrap; gap: 14px; }
.about-actions .btn-secondary { background: transparent; color: var(--primary); border: 2px solid var(--primary); }
.about-actions .btn-secondary:hover { background: var(--primary); color: #fff; }

@media (max-width: 900px) {
  .content-grid { grid-template-columns: 1fr; }
  .service-aside { position: static; }
  .benefit-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
  .benefit-grid { grid-template-columns: 1fr; }
  .service-aside { padding: 28px 24px; }
  .feature-list li { gap: 11px; }
}
/* ===== DIFERENCIAÇÃO VISUAL DAS PÁGINAS ===== */
.breadcrumbs { display: flex; align-items: center; gap: 9px; margin-bottom: 22px; color: rgba(255,255,255,.72); font-size: .82rem; }
.breadcrumbs a:hover { color: #fff; }
.breadcrumbs i { font-size: .62rem; }
.hero-signature { display: flex; flex-wrap: wrap; gap: 10px; margin: -10px 0 30px; }
.hero-signature span { display: inline-flex; align-items: center; gap: 8px; padding: 9px 14px; border: 1px solid rgba(255,255,255,.24); border-radius: 10px; background: rgba(255,255,255,.1); color: #fff; font-size: .84rem; backdrop-filter: blur(7px); }
.hero-signature strong { color: #fff; font-size: 1rem; }
.signature-section { position: relative; overflow: hidden; }
.signature-section .eyebrow, .faq-section .eyebrow { display: block; margin-bottom: 12px; color: var(--primary); font-size: .82rem; font-weight: 600; letter-spacing: 2.5px; text-transform: uppercase; }

/* Auto: ritmo dinâmico e linha diagonal */
.page-auto .inner-hero::after { content: ''; position: absolute; inset: 0 0 0 auto; width: 42%; background: linear-gradient(135deg, transparent 25%, rgba(37,99,235,.18)); clip-path: polygon(28% 0,100% 0,100% 100%,0 100%); pointer-events: none; }
.page-auto .inner-hero-content { position: relative; z-index: 1; }
.auto-journey { background: linear-gradient(135deg,#fff 0%,#eef3ff 100%); }
.process-line { display: grid; grid-template-columns: repeat(4,1fr); position: relative; gap: 20px; }
.process-line::before { content: ''; position: absolute; top: 25px; left: 8%; right: 8%; height: 2px; background: #cbd5f3; }
.process-line article { position: relative; padding: 64px 20px 24px; text-align: center; }
.process-line b { position: absolute; top: 0; left: 50%; display: grid; place-items: center; width: 50px; height: 50px; transform: translateX(-50%); border-radius: 50%; background: var(--primary); color: #fff; box-shadow: 0 8px 22px var(--shadow-strong); }
.process-line h3 { margin-bottom: 8px; color: var(--dark); font-size: 1.05rem; }
.process-line p { color: var(--text-light); font-size: .9rem; }

/* Frota: linguagem de painel e gestão */
.page-frota .inner-hero { background-position: center 45%; }
.fleet-metrics span { min-width: 155px; flex-direction: column; align-items: flex-start; gap: 0; }
.fleet-metrics strong { font-size: 1.35rem; }
.fleet-compare { background: #0f1a47; color: #fff; }
.compare-grid { display: grid; grid-template-columns: .8fr 1.6fr; gap: 60px; align-items: center; }
.compare-grid h2 { margin: 12px 0 18px; color: #fff; font-size: 2.2rem; }
.compare-grid > div > p { color: rgba(255,255,255,.72); line-height: 1.8; }
.comparison-card { display: grid; grid-template-columns: 1fr auto 1fr; gap: 15px; align-items: center; }
.comparison-card > div { padding: 28px; border: 1px solid rgba(255,255,255,.12); border-radius: 16px; background: rgba(255,255,255,.06); }
.comparison-card .highlight { background: #fff; color: var(--dark); }
.comparison-card small { display: block; margin-bottom: 14px; color: #9db6ff; font-weight: 700; text-transform: uppercase; }
.comparison-card .highlight small { color: var(--primary); }
.comparison-card li { margin: 10px 0; list-style: none; font-size: .9rem; }

/* Transporte: linguagem técnica */
.page-transporte .inner-hero { background-position: center; }
.transport-codes { gap: 12px; }
.transport-codes span { flex-direction: column; align-items: flex-start; min-width: 170px; }
.transport-codes strong { color: #a8c4ff; letter-spacing: .5px; }
.transport-roles { background: #f7f8fc; }
.role-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.role-grid article { position: relative; padding: 38px 30px; overflow: hidden; border-radius: 16px; background: #fff; box-shadow: 0 8px 30px var(--shadow); }
.role-grid article > strong { display: block; margin-bottom: 22px; color: #dbe4ff; font-size: 3rem; line-height: 1; }
.role-grid h3 { margin-bottom: 10px; color: var(--dark); }
.role-grid p { color: var(--text-light); line-height: 1.7; }
.regulatory-stamp { display: flex; gap: 10px; align-items: center; margin-top: 28px; padding: 16px 20px; border-radius: 10px; background: #e8edff; color: var(--primary-dark); font-size: .88rem; }

/* Residencial: composição acolhedora */
.page-residencial .inner-hero { border-bottom-right-radius:80px; }
.home-types span { border-radius: 50px; }
.home-map { background: linear-gradient(135deg,#f8f4ee 0%,#fff 60%); }
.home-map-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 75px; align-items: center; }
.home-map-grid h2 { margin-bottom: 18px; color: var(--dark); font-size: 2.25rem; }
.home-map-grid p { margin-bottom: 28px; line-height: 1.8; }
.house-visual { position: relative; display: grid; place-items: center; min-height: 380px; border-radius: 40% 60% 55% 45%; background: #e6ebff; }
.house-visual > i { color: var(--primary); font-size: 130px; filter: drop-shadow(0 15px 18px rgba(23,40,108,.18)); }
.house-visual .zone { position: absolute; padding: 9px 14px; border-radius: 50px; background: #fff; color: var(--dark); font-size: .82rem; font-weight: 600; box-shadow: 0 8px 24px var(--shadow); }
.zone-structure { top: 18%; left: 8%; }.zone-belongings { top: 22%; right: 6%; }.zone-liability { bottom: 20%; left: 4%; }.zone-assistance { right: 4%; bottom: 16%; }

/* Viagem: composição aberta e sequencial */
.page-viagem .inner-hero-content { margin: 0 auto; text-align: center; }
.page-viagem .inner-hero-content p { margin-right: auto; margin-left: auto; }
.page-viagem .breadcrumbs, .page-viagem .hero-signature { justify-content: center; }
.page-viagem .hero-badge { margin-right: auto; margin-left: auto; }
.travel-flow { background: linear-gradient(180deg,#fff,#eef6ff); }
.travel-line { display: grid; grid-template-columns: repeat(3,1fr); gap: 0; max-width: 1000px; margin: auto; }
.travel-line article { position: relative; padding: 35px; text-align: center; }
.travel-line article:not(:last-child)::after { content: ''; position: absolute; top: 62px; right: -18px; width: 36px; height: 2px; background: #9bb8ed; }
.travel-line i { display: grid; place-items: center; width: 58px; height: 58px; margin: 0 auto 18px; border-radius: 50%; background: var(--primary); color: #fff; font-size: 22px; }
.travel-line h3 { margin-bottom: 8px; color: var(--dark); }
.travel-line p { color: var(--text-light); line-height: 1.7; }

/* Quem Somos: linguagem editorial e histórica */
.page-sobre .inner-hero { min-height: 680px; }
.brand-facts span { min-width: 145px; flex-direction: column; align-items: flex-start; gap: 1px; }
.brand-timeline { background: #fff; }
.timeline-line { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; border-left: 4px solid var(--primary); padding-left: 38px; }
.timeline-line article { padding: 30px; border-radius: 14px; background: var(--light); }
.timeline-line b { color: var(--primary); font-family: 'Playfair Display',serif; font-size: 1.7rem; }
.timeline-line h3 { margin: 12px 0 8px; color: var(--dark); }
.timeline-line p { color: var(--text-light); line-height: 1.7; }

/* Consórcio: planejamento e escolha */
.page-consorcio .inner-hero { background-position: center; }
.consortium-choice span { border-radius: 50px; }
.consortium-process { background: linear-gradient(135deg,#f4f6fb,#fff); }

/* FAQ e links internos */
.faq-section { background: #fff; }
.faq-layout { display: grid; grid-template-columns: .7fr 1.4fr; gap: 70px; align-items: start; }
.faq-layout h2 { margin-bottom: 12px; color: var(--dark); font-size: 2.2rem; }
.faq-layout > div > p { color: var(--text-light); }
.faq-list details { border-bottom: 1px solid #e5e7eb; }
.faq-list summary { position: relative; padding: 21px 42px 21px 0; color: var(--dark); font-weight: 600; cursor: pointer; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: '+'; position: absolute; top: 17px; right: 5px; color: var(--primary); font-size: 1.5rem; }
.faq-list details[open] summary::after { content: '−'; }
.faq-list details p { padding: 0 42px 20px 0; color: var(--text-light); line-height: 1.75; }
.related-section { padding: 65px 0; background: #0f1a47; color: #fff; }
.related-section h2 { margin-bottom: 25px; color: #fff; font-size: 1.6rem; }
.related-links { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.related-links a { display: flex; gap: 13px; align-items: center; padding: 18px 20px; border: 1px solid rgba(255,255,255,.13); border-radius: 12px; background: rgba(255,255,255,.06); transition: .25s; }
.related-links a:hover { transform: translateY(-3px); background: rgba(255,255,255,.12); }
.related-links i { color: #a8c4ff; font-size: 1.2rem; }
.related-links span { font-weight: 600; }

@media (max-width: 1000px) {
  .process-line { grid-template-columns: 1fr 1fr; }
  .process-line::before { display: none; }
  .compare-grid, .home-map-grid { grid-template-columns: 1fr; }
  .role-grid { grid-template-columns: 1fr 1fr; }
  .faq-layout { grid-template-columns: 1fr; gap: 35px; }
  .timeline-line { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .hero-signature { justify-content: center; }
  .breadcrumbs { justify-content: center; }
  .process-line, .role-grid, .travel-line, .related-links { grid-template-columns: 1fr; }
  .comparison-card { grid-template-columns: 1fr; }
  .comparison-card > i { transform: rotate(90deg); justify-self: center; }
  .travel-line article:not(:last-child)::after { display: none; }
  .house-visual { min-height: 300px; }
  .house-visual > i { font-size: 100px; }
  .page-residencial .inner-hero { border-bottom-right-radius: 45px; }
}
@media (max-width: 480px) {
  .hero-signature span { width: 100%; justify-content: center; }
  .fleet-metrics span, .transport-codes span, .brand-facts span { align-items: center; }
  .process-line article { padding-right: 8px; padding-left: 8px; }
  .role-grid article { padding: 30px 24px; }
  .house-visual .zone { font-size: .72rem; }
}
/* Novas páginas: Empresarial, Equipamentos e Saúde */
.business-continuity { background: linear-gradient(135deg,#eef2ff,#fff); }
.continuity-grid { display:grid; grid-template-columns:.75fr 1.35fr; gap:65px; align-items:center; }
.continuity-grid h2 { margin:10px 0 16px; color:var(--dark); font-size:2.2rem; }
.continuity-grid > div > p { color:var(--text-light); line-height:1.8; }
.risk-matrix { display:grid; grid-template-columns:1fr 1fr; gap:16px; }
.risk-matrix article { padding:25px; border:1px solid #dfe5f7; border-radius:14px; background:#fff; box-shadow:0 8px 26px var(--shadow); }
.risk-matrix i { margin-bottom:14px; color:var(--primary); font-size:1.45rem; }
.risk-matrix h3 { margin-bottom:6px; color:var(--dark); }
.risk-matrix p { color:var(--text-light); font-size:.9rem; }
.equipment-types span { border-color:rgba(108,220,229,.35); }
.equipment-blueprint { background:#0c2739; color:#fff; }
.equipment-blueprint .section-title h2,.equipment-blueprint .section-title span { color:#fff; }
.equipment-board { display:grid; grid-template-columns:repeat(3,1fr); gap:16px; }
.equipment-board article { display:flex; gap:16px; align-items:center; padding:25px; border:1px solid rgba(255,255,255,.12); border-radius:14px; background:rgba(255,255,255,.06); }
.equipment-board i { color:#68d8df; font-size:1.55rem; }
.equipment-board h3 { margin-bottom:5px; }
.equipment-board p { color:rgba(255,255,255,.7); font-size:.88rem; }
.health-options span { border-color:rgba(157,232,219,.38); }
.health-paths { background:linear-gradient(180deg,#f2fbfa,#fff); }
.health-choice-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:22px; align-items:stretch; }
.health-choice-grid article { position:relative; padding:34px 28px; border:1px solid #dcebe9; border-radius:20px; background:#fff; box-shadow:0 12px 34px rgba(11,78,86,.08); }
.health-choice-grid article.featured { transform:translateY(-10px); border-color:#4daea5; box-shadow:0 18px 40px rgba(11,78,86,.16); }
.choice-label { position:absolute; top:0; right:22px; padding:6px 12px; border-radius:0 0 9px 9px; background:#157f7a; color:#fff; font-size:.72rem; font-weight:700; text-transform:uppercase; }
.health-icon { display:grid; place-items:center; width:52px; height:52px; margin-bottom:20px; border-radius:16px; background:#e0f4f1; color:#157f7a; font-size:1.25rem; }
.health-choice-grid h3 { margin-bottom:10px; color:var(--dark); }
.health-choice-grid p { min-height:76px; color:var(--text-light); line-height:1.65; }
.health-choice-grid ul { margin-top:18px; padding-left:18px; color:var(--dark); font-size:.9rem; }
.health-choice-grid li { margin:8px 0; }
@media (max-width:1000px) { .continuity-grid { grid-template-columns:1fr; gap:35px; } .equipment-board { grid-template-columns:1fr 1fr; } }
@media (max-width:768px) { .risk-matrix,.equipment-board,.health-choice-grid { grid-template-columns:1fr; } .health-choice-grid article.featured { transform:none; } }
@media (max-width:480px) { .risk-matrix article,.equipment-board article,.health-choice-grid article { padding:22px; } }
/* Seguro de Vida: planejamento e perfis */
.page-vida .inner-hero { background:linear-gradient(112deg,rgba(32,19,67,.96),rgba(91,42,111,.78)),radial-gradient(circle at 82% 35%,#d36b91 0,transparent 35%); }
.life-pillars span { border-color:rgba(239,185,213,.35); }
.life-planning { background:linear-gradient(145deg,#f7f2fb,#fff); }
.life-plan-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:18px; }
.life-plan-grid article { position:relative; padding:30px 24px; overflow:hidden; border:1px solid #e7dff0; border-radius:18px; background:#fff; box-shadow:0 10px 30px rgba(70,35,90,.08); }
.life-plan-grid article > span { position:absolute; top:10px; right:16px; color:#eee6f3; font-family:'Playfair Display',serif; font-size:2.7rem; font-weight:800; }
.life-plan-grid i { margin-bottom:18px; color:#78458d; font-size:1.5rem; }
.life-plan-grid h3 { margin-bottom:9px; color:var(--dark); font-size:1rem; }
.life-plan-grid p { color:var(--text-light); font-size:.88rem; line-height:1.65; }
.life-profiles { padding:95px 0; background:#fff; }
.life-profiles .section-title { max-width:760px; margin-right:auto; margin-left:auto; text-align:center; }
.life-profiles .section-title p { margin-top:16px; color:var(--text-light); line-height:1.75; }
.life-profile-grid { display:grid; grid-template-columns:1fr 1fr; gap:26px; max-width:1080px; margin:42px auto 0; }
.life-profile-grid article { padding:38px; border-radius:24px; box-shadow:0 16px 42px rgba(23,40,108,.1); }
.life-profile-grid .life-woman { border:1px solid #f0d9e4; background:linear-gradient(145deg,#fff7fb,#fff); }
.life-profile-grid .life-man { border:1px solid #d7e3f2; background:linear-gradient(145deg,#f5f9ff,#fff); }
.profile-top { display:flex; align-items:center; justify-content:space-between; margin-bottom:22px; }
.profile-top span { font-size:.78rem; font-weight:700; letter-spacing:1.8px; text-transform:uppercase; }
.life-woman .profile-top { color:#a63f70; }.life-man .profile-top { color:#27598b; }
.profile-top i { display:grid; place-items:center; width:48px; height:48px; border-radius:50%; background:#fff; box-shadow:0 7px 20px rgba(0,0,0,.08); font-size:1.25rem; }
.life-profile-grid h3 { margin-bottom:12px; color:var(--dark); font-size:1.45rem; }
.life-profile-grid p { color:var(--text-light); line-height:1.7; }
.life-profile-grid ul { margin:22px 0; padding:0; list-style:none; }
.life-profile-grid li { display:flex; gap:10px; margin:12px 0; color:var(--dark); font-size:.9rem; line-height:1.55; }
.life-woman li i { color:#b84e7f; }.life-man li i { color:#346fa5; }
.profile-link { display:inline-flex; gap:9px; align-items:center; font-weight:700; }
.life-woman .profile-link { color:#9c3768; }.life-man .profile-link { color:#245786; }
.coverage-note { display:flex; gap:10px; align-items:flex-start; max-width:920px; margin:28px auto 0; padding:16px 20px; border-radius:12px; background:#f5f6fa; color:var(--text-light); font-size:.82rem; line-height:1.6; }
.coverage-note i { margin-top:3px; color:var(--primary); }
@media (max-width:1000px) { .life-plan-grid { grid-template-columns:1fr 1fr; } }
@media (max-width:768px) { .life-plan-grid,.life-profile-grid { grid-template-columns:1fr; } .life-profile-grid article { padding:30px 25px; } }
@media (max-width:480px) { .life-plan-grid { grid-template-columns:1fr; } .life-profiles { padding:70px 0; } }
/* Responsabilidade Civil: reputação e defesa */
.rc-pillars span { border-color:rgba(188,214,255,.32); }
.rc-reputation { background:linear-gradient(145deg,#eef3fb,#fff); }
.rc-reputation-grid { display:grid; grid-template-columns:.72fr 1.35fr; gap:70px; align-items:center; }
.rc-reputation-grid h2 { margin:10px 0 16px; color:var(--dark); font-size:2.2rem; }
.rc-reputation-grid > div > p { color:var(--text-light); line-height:1.8; }
.rc-layers { display:grid; grid-template-columns:1fr 1fr; gap:16px; }
.rc-layers article { display:flex; gap:17px; padding:24px; border:1px solid #dce5f4; border-radius:16px; background:#fff; box-shadow:0 9px 28px rgba(16,42,85,.08); }
.rc-layers article > i { color:#285d96; font-size:1.4rem; }
.rc-layers span { color:#9eb2ca; font-size:.72rem; font-weight:800; letter-spacing:1px; }
.rc-layers h3 { margin:4px 0 7px; color:var(--dark); }
.rc-layers p { color:var(--text-light); font-size:.87rem; line-height:1.6; }
.rc-professions { padding:95px 0; background:#0e2245; color:#fff; }
.rc-professions .section-title { max-width:760px; }
.rc-professions .section-title h2,.rc-professions .section-title span { color:#fff; }
.rc-professions .section-title p { margin-top:13px; color:rgba(255,255,255,.7); }
.profession-grid { display:grid; grid-template-columns:repeat(5,1fr); gap:15px; }
.profession-grid article { padding:27px 20px; border:1px solid rgba(255,255,255,.12); border-radius:15px; background:rgba(255,255,255,.055); }
.profession-grid i { margin-bottom:18px; color:#92bcf2; font-size:1.55rem; }
.profession-grid h3 { margin-bottom:8px; font-size:1rem; }
.profession-grid p { color:rgba(255,255,255,.68); font-size:.84rem; line-height:1.6; }
@media (max-width:1100px) { .profession-grid { grid-template-columns:repeat(3,1fr); } }
@media (max-width:1000px) { .rc-reputation-grid { grid-template-columns:1fr; gap:35px; } }
@media (max-width:768px) { .rc-layers,.profession-grid { grid-template-columns:1fr; } }
@media (max-width:480px) { .rc-layers article,.profession-grid article { padding:21px; } }
/* Imagens secundárias de serviços */
.service-image-showcase { padding:0 0 82px; background:#fff; }
.service-image-showcase figure { overflow:hidden; margin:0; border-radius:22px; background:#eef1f7; box-shadow:0 16px 42px rgba(15,32,72,.12); }
.service-image-showcase img { display:block; width:100%; height:auto; }
.life-profile-image { display:block; width:100%; height:auto; margin:0 0 24px; border-radius:14px; }
@media (max-width:768px) {
  .service-image-showcase { padding-bottom:60px; }
  .service-image-showcase figure { border-radius:14px; }
  .life-profile-image { margin-bottom:20px; border-radius:10px; }
}



/* Caminhões: estrada e continuidade operacional */
.truck-pillars span { border-color:rgba(255,204,126,.3); }
.truck-route { background:linear-gradient(145deg,#edf2f8,#fff); }
.truck-route-grid { display:grid; grid-template-columns:.72fr 1.35fr; gap:68px; align-items:center; }
.truck-route-grid h2 { margin:10px 0 16px; color:var(--dark); font-size:2.2rem; }
.truck-route-grid > div > p { color:var(--text-light); line-height:1.8; }
.route-checkpoints { display:grid; grid-template-columns:1fr 1fr; gap:15px; }
.route-checkpoints article { position:relative; display:flex; gap:16px; padding:24px; overflow:hidden; border:1px solid #dbe3ed; border-radius:15px; background:#fff; box-shadow:0 9px 28px rgba(13,37,68,.08); }
.route-checkpoints b { position:absolute; top:7px; right:12px; color:#e7edf4; font-size:1.7rem; }
.route-checkpoints i { color:#b87329; font-size:1.35rem; }
.route-checkpoints h3 { margin-bottom:6px; color:var(--dark); }
.route-checkpoints p { color:var(--text-light); font-size:.86rem; line-height:1.6; }
.truck-formats { padding:92px 0; background:#10294b; color:#fff; }
.truck-formats .section-title h2,.truck-formats .section-title span { color:#fff; }
.truck-formats .section-title p { margin-top:12px; color:rgba(255,255,255,.68); }
.truck-format-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:20px; }
.truck-format-grid article { padding:32px 28px; border:1px solid rgba(255,255,255,.12); border-radius:16px; background:rgba(255,255,255,.06); }
.truck-format-grid i { margin-bottom:18px; color:#f0ad61; font-size:1.6rem; }
.truck-format-grid h3 { margin-bottom:9px; }
.truck-format-grid p { color:rgba(255,255,255,.7); line-height:1.65; }
.truck-distinction { padding:92px 0; background:#fff; }
.distinction-grid { display:grid; grid-template-columns:.7fr 1.35fr; gap:65px; align-items:center; }
.distinction-grid h2 { margin:10px 0 15px; color:var(--dark); font-size:2.2rem; }
.distinction-grid > div > p { color:var(--text-light); line-height:1.8; }
.distinction-cards { display:grid; grid-template-columns:1fr 1fr; gap:18px; }
.distinction-cards article { padding:30px; border:1px solid #dfe5ed; border-radius:17px; background:#f8fafc; }
.distinction-cards i { margin-bottom:17px; color:#b66e21; font-size:1.5rem; }
.distinction-cards h3 { margin-bottom:10px; color:var(--dark); }
.distinction-cards p { color:var(--text-light); font-size:.9rem; line-height:1.65; }
.distinction-cards a { display:inline-flex; gap:8px; align-items:center; margin-top:15px; color:var(--primary); font-weight:700; font-size:.86rem; }
.distinction-cards a i { margin:0; color:inherit; font-size:.8rem; }
@media (max-width:1000px) { .truck-route-grid,.distinction-grid { grid-template-columns:1fr; gap:35px; } }
@media (max-width:768px) { .route-checkpoints,.truck-format-grid,.distinction-cards { grid-template-columns:1fr; } }
@media (max-width:480px) { .route-checkpoints article,.truck-format-grid article,.distinction-cards article { padding:22px; } }
/* Alinhamento editorial da página Seguro Viagem */
.page-viagem .inner-hero-content { margin-right:auto; margin-left:auto; text-align:left; }
.page-viagem .inner-hero-content p { margin-right:0; margin-left:0; }
.page-viagem .breadcrumbs,.page-viagem .hero-signature { justify-content:flex-start; }
.page-viagem .hero-badge { margin-right:0; margin-left:0; }
/* HERO sem camada de cor — enquadramento final */
.page-auto .inner-hero::after { display:none; }
.hero { background-image:url('../images/hero-home-v3.webp'); background-position:right center; background-size:cover; }
.hero-auto { background-image:url('../images/hero-auto-v2.jpg'); background-position:right center; background-size:cover; }
.hero-frota { background-image:url('../images/hero-frota-v2.jpg'); background-position:right center; background-size:cover; }
.hero-transporte { background-image:url('../images/hero-transporte-v2.jpg'); background-position:right center; background-size:cover; }
.page-residencial .inner-hero { background-image:url('../images/hero-residencial-v2.jpg'); background-position:right center; background-size:cover; }
.page-vida .inner-hero { background-image:url('../images/hero-vida-v2.jpg'); background-position:right center; background-size:cover; }
.page-rc .hero-rc { background-image:url('../images/hero-rc-v2.jpg'); background-position:right center; background-size:cover; }
.hero-viagem { background-image:url('../images/hero-viagem-v2.jpg'); background-position:right center; background-size:cover; }
.page-consorcio .inner-hero { background-image:url('../images/hero-consorcio-v2.jpg'); background-position:right center; background-size:cover; }
.page-caminhoes .hero-caminhoes { background-image:url('../images/hero-caminhoes.webp'); background-position:right center; background-size:cover; }
.hero-sobre { background-image:url('../images/fachada-cortada.webp'); background-position:right center; background-size:cover; }
@media (max-width:768px) {
  .hero,.hero-auto,.hero-frota,.hero-transporte,.page-empresarial .inner-hero,.page-equipamentos .inner-hero,.page-residencial .inner-hero,.page-saude .inner-hero,.page-vida .inner-hero,.page-rc .hero-rc,.hero-viagem,.page-consorcio .inner-hero,.page-caminhoes .hero-caminhoes,.hero-sobre { background-position:center center; }
  .hero { background-image:url('../images/hero-home-v3.webp'); }
  .hero-auto { background-image:url('../images/hero-auto-v2.jpg'); }
  .hero-frota { background-image:url('../images/hero-frota-v2.jpg'); }
  .hero-transporte { background-image:url('../images/hero-transporte-v2.jpg'); }
  .page-empresarial .inner-hero { background-image:url('../images/hero-empresarial-v2.jpg'); }
  .page-equipamentos .inner-hero { background-image:url('../images/hero-equipamentos-v2.jpg'); }
  .page-residencial .inner-hero { background-image:url('../images/hero-residencial-v2.jpg'); }
  .page-saude .inner-hero { background-image:url('../images/hero-saude-v2.jpg'); }
  .page-vida .inner-hero { background-image:url('../images/hero-vida-v2.jpg'); }
  .page-rc .hero-rc { background-image:url('../images/hero-rc-v2.jpg'); }
  .hero-viagem { background-image:url('../images/hero-viagem-v2.jpg'); }
  .page-consorcio .inner-hero { background-image:url('../images/hero-consorcio-v2.jpg'); }
  .page-caminhoes .hero-caminhoes { background-image:url('../images/hero-caminhoes.webp'); }
  .hero-sobre { background-image:url('../images/fachada-cortada.webp'); }
}

/* Conteúdo do HERO alinhado ao container geral */
.inner-hero-content {
  max-width: 1200px;
}
/* Alinhamento esquerdo dos HEROs no mobile */
@media (max-width:768px) {
  .hero,
  .inner-hero,
  .page-viagem .inner-hero-content {
    text-align:left;
  }
  .hero p,
  .inner-hero p,
  .page-viagem .inner-hero-content p {
    margin-right:0;
    margin-left:0;
  }
  .hero-badge,
  .inner-hero .hero-badge,
  .page-viagem .hero-badge {
    margin-right:0;
    margin-left:0;
  }
  .hero-buttons,
  .hero-trust,
  .hero-signature,
  .breadcrumbs,
  .page-viagem .breadcrumbs,
  .page-viagem .hero-signature {
    justify-content:flex-start;
  }
  .hero-signature span {
    width:auto;
    justify-content:flex-start;
  }
  .fleet-metrics span,
  .transport-codes span,
  .brand-facts span {
    align-items:flex-start;
  }
}
/* Cabeçalho e rodapé premium — proposta visual */
header {
  background:rgba(10,27,70,.76);
  border-bottom:1px solid rgba(255,255,255,.1);
  box-shadow:none;
  -webkit-backdrop-filter:blur(18px) saturate(135%);
  backdrop-filter:blur(18px) saturate(135%);
  transition:background .3s ease,box-shadow .3s ease,border-color .3s ease;
}
header.header-scrolled {
  background:rgba(12,30,76,.97);
  border-bottom-color:rgba(255,255,255,.07);
  box-shadow:0 12px 34px rgba(5,14,40,.22);
}
.navbar { height:76px; gap:24px; }
.logo { display:flex; align-items:center; flex-shrink:0; }
.logo img { height:56px; transition:height .25s ease,transform .25s ease; }
.logo:hover img { transform:translateY(-1px); }
.nav-links { gap:6px; padding:5px; border:1px solid rgba(255,255,255,.08); border-radius:999px; background:rgba(255,255,255,.055); }
.nav-links a { display:block; padding:9px 15px; border-radius:999px; color:rgba(255,255,255,.82); font-size:.88rem; font-weight:500; letter-spacing:.1px; transition:background .2s ease,color .2s ease,transform .2s ease; }
.nav-links a::after { display:none; }
.nav-links a:hover,.nav-links a:focus-visible { color:#fff; background:rgba(255,255,255,.12); transform:translateY(-1px); }
.navbar > .btn-primary { min-height:46px; padding:12px 20px; border:1px solid rgba(255,255,255,.14); border-radius:999px; background:linear-gradient(135deg,#22c967,#18b95b); color:#fff; box-shadow:0 10px 24px rgba(24,185,91,.22); font-size:.86rem; white-space:nowrap; }
.navbar > .btn-primary:hover { background:linear-gradient(135deg,#28d970,#1dc464); box-shadow:0 14px 28px rgba(24,185,91,.3); transform:translateY(-2px); }
.mobile-toggle { width:44px; height:44px; padding:0; border:1px solid rgba(255,255,255,.14); border-radius:13px; background:rgba(255,255,255,.08); font-size:21px; transition:background .2s ease,border-color .2s ease; }
.mobile-toggle:hover { background:rgba(255,255,255,.14); border-color:rgba(255,255,255,.24); }

footer { position:relative; overflow:hidden; padding:82px 0 34px; background:radial-gradient(circle at 8% 12%,rgba(49,83,171,.25),transparent 34%),linear-gradient(145deg,#07152f 0%,#0b1d46 58%,#0d2459 100%); color:#fff; border-top:1px solid rgba(137,171,255,.28); }
footer::before { content:''; position:absolute; top:0; left:8%; width:220px; height:2px; background:linear-gradient(90deg,#7da6ff,#d6b36a,transparent); box-shadow:0 0 24px rgba(125,166,255,.55); }
footer::after { content:''; position:absolute; right:-140px; bottom:-180px; width:420px; height:420px; border:1px solid rgba(255,255,255,.05); border-radius:50%; box-shadow:0 0 0 70px rgba(255,255,255,.018),0 0 0 140px rgba(255,255,255,.012); pointer-events:none; }
footer .container { position:relative; z-index:1; }
.footer-grid,.footer-grid-minimal { grid-template-columns:minmax(0,1.15fr) minmax(370px,.85fr); gap:80px; align-items:center; padding-bottom:0; border-bottom:0; }
.footer-logo { max-width:590px; }
.footer-logo img,.footer-logo-img { width:auto; height:66px; margin-bottom:22px; padding:0; border-radius:0; filter:drop-shadow(0 8px 18px rgba(0,0,0,.22)); }
.footer-column p { max-width:560px; margin-bottom:0; color:rgba(255,255,255,.7); font-size:.96rem; line-height:1.85; }
.footer-social { margin-top:26px; }
.footer-social a { width:auto; min-width:48px; height:48px; padding:0 16px; gap:9px; border:1px solid rgba(255,255,255,.13); border-radius:999px; background:rgba(255,255,255,.07); color:#fff; font-size:19px; box-shadow:0 10px 24px rgba(0,0,0,.14); }
.footer-social a:hover { background:linear-gradient(135deg,#833ab4,#e1306c,#f77737); border-color:transparent; transform:translateY(-3px); box-shadow:0 14px 30px rgba(225,48,108,.22); }
.footer-contact { padding:30px 32px; border:1px solid rgba(255,255,255,.11); border-radius:24px; background:linear-gradient(145deg,rgba(255,255,255,.09),rgba(255,255,255,.045)); box-shadow:0 22px 55px rgba(2,10,31,.24); -webkit-backdrop-filter:blur(12px); backdrop-filter:blur(12px); }
.footer-column h4 { display:flex; align-items:center; gap:12px; margin-bottom:18px; color:#fff; font-size:.78rem; font-weight:700; letter-spacing:2.5px; text-transform:uppercase; }
.footer-column h4::after { content:''; width:46px; height:1px; background:linear-gradient(90deg,#94b4ff,transparent); }
.footer-contact p { position:relative; display:grid; grid-template-columns:22px 1fr; gap:11px; align-items:start; max-width:none; margin:0; padding:13px 0; border-bottom:1px solid rgba(255,255,255,.075); color:rgba(255,255,255,.65); font-size:.9rem; line-height:1.55; }
.footer-contact p:last-child { padding-bottom:0; border-bottom:0; }
.footer-contact p i { display:grid; place-items:center; width:22px; height:22px; margin:0; color:#9eb9ff; font-size:.9rem; }
.footer-contact a { color:rgba(255,255,255,.82); font-weight:500; }
.footer-contact a:hover { color:#fff; }
@media (max-width:1000px) {
  .nav-links { gap:2px; }
  .nav-links a { padding-right:10px; padding-left:10px; font-size:.82rem; }
  .navbar > .btn-primary { padding-right:15px; padding-left:15px; }
  .footer-grid,.footer-grid-minimal { grid-template-columns:1fr 1fr; gap:44px; }
}
@media (max-width:768px) {
  .navbar { height:72px; }
  .logo img { height:51px; }
  .nav-links { position:absolute; top:82px; right:5%; left:5%; width:auto; padding:12px; border:1px solid rgba(255,255,255,.12); border-radius:20px; background:rgba(8,24,61,.98); box-shadow:0 24px 55px rgba(3,10,30,.35); -webkit-backdrop-filter:blur(18px); backdrop-filter:blur(18px); }
  .nav-links a { padding:13px 15px; border-bottom:0; border-radius:12px; font-size:.96rem; }
  .nav-links li:not(:last-child) a { border-bottom:1px solid rgba(255,255,255,.065); }
  footer { padding:66px 0 30px; }
  .footer-grid,.footer-grid-minimal { grid-template-columns:1fr; gap:38px; }
  .footer-logo { max-width:none; }
  .footer-contact { padding:26px 24px; }
}
@media (max-width:480px) {
  .footer-logo img,.footer-logo-img { height:57px; }
  .footer-column p { font-size:.9rem; }
  .footer-contact { padding:23px 20px; border-radius:19px; }
  .footer-contact p { font-size:.86rem; }
}
/* Correção das linhas de contato no rodapé */
.footer-contact p {
  display:flex;
  flex-wrap:nowrap;
  align-items:flex-start;
  gap:11px;
}
.footer-contact p > i {
  flex:0 0 22px;
}
.footer-contact p a[href^="tel:"],
.footer-contact p a[href^="https://wa.me"] {
  flex-shrink:0;
  white-space:nowrap;
}
.footer-contact p a[href*="share.google"] {
  min-width:0;
  overflow-wrap:break-word;
}
/* Refinamento final do rodapé institucional */
footer { padding-top:70px; padding-bottom:26px; }
footer .container { width:90%; max-width:1080px; }
.footer-grid,.footer-grid-minimal { grid-template-columns:minmax(0,.82fr) minmax(520px,1.18fr); gap:54px; align-items:center; }
.footer-logo { align-self:center; }
.footer-tagline { max-width:360px; padding-left:12px; color:rgba(255,255,255,.8); font-size:1.05rem; line-height:1.55; letter-spacing:.1px; }
.footer-tagline strong { color:#fff; font-weight:700; letter-spacing:.8px; }
.footer-logo .footer-social { padding-left:12px; }
.footer-contact { padding:27px 30px; }
.footer-contact-grid { display:grid; grid-template-columns:minmax(0,1.08fr) minmax(190px,.92fr); gap:30px; }
.footer-contact-stack { min-width:0; }
.footer-contact-stack p { min-height:49px; }
.footer-contact-stack p:last-child { padding-bottom:0; border-bottom:0; }
.footer-contact-stack span { min-width:0; }
.footer-bottom { margin-top:34px; padding-top:20px; border-top:1px solid rgba(255,255,255,.08); text-align:center; }
.footer-bottom p { max-width:none; color:rgba(255,255,255,.43); font-size:.78rem; line-height:1.5; letter-spacing:.25px; }
@media (max-width:1000px) {
  footer .container { max-width:760px; }
  .footer-grid,.footer-grid-minimal { grid-template-columns:1fr; gap:38px; }
  .footer-logo { max-width:560px; }
  .footer-contact-grid { grid-template-columns:1fr 1fr; }
}
@media (max-width:600px) {
  footer { padding-top:58px; }
  footer .container { width:90%; }
  .footer-tagline { padding-left:9px; font-size:1rem; }
  .footer-logo .footer-social { padding-left:9px; }
  .footer-contact { padding:24px 21px; }
  .footer-contact-grid { grid-template-columns:1fr; gap:0; }
  .footer-contact-stack + .footer-contact-stack { margin-top:0; padding-top:0; }
  .footer-contact-stack:first-child p:last-child { padding-bottom:13px; border-bottom:1px solid rgba(255,255,255,.075); }
  .footer-bottom { margin-top:28px; }
}
/* Gradiente exclusivo do HERO da página inicial */
.hero {
  background-image:linear-gradient(90deg,rgba(17,45,116,.65) 0%,rgba(17,45,116,.26) 48%,rgba(17,45,116,.04) 78%),url('../images/hero-home-v3.webp');
  background-position:center center;
}
@media (max-width:768px) {
  .hero {
    background-image:linear-gradient(90deg,rgba(17,45,116,.65),rgba(17,45,116,.18)),url('../images/hero-home-v3.webp');
    background-position:center center;
  }
}
/* Catálogo de soluções: cards compactos e inteiramente clicáveis */
.services-grid {
  grid-template-columns:repeat(6,minmax(0,1fr));
  gap:18px;
}
.service-card {
  min-height:156px;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  padding:26px 14px;
  color:var(--dark);
  text-decoration:none;
  cursor:pointer;
}
.service-card h3 {
  margin:0;
  line-height:1.35;
  text-wrap:balance;
}
.service-card .service-icon { margin-bottom:16px; }
.service-card:hover,
.service-card:focus-visible {
  color:var(--dark);
  transform:translateY(-8px);
  border-color:rgba(23,40,108,.18);
  background:linear-gradient(145deg,#fff 35%,#f1f5ff 100%);
  box-shadow:0 18px 42px var(--shadow-strong);
}
.service-card:focus-visible::before { transform:scaleX(1); }
.service-card:focus-visible .service-icon { background:linear-gradient(135deg,var(--primary),var(--accent)); }
.service-card:focus-visible .service-icon i { color:#fff; }
@media (max-width:1024px) and (min-width:769px) {
  .services-grid { grid-template-columns:repeat(3,minmax(0,1fr)); gap:16px; }
  .service-card { min-height:148px; padding-right:10px; padding-left:10px; }
}
@media (max-width:768px) {
  .services-grid { grid-template-columns:repeat(2,minmax(0,1fr)); gap:12px; }
  .service-card { min-height:132px; padding:20px 10px; }
  .service-card .service-icon { width:54px; height:54px; margin-bottom:13px; }
  .service-card h3 { font-size:.88rem; }
}
@media (max-width:480px) {
  .services-grid { grid-template-columns:repeat(2,minmax(0,1fr)); }
}
/* Navegação ativa, página institucional e política de privacidade */
.nav-links a[aria-current="page"] {
  color:#fff;
  background:rgba(255,255,255,.16);
  box-shadow:inset 0 0 0 1px rgba(255,255,255,.08);
}
.footer-bottom a { color:rgba(255,255,255,.7); text-decoration:underline; text-underline-offset:3px; }
.footer-bottom a:hover,.footer-bottom a:focus-visible { color:#fff; }
.owners-section { padding:92px 0; background:linear-gradient(145deg,#eef3ff 0%,#fff 68%); }
.owners-grid { display:grid; grid-template-columns:minmax(0,1.05fr) minmax(320px,.8fr); gap:64px; align-items:center; }
.owners-photo { overflow:hidden; margin:0; border-radius:24px; background:#e9edf6; box-shadow:0 22px 55px rgba(15,32,72,.16); }
.owners-photo img { display:block; width:100%; height:auto; }
.owners-copy .eyebrow { display:block; margin-bottom:10px; color:var(--primary); font-size:.82rem; font-weight:600; letter-spacing:2.5px; text-transform:uppercase; }
.owners-copy h2 { margin:10px 0 18px; color:var(--dark); font-size:clamp(1.9rem,4vw,2.5rem); line-height:1.22; }
.owners-copy p { color:var(--text-light); line-height:1.8; }
.owners-award { display:flex; gap:13px; align-items:center; margin-top:25px; padding:16px 18px; border:1px solid rgba(23,40,108,.1); border-radius:14px; background:#fff; color:var(--dark); font-weight:600; box-shadow:0 9px 25px rgba(23,40,108,.07); }
.owners-award i { color:#c48a2b; font-size:1.35rem; }
.privacy-hero { min-height:520px; background:linear-gradient(125deg,#071a42 0%,#17286c 60%,#29469a 100%); }
.privacy-content { padding:90px 0; background:#fff; }
.privacy-layout { display:grid; grid-template-columns:minmax(250px,.62fr) minmax(0,1.5fr); gap:68px; align-items:start; }
.privacy-summary { position:sticky; top:110px; padding:30px; border:1px solid rgba(23,40,108,.1); border-radius:20px; background:linear-gradient(145deg,#f0f4ff,#fff); box-shadow:0 14px 38px rgba(23,40,108,.09); }
.privacy-summary > i { display:grid; place-items:center; width:54px; height:54px; margin-bottom:20px; border-radius:16px; background:var(--primary); color:#fff; font-size:1.3rem; }
.privacy-summary h2 { margin-bottom:12px; color:var(--dark); font-size:1.35rem; }
.privacy-summary p { color:var(--text-light); line-height:1.7; }
.privacy-summary small { display:block; margin-top:20px; color:var(--text-light); font-size:.78rem; }
.privacy-copy h2 { margin:38px 0 13px; color:var(--dark); font-size:1.42rem; }
.privacy-copy h2:first-child { margin-top:0; }
.privacy-copy p,.privacy-copy li { color:var(--text-light); line-height:1.8; }
.privacy-copy ul { margin:14px 0 22px; padding-left:22px; }
.privacy-copy li { margin:7px 0; }
.privacy-copy a { color:var(--primary); font-weight:600; text-decoration:underline; }
@media (max-width:900px) {
  .owners-grid,.privacy-layout { grid-template-columns:1fr; gap:38px; }
  .privacy-summary { position:static; }
}
@media (max-width:768px) {
  .nav-links a[aria-current="page"] { background:rgba(255,255,255,.13); }
  .owners-section,.privacy-content { padding:68px 0; }
  .owners-photo { border-radius:17px; }
  .privacy-hero { min-height:470px; }
}
/* Restauração dos HEROs das páginas corporativas */
.page-empresarial .inner-hero {
  background-image:url('../images/hero-empresarial-v2.jpg');
  background-position:right center;
  background-size:cover;
}
.page-equipamentos .inner-hero {
  background-image:url('../images/hero-equipamentos-v2.jpg');
  background-position:right center;
  background-size:cover;
}
.page-saude .inner-hero {
  background-image:url('../images/hero-saude-v2.jpg');
  background-position:right center;
  background-size:cover;
}
@media (max-width:768px) {
  .page-empresarial .inner-hero,
  .page-equipamentos .inner-hero,
  .page-saude .inner-hero {
    background-position:center center;
  }
}
/* Vídeo institucional responsivo */
.institutional-video { padding:92px 0; background:#0f1a47; color:#fff; }
.video-grid { display:grid; grid-template-columns:minmax(280px,.72fr) minmax(0,1.28fr); gap:60px; align-items:center; }
.video-copy .eyebrow { display:block; margin-bottom:12px; color:#a8c4ff; font-size:.82rem; font-weight:600; letter-spacing:2.5px; text-transform:uppercase; }
.video-copy h2 { margin-bottom:18px; color:#fff; font-size:clamp(1.9rem,4vw,2.55rem); line-height:1.22; }
.video-copy p { color:rgba(255,255,255,.72); line-height:1.8; }
.video-player { position:relative; overflow:hidden; aspect-ratio:16/9; border:1px solid rgba(255,255,255,.12); border-radius:22px; background:#071126; box-shadow:0 24px 58px rgba(0,0,0,.28); }
.video-player iframe,.video-embed-target { position:absolute; inset:0; width:100%; height:100%; border:0; }
.video-external-link { display:flex; flex-direction:column; align-items:center; justify-content:center; width:100%; height:100%; padding:28px; color:#fff; text-align:center; background:radial-gradient(circle at center,rgba(43,62,111,.5),transparent 55%); }
.video-external-link i { margin-bottom:14px; color:#ff0033; font-size:3.4rem; }
.video-external-link span { font-size:1.05rem; font-weight:700; }
.video-external-link small { margin-top:5px; color:rgba(255,255,255,.65); }
.video-external-link:hover { background:radial-gradient(circle at center,rgba(43,62,111,.75),transparent 60%); }
@media (max-width:900px) {
  .video-grid { grid-template-columns:1fr; gap:34px; }
}
@media (max-width:768px) {
  .institutional-video { padding:68px 0; }
  .video-player { border-radius:15px; }
}
/* HEROs verticais em alta resolução para mobile */
@media (max-width:768px) {
  .hero {
    background-image:linear-gradient(90deg,rgba(17,45,116,.65),rgba(17,45,116,.18)),url('../images/hero-home-mobile.webp');
    background-position:center center;
  }
  .hero-auto { background-image:url('../images/hero-auto-mobile.webp'); }
  .hero-frota { background-image:url('../images/hero-frota-mobile.webp'); }
  .hero-transporte { background-image:url('../images/hero-transporte-mobile.webp'); }
  .page-empresarial .inner-hero { background-image:url('../images/hero-empresarial-mobile.webp'); }
  .page-equipamentos .inner-hero { background-image:url('../images/hero-equipamentos-mobile.webp'); }
  .page-residencial .inner-hero { background-image:url('../images/hero-residencial-mobile.webp'); }
  .page-saude .inner-hero { background-image:url('../images/hero-saude-mobile.webp'); }
  .page-vida .inner-hero { background-image:url('../images/hero-vida-mobile.webp'); }
  .page-rc .hero-rc { background-image:url('../images/hero-rc-mobile.webp'); }
  .hero-viagem { background-image:url('../images/hero-viagem-mobile.webp'); }
  .page-consorcio .inner-hero { background-image:url('../images/hero-consorcio-mobile.webp'); }
  .page-caminhoes .hero-caminhoes { background-image:url('../images/hero-caminhoes-mobile.webp'); }
  .hero-auto,.hero-frota,.hero-transporte,.page-empresarial .inner-hero,.page-equipamentos .inner-hero,.page-residencial .inner-hero,.page-saude .inner-hero,.page-vida .inner-hero,.page-rc .hero-rc,.hero-viagem,.page-consorcio .inner-hero,.page-caminhoes .hero-caminhoes {
    background-position:center center;
    background-size:cover;
  }
}