/* ========================================
   ConecttCar – CSS Fiel aos Mockups
   ======================================== */

/* --- Tokens --- */
:root {
  --bg: #060d17;
  --bg2: #081a2b;
  --panel: #0a1e30;
  --panel2: #0c2438;
  --border: rgba(0, 230, 184, 0.18);
  --border-soft: rgba(255, 255, 255, 0.08);
  --text: #f2f7fc;
  --muted: #a4b8ca;
  --soft: #d3e2ef;
  --teal: #00e6b8;
  --green: #1ed760;
  --gradient-btn: linear-gradient(135deg, #1ed760, #00e6b8);
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  --radius: 16px;
  --max: 1180px;
  --header-h: 74px;
}

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', 'Segoe UI', Roboto, Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; margin: 0; padding: 0; }
button { cursor: pointer; font-family: inherit; }
input, select, textarea { font-family: inherit; }

/* --- Utils --- */
.container { width: min(var(--max), calc(100% - 40px)); margin-inline: auto; }
.text-accent { color: var(--teal); }

/* --- Grid lines background --- */
.page-bg::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.06;
  background-image:
    linear-gradient(rgba(0, 230, 184, 0.5) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 230, 184, 0.5) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: linear-gradient(180deg, black 0%, transparent 70%);
  -webkit-mask-image: linear-gradient(180deg, black 0%, transparent 70%);
}

/* ========================================
   HEADER
   ======================================== */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: rgba(6, 13, 23, 0.82);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 100%;
}
.logo { flex-shrink: 0; }
.logo img { width: 230px; height: auto; }

.menu {
  display: flex;
  align-items: center;
  gap: 36px;
}
.menu a {
  font-size: 14px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.85);
  padding: 26px 0;
  border-bottom: 2px solid transparent;
  transition: 0.2s;
}
.menu a:hover,
.menu a.active {
  color: var(--teal);
  border-bottom-color: var(--teal);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}
.client-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: rgba(0, 230, 184, 0.06);
  font-size: 14px;
  font-weight: 800;
  color: var(--text);
  transition: 0.2s;
}
.client-btn:hover { background: rgba(0, 230, 184, 0.12); }
.client-btn svg { width: 16px; height: 16px; color: var(--teal); }

.whats-header {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  box-shadow: 0 0 0 4px rgba(30, 215, 96, 0.12), 0 0 20px rgba(30, 215, 96, 0.3);
  transition: 0.2s;
}
.whats-header:hover { transform: scale(1.05); }
.whats-header svg { width: 22px; height: 22px; }

.hamb {
  display: none;
  border: 0;
  background: transparent;
  color: #fff;
  font-size: 28px;
  padding: 8px;
}

/* ========================================
   SECTION BASE
   ======================================== */
.section {
  position: relative;
  padding: 80px 0;
  z-index: 1;
}
.section.compact { padding: 56px 0; }
.section-title {
  text-align: center;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1.1;
  margin: 0 0 10px;
}
.section-sub {
  text-align: center;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
  margin: 0 auto 40px;
  max-width: 620px;
}

/* ========================================
   BUTTONS
   ======================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  padding: 14px 28px;
  border: 0;
  border-radius: 12px;
  background: var(--gradient-btn);
  color: #fff;
  font-size: 16px;
  font-weight: 900;
  cursor: pointer;
  box-shadow: 0 12px 32px rgba(0, 230, 184, 0.18);
  transition: 0.25s;
}
.btn:hover { transform: translateY(-2px); filter: brightness(1.06); }
.btn-outline {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: none;
}
.btn-outline:hover { border-color: var(--teal); color: var(--teal); }
.btn-red {
  background: linear-gradient(135deg, #ff3b3b, #e62e2e);
  box-shadow: 0 12px 32px rgba(255, 59, 59, 0.18);
}

/* ========================================
   CARDS
   ======================================== */
.card {
  background: linear-gradient(180deg, rgba(10, 30, 48, 0.94), rgba(6, 19, 32, 0.94));
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.2);
}

/* ========================================
   FORMS
   ======================================== */
.form-stack { display: grid; gap: 12px; }
.input, .select, textarea {
  width: 100%;
  height: 52px;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  background: rgba(6, 20, 34, 0.9);
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  outline: none;
  transition: 0.2s;
}
.input::placeholder, textarea::placeholder { color: rgba(255, 255, 255, 0.35); }
.input:focus, .select:focus, textarea:focus {
  border-color: rgba(0, 230, 184, 0.6);
  box-shadow: 0 0 0 3px rgba(0, 230, 184, 0.08);
}
textarea {
  height: 120px;
  padding: 14px 16px;
  resize: vertical;
}
.select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%2300e6b8' viewBox='0 0 16 16'%3E%3Cpath d='M4 6l4 4 4-4'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
}

/* ========================================
   HERO – GENÉRICO (Quem Somos, Rastreamento, Contato)
   ======================================== */
.hero {
  position: relative;
  min-height: 520px;
  padding: 60px 0 50px;
  display: flex;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
}
.hero .container { position: relative; z-index: 2; }

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: center;
}
.hero-copy { position: relative; z-index: 2; }
.hero-copy h1 {
  font-size: clamp(38px, 5vw, 64px);
  line-height: 1.04;
  letter-spacing: -0.055em;
  font-weight: 950;
  margin: 0 0 20px;
}
.hero-copy > p {
  font-size: 17px;
  line-height: 1.65;
  color: var(--soft);
  margin: 0 0 28px;
  max-width: 500px;
}

.hero-tags { display: flex; gap: 22px; flex-wrap: wrap; }
.hero-tag {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 800;
  color: #c8dde8;
}
.hero-tag svg {
  width: 24px;
  height: 24px;
  color: var(--teal);
  filter: drop-shadow(0 0 6px rgba(0, 230, 184, 0.4));
}

/* Hero background image */
.hero-visual { position: relative; min-height: 420px; }
.hero-media {
  position: absolute;
  inset: -20px -40px -20px -20px;
  background-size: cover;
  background-position: center;
  border-radius: 20px;
  overflow: hidden;
}
.hero-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(6, 13, 23, 0.92) 0%, rgba(6, 13, 23, 0.3) 40%, rgba(6, 13, 23, 0.15) 100%);
}

/* Specific hero pages */
.hero-about { background: linear-gradient(90deg, rgba(6, 13, 23, 0.97) 0%, rgba(6, 13, 23, 0.85) 40%, rgba(6, 13, 23, 0.4) 70%, rgba(6, 13, 23, 0.7) 100%), url('../assets/img/hero-fleet.jpg') center/cover no-repeat; }
.hero-track { background: linear-gradient(90deg, rgba(6, 13, 23, 0.97) 0%, rgba(6, 13, 23, 0.85) 40%, rgba(6, 13, 23, 0.4) 70%, rgba(6, 13, 23, 0.7) 100%), url('../assets/img/hero-tracking.jpg') center/cover no-repeat; }
.hero-contact { background: linear-gradient(90deg, rgba(6, 13, 23, 0.97) 0%, rgba(6, 13, 23, 0.85) 40%, rgba(6, 13, 23, 0.4) 70%, rgba(6, 13, 23, 0.7) 100%), url('../assets/img/hero-contact.jpg') center/cover no-repeat; }

.hero-about::before,
.hero-track::before,
.hero-contact::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(circle at 80% 15%, rgba(0, 230, 184, 0.18), transparent 28%),
    radial-gradient(circle at 20% 40%, rgba(0, 140, 255, 0.06), transparent 30%);
}

/* Badge "Veiculo Protegido" */
.hero-badge {
  position: absolute;
  top: 30px;
  right: 60px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 10px;
  background: rgba(10, 30, 48, 0.88);
  border: 1px solid var(--border);
  backdrop-filter: blur(10px);
  font-size: 13px;
  font-weight: 700;
}
.hero-badge .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 8px var(--teal);
}
.hero-badge-status { color: var(--teal); font-size: 12px; }

/* ========================================
   HERO HOME – Full width com imagem principal
   ======================================== */
.hero-home {
  background:
    linear-gradient(90deg, rgba(4, 17, 30, 0.96) 0%, rgba(4, 17, 30, 0.92) 26%, rgba(4, 17, 30, 0.76) 46%, rgba(4, 17, 30, 0.28) 68%, rgba(4, 17, 30, 0.48) 100%),
    radial-gradient(circle at 80% 14%, rgba(0, 230, 184, 0.16), transparent 18%),
    url('../assets/img/hero-home-main.jpg') center center/cover no-repeat;
  min-height: calc(100vh - var(--header-h));
  max-height: none;
}
.hero-home .hero-grid {
  grid-template-columns: minmax(340px, 1fr) minmax(340px, 390px);
  gap: 44px;
}
.hero-home .hero-copy {
  max-width: 540px;
  padding: 10px 0;
}
.hero-home .hero-copy h1 {
  font-size: clamp(40px, 5vw, 62px);
  line-height: 1.02;
  margin-bottom: 22px;
}
.hero-home .hero-copy > p { max-width: 460px; }
.hero-home .hero-visual {
  min-height: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.hero-home .hero-media { display: none; }
.hero-home .quote-card {
  position: relative;
  width: 100%;
  max-width: 370px;
  margin-left: auto;
}

/* Quote card sobre a imagem */
.quote-card {
  position: absolute;
  right: auto;
  bottom: auto;
  width: 370px;
  padding: 24px;
  background: linear-gradient(180deg, rgba(8, 26, 43, 0.97), rgba(4, 16, 28, 0.97));
  border: 1px solid rgba(0, 230, 184, 0.2);
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(14px);
  z-index: 3;
}
.quote-card h2 {
  font-size: 22px;
  line-height: 1.15;
  margin: 0 0 6px;
}
.quote-card > p {
  color: var(--muted);
  font-size: 20px;
  font-weight: 600;
  margin: 0 0 16px;
}
.mini-link {
  text-align: center;
  color: var(--teal);
  font-size: 13px;
  font-weight: 800;
  margin-top: 10px;
}
.mini-link svg { width: 14px; height: 14px; vertical-align: -2px; margin-right: 4px; }

/* ========================================
   BENEFIT ROW (4 cards)
   ======================================== */
.benefit-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.benefit-card { padding: 26px 22px; }
.benefit-card .icon-wrap {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: rgba(0, 230, 184, 0.06);
  margin-bottom: 16px;
}
.benefit-card .icon-wrap svg {
  width: 28px;
  height: 28px;
  color: var(--teal);
}
.benefit-card h3 {
  font-size: 18px;
  line-height: 1.15;
  margin: 0 0 8px;
}
.benefit-card p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

/* ========================================
   STATS BAR
   ======================================== */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px 20px;
  background: linear-gradient(90deg, rgba(0, 230, 184, 0.04), rgba(255, 255, 255, 0.02), rgba(0, 230, 184, 0.04));
  position: relative;
  overflow: hidden;
}
.stats-bar::before {
  content: '';
  position: absolute;
  bottom: -40px;
  left: 10%;
  right: 10%;
  height: 80px;
  background: radial-gradient(ellipse, rgba(0, 230, 184, 0.15), transparent 60%);
  filter: blur(10px);
}
.stat-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  border-right: 1px solid rgba(0, 230, 184, 0.2);
  position: relative;
}
.stat-item:last-child { border-right: 0; }
.stat-item svg { width: 48px; height: 48px; color: var(--teal); flex-shrink: 0; }
.stat-item strong {
  display: block;
  font-size: 42px;
  line-height: 0.95;
  letter-spacing: -0.03em;
}
.stat-item span {
  display: block;
  color: var(--soft);
  font-size: 13px;
  font-weight: 700;
  margin-top: 3px;
}

/* ========================================
   STEPS (Como funciona)
   ======================================== */
.steps-row {
  display: grid;
  gap: 40px;
  max-width: 950px;
  margin: 0 auto;
  position: relative;
}
.steps-3 { grid-template-columns: repeat(3, 1fr); }
.steps-4 { grid-template-columns: repeat(4, 1fr); max-width: 1100px; }
.steps-row::before {
  content: '';
  position: absolute;
  top: 68px;
  left: 16%;
  right: 16%;
  height: 3px;
  background: repeating-linear-gradient(90deg, rgba(0,230,184,.95) 0 10px, transparent 10px 16px);
  opacity: 0.85;
}
.step { text-align: center; position: relative; }
.step-circle {
  width: 178px;
  height: 178px;
  margin: 0 auto 18px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.42);
  background: radial-gradient(circle at 40% 35%, rgba(0, 230, 184, 0.12), rgba(8, 26, 43, 0.98) 70%);
  display: grid;
  place-items: center;
  position: relative;
  overflow: visible;
  box-shadow: 0 0 30px rgba(0, 230, 184, 0.08);
}

.step-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1;
  object-position: center;
  position: relative;
  z-index: 0;
  border-radius: 50%;
  display: block;
}
.step-circle svg {
  width: 48px;
  height: 48px;
  color: var(--teal);
}
.step-num {
  position: absolute;
  top: -10px;
  left: -10px;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--gradient-btn);
  font-size: 20px;
  font-weight: 900;
  color: #fff;
  z-index: 5;
  box-shadow: 0 8px 22px rgba(0, 230, 184, 0.35);
  border: 2px solid rgba(255,255,255,.22);
}
.step h3 { font-size: 18px; margin: 0 0 8px; }
.step p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.55; }

/* ========================================
   FEATURES GRID (Recursos / Funcionalidades)
   ======================================== */
.section-tech {
  position: relative;
  background: linear-gradient(180deg, transparent, rgba(8, 26, 43, 0.6), transparent);
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
}
.features-grid {
  display: grid;
  gap: 14px;
}
.features-5 { grid-template-columns: repeat(5, 1fr); }
.features-4 { grid-template-columns: repeat(4, 1fr); }

.feature-card { padding: 22px 18px; }
.feature-card .icon-wrap {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: rgba(0, 230, 184, 0.06);
  margin-bottom: 14px;
}
.feature-card .icon-wrap svg {
  width: 24px;
  height: 24px;
  color: var(--teal);
}
.feature-card h3 {
  font-size: 16px;
  line-height: 1.15;
  margin: 0 0 8px;
}
.feature-card p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

/* ========================================
   TESTIMONIALS
   ======================================== */
.testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.testimonial { padding: 28px; border-color: rgba(0, 230, 184, 0.14); }
.testimonial-quote {
  font-size: 36px;
  color: var(--teal);
  line-height: 1;
  margin-bottom: 4px;
}
.testimonial p {
  color: var(--soft);
  line-height: 1.6;
  margin: 0 0 18px;
  font-size: 15px;
}
.testimonial-person {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, #c8d4de, #6b7a86);
  border: 2px solid rgba(255, 255, 255, 0.15);
  display: grid;
  place-items: center;
  font-weight: 900;
  color: #0d1a26;
  font-size: 20px;
}
.testimonial-person strong { display: block; font-size: 15px; }
.testimonial-person span { font-size: 13px; color: var(--muted); }

/* ========================================
   FAQ
   ======================================== */
.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.faq-item {
  border: 1px solid var(--border-soft);
  border-radius: 12px;
  background: rgba(8, 26, 43, 0.7);
  overflow: hidden;
}
.faq-q {
  width: 100%;
  border: 0;
  background: transparent;
  color: #fff;
  text-align: left;
  padding: 18px 22px;
  font-weight: 800;
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.faq-q span {
  color: var(--teal);
  font-size: 22px;
  flex-shrink: 0;
  transition: 0.2s;
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: 0.3s ease;
  color: var(--muted);
  padding: 0 22px;
  font-size: 20px;
  line-height: 1.65;
}
.faq-item.open .faq-a {
  max-height: 200px;
  padding: 0 22px 18px;
}

/* ========================================
   CTA SECTION
   ======================================== */
.cta-box {
  border: 1px solid rgba(0, 230, 184, 0.2);
  border-radius: 20px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(8, 26, 43, 0.98), rgba(4, 14, 26, 0.9)),
    url('../assets/img/hero-contact.jpg') right center/cover no-repeat;
  box-shadow: var(--shadow);
}
.cta-inner {
  padding: 44px 48px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 30px;
}
.cta-inner h2 {
  font-size: clamp(28px, 3.6vw, 42px);
  line-height: 1.1;
  margin: 0 0 12px;
}
.cta-inner > div > p {
  color: var(--soft);
  margin: 0;
  max-width: 440px;
  font-size: 16px;
}
.cta-actions {
  display: grid;
  gap: 12px;
  min-width: 260px;
}

/* ========================================
   CTA COM FORM (Rastreamento)
   ======================================== */
.cta-form-section {
  border: 1px solid rgba(0, 230, 184, 0.2);
  border-radius: 20px;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(8, 26, 43, 0.98), rgba(4, 14, 26, 0.95));
  box-shadow: var(--shadow);
  padding: 44px;
}
.cta-form-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 40px;
  align-items: center;
}
.cta-form-grid h2 {
  font-size: clamp(28px, 3.6vw, 42px);
  line-height: 1.1;
  margin: 0 0 14px;
}
.cta-form-grid > div > p {
  color: var(--soft);
  margin: 0 0 24px;
  font-size: 16px;
}
.cta-form-right {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.cta-form-right .input { height: 50px; }
.cta-form-right .btn-submit {
  grid-column: 1 / -1;
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
  border-top: 1px solid rgba(0, 230, 184, 0.14);
  background: #030a12;
  padding: 48px 0 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 1fr 1.1fr;
  gap: 40px;
}
.footer-logo { width: 235px; height: auto; margin-bottom: 14px; }
.footer p, .footer li {
  color: #a0b4c6;
  font-size: 20px;
  line-height: 1.7;
}
.footer h4 { margin: 0 0 14px; font-size: 16px; }
.footer li { padding: 2px 0; }
.footer li a:hover { color: var(--teal); }
.footer li svg {
  width: 18px;
  height: 18px;
  vertical-align: -3px;
  margin-right: 8px;
  color: var(--teal);
}
.socials { display: flex; gap: 10px; margin-top: 16px; }
.socials a {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(0, 230, 184, 0.1);
  color: var(--teal);
  font-size: 16px;
  transition: 0.2s;
}
.socials a:hover { background: rgba(0, 230, 184, 0.2); }
.copyright {
  margin-top: 32px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  justify-content: space-between;
  gap: 16px;
  color: #7d8fa0;
  font-size: 13px;
}
.copyright a { color: #9caebe; transition: 0.2s; }
.copyright a:hover { color: var(--teal); }

/* ========================================
   ABOUT – Nossa história
   ======================================== */
.about-story {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 48px;
  align-items: center;
}
.story-img {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}
.story-panel { padding: 34px; }
.story-panel h2 { font-size: 32px; margin: 0 0 18px; }
.story-panel p { color: var(--muted); line-height: 1.75; margin: 0 0 14px; font-size: 15px; }

/* MVV (Missão/Visão/Valores) */
.mvv {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.mvv-card { padding: 30px; }
.mvv-card .icon-wrap {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: rgba(0, 230, 184, 0.06);
  margin-bottom: 16px;
}
.mvv-card .icon-wrap svg {
  width: 28px;
  height: 28px;
  color: var(--teal);
}
.mvv-card h3 { font-size: 24px; margin: 0 0 14px; }
.mvv-card p { color: var(--muted); line-height: 1.7; margin: 0; font-size: 14px; }

.check-list { margin: 14px 0 0; display: grid; gap: 8px; }
.check-list li {
  position: relative;
  padding-left: 26px;
  color: var(--soft);
  font-size: 20px;
  line-height: 1.6;
}
.check-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 4px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: rgba(0, 230, 184, 0.15);
  border: 1.5px solid var(--teal);
}
.check-list li::after {
  content: '✓';
  position: absolute;
  left: 3px;
  top: 3px;
  color: var(--teal);
  font-size: 11px;
  font-weight: 900;
}

/* Compromisso (3 passos com ícones) */
.commit-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  position: relative;
}
.commit-row::before {
  content: '';
  position: absolute;
  top: 46px;
  left: 18%;
  right: 18%;
  height: 2px;
  border-top: 2px dashed rgba(0, 230, 184, 0.35);
}
.commit-card { text-align: center; position: relative; }
.commit-icon {
  width: 90px;
  height: 90px;
  display: grid;
  place-items: center;
  border: 1px solid var(--border);
  border-radius: 50%;
  margin: 0 auto 18px;
  background: rgba(0, 230, 184, 0.05);
  position: relative;
}
.commit-icon svg { width: 42px; height: 42px; color: var(--teal); }
.commit-icon .step-num {
  top: -4px;
  left: -4px;
}
.commit-card h3 { font-size: 18px; margin: 0 0 8px; }
.commit-card p { color: var(--muted); font-size: 14px; line-height: 1.55; margin: 0; }

/* ========================================
   RASTREAMENTO – Dashboard showcase
   ======================================== */
.showcase {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 48px;
  align-items: center;
}
.showcase-label {
  color: var(--teal);
  font-weight: 800;
  font-size: 20px;
  margin: 0 0 8px;
}
.showcase h2 {
  font-size: clamp(28px, 3.6vw, 42px);
  line-height: 1.1;
  margin: 0 0 18px;
  text-align: left;
}
.showcase > div > p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
  margin: 0 0 20px;
}
.dashboard-img {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

/* ========================================
   CONTATO – Form + Cards
   ======================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 30px;
  align-items: start;
}
.contact-form { padding: 34px; }
.contact-form h2 { font-size: 26px; margin: 0 0 6px; }
.contact-form > p { color: var(--muted); margin: 0 0 20px; font-size: 14px; }
.contact-form .consent {
  font-size: 13px;
  color: var(--muted);
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.contact-form .consent input { margin-top: 3px; accent-color: var(--teal); }

.contact-cards { display: grid; gap: 16px; }
.contact-card {
  padding: 22px 24px;
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 16px;
  align-items: center;
}
.contact-card .icon-wrap {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: rgba(0, 230, 184, 0.06);
}
.contact-card .icon-wrap svg { width: 26px; height: 26px; color: var(--teal); }
.contact-card h3 { font-size: 16px; margin: 0 0 4px; line-height: 1.3; }
.contact-card p { margin: 0; color: var(--muted); font-size: 13px; }

/* Mapa */
.map-section {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 36px;
  align-items: center;
  padding: 34px;
}
.map-section h2 { font-size: 26px; margin: 0 0 8px; }
.map-section > div > p { color: var(--muted); margin: 0 0 16px; font-size: 14px; }
.map-section img {
  border-radius: 14px;
  border: 1px solid var(--border-soft);
  opacity: 0.9;
}
.map-section h3 { margin: 0 0 14px; }
.cities-highlight { color: var(--teal); font-weight: 800; margin-top: 14px; display: block; }

/* ========================================
   LEGAL PAGES
   ======================================== */
.legal-hero {
  padding: 86px 0 50px;
  border-bottom: 1px solid rgba(0, 230, 184, 0.14);
  background:
    radial-gradient(circle at 72% 18%, rgba(0, 230, 184, 0.18), transparent 30%),
    linear-gradient(180deg, rgba(6, 24, 39, 0.88), rgba(2, 11, 20, 0.96));
  position: relative;
  overflow: hidden;
}
.legal-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.2;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(0, 230, 184, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 230, 184, 0.07) 1px, transparent 1px);
  background-size: 56px 56px;
}
.legal-hero .container { position: relative; z-index: 2; }
.legal-hero h1 {
  font-size: clamp(38px, 5vw, 66px);
  line-height: 1.05;
  margin: 0 0 16px;
  letter-spacing: -0.05em;
  font-weight: 950;
}
.legal-hero p { max-width: 720px; color: var(--soft); font-size: 17px; line-height: 1.65; margin: 0; }
.legal-wrap { padding: 56px 0 78px; }
.legal-layout {
  display: grid;
  grid-template-columns: 270px 1fr;
  gap: 32px;
  align-items: start;
}
.legal-nav {
  position: sticky;
  top: 100px;
  padding: 22px;
  border: 1px solid rgba(0, 230, 184, 0.14);
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(10, 30, 48, 0.94), rgba(6, 19, 32, 0.94));
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.2);
}
.legal-nav h3 { margin: 0 0 12px; font-size: 16px; }
.legal-nav a {
  display: block;
  color: #b0c2d0;
  font-weight: 700;
  padding: 8px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 20px;
}
.legal-nav a:hover { color: var(--teal); }
.legal-content {
  padding: 32px;
  border: 1px solid rgba(0, 230, 184, 0.14);
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(10, 30, 48, 0.94), rgba(6, 19, 32, 0.94));
  box-shadow: var(--shadow);
}
.legal-content h2 { font-size: 26px; margin: 0 0 14px; }
.legal-content h3 { font-size: 20px; margin: 32px 0 10px; color: #fff; }
.legal-content p, .legal-content li { color: #bdc8d4; line-height: 1.75; font-size: 15px; }
.legal-content ul { padding-left: 20px; }
.legal-alert {
  border: 1px solid rgba(0, 230, 184, 0.22);
  background: rgba(0, 230, 184, 0.06);
  border-radius: 14px;
  padding: 16px 20px;
  margin: 20px 0;
  color: #d8f8ef;
}
.legal-alert strong { color: var(--teal); }

/* ========================================
   FORM FIELD ICONS (Contato)
   ======================================== */
.input-icon {
  position: relative;
}
.input-icon svg {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  color: var(--teal);
  pointer-events: none;
  opacity: 0.7;
}
.input-icon .input,
.input-icon .select {
  padding-left: 42px;
}
.input-icon-textarea svg {
  top: 20px;
  transform: none;
}
.input-icon-textarea textarea {
  padding-left: 42px;
}

/* ========================================
   CTA COM IMAGEM DE CARRO
   ======================================== */
.cta-car {
  background:
    linear-gradient(90deg, rgba(8, 26, 43, 0.98) 0%, rgba(8, 26, 43, 0.95) 50%, rgba(8, 26, 43, 0.7) 75%, rgba(8, 26, 43, 0.5) 100%),
    url('../assets/img/hero-contact.jpg') right center/cover no-repeat;
}

/* ========================================
   CONTACT BENEFIT CARDS (centralized icons)
   ======================================== */
.benefit-centered { text-align: center; }
.benefit-centered .icon-wrap {
  width: 64px;
  height: 64px;
  margin: 0 auto 18px;
  border-radius: 50%;
}
.benefit-centered .icon-wrap svg {
  width: 30px;
  height: 30px;
}
.benefit-centered h3 { text-align: center; }
.benefit-centered p { text-align: center; }

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 1100px) {
  .hero-home .hero-grid {
    grid-template-columns: minmax(300px, 1fr) minmax(320px, 360px);
    gap: 24px;
  }
  .hero-copy h1 { font-size: clamp(34px, 4vw, 50px); }
  .quote-card { width: 340px; }
  .features-5 { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 1020px) {
  .hero-grid,
  .about-story,
  .showcase,
  .contact-grid,
  .map-section,
  .cta-form-grid { grid-template-columns: 1fr; }

  .hero-visual { min-height: 380px; }
  .hero-media { inset: 0; }

  .hero-home .hero-grid { grid-template-columns: 1fr; }
  .hero-home .hero-visual { min-height: 420px; }
  .hero-home .hero-media { display: none; }
  .quote-card {
    position: relative;
    right: auto;
    bottom: auto;
    width: min(100%, 400px);
    margin: 20px 0 0;
  }

  .benefit-row { grid-template-columns: repeat(2, 1fr); }
  .features-5, .features-4 { grid-template-columns: repeat(2, 1fr); }
  .mvv, .testimonials, .commit-row { grid-template-columns: 1fr; }
  .commit-row::before { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .cta-inner { grid-template-columns: 1fr; }
  .cta-actions { min-width: 0; }
  .cta-form-right { grid-template-columns: 1fr; }
  .legal-layout { grid-template-columns: 1fr; }
  .legal-nav { position: relative; top: auto; }
}

@media (max-width: 720px) {
  .container { width: min(100% - 24px, var(--max)); }
  .nav { height: 66px; }
  .logo img { width: 210px; height: auto; }

  /* Mobile menu */
  .menu {
    display: none;
    position: absolute;
    left: 12px;
    right: 12px;
    top: 68px;
    padding: 14px;
    background: rgba(6, 13, 23, 0.97);
    border: 1px solid var(--border);
    border-radius: 14px;
    box-shadow: var(--shadow);
    flex-direction: column;
    gap: 0;
    z-index: 200;
    backdrop-filter: blur(20px);
  }
  .menu.open { display: flex; }
  .menu a {
    padding: 14px 8px;
    width: 100%;
    border-bottom: 1px solid var(--border-soft);
  }
  .hamb { display: block; }
  .client-btn { display: none; }

  .hero {
    min-height: auto;
    padding: 40px 0;
  }
  .hero-copy h1 { font-size: 36px; }
  .hero-visual { min-height: 360px; }
  .hero-home .hero-visual { min-height: 340px; }
  .quote-card { width: 100%; margin-top: 16px; }
  .step-circle { width: 150px; height: 150px; }
  .step-num { width: 40px; height: 40px; top: -8px; left: -8px; }

  .benefit-row,
  .features-5,
  .features-4,
  .stats-bar,
  .steps-row,
  .faq-grid,
  .footer-grid { grid-template-columns: 1fr; }

  .steps-row::before { display: none; }

  .stat-item {
    border-right: 0;
    border-bottom: 1px solid rgba(0, 230, 184, 0.15);
    padding: 18px 0;
  }
  .stat-item:last-child { border-bottom: 0; }

  .section { padding: 48px 0; }
  .section.compact { padding: 36px 0; }

  .cta-inner { padding: 28px; }
  .contact-card { grid-template-columns: 1fr; text-align: center; }
  .contact-card .icon-wrap { margin: 0 auto; }
  .copyright { flex-direction: column; text-align: center; }
  .hero-badge { display: none; }
  .legal-content { padding: 22px; }
  .legal-hero { padding: 56px 0 36px; }
}


/* Testemunhos ajustados para ficar próximo ao layout de referência */
.testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 18px;
}
.testimonial {
  padding: 24px 28px 26px;
  min-height: 235px;
  border-color: rgba(0, 230, 184, 0.16);
  background: linear-gradient(180deg, rgba(8, 26, 43, 0.78), rgba(7, 22, 37, 0.92));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.03);
}
.testimonial-quote {
  font-size: 44px;
  color: var(--teal);
  line-height: .8;
  margin-bottom: 12px;
  font-weight: 900;
}
.testimonial p {
  color: #f0f5fa;
  line-height: 1.55;
  margin: 0 0 22px;
  font-size: 17px;
  min-height: 96px;
}
.testimonial-person {
  display: flex;
  align-items: center;
  gap: 14px;
}
.testimonial-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,.16);
  object-fit: cover;
  background: #1b2836;
  flex: 0 0 56px;
}
.testimonial-person strong { display: block; font-size: 15px; color:#fff; margin-bottom:2px; }
.testimonial-person span { font-size: 13px; color: var(--muted); }
.testimonial-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
}
.testimonial-dots span {
  width: 11px;
  height: 11px;
  border-radius: 999px;
  background: rgba(193, 225, 231, 0.55);
  opacity: .7;
}
.testimonial-dots span.active {
  width: 30px;
  background: linear-gradient(90deg, #1fe3c8, #2beea6);
  box-shadow: 0 0 12px rgba(31, 227, 200, .35);
  opacity: 1;
}
@media (max-width: 1020px) {
  .testimonials { grid-template-columns: 1fr; }
  .testimonial { min-height: auto; }
  .testimonial p { min-height: auto; }
}

.testimonial-dots { display:none !important; }

/* Ajuste final depoimentos */
.testimonial-avatar {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center;
  border: 2px solid rgba(255,255,255,.24);
  box-shadow: 0 4px 14px rgba(0,0,0,.22);
  background: #142230;
}


/* RODAPÉ FINAL EXATO */
.footer-cta-section.section.compact { padding-top: 20px; padding-bottom: 12px; }
.footer-cta-box { border-radius: 18px; }
.footer-cta-inner { min-height: 134px; }
.footer-cta-inner .btn span { display:block; }
.footer-exact { padding-top: 18px; padding-bottom: 10px; }
.footer-exact .footer-grid { align-items: start; }
.footer-exact .footer-logo { width: 220px; height: auto; }
.footer-exact .footer-grid > div { min-height: 150px; }
.footer-exact .socials { margin-top: 16px; }
.footer-exact .socials a svg { width: 15px; height: 15px; }
.footer-exact ul li br + * { display:inline; }


/* ========================================
   RODAPÉ EXATO - CTA + FOOTER
   ======================================== */
.footer-cta-section.section.compact {
  padding-top: 22px;
  padding-bottom: 0;
}
.footer-cta-box {
  border: 1px solid rgba(52, 110, 138, 0.55);
  border-radius: 20px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(4, 16, 28, 0.98) 0%, rgba(4, 16, 28, 0.94) 34%, rgba(4, 16, 28, 0.48) 64%, rgba(4, 16, 28, 0.15) 100%),
    url('../assets/img/footer-cta-car.jpg') right center / cover no-repeat;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.03), 0 18px 50px rgba(0,0,0,.22);
}
.footer-cta-inner {
  min-height: 138px;
  padding: 18px 28px;
  display: grid;
  grid-template-columns: minmax(330px, 1.1fr) auto;
  align-items: center;
  gap: 16px;
}
.footer-cta-inner h2 {
  margin: 0 0 10px;
  font-size: clamp(25px, 2.5vw, 33px);
  line-height: 1.10;
  max-width: 520px;
  letter-spacing: -0.03em;
}
.footer-cta-inner > div > p {
  margin: 0;
  max-width: 340px;
  color: #f3f6fa;
  font-size: 14px;
  line-height: 1.55;
}
.footer-cta-inner .cta-actions {
  justify-self: center;
  align-self: center;
}
.footer-cta-inner .btn {
  min-width: 305px;
  min-height: 80px;
  border-radius: 15px;
  padding: 14px 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2px;
  text-align: center;
  background: linear-gradient(90deg, #17c98a 0%, #22d8be 100%);
  box-shadow: 0 14px 35px rgba(27, 217, 184, .18), inset 0 0 0 1px rgba(255,255,255,.12);
}
.footer-cta-inner .btn svg {
  width: 21px !important;
  height: 21px !important;
  margin-bottom: 2px;
}
.footer-cta-inner .btn span {
  font-size: 15px;
  font-weight: 900;
  line-height: 1.1;
}
.footer-cta-inner .btn small {
  font-size: 14px;
  font-weight: 900;
  line-height: 1.1;
  color: #ffffff;
}

.footer.footer-exact {
  background: #020b13;
  padding: 20px 0 22px;
  border-top: 1px solid rgba(82, 113, 133, 0.20);
}
.footer.footer-exact .footer-grid {
  display: grid;
  grid-template-columns: 1.18fr 0.82fr 0.90fr 1.12fr;
  gap: 0;
  align-items: start;
}
.footer.footer-exact .footer-grid > div {
  position: relative;
  padding: 6px 28px 0;
  min-height: 152px;
}
.footer.footer-exact .footer-grid > div:first-child { padding-left: 10px; }
.footer.footer-exact .footer-grid > div:last-child { padding-right: 10px; }
.footer.footer-exact .footer-grid > div:not(:first-child)::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  bottom: 8px;
  width: 1px;
  background: rgba(112, 137, 156, .28);
}
.footer.footer-exact .footer-logo {
  width: 220px;
  margin: 0 0 16px;
}
.footer.footer-exact p,
.footer.footer-exact li,
.footer.footer-exact li a {
  color: #c4d0db;
  font-size: 13px;
  line-height: 1.45;
}
.footer.footer-exact p {
  max-width: 225px;
  margin: 0;
}
.footer.footer-exact h4 {
  margin: 0 0 12px;
  color: #fff;
  font-size: 15px;
  font-weight: 800;
}
.footer.footer-exact ul { margin: 0; padding: 0; list-style: none; }
.footer.footer-exact li { padding: 2px 0; }
.footer.footer-exact li a:hover { color: var(--teal); }
.footer.footer-exact .socials {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}
.footer.footer-exact .socials a {
  width: 31px;
  height: 31px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(0, 230, 184, 0.08);
  border: 1px solid rgba(0, 230, 184, 0.16);
  color: var(--teal);
}
.footer.footer-exact .socials a svg { width: 15px; height: 15px; }
.footer.footer-exact .socials a:hover { background: rgba(0,230,184,.18); }
.footer.footer-exact .footer-grid > div:last-child li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.footer.footer-exact .footer-grid > div:last-child li svg {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  margin-top: 1px;
  color: var(--teal);
}
.footer.footer-exact .footer-grid > div:last-child li + li {
  margin-top: 6px;
}
.footer.footer-exact .copyright { display: none; }

@media (max-width: 1020px) {
  .footer-cta-inner {
    grid-template-columns: 1fr;
    justify-items: start;
    padding: 22px;
    min-height: auto;
  }
  .footer-cta-inner .cta-actions { justify-self: start; }
  .footer.footer-exact .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px 0;
  }
  .footer.footer-exact .footer-grid > div:nth-child(3)::before { display: none; }
}
@media (max-width: 720px) {
  .footer-cta-inner .btn { min-width: 100%; width: 100%; }
  .footer.footer-exact .footer-grid { grid-template-columns: 1fr; }
  .footer.footer-exact .footer-grid > div {
    padding: 0 0 18px;
    min-height: auto;
  }
  .footer.footer-exact .footer-grid > div:not(:first-child)::before { display: none; }
}


/* ========================================
   AJUSTES SOLICITADOS - 23/06
   ======================================== */
/* 1) CTA do rodapé com respiro inferior e botão sem número */
.footer-cta-section.section.compact {
  padding-top: 26px;
  padding-bottom: 22px;
}
.footer-cta-inner .btn {
  min-height: 86px;
}
.footer-cta-inner .btn span {
  font-size: 17px;
}
.footer-cta-inner .btn small {
  display: none !important;
}

/* 2) Heros internos sem o quadro/box da imagem */
.hero-about .hero-visual,
.hero-track .hero-visual {
  min-height: 430px;
}
.hero-about .hero-media,
.hero-track .hero-media {
  inset: -6px 0 -12px 0;
  border-radius: 0;
  overflow: visible;
  background-size: contain;
  background-position: right center;
  background-repeat: no-repeat;
  box-shadow: none;
  filter: none;
}
.hero-about .hero-media::after,
.hero-track .hero-media::after {
  background: none;
}
.hero-about .hero-badge,
.hero-track .hero-badge {
  right: 18px;
  top: 36px;
}

/* 3) Fonte menor no hero do Quem Somos */
.hero-about .hero-copy h1 {
  font-size: clamp(36px, 4.6vw, 58px);
  line-height: 0.98;
  letter-spacing: -0.045em;
  max-width: 560px;
}
.hero-about .hero-copy > p {
  max-width: 520px;
  font-size: 15px;
}

/* 4) Ajuste também do hero Rastreamento */
.hero-track .hero-copy h1 {
  font-size: clamp(36px, 4.6vw, 56px);
  line-height: 0.98;
  letter-spacing: -0.045em;
  max-width: 560px;
}
.hero-track .hero-copy > p {
  max-width: 520px;
}

/* 5) Mobile/Tablet */
@media (max-width: 1020px) {
  .footer-cta-section.section.compact { padding-bottom: 18px; }
  .hero-about .hero-media,
  .hero-track .hero-media {
    inset: 0;
    background-position: center;
    background-size: cover;
  }
  .hero-about .hero-badge,
  .hero-track .hero-badge {
    right: 8px;
    top: 12px;
  }
}


/* ========================================
   AJUSTE FINAL HERO SEM QUADRO DIREITA
   ======================================== */
.hero-about .hero-media,
.hero-track .hero-media,
.hero-contact .hero-media {
  display: none !important;
}
.hero-about .hero-visual,
.hero-track .hero-visual,
.hero-contact .hero-visual {
  min-height: 0;
}
.hero-about .hero-grid,
.hero-track .hero-grid,
.hero-contact .hero-grid {
  align-items: center;
}
@media (max-width: 1020px) {
  .hero-about .hero-visual,
  .hero-track .hero-visual,
  .hero-contact .hero-visual {
    display: none;
  }
}


/* ========================================
   PADRÃO FINAL DOS HEROS - IMAGEM COMPLETA COM OPACIDADE
   ======================================== */
.hero-home,
.hero-about,
.hero-track,
.hero-contact {
  background-size: cover !important;
  background-position: center center !important;
  background-repeat: no-repeat !important;
}

/* imagem aparecendo também atrás do texto da esquerda */
.hero-home {
  background:
    linear-gradient(90deg,
      rgba(4, 16, 28, 0.84) 0%,
      rgba(4, 16, 28, 0.78) 20%,
      rgba(4, 16, 28, 0.66) 36%,
      rgba(4, 16, 28, 0.42) 54%,
      rgba(4, 16, 28, 0.26) 70%,
      rgba(4, 16, 28, 0.40) 100%),
    radial-gradient(circle at 80% 14%, rgba(0, 230, 184, 0.12), transparent 20%),
    url('../assets/img/hero-home-main.jpg') center center/cover no-repeat !important;
}
.hero-about {
  background:
    linear-gradient(90deg,
      rgba(4, 16, 28, 0.84) 0%,
      rgba(4, 16, 28, 0.78) 20%,
      rgba(4, 16, 28, 0.66) 36%,
      rgba(4, 16, 28, 0.42) 54%,
      rgba(4, 16, 28, 0.26) 70%,
      rgba(4, 16, 28, 0.40) 100%),
    radial-gradient(circle at 80% 14%, rgba(0, 230, 184, 0.12), transparent 20%),
    url('../assets/img/hero-fleet.jpg') center center/cover no-repeat !important;
}
.hero-track {
  background:
    linear-gradient(90deg,
      rgba(4, 16, 28, 0.84) 0%,
      rgba(4, 16, 28, 0.78) 20%,
      rgba(4, 16, 28, 0.66) 36%,
      rgba(4, 16, 28, 0.42) 54%,
      rgba(4, 16, 28, 0.26) 70%,
      rgba(4, 16, 28, 0.40) 100%),
    radial-gradient(circle at 80% 14%, rgba(0, 230, 184, 0.12), transparent 20%),
    url('../assets/img/hero-tracking.jpg') center center/cover no-repeat !important;
}
.hero-contact {
  background:
    linear-gradient(90deg,
      rgba(4, 16, 28, 0.84) 0%,
      rgba(4, 16, 28, 0.78) 20%,
      rgba(4, 16, 28, 0.66) 36%,
      rgba(4, 16, 28, 0.42) 54%,
      rgba(4, 16, 28, 0.26) 70%,
      rgba(4, 16, 28, 0.40) 100%),
    radial-gradient(circle at 80% 14%, rgba(0, 230, 184, 0.12), transparent 20%),
    url('../assets/img/hero-contact.jpg') center center/cover no-repeat !important;
}

/* remove qualquer quadro/box de imagem separado nas páginas internas */
.hero-about .hero-media,
.hero-track .hero-media,
.hero-contact .hero-media {
  display: none !important;
}
.hero-about .hero-media::after,
.hero-track .hero-media::after,
.hero-contact .hero-media::after {
  display: none !important;
}
.hero-about .hero-visual,
.hero-track .hero-visual,
.hero-contact .hero-visual {
  min-height: 360px;
}

/* mantém consistência visual com a imagem aparecendo atrás do texto */
.hero-home .hero-copy,
.hero-about .hero-copy,
.hero-track .hero-copy,
.hero-contact .hero-copy {
  max-width: 580px;
}
.hero-home .hero-copy > p,
.hero-about .hero-copy > p,
.hero-track .hero-copy > p,
.hero-contact .hero-copy > p {
  max-width: 540px;
}
.hero-home .hero-grid,
.hero-about .hero-grid,
.hero-track .hero-grid,
.hero-contact .hero-grid {
  align-items: center;
}

@media (max-width: 1020px) {
  .hero-home,
  .hero-about,
  .hero-track,
  .hero-contact {
    background-position: center center !important;
  }
  .hero-about .hero-visual,
  .hero-track .hero-visual,
  .hero-contact .hero-visual {
    display: none;
    min-height: 0;
  }
}


/* ========================================
   AJUSTE QUEM SOMOS - CARD VALORES
   ======================================== */
.mvv-card .check-list {
  gap: 6px;
}

.mvv-card .check-list li {
  font-size: 15px;
  line-height: 1.7;
  padding-left: 22px;
  color: var(--muted);
  font-weight: 500;
}

.mvv-card .check-list li::before {
  width: 13px;
  height: 13px;
  top: 6px;
  border-width: 1.2px;
}

.mvv-card .check-list li::after {
  left: 3px;
  top: 4px;
  font-size: 9px;
}


/* ========================================
   QUEM SOMOS - TIPOGRAFIA FIEL AO MODELO
   ======================================== */
.hero-about .hero-copy {
  max-width: 540px;
}
.hero-about-title {
  margin: 0 0 18px;
  line-height: 1;
  letter-spacing: -0.04em;
}
.hero-about-kicker {
  display: block;
  font-size: clamp(54px, 5vw, 72px);
  font-weight: 900;
  line-height: 0.96;
  margin-bottom: 12px;
  color: #fff;
}
.hero-about-main {
  display: block;
  font-size: clamp(30px, 3vw, 42px);
  font-weight: 800;
  line-height: 1.14;
  color: #fff;
}
.hero-about-main .text-accent {
  color: var(--teal);
}
.hero-about-desc {
  max-width: 480px;
  font-size: 16px;
  line-height: 1.7;
  color: #edf3f8;
  margin-top: 10px;
  margin-bottom: 26px;
}
.hero-about .hero-tags {
  margin-top: 14px;
}
.hero-about .hero-tag {
  padding: 12px 14px;
  gap: 10px;
}
.hero-about .hero-tag span {
  font-size: 13px;
  line-height: 1.25;
}
@media (max-width: 900px) {
  .hero-about-kicker {
    font-size: 48px;
    margin-bottom: 10px;
  }
  .hero-about-main {
    font-size: 28px;
  }
  .hero-about-desc {
    font-size: 15px;
    line-height: 1.6;
  }
}
@media (max-width: 640px) {
  .hero-about-kicker { font-size: 40px; }
  .hero-about-main { font-size: 24px; }
}


/* ========================================
   AJUSTE CTA WHATSAPP + LINKS LEGAIS RODAPÉ
   ======================================== */
.footer-cta-inner .btn.btn-whatsapp {
  gap: 6px;
}
.footer-cta-inner .btn.btn-whatsapp svg {
  width: 22px !important;
  height: 22px !important;
  margin-bottom: 0;
  flex: 0 0 22px;
}
.footer.footer-exact .footer-grid > div:nth-child(2) ul li {
  padding: 3px 0;
}


/* ========================================
   BOTÕES LEGAIS NO RODAPÉ
   ======================================== */
.footer-legal-buttons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 18px;
}
.footer-legal-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 42px;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid rgba(0, 230, 184, .38);
  background: linear-gradient(180deg, rgba(0, 230, 184, .18), rgba(0, 230, 184, .08));
  color: #eaf7f5;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  transition: .2s ease;
  text-decoration: none;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.05);
}
.footer-legal-btn svg {
  width: 16px;
  height: 16px;
  color: var(--teal);
  flex: 0 0 16px;
}
.footer-legal-btn:hover {
  transform: translateY(-1px);
  background: linear-gradient(180deg, rgba(0, 230, 184, .26), rgba(0, 230, 184, .12));
  border-color: rgba(0, 230, 184, .55);
}
@media (max-width: 860px) {
  .footer-legal-buttons {
    grid-template-columns: 1fr;
  }
}


/* ========================================
   CTA DO RODAPÉ COM 2 BOTÕES
   ======================================== */
.footer-cta-buttons {
  display: flex !important;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  width: 320px;
}
.footer-cta-buttons .btn {
  width: 100%;
  min-width: 100%;
  min-height: 56px;
  border-radius: 12px;
  padding: 14px 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 17px;
  font-weight: 800;
  line-height: 1;
  text-align: center;
}
.footer-cta-buttons .btn span {
  display: inline-block;
  font-size: 17px;
  font-weight: 800;
}
.footer-cta-buttons .btn svg {
  width: 21px !important;
  height: 21px !important;
  margin: 0;
  flex: 0 0 21px;
}
.footer-cta-buttons .btn-whatsapp-cta {
  background: linear-gradient(90deg, #1fd773 0%, #2dd0bb 100%);
  color: #fff;
  box-shadow: 0 16px 30px rgba(31, 215, 115, .18), inset 0 0 0 1px rgba(255,255,255,.10);
}
.footer-cta-buttons .btn-quote-cta {
  background: linear-gradient(180deg, rgba(6, 19, 33, .92), rgba(5, 16, 28, .98));
  color: #fff;
  border: 1px solid rgba(94, 123, 152, .40);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.04);
}
.footer-cta-buttons .btn-quote-cta svg {
  width: 18px !important;
  height: 18px !important;
}
.footer-cta-buttons .btn-quote-cta:hover {
  border-color: rgba(0, 230, 184, .38);
}
@media (max-width: 1020px) {
  .footer-cta-buttons {
    width: 100%;
    max-width: 320px;
    align-items: stretch;
  }
}


/* ========================================
   RASTREAMENTO - COMO FUNCIONA COM IMAGENS
   ======================================== */
.steps-4 .step-circle.step-photo {
  width: 178px;
  height: 178px;
  overflow: visible;
  border: 2px solid rgba(255, 255, 255, .36);
  background: rgba(4, 16, 28, .88);
  box-shadow: 0 0 24px rgba(0, 230, 184, .10);
}

.steps-4 .step-circle.step-photo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  border-radius: 50%;
  filter: brightness(.82) contrast(1.08) saturate(.96);
}

.steps-4 .step-circle.step-photo .step-num {
  top: -10px;
  left: -10px;
  z-index: 5;
  width: 42px;
  height: 42px;
  font-size: 18px;
  border: 2px solid rgba(255,255,255,.18);
  box-shadow: 0 8px 22px rgba(0, 230, 184, .34);
}

.steps-4::before {
  top: 90px;
  left: 13%;
  right: 13%;
  height: 3px;
  background: repeating-linear-gradient(90deg, rgba(0,230,184,.92) 0 10px, transparent 10px 16px);
  opacity: .85;
}

@media (max-width: 900px) {
  .steps-4 .step-circle.step-photo {
    width: 150px;
    height: 150px;
  }
  .steps-4::before {
    display: none;
  }
}


/* ========================================
   AJUSTE CTA - BOTÕES MENORES E EM LINHA
   ======================================== */
.footer-cta-buttons {
  width: 300px;
  gap: 10px;
}
.footer-cta-buttons .btn {
  min-height: 44px;
  padding: 10px 16px;
  border-radius: 11px;
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 10px;
  font-size: 14px;
  line-height: 1;
  white-space: nowrap;
}
.footer-cta-buttons .btn span,
.footer-cta-buttons .btn small {
  display: inline !important;
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
}
.footer-cta-buttons .btn svg {
  width: 18px !important;
  height: 18px !important;
  flex: 0 0 18px;
}
.footer-cta-buttons .btn-whatsapp-cta {
  min-height: 44px;
}
.footer-cta-buttons .btn-quote-cta {
  min-height: 44px;
}
.footer-cta-buttons .btn-quote-cta svg {
  width: 16px !important;
  height: 16px !important;
  flex: 0 0 16px;
}
@media (max-width: 1020px) {
  .footer-cta-buttons {
    width: 100%;
    max-width: 300px;
  }
}


/* ========================================
   SEO / RODAPÉ / BOTÕES FLUTUANTES
   ======================================== */
.footer-bottom-small {
  margin-top: 24px;
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,.07);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  color: #8fa2b2;
  font-size: 12px;
  line-height: 1.4;
}
.footer-bottom-small a {
  color: var(--teal);
  font-weight: 800;
}
.footer-bottom-small a:hover {
  color: #ffffff;
}

.floating-actions {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.floating-btn {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #ffffff;
  box-shadow: 0 16px 35px rgba(0,0,0,.32);
  transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
}
.floating-btn svg {
  width: 27px;
  height: 27px;
}
.floating-whatsapp {
  background: linear-gradient(135deg, #16d86e, #1ecfbd);
}
.floating-call {
  display: none;
  background: linear-gradient(135deg, #00aaff, #00e6b8);
}
.floating-btn:hover {
  transform: translateY(-3px);
  filter: brightness(1.05);
  box-shadow: 0 20px 45px rgba(0,230,184,.22);
}

@media (max-width: 768px) {
  .floating-actions {
    right: 16px;
    bottom: 16px;
    gap: 10px;
  }
  .floating-call {
    display: grid;
  }
  .floating-btn {
    width: 54px;
    height: 54px;
  }
  .footer-bottom-small {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }
}


/* ========================================
   AJUSTE HEADER PÁGINAS LEGAIS + FORM WHATSAPP
   ======================================== */
.header .whats-header {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #16d86e, #1ecfbd);
  color: #fff;
  box-shadow: 0 0 24px rgba(22, 216, 110, .28);
}
.header .whats-header svg {
  width: 24px;
  height: 24px;
}


/* ========================================
   ANIMAÇÕES HOVER - CARDS / CÍRCULOS / LINHAS
   ======================================== */

/* Cards/shapes da home e dos recursos */
.benefit-card,
.feature-card {
  position: relative;
  transition:
    transform .28s ease,
    border-color .28s ease,
    box-shadow .28s ease,
    background .28s ease;
  will-change: transform;
}

.benefit-card:hover,
.feature-card:hover {
  transform: translateY(-10px);
  border-color: rgba(0, 230, 184, .48);
  background: linear-gradient(180deg, rgba(8, 31, 49, .98), rgba(4, 18, 31, .98));
  box-shadow:
    0 18px 38px rgba(0, 0, 0, .32),
    0 0 28px rgba(0, 230, 184, .12),
    inset 0 0 0 1px rgba(0, 230, 184, .08);
}

.benefit-card .icon-wrap,
.feature-card .icon-wrap {
  transition:
    transform .28s ease,
    background .28s ease,
    border-color .28s ease,
    box-shadow .28s ease;
}

.benefit-card:hover .icon-wrap,
.feature-card:hover .icon-wrap {
  transform: translateY(-4px) scale(1.08);
  border-color: rgba(0, 230, 184, .55);
  background: rgba(0, 230, 184, .12);
  box-shadow: 0 0 22px rgba(0, 230, 184, .14);
}

/* Círculos do Como Funciona */
.step {
  transition: transform .28s ease;
}

.step-circle {
  transition:
    transform .28s ease,
    border-color .28s ease,
    box-shadow .28s ease,
    filter .28s ease;
  will-change: transform;
}

.step-circle img {
  transition:
    transform .32s ease,
    filter .32s ease;
}

.step:hover .step-circle {
  transform: translateY(-10px) scale(1.045);
  border-color: rgba(0, 230, 184, .65);
  box-shadow:
    0 18px 36px rgba(0, 0, 0, .30),
    0 0 34px rgba(0, 230, 184, .18);
}

.step:hover .step-circle img {
  transform: scale(1.08);
  filter: brightness(.92) contrast(1.1) saturate(1.05);
}

.step-num {
  transition:
    transform .28s ease,
    box-shadow .28s ease;
}

.step:hover .step-num {
  transform: scale(1.08);
  box-shadow: 0 10px 26px rgba(0, 230, 184, .42);
}

/* Linha tracejada andando para o lado */
.steps-row::before,
.steps-4::before {
  animation: conecttLineMove 1.1s linear infinite;
  background-size: 26px 3px !important;
}

@keyframes conecttLineMove {
  from {
    background-position: 0 0;
  }
  to {
    background-position: 26px 0;
  }
}

/* Respeita usuários que preferem menos animação */
@media (prefers-reduced-motion: reduce) {
  .benefit-card,
  .feature-card,
  .benefit-card .icon-wrap,
  .feature-card .icon-wrap,
  .step,
  .step-circle,
  .step-circle img,
  .step-num {
    transition: none !important;
  }

  .steps-row::before,
  .steps-4::before {
    animation: none !important;
  }
}



/* ========================================
   ANIMAÇÕES EXTRAS - SEÇÕES MARCADAS
   ======================================== */

/* Mesmo padrão de hover para depoimentos, missão/visão/valores e cards de contato */
.testimonial,
.mvv-card,
.contact-card,
.commit-card,
.stats-bar,
.stat-item {
  transition:
    transform .28s ease,
    border-color .28s ease,
    box-shadow .28s ease,
    background .28s ease;
  will-change: transform;
}

.testimonial:hover,
.mvv-card:hover,
.contact-card:hover,
.commit-card:hover {
  transform: translateY(-10px);
  border-color: rgba(0, 230, 184, .48);
  background: linear-gradient(180deg, rgba(8, 31, 49, .98), rgba(4, 18, 31, .98));
  box-shadow:
    0 18px 38px rgba(0, 0, 0, .32),
    0 0 28px rgba(0, 230, 184, .12),
    inset 0 0 0 1px rgba(0, 230, 184, .08);
}

/* Barra de números / estatísticas */
.stats-bar:hover {
  transform: translateY(-8px);
  border-color: rgba(0, 230, 184, .42);
  box-shadow:
    0 18px 38px rgba(0, 0, 0, .30),
    0 0 28px rgba(0, 230, 184, .12);
}

.stat-item:hover {
  transform: translateY(-6px);
}

.testimonial .testimonial-avatar,
.mvv-card .icon-wrap,
.contact-card .icon-wrap,
.commit-card .commit-icon,
.stat-item svg {
  transition:
    transform .28s ease,
    background .28s ease,
    border-color .28s ease,
    box-shadow .28s ease,
    color .28s ease;
}

.testimonial:hover .testimonial-avatar,
.mvv-card:hover .icon-wrap,
.contact-card:hover .icon-wrap,
.commit-card:hover .commit-icon {
  transform: translateY(-4px) scale(1.08);
  border-color: rgba(0, 230, 184, .55);
  box-shadow: 0 0 22px rgba(0, 230, 184, .14);
}

.stat-item:hover svg {
  transform: scale(1.08);
  color: #19f0c4;
}

/* Move um pouco o destaque das aspas e títulos dos depoimentos */
.testimonial-quote,
.testimonial-person strong,
.contact-card h3,
.mvv-card h3,
.commit-card h3 {
  transition: transform .28s ease, color .28s ease;
}

.testimonial:hover .testimonial-quote,
.testimonial:hover .testimonial-person strong,
.contact-card:hover h3,
.mvv-card:hover h3,
.commit-card:hover h3 {
  transform: translateY(-2px);
  color: #ffffff;
}

@media (prefers-reduced-motion: reduce) {
  .testimonial,
  .mvv-card,
  .contact-card,
  .commit-card,
  .stats-bar,
  .stat-item,
  .testimonial .testimonial-avatar,
  .mvv-card .icon-wrap,
  .contact-card .icon-wrap,
  .commit-card .commit-icon,
  .stat-item svg,
  .testimonial-quote,
  .testimonial-person strong,
  .contact-card h3,
  .mvv-card h3,
  .commit-card h3 {
    transition: none !important;
  }
}


/* ========================================
   FAQ FUNCIONANDO + ANIMAÇÃO PADRÃO
   ======================================== */
.faq-item {
  position: relative;
  overflow: hidden;
  transition:
    transform .28s ease,
    border-color .28s ease,
    box-shadow .28s ease,
    background .28s ease;
  will-change: transform;
}

.faq-item:hover,
.faq-item.open {
  transform: translateY(-6px);
  border-color: rgba(0, 230, 184, .48);
  background: linear-gradient(180deg, rgba(8, 31, 49, .98), rgba(4, 18, 31, .98));
  box-shadow:
    0 16px 34px rgba(0, 0, 0, .28),
    0 0 24px rgba(0, 230, 184, .11),
    inset 0 0 0 1px rgba(0, 230, 184, .08);
}

.faq-q {
  cursor: pointer;
  width: 100%;
  transition: color .25s ease;
}

.faq-q span {
  display: inline-grid;
  place-items: center;
  transition:
    transform .28s ease,
    color .28s ease,
    text-shadow .28s ease;
}

.faq-item:hover .faq-q span,
.faq-item.open .faq-q span {
  transform: rotate(90deg) scale(1.08);
  color: var(--teal);
  text-shadow: 0 0 12px rgba(0, 230, 184, .42);
}

.faq-item.open .faq-q span {
  transform: rotate(180deg) scale(1.08);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(-6px);
  transition:
    max-height .35s ease,
    opacity .28s ease,
    transform .28s ease,
    padding .28s ease;
  padding-top: 0;
}

.faq-item.open .faq-a {
  max-height: 220px;
  opacity: 1;
  transform: translateY(0);
  padding-top: 12px;
}

/* Garante que o texto da resposta fique legível */
.faq-a {
  color: var(--muted);
  line-height: 1.6;
}

@media (prefers-reduced-motion: reduce) {
  .faq-item,
  .faq-q span,
  .faq-a {
    transition: none !important;
  }
}


/* ========================================
   QUEM SOMOS - NOSSO COMPROMISSO PREMIUM
   ======================================== */
.commitment-section {
  position: relative;
  overflow: hidden;
}

.commitment-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 35%, rgba(0, 230, 184, .08), transparent 34%),
    radial-gradient(circle at 15% 70%, rgba(0, 150, 255, .05), transparent 28%);
  pointer-events: none;
}

.section-head-premium {
  position: relative;
  z-index: 1;
  text-align: center;
  margin-bottom: 46px;
}

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid rgba(0, 230, 184, .28);
  background: rgba(0, 230, 184, .07);
  color: var(--teal);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.commitment-flow {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.commitment-flow::before {
  display: none;
}

.commitment-card {
  position: relative;
  min-height: 270px;
  padding: 34px 26px 28px;
  border-radius: 24px;
  border: 1px solid rgba(0, 230, 184, .18);
  background:
    linear-gradient(180deg, rgba(8, 31, 49, .82), rgba(5, 18, 31, .96)),
    radial-gradient(circle at 50% 0%, rgba(0,230,184,.14), transparent 45%);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.04);
  text-align: center;
  overflow: hidden;
  transition:
    transform .30s ease,
    border-color .30s ease,
    box-shadow .30s ease,
    background .30s ease;
  will-change: transform;
}

.commitment-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  background: linear-gradient(135deg, rgba(0,230,184,.24), transparent 32%, transparent 68%, rgba(0,230,184,.10));
  opacity: 0;
  transition: opacity .30s ease;
  pointer-events: none;
}

.commitment-card.featured {
  transform: translateY(-10px);
  border-color: rgba(0, 230, 184, .34);
  box-shadow:
    0 18px 42px rgba(0,0,0,.28),
    0 0 28px rgba(0,230,184,.08);
}

.commitment-card:hover {
  transform: translateY(-14px);
  border-color: rgba(0, 230, 184, .55);
  box-shadow:
    0 24px 48px rgba(0, 0, 0, .36),
    0 0 34px rgba(0, 230, 184, .16),
    inset 0 0 0 1px rgba(0, 230, 184, .10);
}

.commitment-card.featured:hover {
  transform: translateY(-18px);
}

.commitment-card:hover::before {
  opacity: 1;
}

.commitment-badge {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, #14d879, #1ed4bd);
  color: #fff;
  font-size: 14px;
  font-weight: 900;
  box-shadow: 0 12px 24px rgba(0, 230, 184, .22);
}

.commitment-icon {
  width: 88px;
  height: 88px;
  display: grid;
  place-items: center;
  border-radius: 26px;
  margin: 0 auto 22px;
  color: var(--teal);
  border: 1px solid rgba(0, 230, 184, .32);
  background: rgba(0, 230, 184, .07);
  transition:
    transform .30s ease,
    border-color .30s ease,
    background .30s ease,
    box-shadow .30s ease;
}

.commitment-icon svg {
  width: 40px;
  height: 40px;
}

.commitment-card:hover .commitment-icon {
  transform: translateY(-6px) scale(1.08) rotate(-2deg);
  border-color: rgba(0, 230, 184, .62);
  background: rgba(0, 230, 184, .13);
  box-shadow: 0 0 24px rgba(0, 230, 184, .16);
}

.commitment-card h3 {
  position: relative;
  z-index: 1;
  font-size: 20px;
  line-height: 1.2;
  margin: 0 0 12px;
}

.commitment-card p {
  position: relative;
  z-index: 1;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
  margin: 0 auto 20px;
  max-width: 300px;
}

.commitment-tags {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
}

.commitment-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(0, 230, 184, .18);
  background: rgba(0, 230, 184, .06);
  color: #cfe8e6;
  font-size: 12px;
  font-weight: 700;
}


.commitment-card {
  isolation: isolate;
}

@media (min-width: 1021px) {
  .commitment-card::after {
    content: "";
    position: absolute;
    top: 70px;
    left: calc(100% + 12px);
    width: 24px;
    height: 3px;
    background: repeating-linear-gradient(90deg, rgba(0,230,184,.9) 0 10px, transparent 10px 18px);
    background-size: 28px 3px;
    opacity: .70;
    animation: conecttLineMove 1.1s linear infinite;
    pointer-events: none;
  }

  .commitment-card:last-child::after {
    display: none;
  }
}

@media (max-width: 1020px) {
  .commitment-flow {
    grid-template-columns: 1fr;
  }

  .commitment-flow::before {
    display: none;
  }

  .commitment-card,
  .commitment-card.featured {
    transform: none;
  }

  .commitment-card:hover,
  .commitment-card.featured:hover {
    transform: translateY(-8px);
  }
}


/* ========================================
   PLANOS CONECTTCAR + IGREEN
   ======================================== */
.section-plans {
  position: relative;
  overflow: hidden;
}

.section-plans::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 22%, rgba(0, 230, 184, .06), transparent 28%),
    radial-gradient(circle at 82% 52%, rgba(0, 150, 255, .06), transparent 32%);
  pointer-events: none;
}

.plans-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.plan-card {
  position: relative;
  min-height: 100%;
  padding: 30px;
  border-radius: 24px;
  border: 1px solid rgba(0, 230, 184, .18);
  background:
    linear-gradient(180deg, rgba(8, 31, 49, .82), rgba(5, 18, 31, .96)),
    radial-gradient(circle at 50% 0%, rgba(0,230,184,.12), transparent 45%);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.04);
  overflow: hidden;
  transition: transform .30s ease, border-color .30s ease, box-shadow .30s ease;
}

.plan-card:hover {
  transform: translateY(-10px);
  border-color: rgba(0, 230, 184, .52);
  box-shadow:
    0 24px 48px rgba(0,0,0,.34),
    0 0 34px rgba(0,230,184,.14),
    inset 0 0 0 1px rgba(0,230,184,.08);
}

.plan-card.featured {
  border-color: rgba(0, 230, 184, .38);
}

.plan-ribbon {
  position: absolute;
  top: 18px;
  right: -42px;
  transform: rotate(35deg);
  background: linear-gradient(90deg, #14d879, #1ed4bd);
  color: #fff;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .05em;
  text-transform: uppercase;
  padding: 8px 46px;
}

.plan-label {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid rgba(0, 230, 184, .26);
  background: rgba(0, 230, 184, .07);
  color: var(--teal);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .05em;
  margin-bottom: 14px;
}

.plan-top h3 {
  font-size: clamp(24px, 2.5vw, 34px);
  margin: 0 0 10px;
}

.plan-top p {
  color: var(--muted);
  line-height: 1.65;
  margin: 0 0 22px;
}

.plan-price {
  padding: 18px;
  border-radius: 18px;
  border: 1px solid rgba(0,230,184,.18);
  background: rgba(0,230,184,.06);
  margin-bottom: 14px;
}

.plan-price span {
  display: block;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .05em;
  margin-bottom: 6px;
}

.plan-price strong {
  display: block;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1;
  color: #fff;
}

.plan-price small {
  display: block;
  margin-top: 8px;
  color: #aebdca;
  font-weight: 700;
}

.plan-price.monthly {
  background: rgba(12, 34, 54, .72);
}

.plan-price.quote strong {
  color: var(--teal);
}

.plan-list {
  margin: 20px 0 24px;
}

.plan-btn {
  width: 100%;
  min-height: 52px;
}

.igreen-home-card,
.igreen-disclaimer-card {
  position: relative;
  z-index: 1;
  margin-top: 24px;
  padding: 26px;
  border-radius: 22px;
  border: 1px solid rgba(0, 230, 184, .18);
  background:
    linear-gradient(90deg, rgba(8,31,49,.92), rgba(5,18,31,.94)),
    radial-gradient(circle at 90% 50%, rgba(0,230,184,.12), transparent 40%);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
}

.igreen-home-card h3,
.igreen-disclaimer-card h2 {
  margin: 8px 0 8px;
  font-size: clamp(22px, 2.5vw, 30px);
}

.igreen-home-card p,
.igreen-disclaimer-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
  max-width: 760px;
}

.section-eyebrow.small {
  min-height: 28px;
  font-size: 11px;
  margin-bottom: 6px;
}

.hero-insurance {
  background:
    linear-gradient(90deg,
      rgba(4, 16, 28, 0.86) 0%,
      rgba(4, 16, 28, 0.78) 34%,
      rgba(4, 16, 28, 0.54) 58%,
      rgba(4, 16, 28, 0.36) 100%),
    radial-gradient(circle at 82% 18%, rgba(0, 230, 184, 0.16), transparent 22%),
    url('../assets/img/hero-tracking.jpg') center center/cover no-repeat !important;
}

.hero-kicker {
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  padding: 7px 12px;
  border-radius: 999px;
  border: 1px solid rgba(0, 230, 184, .28);
  background: rgba(0, 230, 184, .08);
  color: var(--teal);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 14px;
}

.hero-cta {
  margin-top: 24px;
  display: inline-flex;
}

.insurance-hero-card {
  border: 1px solid rgba(0,230,184,.22);
  border-radius: 24px;
  padding: 30px;
  background:
    linear-gradient(180deg, rgba(8,31,49,.84), rgba(5,18,31,.96)),
    radial-gradient(circle at 100% 0%, rgba(0,230,184,.16), transparent 42%);
  box-shadow: 0 22px 50px rgba(0,0,0,.28);
  max-width: 420px;
  justify-self: end;
}

.insurance-hero-card span {
  color: var(--teal);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: 12px;
}

.insurance-hero-card h2 {
  font-size: 34px;
  line-height: 1.1;
  margin: 12px 0;
}

.insurance-hero-card p {
  color: var(--muted);
  line-height: 1.65;
  margin: 0;
}

.igreen-disclaimer-card {
  grid-template-columns: auto 1fr;
}

.igreen-disclaimer-card .icon-wrap {
  width: 72px;
  height: 72px;
}

@media (max-width: 1020px) {
  .plans-grid,
  .igreen-home-card,
  .igreen-disclaimer-card {
    grid-template-columns: 1fr;
  }

  .insurance-hero-card {
    justify-self: start;
    max-width: 100%;
  }
}

@media (max-width: 720px) {
  .plan-card {
    padding: 24px;
  }

  .igreen-home-card,
  .igreen-disclaimer-card {
    padding: 22px;
  }
}


/* ===== PLANOS FINOS / SEGUROS ===== */
.home-plans-grid {
  align-items: stretch;
}

.plan-card.plan-card-slim {
  padding: 28px;
  border-radius: 20px;
  border: 1px solid rgba(0, 230, 184, .16);
  background:
    linear-gradient(180deg, rgba(7, 26, 42, .88), rgba(5, 17, 30, .96)),
    radial-gradient(circle at 100% 0%, rgba(0,230,184,.08), transparent 36%);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.03),
    0 10px 24px rgba(0,0,0,.14);
}

.plan-card.plan-card-slim:hover {
  transform: translateY(-8px);
  border-color: rgba(0, 230, 184, .34);
  box-shadow:
    0 22px 38px rgba(0,0,0,.26),
    0 0 22px rgba(0,230,184,.09),
    inset 0 0 0 1px rgba(0,230,184,.05);
}

.plan-card.plan-card-slim .plan-top h3 {
  font-size: clamp(22px, 2.3vw, 30px);
  line-height: 1.12;
  margin-bottom: 12px;
}

.plan-card.plan-card-slim .plan-top p {
  font-size: 17px;
  line-height: 1.6;
  margin-bottom: 18px;
}

.plan-pricing-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.plan-price.compact {
  margin-bottom: 8px;
  padding: 16px 18px;
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(0,230,184,.08), rgba(0,230,184,.04));
}

.plan-price.highlight {
  background: linear-gradient(180deg, rgba(0,230,184,.12), rgba(0,230,184,.05));
}

.plan-card.plan-card-slim .plan-price strong {
  font-size: clamp(26px, 3.1vw, 42px);
}

.compact-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 18px;
  margin: 18px 0 22px;
}

.compact-list li {
  margin: 0;
  font-size: 16px;
}

.plan-card .plan-btn {
  min-height: 50px;
  border-radius: 14px;
}

.plan-ribbon {
  top: 16px;
  right: -38px;
  transform: rotate(36deg);
  padding: 7px 42px;
  font-size: 10px;
  letter-spacing: .08em;
}

.insurance-only-grid {
  grid-template-columns: 1.15fr .85fr;
}

.insurance-secondary-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.insurance-steps {
  display: grid;
  gap: 12px;
  margin: 6px 0 18px;
}

.insurance-step {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 12px;
  align-items: center;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(0,230,184,.12);
  background: rgba(0,230,184,.04);
}

.insurance-step strong {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, #2ce48b, #1bd4be);
  color: #fff;
  font-size: 16px;
  font-weight: 900;
}

.insurance-step span {
  color: #e8eef6;
  font-weight: 700;
}

.insurance-note {
  margin: 0 0 18px;
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.06);
  background: rgba(255,255,255,.03);
  color: var(--muted);
  line-height: 1.6;
}

.insurance-page-section .section-sub,
.home-plans-grid + .igreen-home-card p {
  max-width: 900px;
}

@media (max-width: 1020px) {
  .insurance-only-grid,
  .plans-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .plan-card.plan-card-slim {
    padding: 22px;
  }

  .plan-pricing-row,
  .compact-list {
    grid-template-columns: 1fr;
  }

  .plan-ribbon {
    right: -44px;
  }
}


/* ===== IGREEN SEGUROS PAGE ===== */
.premium-insurance-hero {
  min-height: 690px;
  background:
    linear-gradient(90deg, rgba(4,17,30,.92) 0%, rgba(4,17,30,.84) 32%, rgba(4,17,30,.46) 62%, rgba(4,17,30,.72) 100%),
    radial-gradient(circle at 78% 14%, rgba(0,230,184,.22), transparent 24%),
    radial-gradient(circle at 70% 66%, rgba(0,124,255,.10), transparent 26%),
    url('../assets/img/hero-tracking.jpg') center/cover no-repeat;
}
.premium-insurance-hero::before {
  content:''; position:absolute; inset:0; pointer-events:none;
  background:linear-gradient(180deg, rgba(255,255,255,.02), transparent 22%, transparent 78%, rgba(0,230,184,.04));
}
.premium-hero-inner { display:flex; align-items:center; min-height:640px; }
.premium-insurance-copy { max-width: 690px; }
.premium-insurance-copy h1 { max-width: 760px; font-size: clamp(42px, 5.3vw, 74px); line-height: .98; }
.premium-insurance-copy > p { max-width: 670px; font-size: 18px; color: #d6e5ef; }
.premium-tags { margin-bottom: 26px; }
.insurance-cta-row { display:flex; gap:14px; flex-wrap:wrap; margin-top:28px; }
.premium-secondary-btn { color:#dff5ff; border-color:rgba(255,255,255,.14); min-width:190px; }
.premium-secondary-btn:hover { border-color: var(--teal); color: var(--teal); }
.premium-surface { position:relative; }
.premium-surface::before {
  content:''; position:absolute; inset:0; pointer-events:none;
  background:radial-gradient(circle at 15% 0%, rgba(0,230,184,.05), transparent 28%), radial-gradient(circle at 85% 100%, rgba(0,124,255,.04), transparent 24%);
}

.premium-metrics-grid { gap: 18px; }
.premium-metric-card {
  position:relative; overflow:hidden; padding:26px 18px; border-radius:22px;
  background:linear-gradient(180deg, rgba(8,26,43,.94), rgba(5,16,28,.98));
  border:1px solid rgba(0,230,184,.14);
  box-shadow:0 18px 36px rgba(0,0,0,.18), inset 0 1px 0 rgba(255,255,255,.02);
}
.premium-metric-card::after {
  content:''; position:absolute; inset:auto -20% -50% auto; width:120px; height:120px; border-radius:50%; background:rgba(0,230,184,.06); filter:blur(10px);
}
.premium-metric-card small { display:block; font-size:11px; letter-spacing:.18em; text-transform:uppercase; color:#8cb0bf; margin-bottom:12px; }
.premium-metric-card strong { font-size: clamp(28px, 3vw, 44px); margin-bottom:8px; }
.premium-metric-card span { font-size:16px; }

.premium-intro-grid { align-items:center; gap:30px; }
.premium-left-copy .section-title, .premium-left-copy .section-sub { text-align:left; margin-left:0; }
.premium-highlight-box {
  position:relative; padding:34px; border-radius:28px;
  background:linear-gradient(180deg, rgba(7,23,38,.96), rgba(5,17,28,.98));
  border:1px solid rgba(0,230,184,.16);
  box-shadow:0 24px 48px rgba(0,0,0,.2);
}
.premium-highlight-box::before {
  content:''; position:absolute; inset:0; border-radius:inherit; pointer-events:none;
  background:radial-gradient(circle at top right, rgba(0,230,184,.10), transparent 32%);
}
.mini-kicker {
  display:inline-flex; padding:8px 14px; border-radius:999px; margin-bottom:16px; font-size:12px; font-weight:800; letter-spacing:.08em; text-transform:uppercase;
  color:var(--teal); border:1px solid rgba(0,230,184,.22); background:rgba(0,230,184,.06);
}

.premium-plan-section { padding-top:72px; }
.premium-igreen-grid { gap:26px; align-items:stretch; }
.premium-style-card {
  position:relative; isolation:isolate; overflow:hidden; padding:34px 30px 28px; border-radius:30px;
  background:linear-gradient(180deg, rgba(8,24,39,.96), rgba(5,17,28,.98));
  border:1px solid rgba(0,230,184,.16);
  box-shadow:0 22px 48px rgba(0,0,0,.22);
}
.premium-style-card::before {
  content:''; position:absolute; inset:0; border-radius:inherit; pointer-events:none;
  background:linear-gradient(180deg, rgba(255,255,255,.025), transparent 16%, transparent 86%, rgba(0,230,184,.03));
}
.premium-style-card .plan-glow {
  position:absolute; width:260px; height:260px; border-radius:50%; top:-110px; right:-90px; z-index:-1;
  background:radial-gradient(circle, rgba(0,230,184,.12), transparent 58%);
}
.featured-plan-card { transform: translateY(-14px); border-color: rgba(0,230,184,.34); box-shadow:0 28px 60px rgba(0,0,0,.26), 0 0 0 1px rgba(0,230,184,.08); }
.igreen-badge {
  position:absolute; top:0; left:50%; transform:translate(-50%,-50%); padding:10px 20px; border-radius:999px;
  background:linear-gradient(90deg, #19d6ad, #2af0c2); color:#04161d; font-weight:900; font-size:13px; letter-spacing:.1em; text-transform:uppercase;
  box-shadow:0 18px 34px rgba(0,230,184,.28);
}
.igreen-plan-label { display:inline-flex; align-items:center; gap:8px; margin-bottom:18px; font-size:13px; font-weight:900; letter-spacing:.10em; text-transform:uppercase; color:var(--teal); }
.igreen-plan-head h3 { font-size: clamp(30px, 3vw, 42px); line-height: 1.02; letter-spacing:-.04em; margin-bottom:14px; }
.igreen-plan-head p { color:#a8bac6; font-size:18px; line-height:1.6; margin-bottom:24px; max-width: 420px; }
.igreen-plan-list { gap:13px; margin-bottom:28px; }
.igreen-plan-list li { padding-left:32px; font-size:17px; line-height:1.45; color:#edf5fb; }
.igreen-plan-list li::before {
  content:'✓'; position:absolute; left:0; top:1px; width:20px; height:20px; display:flex; align-items:center; justify-content:center; border-radius:50%;
  background:rgba(0,230,184,.12); color:var(--teal); font-size:12px; font-weight:900;
}
.igreen-plan-btn {
  width:100%; min-height:52px; border-radius:16px; justify-content:center;
  background:linear-gradient(90deg, rgba(0,230,184,.16), rgba(0,230,184,.08)); border:1px solid rgba(0,230,184,.24); box-shadow:none; color:#effcff;
}
.igreen-plan-btn:hover { background:linear-gradient(90deg, rgba(0,230,184,.25), rgba(0,230,184,.12)); color:#fff; border-color:rgba(0,230,184,.42); }

.premium-benefits-grid, .premium-assistance-grid { gap:20px; }
.premium-box-card, .premium-mini-card, .premium-step-card {
  position:relative; overflow:hidden; padding:28px; border-radius:22px;
  background:linear-gradient(180deg, rgba(8,24,39,.94), rgba(5,17,28,.98));
  border:1px solid rgba(0,230,184,.12);
  box-shadow:0 18px 36px rgba(0,0,0,.16);
}
.premium-box-card::before, .premium-mini-card::before, .premium-step-card::before {
  content:''; position:absolute; inset:0; pointer-events:none; border-radius:inherit;
  background:radial-gradient(circle at top right, rgba(0,230,184,.07), transparent 28%);
}
.premium-box-card h3, .premium-mini-card h3 { font-size:28px; line-height:1.1; margin-bottom:12px; }
.premium-box-card p, .premium-mini-card p { color:var(--muted); line-height:1.7; font-size:16px; }
.premium-step-card strong {
  width:54px; height:54px; margin-bottom:18px;
  background:linear-gradient(180deg, #1be0a6, #00e6b8); color:#042118; box-shadow:0 14px 28px rgba(0,230,184,.22);
}
.premium-step-card h3 { font-size:28px; line-height:1.15; margin-bottom:14px; }
.premium-step-card p { color:var(--muted); font-size:16px; line-height:1.7; }
.premium-faq-grid .faq-item { background:linear-gradient(180deg, rgba(8,24,39,.94), rgba(5,17,28,.98)); border:1px solid rgba(0,230,184,.12); box-shadow:0 16px 34px rgba(0,0,0,.12); }
.premium-faq-grid .faq-q { font-size:18px; }
.premium-faq-grid .faq-a { color:var(--muted); }

@media (max-width: 1180px) {
  .premium-insurance-copy { max-width:620px; }
}
@media (max-width: 1100px) {
  .insurance-metrics-grid, .insurance-intro-grid, .igreen-plans-grid, .insurance-benefits-grid, .assistance-grid, .insurance-steps-grid { grid-template-columns:1fr 1fr; }
  .featured-plan-card { transform:none; }
}
@media (max-width: 900px) {
  .premium-insurance-hero { min-height: auto; }
  .premium-hero-inner { min-height:auto; padding: 30px 0 10px; }
  .premium-insurance-copy h1 { font-size: clamp(36px, 9vw, 56px); }
}
@media (max-width: 760px) {
  .insurance-metrics-grid, .insurance-intro-grid, .igreen-plans-grid, .insurance-benefits-grid, .assistance-grid, .insurance-steps-grid { grid-template-columns:1fr; }
  .premium-insurance-copy > p { font-size:16px; }
  .premium-style-card, .premium-box-card, .premium-mini-card, .premium-step-card, .premium-highlight-box, .premium-metric-card { padding:22px; }
  .insurance-cta-row { flex-direction:column; align-items:stretch; }
}

/* ========================================
   PÁGINA SEGUROS - LANDING PROFISSIONAL
   ======================================== */
.seguros-page {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 16% 6%, rgba(0,230,184,.10), transparent 28%),
    radial-gradient(circle at 88% 24%, rgba(0,122,255,.09), transparent 32%),
    linear-gradient(180deg, #050d17 0%, #06111d 46%, #050b14 100%);
}

.seguros-page .section-eyebrow,
.insurance-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 16px;
  color: var(--teal);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .16em;
  line-height: 1.3;
  text-transform: uppercase;
}

.seguros-page .section-eyebrow::before,
.insurance-eyebrow::before {
  content: '';
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--teal);
  box-shadow: 0 0 18px rgba(0,230,184,.75);
}

.seguros-page .left-title {
  text-align: left;
  margin-bottom: 18px;
}

.insurance-hero-pro {
  position: relative;
  min-height: calc(100vh - var(--header-h));
  display: flex;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
  border-bottom: 1px solid rgba(0,230,184,.14);
}

.insurance-hero-bg {
  position: absolute;
  inset: 0;
  z-index: -3;
  background: url('../assets/img/hero-seguros-conecttcar.webp') center right/cover no-repeat;
  transform: scale(1.01);
}

.insurance-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(4,10,18,.97) 0%, rgba(4,10,18,.93) 30%, rgba(4,10,18,.68) 52%, rgba(4,10,18,.18) 74%, rgba(4,10,18,.38) 100%),
    radial-gradient(circle at 10% 28%, rgba(0,230,184,.19), transparent 26%),
    linear-gradient(180deg, rgba(5,13,23,.22) 0%, rgba(5,13,23,.55) 100%);
}

.insurance-hero-pro::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: .22;
  background-image:
    linear-gradient(rgba(0,230,184,.16) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,230,184,.16) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: linear-gradient(90deg, #000, transparent 64%);
  -webkit-mask-image: linear-gradient(90deg, #000, transparent 64%);
}

.insurance-hero-pro::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 180px;
  background: linear-gradient(180deg, transparent 0%, #06111d 82%);
  pointer-events: none;
}

.insurance-hero-content {
  position: relative;
  z-index: 2;
  padding: 86px 0 78px;
}

.insurance-hero-copy {
  width: min(720px, 100%);
}

.insurance-hero-copy h1 {
  margin: 0 0 22px;
  font-size: clamp(42px, 6.4vw, 84px);
  line-height: .94;
  letter-spacing: -.07em;
  font-weight: 950;
  color: #fff;
  text-shadow: 0 20px 60px rgba(0,0,0,.45);
}

.insurance-hero-copy p {
  max-width: 650px;
  margin: 0;
  color: #d5e6f1;
  font-size: clamp(16px, 1.5vw, 19px);
  line-height: 1.72;
}

.insurance-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.insurance-primary {
  background: linear-gradient(135deg, #00e6b8 0%, #1ed760 100%);
  color: #021016;
  border: 1px solid rgba(255,255,255,.20);
  box-shadow: 0 18px 45px rgba(0,230,184,.22);
}

.insurance-outline {
  border-color: rgba(0,230,184,.28);
  background: rgba(0,230,184,.06);
  color: #eaf7ff;
  backdrop-filter: blur(12px);
}

.insurance-hero-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 650px;
  margin-top: 34px;
}

.insurance-hero-points > div {
  min-height: 96px;
  padding: 18px 18px;
  border: 1px solid rgba(0,230,184,.18);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(9,28,45,.78), rgba(3,15,26,.66));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.06), 0 18px 44px rgba(0,0,0,.20);
  backdrop-filter: blur(14px);
}

.insurance-hero-points strong {
  display: block;
  margin-bottom: 7px;
  color: #fff;
  font-size: 28px;
  line-height: 1;
  letter-spacing: -.04em;
  font-weight: 950;
}

.insurance-hero-points span {
  color: #a9bdcc;
  font-size: 13px;
  line-height: 1.35;
  font-weight: 700;
}

.insurance-strip {
  position: relative;
  z-index: 3;
  margin-top: -42px;
  padding-bottom: 26px;
}

.insurance-strip-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.insurance-strip-grid article {
  position: relative;
  overflow: hidden;
  min-height: 150px;
  padding: 24px;
  border-radius: 22px;
  border: 1px solid rgba(0,230,184,.18);
  background:
    radial-gradient(circle at 100% 0%, rgba(0,230,184,.14), transparent 38%),
    linear-gradient(180deg, rgba(9,31,50,.96), rgba(5,17,29,.96));
  box-shadow: 0 22px 70px rgba(0,0,0,.32);
}

.insurance-strip-grid article::after {
  content: '';
  position: absolute;
  top: 0;
  left: 24px;
  right: 24px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(0,230,184,.9), transparent);
}

.insurance-strip-grid span {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-bottom: 18px;
  border-radius: 12px;
  color: #021016;
  background: var(--teal);
  font-size: 13px;
  font-weight: 950;
}

.insurance-strip-grid h3,
.insurance-cover-card h3,
.insurance-plan-card h3,
.insurance-process-grid h3 {
  margin: 0 0 10px;
  font-size: 20px;
  letter-spacing: -.03em;
}

.insurance-strip-grid p,
.insurance-cover-card p,
.insurance-plan-card p,
.insurance-process-grid p {
  margin: 0;
  color: #a8bac8;
  font-size: 14px;
  line-height: 1.6;
}

.insurance-about-pro {
  padding-top: 70px;
}

.insurance-about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(330px, .65fr);
  gap: 34px;
  align-items: center;
}

.insurance-section-copy > p {
  max-width: 720px;
  margin: 0 0 26px;
  color: #b7c8d5;
  font-size: 17px;
  line-height: 1.75;
}

.insurance-mini-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.insurance-mini-grid div {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 64px;
  padding: 15px 16px;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 16px;
  background: rgba(255,255,255,.035);
}

.insurance-mini-grid strong {
  display: grid;
  place-items: center;
  width: 26px;
  height: 26px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: rgba(0,230,184,.13);
  color: var(--teal);
  font-size: 15px;
}

.insurance-mini-grid span {
  color: #d9e6ef;
  font-size: 14px;
  line-height: 1.35;
  font-weight: 800;
}

.insurance-glass-panel {
  position: relative;
  overflow: hidden;
  padding: 32px;
  border-radius: 28px;
  border: 1px solid rgba(0,230,184,.22);
  background:
    radial-gradient(circle at 20% 0%, rgba(0,230,184,.19), transparent 34%),
    linear-gradient(180deg, rgba(9,31,50,.93), rgba(5,15,27,.96));
  box-shadow: 0 28px 80px rgba(0,0,0,.30);
}

.insurance-glass-panel::before {
  content: '';
  position: absolute;
  width: 260px;
  height: 260px;
  right: -130px;
  top: -90px;
  border: 1px solid rgba(0,230,184,.28);
  border-radius: 34%;
  transform: rotate(22deg);
}

.insurance-panel-top {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 9px;
  margin-bottom: 24px;
}

.insurance-panel-top span {
  color: var(--teal);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.insurance-panel-top strong {
  color: #fff;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1;
  letter-spacing: -.05em;
}

.insurance-glass-panel ul {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 13px;
  margin-bottom: 26px;
}

.insurance-glass-panel li {
  position: relative;
  padding-left: 30px;
  color: #d4e5f0;
  font-weight: 750;
  line-height: 1.45;
}

.insurance-glass-panel li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: -1px;
  color: var(--teal);
  font-weight: 950;
}

.insurance-glass-panel a {
  position: relative;
  z-index: 1;
  display: inline-flex;
  justify-content: center;
  width: 100%;
  padding: 16px 18px;
  border-radius: 14px;
  color: #021016;
  background: var(--teal);
  font-weight: 950;
  transition: .22s;
}

.insurance-glass-panel a:hover {
  transform: translateY(-2px);
  filter: brightness(1.07);
}

.insurance-cover-section,
.insurance-process-section,
.insurance-faq-section {
  background: linear-gradient(180deg, rgba(255,255,255,.02), rgba(0,230,184,.035), rgba(255,255,255,.015));
  border-block: 1px solid rgba(255,255,255,.06);
}

.insurance-cover-grid,
.insurance-plans-grid,
.insurance-process-grid {
  display: grid;
  gap: 18px;
}

.insurance-cover-grid {
  grid-template-columns: repeat(3, 1fr);
}

.insurance-cover-card {
  min-height: 238px;
  padding: 26px;
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,.08);
  background:
    linear-gradient(180deg, rgba(10,31,50,.88), rgba(5,17,29,.92));
  box-shadow: 0 18px 48px rgba(0,0,0,.18);
  transition: .24s;
}

.insurance-cover-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0,230,184,.30);
  box-shadow: 0 24px 70px rgba(0,0,0,.28);
}

.cover-icon {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  margin-bottom: 20px;
  border-radius: 18px;
  border: 1px solid rgba(0,230,184,.22);
  background: rgba(0,230,184,.08);
  font-size: 26px;
}

.insurance-plans-section {
  position: relative;
}

.insurance-plans-section::before {
  content: '';
  position: absolute;
  inset: 70px auto auto 50%;
  width: 720px;
  height: 360px;
  transform: translateX(-50%);
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(0,230,184,.14), transparent 66%);
  pointer-events: none;
}

.insurance-plans-grid {
  position: relative;
  grid-template-columns: repeat(3, 1fr);
  align-items: stretch;
}

.insurance-plan-card {
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding: 32px 28px 28px;
  border-radius: 30px;
  border: 1px solid rgba(0,230,184,.16);
  background:
    radial-gradient(circle at 100% 0%, rgba(0,230,184,.10), transparent 34%),
    linear-gradient(180deg, rgba(9,29,48,.98), rgba(5,15,27,.98));
  box-shadow: 0 22px 70px rgba(0,0,0,.26);
}

.insurance-plan-featured {
  transform: translateY(-18px);
  border-color: rgba(0,230,184,.44);
  box-shadow: 0 34px 90px rgba(0,230,184,.12), 0 28px 80px rgba(0,0,0,.36);
}

.plan-topline {
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--teal), transparent);
}

.featured-badge {
  align-self: flex-start;
  margin: -8px 0 18px;
  padding: 8px 13px;
  border-radius: 999px;
  color: #021016;
  background: var(--teal);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.plan-label {
  color: var(--teal);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.insurance-plan-card h3 {
  margin-top: 14px;
  font-size: clamp(28px, 3vw, 38px);
  line-height: 1;
}

.insurance-plan-card > p {
  min-height: 70px;
  margin-bottom: 22px;
  font-size: 15px;
}

.insurance-plan-card ul {
  display: grid;
  gap: 12px;
  margin: 0 0 28px;
}

.insurance-plan-card li {
  position: relative;
  padding-left: 28px;
  color: #d9e8f2;
  font-size: 15px;
  line-height: 1.45;
  font-weight: 750;
}

.insurance-plan-card li::before {
  content: '';
  position: absolute;
  left: 0;
  top: .45em;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 0 5px rgba(0,230,184,.10);
}

.insurance-plan-card a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  margin-top: auto;
  padding: 14px 18px;
  border-radius: 15px;
  color: #021016;
  background: linear-gradient(135deg, #00e6b8, #1ed760);
  font-weight: 950;
  transition: .22s;
}

.insurance-plan-card a:hover {
  transform: translateY(-2px);
  filter: brightness(1.06);
}

.insurance-process-grid {
  grid-template-columns: repeat(4, 1fr);
  counter-reset: item;
}

.insurance-process-grid article {
  position: relative;
  min-height: 210px;
  padding: 28px 22px;
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(6,20,34,.72);
}

.insurance-process-grid article::before {
  content: '';
  position: absolute;
  left: 22px;
  top: 58px;
  width: 1px;
  height: 54px;
  background: linear-gradient(180deg, rgba(0,230,184,.8), transparent);
}

.insurance-process-grid strong {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-bottom: 38px;
  border-radius: 16px;
  color: #021016;
  background: var(--teal);
  font-size: 20px;
  font-weight: 950;
}

.insurance-final-cta {
  padding: 74px 0;
}

.insurance-final-box {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 28px;
  padding: 44px;
  border-radius: 32px;
  border: 1px solid rgba(0,230,184,.28);
  background:
    linear-gradient(90deg, rgba(6,13,23,.96), rgba(6,13,23,.72)),
    url('../assets/img/hero-seguros-conecttcar.webp') center right/cover no-repeat;
  box-shadow: 0 30px 90px rgba(0,0,0,.34);
}

.insurance-final-box::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at 16% 0%, rgba(0,230,184,.16), transparent 30%);
}

.insurance-final-box > * {
  position: relative;
  z-index: 1;
}

.insurance-final-box h2 {
  max-width: 780px;
  margin: 0 0 12px;
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1;
  letter-spacing: -.055em;
}

.insurance-final-box p {
  max-width: 650px;
  margin: 0;
  color: #c0d1dd;
  line-height: 1.65;
}

.insurance-faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.insurance-faq-grid .faq-item {
  border-radius: 18px;
  border-color: rgba(0,230,184,.13);
  background: rgba(7,23,38,.76);
}

.insurance-faq-grid .faq-q {
  font-size: 15px;
  font-weight: 900;
}

@media (max-width: 1080px) {
  .insurance-hero-pro { min-height: 720px; }
  .insurance-hero-bg { background-position: 65% center; }
  .insurance-cover-grid,
  .insurance-plans-grid { grid-template-columns: repeat(2, 1fr); }
  .insurance-process-grid { grid-template-columns: repeat(2, 1fr); }
  .insurance-plan-featured { transform: none; }
  .insurance-about-grid { grid-template-columns: 1fr; }
}

@media (max-width: 780px) {
  .insurance-hero-pro { min-height: auto; }
  .insurance-hero-bg { background-position: 73% center; opacity: .68; }
  .insurance-hero-overlay {
    background:
      linear-gradient(90deg, rgba(4,10,18,.97) 0%, rgba(4,10,18,.94) 48%, rgba(4,10,18,.72) 100%),
      linear-gradient(180deg, rgba(4,10,18,.18), rgba(4,10,18,.68));
  }
  .insurance-hero-content { padding: 74px 0 86px; }
  .insurance-hero-copy h1 { font-size: clamp(36px, 13vw, 58px); }
  .insurance-actions { flex-direction: column; align-items: stretch; }
  .insurance-hero-points,
  .insurance-strip-grid,
  .insurance-mini-grid,
  .insurance-cover-grid,
  .insurance-plans-grid,
  .insurance-process-grid,
  .insurance-faq-grid,
  .insurance-final-box { grid-template-columns: 1fr; }
  .insurance-strip { margin-top: -34px; }
  .insurance-final-box { padding: 30px 22px; }
  .insurance-glass-panel { padding: 26px 22px; }
}

@media (max-width: 520px) {
  .insurance-hero-copy p,
  .insurance-section-copy > p { font-size: 15px; }
  .insurance-hero-points > div { min-height: auto; }
  .insurance-cover-card,
  .insurance-plan-card,
  .insurance-process-grid article { padding: 24px 20px; }
  .insurance-strip-grid article { padding: 22px 20px; }
  .seguros-page .left-title { font-size: 30px; }
}


/* ========================================
   PÁGINA SEGUROS - NOVA LANDING PAGE FIEL AO LAYOUT APROVADO
   ======================================== */
.seguros-lp {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 6%, rgba(0, 230, 184, .10), transparent 28%),
    radial-gradient(circle at 82% 16%, rgba(0, 140, 255, .08), transparent 26%),
    linear-gradient(180deg, #030812 0%, #040b15 28%, #06111d 62%, #040912 100%);
}

.seguros-lp::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.028) 1px, transparent 1px);
  background-size: 100px 100px;
  mask-image: linear-gradient(180deg, rgba(0,0,0,.35), transparent 24%, transparent 76%, rgba(0,0,0,.38));
  -webkit-mask-image: linear-gradient(180deg, rgba(0,0,0,.35), transparent 24%, transparent 76%, rgba(0,0,0,.38));
  opacity: .55;
}

.seg-section {
  position: relative;
  padding: 64px 0;
}

.seg-section-head {
  max-width: 760px;
  margin: 0 auto 34px;
  text-align: center;
}

.seg-section-head h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.02;
  letter-spacing: -.05em;
}

.seg-section-head p {
  margin: 14px 0 0;
  color: #b3c4d1;
  font-size: 17px;
  line-height: 1.7;
}

.seg-hero {
  position: relative;
  min-height: calc(100vh - var(--header-h));
  display: flex;
  align-items: center;
  overflow: hidden;
  border-bottom: 1px solid rgba(0, 230, 184, .12);
}

.seg-hero-bg,
.seg-hero-overlay {
  position: absolute;
  inset: 0;
}

.seg-hero-bg {
  background: url('../assets/img/seguros-hero-pro.webp') center center/cover no-repeat;
  transform: scale(1.02);
}

.seg-hero-overlay {
  background:
    linear-gradient(90deg, rgba(3, 8, 18, .985) 0%, rgba(3, 8, 18, .95) 34%, rgba(3, 8, 18, .68) 56%, rgba(3, 8, 18, .20) 77%, rgba(3, 8, 18, .26) 100%),
    linear-gradient(180deg, rgba(0,0,0,.12), rgba(0,0,0,.24));
}

.seg-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 640px);
  padding: 92px 0 74px;
}

.seg-hero-copy h1 {
  margin: 0;
  font-size: clamp(42px, 5.6vw, 82px);
  line-height: .96;
  letter-spacing: -.07em;
  color: #fff;
  font-weight: 950;
  text-wrap: balance;
}

.seg-hero-copy h1 span {
  color: var(--teal);
}

.seg-hero-copy p {
  max-width: 560px;
  margin: 24px 0 0;
  color: #d0dce7;
  font-size: clamp(16px, 1.4vw, 20px);
  line-height: 1.72;
}

.seg-hero-actions,
.seg-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 30px;
}

.seg-btn-primary,
.seg-plan-btn {
  background: linear-gradient(135deg, #11e7cf, #17d8ff 115%);
  color: #021016;
  border: 1px solid rgba(255,255,255,.18);
  box-shadow: 0 20px 60px rgba(0, 230, 184, .18);
}

.seg-btn-primary:hover,
.seg-plan-btn:hover {
  filter: brightness(1.05);
  transform: translateY(-2px);
}

.seg-btn-outline,
.seg-plan-btn-outline {
  background: rgba(4, 14, 25, .68);
  color: #fff;
  border: 1px solid rgba(0, 230, 184, .34);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.05);
}

.seg-btn-outline:hover,
.seg-plan-btn-outline:hover {
  border-color: rgba(0, 230, 184, .68);
  background: rgba(6, 24, 39, .86);
  transform: translateY(-2px);
}

.seg-btn-outline svg,
.seg-cta-actions .seg-btn-outline svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

.seg-trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 32px;
  margin-top: 36px;
}

.seg-trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 150px;
}

.seg-trust-item svg {
  width: 24px;
  height: 24px;
  color: var(--teal);
  flex: 0 0 auto;
}

.seg-trust-item strong,
.seg-trust-item span {
  display: block;
}

.seg-trust-item strong {
  color: #fff;
  font-size: 28px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -.04em;
}

.seg-trust-item span {
  margin-top: 3px;
  color: #9fb2c0;
  font-size: 13px;
  font-weight: 700;
}

.seg-feature-bar {
  position: relative;
  z-index: 3;
  margin-top: -24px;
  padding-bottom: 14px;
}

.seg-feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.seg-feature-card,
.seg-testimonial-card,
.seg-step-card,
.seg-plan-card,
.seg-cta-panel,
.seg-faq-list .faq-item {
  border: 1px solid rgba(0, 230, 184, .13);
  box-shadow: 0 18px 70px rgba(0,0,0,.20);
}

.seg-feature-card {
  min-height: 184px;
  padding: 26px 24px;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(8, 22, 37, .96), rgba(6, 16, 28, .98));
}

.seg-feature-card h3 {
  margin: 0 0 10px;
  color: #fff;
  font-size: 22px;
  letter-spacing: -.03em;
}

.seg-feature-card p {
  margin: 0;
  color: #a7b8c6;
  font-size: 14px;
  line-height: 1.65;
}

.seg-feature-icon {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  margin-bottom: 18px;
  border-radius: 18px;
  color: var(--teal);
  border: 1px solid rgba(0, 230, 184, .24);
  background: rgba(0, 230, 184, .06);
}

.seg-feature-icon svg {
  width: 28px;
  height: 28px;
}

.seg-plans {
  padding-top: 70px;
}

.seg-plans-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  align-items: stretch;
}

.seg-plan-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 34px 28px 28px;
  border-radius: 30px;
  background:
    radial-gradient(circle at 100% 0%, rgba(0,230,184,.11), transparent 34%),
    linear-gradient(180deg, rgba(9, 24, 41, .98), rgba(5, 15, 27, .98));
}

.seg-plan-card-featured {
  transform: translateY(-14px);
  border-color: rgba(0, 230, 184, .40);
  box-shadow: 0 30px 90px rgba(0,0,0,.34), 0 0 0 1px rgba(0, 230, 184, .12);
}

.seg-plan-badge {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  padding: 9px 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, #11e7cf, #17d8ff);
  color: #031017;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .08em;
}

.seg-plan-tag {
  color: #8dece1;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .16em;
}

.seg-plan-card h3 {
  margin: 12px 0 10px;
  color: #fff;
  font-size: clamp(34px, 2.8vw, 42px);
  line-height: 1;
  letter-spacing: -.04em;
}

.seg-plan-card p {
  min-height: 64px;
  margin: 0 0 20px;
  color: #b6c6d2;
  line-height: 1.65;
}

.seg-plan-card ul {
  display: grid;
  gap: 12px;
  margin: 0 0 28px;
}

.seg-plan-card li {
  position: relative;
  padding-left: 24px;
  color: #dce7ef;
  line-height: 1.55;
  font-weight: 700;
}

.seg-plan-card li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--teal);
  font-weight: 900;
}

.seg-plan-card li small {
  color: #9bb0bf;
  font-size: 12px;
}

.seg-plan-btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 54px;
  margin-top: auto;
  padding: 14px 18px;
  border-radius: 16px;
  font-weight: 900;
}

.seg-steps {
  padding-top: 58px;
}

.seg-steps-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.seg-step-card {
  position: relative;
  display: flex;
  align-items: center;
  gap: 18px;
  min-height: 136px;
  padding: 26px 24px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(8, 23, 38, .90), rgba(5, 14, 26, .95));
}

.seg-step-card:not(:last-child)::after {
  content: '';
  position: absolute;
  right: -11px;
  top: 50%;
  width: 20px;
  height: 1px;
  background: linear-gradient(90deg, rgba(0, 230, 184, .65), transparent);
}

.seg-step-number {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 16px;
  background: rgba(255,255,255,.04);
  color: #dfefff;
  font-size: 29px;
  font-weight: 900;
  letter-spacing: -.05em;
}

.seg-step-content h3 {
  margin: 0 0 8px;
  color: #fff;
  font-size: 21px;
  letter-spacing: -.03em;
}

.seg-step-content p {
  margin: 0;
  color: #a6b8c5;
  line-height: 1.55;
}

.seg-testimonials {
  padding-top: 42px;
}

.seg-testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  max-width: 1080px;
  margin: 0 auto;
}

.seg-testimonial-card {
  min-height: 250px;
  padding: 24px;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(7, 20, 34, .92), rgba(5, 14, 24, .96));
}

.seg-quote-mark {
  margin-bottom: 10px;
  color: #b8dff8;
  font-size: 48px;
  line-height: 1;
  font-weight: 800;
}

.seg-testimonial-card > p {
  min-height: 90px;
  margin: 0 0 20px;
  color: #edf7ff;
  line-height: 1.7;
}

.seg-testimonial-person {
  display: flex;
  align-items: center;
  gap: 14px;
}

.seg-testimonial-person img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255,255,255,.10);
}

.seg-testimonial-person strong {
  display: block;
  color: #fff;
  font-size: 18px;
}

.seg-testimonial-person span {
  display: block;
  margin-top: 2px;
  color: #a6b5c2;
  font-size: 13px;
}

.seg-stars {
  margin-top: 6px;
  color: #ffd84d;
  font-size: 18px;
  letter-spacing: 1px;
}

.seg-faq {
  padding-top: 52px;
}

.seg-faq-list {
  max-width: 1100px;
  margin: 0 auto;
}

.seg-faq-list .faq-item {
  margin-bottom: 12px;
  border-radius: 18px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(6, 18, 30, .96), rgba(4, 13, 22, .98));
}

.seg-faq-list .faq-q {
  padding: 20px 24px;
  font-size: 17px;
  font-weight: 850;
  color: #fff;
}

.seg-faq-list .faq-q span {
  color: var(--teal);
  font-size: 26px;
  line-height: 1;
}

.seg-faq-list .faq-a {
  padding: 0 24px 22px;
  color: #b5c4d1;
  line-height: 1.72;
}

.seg-bottom-cta {
  padding-top: 34px;
  padding-bottom: 78px;
}

.seg-cta-panel {
  display: grid;
  grid-template-columns: 320px minmax(0, 1fr) auto;
  align-items: center;
  gap: 28px;
  padding: 20px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(7, 21, 35, .97), rgba(4, 13, 23, .98));
}

.seg-cta-media {
  overflow: hidden;
  border-radius: 18px;
}

.seg-cta-media img {
  display: block;
  width: 100%;
  height: 188px;
  object-fit: cover;
}

.seg-cta-copy h2 {
  margin: 0 0 10px;
  color: #fff;
  font-size: clamp(34px, 4vw, 54px);
  line-height: .98;
  letter-spacing: -.05em;
}

.seg-cta-copy p {
  max-width: 520px;
  margin: 0;
  color: #b7c5d1;
  line-height: 1.7;
}

.seg-cta-actions {
  flex-direction: column;
  margin-top: 0;
  width: 280px;
}

.seg-cta-actions .btn {
  justify-content: center;
  width: 100%;
}

@media (max-width: 1180px) {
  .seg-feature-grid,
  .seg-plans-grid,
  .seg-testimonials-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .seg-plans-grid .seg-plan-card:last-child { grid-column: 1 / -1; max-width: 420px; margin: 0 auto; }
  .seg-cta-panel { grid-template-columns: 280px minmax(0, 1fr); }
  .seg-cta-actions { grid-column: 1 / -1; width: 100%; flex-direction: row; }
  .seg-cta-actions .btn { width: auto; flex: 1; }
}

@media (max-width: 980px) {
  .seg-hero { min-height: auto; }
  .seg-hero-grid { padding: 80px 0 72px; }
  .seg-hero-bg { background-position: 76% center; }
  .seg-hero-overlay {
    background:
      linear-gradient(90deg, rgba(3, 8, 18, .98) 0%, rgba(3, 8, 18, .95) 54%, rgba(3, 8, 18, .73) 100%),
      linear-gradient(180deg, rgba(0,0,0,.16), rgba(0,0,0,.28));
  }
  .seg-feature-grid,
  .seg-steps-grid,
  .seg-testimonials-grid { grid-template-columns: 1fr; }
  .seg-plans-grid { grid-template-columns: 1fr; }
  .seg-plan-card,
  .seg-plans-grid .seg-plan-card:last-child { max-width: 100%; }
  .seg-plan-card-featured { transform: none; }
  .seg-step-card:not(:last-child)::after { display: none; }
  .seg-cta-panel { grid-template-columns: 1fr; }
  .seg-cta-media img { height: 230px; }
  .seg-cta-actions { flex-direction: column; }
}

@media (max-width: 680px) {
  .seg-section { padding: 52px 0; }
  .seg-hero-grid { padding: 74px 0 62px; }
  .seg-hero-bg { background-position: 72% center; opacity: .82; }
  .seg-hero-copy h1 { font-size: clamp(36px, 12vw, 54px); }
  .seg-hero-copy p,
  .seg-section-head p,
  .seg-cta-copy p { font-size: 15px; }
  .seg-hero-actions,
  .seg-trust-row { gap: 14px; }
  .seg-hero-actions .btn,
  .seg-cta-actions .btn { width: 100%; justify-content: center; }
  .seg-trust-item { min-width: calc(50% - 10px); }
  .seg-feature-bar { margin-top: -14px; }
  .seg-feature-card,
  .seg-plan-card,
  .seg-step-card,
  .seg-testimonial-card { padding: 22px 20px; }
  .seg-cta-panel { padding: 16px; }
  .seg-cta-copy h2,
  .seg-section-head h2 { font-size: clamp(30px, 9vw, 42px); }
}

@media (max-width: 460px) {
  .seg-trust-item { min-width: 100%; }
  .seg-step-card { flex-direction: column; align-items: flex-start; }
  .seg-step-number { width: 50px; height: 50px; }
  .seg-cta-media img { height: 180px; }
}


/* Atualização de marca - logo horizontal nova */
.socials { flex-wrap: wrap; }
@media (max-width: 780px) { .logo img { width: 190px; } .footer-logo, .footer-exact .footer-logo, .footer.footer-exact .footer-logo { width: 190px; } }


/* ===== HOME PLANOS REFINADOS ===== */
.plans-showcase {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  align-items: stretch;
}

.premium-plan-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 28px;
  border-radius: 28px;
  border: 1px solid rgba(120, 219, 255, .12);
  background:
    linear-gradient(180deg, rgba(8, 23, 39, .96) 0%, rgba(5, 15, 27, .98) 100%),
    radial-gradient(circle at 100% 0%, rgba(0, 230, 184, .09), transparent 38%);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.04),
    0 18px 44px rgba(0,0,0,.18);
  overflow: hidden;
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}

.premium-plan-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(255,255,255,.06), transparent 28%);
  opacity: .55;
}

.premium-plan-card:hover {
  transform: translateY(-8px);
  border-color: rgba(0, 230, 184, .28);
  box-shadow:
    0 26px 54px rgba(0,0,0,.28),
    0 0 26px rgba(0, 230, 184, .08),
    inset 0 1px 0 rgba(255,255,255,.05);
}

.premium-plan-card--featured {
  border-color: rgba(0, 230, 184, .22);
  background:
    linear-gradient(180deg, rgba(8, 25, 41, .98) 0%, rgba(5, 16, 29, .98) 100%),
    radial-gradient(circle at 100% 0%, rgba(0, 230, 184, .14), transparent 38%);
}

.premium-plan-badge {
  position: absolute;
  top: 22px;
  right: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 8px 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(0, 230, 184, .22), rgba(0, 230, 184, .12));
  border: 1px solid rgba(0, 230, 184, .28);
  color: #b9fff4;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .12em;
}

.premium-plan-topline {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}

.premium-plan-label,
.premium-plan-subtag {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .1em;
}

.premium-plan-label {
  color: var(--teal);
  background: rgba(0, 230, 184, .08);
  border: 1px solid rgba(0, 230, 184, .18);
}

.premium-plan-subtag {
  color: #dbeaf4;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
}

.premium-plan-head h3 {
  margin: 0;
  color: #fff;
  font-size: clamp(28px, 2.8vw, 38px);
  line-height: 1.06;
  letter-spacing: -.04em;
}

.premium-plan-head p {
  margin: 14px 0 0;
  color: #a7bac8;
  font-size: 16px;
  line-height: 1.72;
  max-width: 92%;
}

.premium-pricing-grid {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

.premium-pricing-grid--dual {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.premium-price-box {
  padding: 18px 18px 16px;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,.07);
  background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.02));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.03);
}

.premium-price-box--accent {
  border-color: rgba(0, 230, 184, .18);
  background: linear-gradient(180deg, rgba(0, 230, 184, .10), rgba(0, 230, 184, .04));
}

.premium-price-box--quote {
  border-color: rgba(0, 230, 184, .22);
  background: linear-gradient(180deg, rgba(0, 230, 184, .12), rgba(0, 230, 184, .05));
}

.premium-price-kicker {
  display: block;
  margin-bottom: 8px;
  color: #9fb4c4;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .1em;
}

.premium-price-box strong {
  display: block;
  color: #fff;
  font-size: clamp(28px, 3.4vw, 46px);
  line-height: 1;
  letter-spacing: -.04em;
}

.premium-price-box--quote strong {
  color: var(--teal);
}

.premium-price-box small {
  display: block;
  margin-top: 10px;
  color: #b5c4d0;
  font-size: 13px;
  line-height: 1.45;
  font-weight: 700;
}

.premium-feature-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 18px;
  margin: 24px 0 0;
}

.premium-feature-list li {
  position: relative;
  min-height: 58px;
  display: flex;
  align-items: center;
  padding: 0 0 0 38px;
  color: #edf4fa;
  font-size: 16px;
  line-height: 1.5;
  font-weight: 700;
}

.premium-feature-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(0, 230, 184, .10);
  border: 1px solid rgba(0, 230, 184, .20);
  color: var(--teal);
  font-size: 13px;
  font-weight: 900;
}

.premium-plan-footer {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: auto;
  padding-top: 24px;
}

.premium-plan-footer p {
  margin: 0;
  color: #90a8b8;
  font-size: 14px;
  line-height: 1.6;
}

.premium-plan-btn {
  width: 100%;
  min-height: 54px;
  border-radius: 16px;
}

@media (max-width: 1020px) {
  .plans-showcase {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .premium-plan-card {
    padding: 22px;
    border-radius: 22px;
  }

  .premium-plan-badge {
    position: static;
    margin-bottom: 14px;
    width: fit-content;
  }

  .premium-pricing-grid--dual,
  .premium-feature-list {
    grid-template-columns: 1fr;
  }

  .premium-plan-head p {
    max-width: 100%;
    font-size: 15px;
  }

  .premium-feature-list li {
    min-height: auto;
  }
}


/* ===== RECONSTRUÇÃO TOTAL DA ÁREA DE PLANOS - HOME ===== */
.plan-modern-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.plan-modern-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 24px;
  border-radius: 24px;
  border: 1px solid rgba(83, 117, 145, .20);
  background:
    linear-gradient(180deg, rgba(7, 20, 33, .97) 0%, rgba(5, 14, 24, .99) 100%),
    radial-gradient(circle at 100% 0%, rgba(0, 230, 184, .10), transparent 36%);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.04),
    0 14px 34px rgba(0,0,0,.18);
  overflow: hidden;
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.plan-modern-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0,230,184,.28);
  box-shadow:
    0 24px 48px rgba(0,0,0,.24),
    0 0 20px rgba(0,230,184,.06),
    inset 0 1px 0 rgba(255,255,255,.05);
}

.plan-modern-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--teal), rgba(0, 230, 184, 0));
  opacity: .7;
}

.plan-modern-card--insurance {
  border-color: rgba(0,230,184,.20);
}

.plan-modern-badge {
  position: absolute;
  top: 18px;
  right: 18px;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(0, 230, 184, .10);
  border: 1px solid rgba(0, 230, 184, .24);
  color: #b7fff0;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.plan-modern-top h3 {
  margin: 14px 0 10px;
  color: #fff;
  font-size: clamp(30px, 2.7vw, 40px);
  line-height: 1.04;
  letter-spacing: -.05em;
}

.plan-modern-top p {
  margin: 0;
  max-width: 560px;
  color: #a4b8c8;
  font-size: 16px;
  line-height: 1.7;
}

.plan-modern-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.plan-modern-tag,
.plan-modern-chip {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.plan-modern-tag {
  color: var(--teal);
  background: rgba(0,230,184,.08);
  border: 1px solid rgba(0,230,184,.18);
}

.plan-modern-chip {
  color: #d3dfeb;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
}

.plan-modern-prices {
  display: grid;
  gap: 14px;
  margin-top: 22px;
}

.plan-modern-prices--two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.plan-modern-prices--one {
  grid-template-columns: 1fr;
}

.plan-modern-price-card {
  padding: 18px 18px 16px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.07);
  background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.02));
}

.plan-modern-price-card small {
  display: block;
  margin-bottom: 10px;
  color: #96afc1;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .1em;
}

.plan-modern-price-card strong {
  display: block;
  color: #fff;
  font-size: clamp(28px, 3.1vw, 42px);
  line-height: 1;
  letter-spacing: -.05em;
}

.plan-modern-price-card span {
  display: block;
  margin-top: 10px;
  color: #b2c3cf;
  font-size: 13px;
  line-height: 1.45;
  font-weight: 700;
}

.plan-modern-price-card--highlight {
  border-color: rgba(0,230,184,.18);
  background: linear-gradient(180deg, rgba(0,230,184,.11), rgba(0,230,184,.05));
}

.plan-modern-price-card--quote {
  border-color: rgba(0,230,184,.22);
  background: linear-gradient(180deg, rgba(0,230,184,.13), rgba(0,230,184,.05));
}

.plan-modern-price-card--quote strong {
  color: var(--teal);
}

.plan-modern-benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.plan-modern-benefits span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 13px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.03);
  color: #e8f0f6;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.3;
}

.plan-modern-benefits span::before {
  content: "✓";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  margin-right: 8px;
  border-radius: 50%;
  background: rgba(0,230,184,.12);
  color: var(--teal);
  font-size: 11px;
  font-weight: 900;
}

.plan-modern-bottom {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 270px;
  gap: 20px;
  align-items: center;
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,.06);
}

.plan-modern-bottom p {
  margin: 0;
  color: #8da4b6;
  font-size: 14px;
  line-height: 1.6;
}

.plan-modern-btn {
  width: 100%;
  min-height: 50px;
  border-radius: 14px;
}

@media (max-width: 1120px) {
  .plan-modern-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 780px) {
  .plan-modern-card {
    padding: 22px;
  }

  .plan-modern-badge {
    position: static;
    width: fit-content;
    margin-bottom: 12px;
  }

  .plan-modern-prices--two,
  .plan-modern-bottom {
    grid-template-columns: 1fr;
  }

  .plan-modern-top h3 {
    font-size: clamp(28px, 9vw, 36px);
  }
}


/* ===== PLANOS EM TABELA VERTICAL ===== */
.plan-vertical-stack {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  max-width: 1100px;
  margin: 0 auto;
}

.plan-table-card {
  position: relative;
  padding: 26px;
  border-radius: 24px;
  border: 1px solid rgba(0,230,184,.14);
  background:
    linear-gradient(180deg, rgba(7,20,33,.97), rgba(4,13,23,.99)),
    radial-gradient(circle at 100% 0%, rgba(0,230,184,.08), transparent 38%);
  box-shadow: 0 16px 36px rgba(0,0,0,.20), inset 0 1px 0 rgba(255,255,255,.03);
}

.plan-table-card.featured {
  border-color: rgba(0,230,184,.24);
  background:
    linear-gradient(180deg, rgba(7,22,36,.98), rgba(4,13,24,.99)),
    radial-gradient(circle at 100% 0%, rgba(0,230,184,.11), transparent 40%);
}

.plan-table-badge {
  position: absolute;
  top: 18px;
  right: 18px;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(0,230,184,.10);
  border: 1px solid rgba(0,230,184,.24);
  color: #b5fff0;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.plan-table-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  gap: 24px;
  align-items: end;
  margin-bottom: 20px;
}

.plan-table-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 12px;
}

.plan-table-tag {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(0,230,184,.08);
  border: 1px solid rgba(0,230,184,.18);
  color: var(--teal);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.plan-table-tag.muted {
  background: rgba(255,255,255,.04);
  border-color: rgba(255,255,255,.08);
  color: #d5e0e9;
}

.plan-table-head h3 {
  margin: 0;
  color: #fff;
  font-size: clamp(30px, 3vw, 42px);
  line-height: 1.05;
  letter-spacing: -.05em;
}

.plan-table-head p {
  margin: 12px 0 0;
  color: #a5b8c6;
  font-size: 16px;
  line-height: 1.7;
  max-width: 720px;
}

.plan-table-btn {
  width: 100%;
  min-height: 52px;
  border-radius: 14px;
}

.plan-table-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.plan-table-col {
  min-height: 94px;
  padding: 18px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.07);
  background: rgba(255,255,255,.03);
}

.plan-table-col.price {
  background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.02));
}

.plan-table-col.price.highlight,
.plan-table-col.price.quote {
  border-color: rgba(0,230,184,.20);
  background: linear-gradient(180deg, rgba(0,230,184,.10), rgba(0,230,184,.04));
}

.plan-table-col.full {
  grid-column: 1 / -1;
}

.plan-table-label {
  display: block;
  margin-bottom: 8px;
  color: #9fb3c2;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.plan-table-col strong {
  display: block;
  color: #fff;
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1;
  letter-spacing: -.05em;
}

.plan-table-col.price.quote strong {
  color: var(--teal);
}

.plan-table-col small {
  display: block;
  margin-top: 8px;
  color: #b8c6cf;
  font-size: 13px;
  line-height: 1.45;
  font-weight: 700;
}

.plan-table-col.feature {
  display: flex;
  align-items: center;
}

.plan-table-col.feature span {
  position: relative;
  display: block;
  padding-left: 28px;
  color: #ecf3f8;
  font-size: 15px;
  line-height: 1.5;
  font-weight: 700;
}

.plan-table-col.feature span::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,230,184,.12);
  color: var(--teal);
  font-size: 11px;
  font-weight: 900;
}

.plan-table-note {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,.06);
  color: #8ea5b6;
  font-size: 14px;
  line-height: 1.6;
}

@media (max-width: 1100px) {
  .plan-table-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  .plan-table-head {
    grid-template-columns: 1fr;
    align-items: start;
  }
  .plan-table-cta {
    max-width: 320px;
  }
}

@media (max-width: 680px) {
  .plan-table-card {
    padding: 20px;
    border-radius: 20px;
  }
  .plan-table-badge {
    position: static;
    display: inline-flex;
    margin-bottom: 12px;
  }
  .plan-table-grid {
    grid-template-columns: 1fr;
  }
  .plan-table-col,
  .plan-table-col.feature {
    min-height: auto;
  }
  .plan-table-head h3 {
    font-size: clamp(28px, 9vw, 36px);
  }
}


/* ===== HOME - NOSSOS PLANOS ESTILO DA ARTE APROVADA ===== */
.home-plans-header .section-title {
  font-size: clamp(46px, 5vw, 74px);
  line-height: .98;
  letter-spacing: -.06em;
}

.home-plans-header .section-sub {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  font-size: 17px;
}

.home-premium-plans-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  align-items: stretch;
}

.home-plan-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 28px 24px 24px;
  border-radius: 30px;
  border: 1px solid rgba(0, 230, 184, .16);
  background:
    linear-gradient(180deg, rgba(7, 21, 36, .98), rgba(4, 12, 22, .99)),
    radial-gradient(circle at 100% 0%, rgba(0, 230, 184, .10), transparent 38%);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.04),
    0 20px 48px rgba(0,0,0,.22);
  overflow: hidden;
}

.home-plan-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(255,255,255,.05), transparent 28%);
  opacity: .45;
}

.home-plan-card--featured {
  border-color: rgba(0, 230, 184, .50);
  box-shadow:
    0 0 0 1px rgba(0, 230, 184, .12),
    0 26px 66px rgba(0,0,0,.28),
    0 0 30px rgba(0, 230, 184, .12);
  transform: translateY(-8px);
}

.home-plan-pill {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  min-height: 40px;
  padding: 10px 22px;
  border-radius: 999px;
  background: linear-gradient(135deg, #21e6d4, #19d0ff);
  color: #031017;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .12em;
  text-transform: uppercase;
  box-shadow: 0 12px 30px rgba(0, 230, 184, .26);
}

.home-plan-card__icon {
  display: grid;
  place-items: center;
  width: 84px;
  height: 84px;
  border-radius: 50%;
  border: 1px solid rgba(0, 230, 184, .32);
  background: radial-gradient(circle at 50% 50%, rgba(0, 230, 184, .16), rgba(0, 230, 184, .04));
  color: var(--teal);
  box-shadow: inset 0 0 24px rgba(0, 230, 184, .08);
}

.home-plan-card__icon svg {
  width: 38px;
  height: 38px;
}

.home-plan-card__eyebrow {
  margin-top: 18px;
  color: var(--teal);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.home-plan-card h3 {
  margin: 10px 0 0;
  color: #fff;
  font-size: clamp(38px, 2.8vw, 56px);
  line-height: .98;
  letter-spacing: -.05em;
}

.home-plan-card p {
  margin: 18px 0 0;
  color: #c7d5e0;
  font-size: 16px;
  line-height: 1.68;
}

.home-plan-price-split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin: 24px 0 0;
  padding: 20px 0 18px;
  border-top: 1px solid rgba(255,255,255,.07);
  border-bottom: 1px solid rgba(255,255,255,.07);
}

.home-plan-price-item {
  position: relative;
}

.home-plan-price-item--divider::before {
  content: "";
  position: absolute;
  left: -10px;
  top: 8px;
  bottom: 8px;
  width: 1px;
  background: rgba(255,255,255,.10);
}

.home-plan-price-item span {
  display: block;
  margin-bottom: 8px;
  color: #dce6ef;
  font-size: 14px;
  font-weight: 700;
}

.home-plan-price-item strong {
  display: block;
  color: #fff;
  font-size: clamp(32px, 2.8vw, 54px);
  line-height: .98;
  letter-spacing: -.05em;
}

.home-plan-price-item strong small {
  color: var(--teal);
  font-size: .50em;
}

.home-plan-price-item em {
  display: block;
  margin-top: 6px;
  color: #9cb0bf;
  font-style: normal;
  font-size: 13px;
}

.home-plan-quote-box {
  margin: 24px 0 0;
  padding: 24px 18px;
  border-radius: 18px;
  border: 1px solid rgba(0, 230, 184, .18);
  background: linear-gradient(180deg, rgba(0, 230, 184, .10), rgba(0, 230, 184, .04));
  text-align: center;
}

.home-plan-quote-box strong {
  display: block;
  color: var(--teal);
  font-size: clamp(36px, 2.9vw, 52px);
  line-height: 1;
  letter-spacing: -.04em;
}

.home-plan-quote-box span {
  display: block;
  margin-top: 10px;
  color: #b7c8d4;
  font-size: 14px;
}

.home-plan-list {
  display: grid;
  gap: 14px;
  margin: 24px 0 0;
}

.home-plan-list li {
  position: relative;
  padding-left: 38px;
  color: #eef5fb;
  font-size: 16px;
  line-height: 1.48;
  font-weight: 600;
}

.home-plan-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 1px solid rgba(0, 230, 184, .24);
  background: rgba(0, 230, 184, .08);
  color: var(--teal);
  font-size: 12px;
  font-weight: 900;
}

.home-plan-btn {
  width: 100%;
  min-height: 56px;
  margin-top: auto;
  border-radius: 999px;
  font-size: 15px;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.home-plan-btn--outline {
  background: transparent;
  color: var(--teal);
  border: 1px solid rgba(0, 230, 184, .46);
  box-shadow: inset 0 0 0 1px rgba(0, 230, 184, .04);
}

.home-plan-btn--outline:hover {
  background: rgba(0, 230, 184, .08);
  color: #fff;
}

.home-plan-card .home-plan-btn {
  margin-top: 26px;
}

@media (max-width: 1180px) {
  .home-premium-plans-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .home-plan-card--featured {
    grid-column: 1 / -1;
    max-width: 680px;
    margin: 8px auto 0;
  }
}

@media (max-width: 820px) {
  .home-premium-plans-grid {
    grid-template-columns: 1fr;
  }
  .home-plan-card,
  .home-plan-card--featured {
    max-width: 100%;
    margin: 0;
    transform: none;
  }
  .home-plan-pill {
    top: 18px;
    transform: translateX(-50%);
  }
}

@media (max-width: 640px) {
  .home-plan-card {
    padding: 24px 20px 22px;
    border-radius: 24px;
  }
  .home-plan-price-split {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .home-plan-price-item--divider::before {
    display: none;
  }
  .home-plan-card h3 {
    font-size: clamp(34px, 9.5vw, 46px);
  }
  .home-plans-header .section-title {
    font-size: clamp(38px, 13vw, 56px);
  }
}


/* ===== AJUSTE FINO - HOME PLANOS MAIS COMPACTOS E MODERNOS ===== */
.home-plans-header .section-title {
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.1;
  letter-spacing: -0.04em;
  margin-bottom: 10px;
}

.home-plans-header .section-sub {
  max-width: 620px;
  font-size: 16px;
  line-height: 1.6;
}

.home-premium-plans-grid {
  gap: 18px;
  align-items: start;
}

.home-plan-card {
  padding: 22px 20px 20px;
  border-radius: 24px;
  border-color: rgba(0, 230, 184, .14);
  background:
    linear-gradient(180deg, rgba(7, 20, 34, .98), rgba(4, 12, 22, .99)),
    radial-gradient(circle at 100% 0%, rgba(0, 230, 184, .08), transparent 34%);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.035),
    0 14px 34px rgba(0,0,0,.18);
}

.home-plan-card::before {
  background: linear-gradient(135deg, rgba(255,255,255,.04), transparent 26%);
  opacity: .34;
}

.home-plan-card--featured {
  border-color: rgba(0, 230, 184, .36);
  box-shadow:
    0 0 0 1px rgba(0, 230, 184, .08),
    0 18px 42px rgba(0,0,0,.24),
    0 0 18px rgba(0, 230, 184, .08);
  transform: translateY(-4px);
}

.home-plan-pill {
  min-height: 34px;
  padding: 8px 16px;
  font-size: 11px;
  letter-spacing: .10em;
  box-shadow: 0 10px 22px rgba(0, 230, 184, .18);
}

.home-plan-card__icon {
  width: 64px;
  height: 64px;
}

.home-plan-card__icon svg {
  width: 28px;
  height: 28px;
}

.home-plan-card__eyebrow {
  margin-top: 14px;
  font-size: 12px;
  letter-spacing: .08em;
}

.home-plan-card h3 {
  margin-top: 8px;
  font-size: clamp(26px, 2.2vw, 40px);
  line-height: 1.02;
}

.home-plan-card p {
  margin-top: 14px;
  font-size: 15px;
  line-height: 1.6;
}

.home-plan-price-split {
  gap: 14px;
  margin-top: 18px;
  padding: 16px 0 14px;
}

.home-plan-price-item span {
  margin-bottom: 6px;
  font-size: 13px;
}

.home-plan-price-item strong {
  font-size: clamp(24px, 2.2vw, 38px);
}

.home-plan-price-item em {
  font-size: 12px;
}

.home-plan-quote-box {
  margin-top: 18px;
  padding: 18px 16px;
  border-radius: 16px;
}

.home-plan-quote-box strong {
  font-size: clamp(28px, 2.4vw, 40px);
}

.home-plan-quote-box span {
  margin-top: 8px;
  font-size: 13px;
}

.home-plan-list {
  gap: 12px;
  margin-top: 18px;
}

.home-plan-list li {
  padding-left: 32px;
  font-size: 15px;
  line-height: 1.42;
}

.home-plan-list li::before {
  width: 20px;
  height: 20px;
  font-size: 10px;
}

.home-plan-card .home-plan-btn {
  margin-top: 20px;
}

.home-plan-btn {
  min-height: 50px;
  border-radius: 16px;
  font-size: 14px;
  letter-spacing: .05em;
}

@media (max-width: 1180px) {
  .home-plan-card--featured {
    margin-top: 4px;
  }
}

@media (max-width: 820px) {
  .home-plan-card,
  .home-plan-card--featured {
    transform: none;
  }
}

@media (max-width: 640px) {
  .home-plan-card {
    padding: 20px 18px 18px;
  }

  .home-plan-card h3 {
    font-size: clamp(26px, 8vw, 34px);
  }

  .home-plans-header .section-title {
    font-size: clamp(28px, 9vw, 38px);
  }
}


/* ===== AJUSTE FINAL - PLANOS HOME ALINHADOS ===== */
.home-plan-card {
  height: 100%;
}

.home-plan-price-split {
  gap: 16px;
  margin-top: 18px;
  padding: 18px 18px 16px;
  border: 1px solid rgba(0, 230, 184, .18);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(0, 230, 184, .10), rgba(0, 230, 184, .04));
}

.home-plan-price-item--divider::before {
  left: -8px;
  top: 2px;
  bottom: 2px;
  background: rgba(255,255,255,.12);
}

.home-plan-price-item span {
  color: #d9e7ef;
}

.home-plan-price-item strong small {
  margin-right: 2px;
}

.home-plan-list {
  flex: 1 1 auto;
  align-content: start;
  margin-bottom: 0;
}

.home-plan-card .home-plan-btn {
  margin-top: 18px;
}

@media (max-width: 640px) {
  .home-plan-price-split {
    padding: 16px;
  }
}


/* ===== AJUSTE DE ALINHAMENTO DOS SHAPES DOS PLANOS ===== */
.home-plan-card {
  display: flex;
  flex-direction: column;
}

.home-plan-card__eyebrow {
  min-height: 18px;
}

.home-plan-card h3 {
  min-height: 52px;
  display: flex;
  align-items: flex-end;
}

.home-plan-card p {
  min-height: 78px;
}

.home-plan-price-split,
.home-plan-quote-box {
  min-height: 108px;
}

.home-plan-quote-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.home-plan-card .home-plan-btn {
  margin-top: 18px;
}

@media (max-width: 640px) {
  .home-plan-card h3,
  .home-plan-card p,
  .home-plan-price-split,
  .home-plan-quote-box {
    min-height: initial;
  }
}


/* ===== AJUSTE HEADER CTA + BADGE PLANO POPULAR ===== */
.whats-header {
  width: auto;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 10px;
  border: 1px solid rgba(30, 215, 96, 0.30);
  background: linear-gradient(180deg, #1ed760, #19c354);
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
  box-shadow: 0 0 0 4px rgba(30, 215, 96, 0.10), 0 0 20px rgba(30, 215, 96, 0.18);
}
.whats-header:hover { transform: translateY(-1px); filter: brightness(1.03); }
.whats-header svg { width: 18px; height: 18px; flex: 0 0 auto; }

.home-plan-card--featured {
  overflow: visible;
}
.home-plan-pill {
  top: -18px;
  left: 50%;
  transform: translateX(-50%);
}

@media (max-width: 1268px) {
  .whats-header { padding: 10px 14px; font-size: 13px; }
}

@media (max-width: 980px) {
  .whats-header { padding: 10px 12px; }
  .whats-header svg { width: 17px; height: 17px; }
}

@media (max-width: 780px) {
  .whats-header {
    min-width: 44px;
    width: 44px;
    padding: 0;
    border-radius: 50%;
    font-size: 0;
    gap: 0;
  }
  .whats-header svg { width: 22px; height: 22px; }
}


/* ===== CORREÇÃO FINAL BOTÃO COTAÇÃO DO HEADER ===== */
.whats-header {
  width: auto !important;
  min-width: 176px;
  height: auto !important;
  min-height: 44px;
  padding: 10px 16px !important;
  border-radius: 10px !important;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  gap: 8px !important;
  font-size: 14px !important;
  white-space: nowrap;
}

.whats-header svg {
  width: 18px !important;
  height: 18px !important;
}

@media (max-width: 980px) {
  .header-actions { gap: 10px; }
  .whats-header {
    min-width: 164px;
    padding: 10px 14px !important;
    font-size: 13px !important;
  }
}

@media (max-width: 640px) {
  .whats-header {
    min-width: 152px;
    padding: 9px 12px !important;
    font-size: 12px !important;
  }
}

@media (max-width: 520px) {
  .whats-header {
    min-width: 44px;
    width: 44px !important;
    height: 44px !important;
    padding: 0 !important;
    border-radius: 50% !important;
    font-size: 0 !important;
    gap: 0 !important;
  }
  .whats-header svg {
    width: 21px !important;
    height: 21px !important;
  }
}


/* ===== CORREÇÃO PADRÃO HEADER: BOTÃO SOLICITE COTAÇÃO ===== */
.header-actions .whats-header {
  width: auto !important;
  min-width: 176px !important;
  height: 44px !important;
  min-height: 44px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
  padding: 10px 16px !important;
  border-radius: 10px !important;
  border: 1px solid rgba(30, 215, 96, .34) !important;
  background: linear-gradient(180deg, #16d675 0%, #0fcf96 100%) !important;
  color: #ffffff !important;
  font-size: 14px !important;
  font-weight: 900 !important;
  line-height: 1 !important;
  white-space: nowrap !important;
  box-shadow: 0 0 0 4px rgba(30, 215, 96, .10), 0 0 20px rgba(30, 215, 96, .18) !important;
  text-align: center !important;
}

.header-actions .whats-header svg {
  width: 18px !important;
  height: 18px !important;
  flex: 0 0 auto !important;
  color: #fff !important;
}

.header-actions .whats-header span {
  display: inline-block !important;
  color: #fff !important;
  font-size: inherit !important;
  line-height: 1 !important;
}

.header-actions .whats-header:hover {
  transform: translateY(-1px) !important;
  filter: brightness(1.04) !important;
}

@media (max-width: 980px) {
  .header-actions .whats-header {
    min-width: 162px !important;
    padding: 10px 13px !important;
    font-size: 13px !important;
  }
}

@media (max-width: 640px) {
  .header-actions .whats-header {
    min-width: 44px !important;
    width: 44px !important;
    padding: 0 !important;
    border-radius: 50% !important;
    font-size: 0 !important;
    gap: 0 !important;
  }
  .header-actions .whats-header span { display: none !important; }
  .header-actions .whats-header svg { width: 21px !important; height: 21px !important; }
}


/* ===== MOBILE: REMOVER BOTÃO WHATSAPP DO TOPO ===== */
@media (max-width: 780px) {
  .header .whats-header {
    display: none !important;
  }
}
