:root {
  --bg: #07111f;
  --bg-soft: #0c1b2f;
  --card: rgba(255, 255, 255, 0.08);
  --card-strong: rgba(255, 255, 255, 0.12);
  --line: rgba(255, 255, 255, 0.14);
  --text: #f7fbff;
  --muted: #9fb1c7;
  --blue: #1e88ff;
  --cyan: #20e0ff;
  --green: #41f0a2;
  --dark: #030812;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background:
    radial-gradient(circle at top left, rgba(30, 136, 255, 0.22), transparent 34%),
    radial-gradient(circle at top right, rgba(32, 224, 255, 0.14), transparent 32%),
    var(--bg);
  color: var(--text);
  min-height: 100vh;
}

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

.topbar {
  width: min(1180px, calc(100% - 32px));
  margin: 18px auto 0;
  padding: 14px 18px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(7, 17, 31, 0.76);
  backdrop-filter: blur(18px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 14px;
  z-index: 10;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
}

.brand-icon {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  display: grid;
  place-items: center;
  color: white;
  box-shadow: 0 12px 30px rgba(30, 136, 255, 0.32);
}

.brand-name {
  font-size: 1.18rem;
  letter-spacing: -0.03em;
}

.nav {
  display: flex;
  gap: 24px;
  color: var(--muted);
  font-size: 0.95rem;
}

.nav a:hover {
  color: var(--text);
}

.top-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.login-btn {
  color: var(--muted);
  font-weight: 700;
}

.primary-btn,
.secondary-btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 999px;
  padding: 15px 22px;
  font-weight: 900;
  transition: transform .2s ease, box-shadow .2s ease, border .2s ease;
}

.primary-btn {
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  color: white;
  box-shadow: 0 16px 40px rgba(30, 136, 255, 0.32);
}

.primary-btn.small {
  padding: 11px 16px;
  font-size: 0.9rem;
}

.secondary-btn {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.06);
}

.primary-btn:hover,
.secondary-btn:hover {
  transform: translateY(-2px);
}

.hero {
  width: min(1180px, calc(100% - 32px));
  margin: 72px auto 0;
  display: grid;
  grid-template-columns: 1.04fr 0.96fr;
  gap: 44px;
  align-items: center;
}

.badge,
.section-title span,
.security-copy span {
  display: inline-flex;
  color: var(--cyan);
  border: 1px solid rgba(32, 224, 255, 0.28);
  background: rgba(32, 224, 255, 0.07);
  border-radius: 999px;
  padding: 8px 13px;
  font-size: 0.86rem;
  font-weight: 800;
}

.hero h1 {
  font-size: clamp(2.7rem, 6vw, 5.7rem);
  line-height: 0.94;
  letter-spacing: -0.08em;
  margin: 22px 0;
}

.hero p {
  color: var(--muted);
  font-size: 1.12rem;
  line-height: 1.75;
  max-width: 650px;
}

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

.trust-row {
  display: flex;
  gap: 12px;
  margin-top: 28px;
  flex-wrap: wrap;
}

.trust-row span {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 10px 13px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.04);
}

.hero-panel {
  min-height: 520px;
  display: flex;
  align-items: center;
}

.map-card {
  width: 100%;
  min-height: 500px;
  border: 1px solid var(--line);
  border-radius: 34px;
  background:
    linear-gradient(135deg, rgba(30, 136, 255, 0.16), rgba(32, 224, 255, 0.06)),
    repeating-linear-gradient(90deg, rgba(255,255,255,0.035) 0 1px, transparent 1px 58px),
    repeating-linear-gradient(0deg, rgba(255,255,255,0.035) 0 1px, transparent 1px 58px),
    var(--bg-soft);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.route-line {
  position: absolute;
  width: 70%;
  height: 4px;
  background: linear-gradient(90deg, var(--green), var(--cyan), var(--blue));
  top: 50%;
  left: 15%;
  border-radius: 999px;
  transform: rotate(-24deg);
  box-shadow: 0 0 30px rgba(32, 224, 255, 0.55);
}

.pin {
  width: 26px;
  height: 26px;
  background: var(--green);
  border: 5px solid white;
  border-radius: 50%;
  position: absolute;
  box-shadow: 0 0 30px rgba(65, 240, 162, 0.6);
}

.pin-a {
  left: 18%;
  top: 58%;
}

.pin-b {
  right: 18%;
  top: 30%;
  background: var(--cyan);
}

.floating-card,
.driver-card {
  position: absolute;
  border: 1px solid var(--line);
  background: rgba(3, 8, 18, 0.72);
  backdrop-filter: blur(16px);
  border-radius: 22px;
  padding: 16px;
  box-shadow: var(--shadow);
}

.floating-card {
  display: grid;
  gap: 4px;
}

.floating-card span,
.driver-card span {
  color: var(--muted);
  font-size: 0.88rem;
}

.card-one {
  left: 36px;
  top: 54px;
}

.card-two {
  right: 34px;
  bottom: 68px;
}

.driver-card {
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%);
  width: min(360px, calc(100% - 40px));
  display: flex;
  align-items: center;
  gap: 14px;
}

.driver-avatar {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--green), var(--cyan));
  color: var(--dark);
  font-weight: 900;
}

.choice-section,
.security-section,
.steps-section,
.plans-section,
.final-cta {
  width: min(1180px, calc(100% - 32px));
  margin: 96px auto 0;
}

.section-title {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 34px;
}

.section-title h2,
.security-copy h2,
.final-cta h2 {
  margin-top: 16px;
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1;
  letter-spacing: -0.06em;
}

.choice-grid,
.steps-grid,
.plans-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.choice-card,
.step-card,
.plan-card,
.security-item {
  border: 1px solid var(--line);
  background: var(--card);
  border-radius: 28px;
  padding: 28px;
  box-shadow: 0 18px 60px rgba(0,0,0,0.18);
}

.choice-card {
  min-height: 290px;
  display: flex;
  flex-direction: column;
}

.card-icon {
  width: 58px;
  height: 58px;
  border-radius: 20px;
  display: grid;
  place-items: center;
  background: var(--card-strong);
  font-size: 1.8rem;
  margin-bottom: 22px;
}

.choice-card h3,
.step-card h3,
.plan-card h3 {
  font-size: 1.55rem;
  margin-bottom: 12px;
}

.choice-card p,
.step-card p,
.plan-card p,
.security-copy p,
.security-item p,
.final-cta p {
  color: var(--muted);
  line-height: 1.7;
}

.choice-card a {
  margin-top: auto;
  color: var(--cyan);
  font-weight: 900;
}

.security-section {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 28px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 36px;
  padding: 34px;
  background: linear-gradient(135deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03));
}

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

.security-item {
  padding: 22px;
}

.security-item strong {
  display: block;
  margin-bottom: 8px;
  color: var(--text);
}

.step-card span {
  display: inline-flex;
  color: var(--cyan);
  font-weight: 900;
  margin-bottom: 18px;
}

.plan-card.featured {
  background: linear-gradient(135deg, rgba(30, 136, 255, 0.2), rgba(32, 224, 255, 0.1));
  border-color: rgba(32, 224, 255, 0.32);
}

.final-cta {
  text-align: center;
  padding: 56px 24px;
  border-radius: 36px;
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at center, rgba(32, 224, 255, 0.18), transparent 55%),
    var(--card);
}

.final-cta p {
  max-width: 720px;
  margin: 16px auto 26px;
}

.footer {
  width: min(1180px, calc(100% - 32px));
  margin: 50px auto 28px;
  padding: 24px 0;
  color: var(--muted);
  display: flex;
  justify-content: space-between;
  border-top: 1px solid var(--line);
}

@media (max-width: 920px) {
  .nav,
  .top-actions {
    display: none;
  }

  .hero,
  .security-section {
    grid-template-columns: 1fr;
  }

  .hero {
    margin-top: 44px;
  }

  .hero-panel {
    min-height: auto;
  }

  .map-card {
    min-height: 420px;
  }

  .choice-grid,
  .steps-grid,
  .plans-grid,
  .security-grid {
    grid-template-columns: 1fr;
  }

  .footer {
    flex-direction: column;
    gap: 8px;
  }
}

/* Hero video card */
.hero-video-card {
  width: 100%;
  min-height: 500px;
  border: 1px solid var(--line);
  border-radius: 34px;
  background: var(--bg-soft);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.hero-video {
  width: 100%;
  height: 100%;
  min-height: 500px;
  display: block;
  object-fit: cover;
}

.video-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(3, 8, 18, 0.10), rgba(3, 8, 18, 0.52)),
    radial-gradient(circle at top right, rgba(32, 224, 255, 0.18), transparent 42%);
  pointer-events: none;
}

.video-badge {
  position: absolute;
  z-index: 2;
  border: 1px solid var(--line);
  background: rgba(3, 8, 18, 0.78);
  backdrop-filter: blur(18px);
  border-radius: 22px;
  padding: 16px 18px;
  box-shadow: var(--shadow);
}

.video-badge strong {
  display: block;
  color: var(--text);
  font-size: 1rem;
  margin-bottom: 4px;
}

.video-badge span {
  color: var(--muted);
  font-size: 0.9rem;
}

.badge-top {
  top: 28px;
  left: 28px;
}

.badge-bottom {
  left: 50%;
  bottom: 26px;
  transform: translateX(-50%);
  width: min(390px, calc(100% - 44px));
  display: flex;
  align-items: center;
  gap: 14px;
}

.check-icon {
  width: 50px;
  height: 50px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--green), var(--cyan));
  color: var(--dark);
  font-weight: 900;
  font-size: 1.3rem;
  flex: 0 0 auto;
}

@media (max-width: 920px) {
  .hero-video-card,
  .hero-video {
    min-height: 420px;
  }

  .badge-top {
    top: 18px;
    left: 18px;
  }

  .badge-bottom {
    bottom: 18px;
  }
}

.video-overlay.clean {
  background:
    linear-gradient(180deg, rgba(3, 8, 18, 0.02), rgba(3, 8, 18, 0.16)),
    radial-gradient(circle at top right, rgba(32, 224, 255, 0.08), transparent 45%);
}


/* FreteCiF identity update - Header + Hero */
:root {
  --bg: #081421;
  --bg-soft: #101A24;
  --card: rgba(255, 255, 255, 0.075);
  --card-strong: rgba(255, 138, 31, 0.13);
  --line: rgba(255, 255, 255, 0.14);
  --text: #F8FAFC;
  --muted: #AAB7C4;
  --blue: #FF8A1F;
  --cyan: #FFC247;
  --green: #22C55E;
  --dark: #050914;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.38);
}

body {
  background:
    radial-gradient(circle at top left, rgba(255, 138, 31, 0.18), transparent 32%),
    radial-gradient(circle at top right, rgba(255, 194, 71, 0.12), transparent 30%),
    linear-gradient(180deg, #081421 0%, #07111F 48%, #050914 100%);
}

.topbar {
  background: rgba(8, 20, 33, 0.84);
  border-color: rgba(255, 194, 71, 0.16);
}

.brand-icon {
  background: linear-gradient(135deg, #FF8A1F, #FFC247);
  color: #081421;
  box-shadow: 0 14px 34px rgba(255, 138, 31, 0.34);
}

.brand-name {
  color: #F8FAFC;
}

.nav a:hover,
.login-btn:hover {
  color: #FFC247;
}

.primary-btn {
  background: linear-gradient(135deg, #FF8A1F, #FFC247);
  color: #081421;
  box-shadow: 0 18px 44px rgba(255, 138, 31, 0.32);
}

.secondary-btn {
  border-color: rgba(255, 194, 71, 0.28);
  background: rgba(255, 138, 31, 0.08);
  color: #F8FAFC;
}

.badge,
.section-title span,
.security-copy span {
  color: #FFC247;
  border-color: rgba(255, 194, 71, 0.34);
  background: rgba(255, 138, 31, 0.10);
}

.hero h1 {
  max-width: 720px;
}

.hero p {
  color: #B9C6D3;
  max-width: 680px;
}

.trust-row span {
  border-color: rgba(255, 194, 71, 0.18);
  background: rgba(255, 255, 255, 0.045);
  color: #C6D0DB;
}

.hero-video-card {
  border-color: rgba(255, 194, 71, 0.18);
  box-shadow:
    0 30px 90px rgba(0, 0, 0, 0.42),
    0 0 0 1px rgba(255, 138, 31, 0.04);
}

.video-overlay.clean {
  background:
    linear-gradient(180deg, rgba(8, 20, 33, 0.00), rgba(8, 20, 33, 0.16)),
    radial-gradient(circle at bottom left, rgba(255, 138, 31, 0.10), transparent 38%);
}


/* Hero refinement */
.hero {
  margin-top: 64px;
  grid-template-columns: 0.98fr 1.02fr;
  gap: 58px;
}

.hero h1 {
  font-size: clamp(2.75rem, 5.15vw, 5.15rem);
  line-height: 0.98;
  letter-spacing: -0.075em;
  max-width: 760px;
}

.hero p {
  font-size: 1.08rem;
  line-height: 1.72;
  max-width: 720px;
}

.hero-actions {
  margin-top: 28px;
}

.trust-row {
  margin-top: 26px;
}

.trust-row span {
  font-size: 0.94rem;
}

.hero-video-card {
  min-height: 470px;
  border-radius: 32px;
  transform: translateY(8px);
}

.hero-video {
  min-height: 470px;
  object-position: center center;
}

.topbar {
  width: min(1180px, calc(100% - 40px));
}

@media (min-width: 921px) {
  .hero-content {
    padding-top: 18px;
  }
}

@media (max-width: 920px) {
  .hero {
    margin-top: 42px;
    gap: 28px;
  }

  .hero h1 {
    font-size: clamp(2.45rem, 13vw, 4rem);
    line-height: 1;
  }

  .hero-video-card,
  .hero-video {
    min-height: 390px;
  }
}


/* Bloco 2 - dois cards 3D */
.choice-subtitle {
  margin-top: 14px;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

.choice-grid.two-cards {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  max-width: 1080px;
  margin: 0 auto;
}

.choice-card-3d {
  position: relative;
  min-height: 320px;
  padding: 34px 30px;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  background:
    linear-gradient(145deg, rgba(255,255,255,0.06), rgba(255,255,255,0.03)),
    linear-gradient(180deg, rgba(255, 194, 71, 0.03), rgba(255, 138, 31, 0.02));
  box-shadow:
    0 18px 40px rgba(0,0,0,0.20),
    inset 0 1px 0 rgba(255,255,255,0.04);
  transform: perspective(1200px) rotateX(0deg) rotateY(0deg) translateY(0);
  transition:
    transform .28s ease,
    box-shadow .28s ease,
    border-color .28s ease,
    background .28s ease;
  overflow: hidden;
}

.choice-card-3d::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right, rgba(255, 194, 71, 0.10), transparent 28%),
    radial-gradient(circle at bottom left, rgba(255, 138, 31, 0.08), transparent 26%);
  opacity: 0.75;
  pointer-events: none;
}

.choice-card-3d:hover,
.choice-card-3d:active {
  transform: perspective(1200px) rotateX(4deg) rotateY(-4deg) translateY(-8px);
  border-color: rgba(255, 194, 71, 0.55);
  background:
    linear-gradient(145deg, rgba(255, 194, 71, 0.14), rgba(255, 138, 31, 0.09)),
    linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.02));
  box-shadow:
    0 26px 60px rgba(0,0,0,0.30),
    0 0 0 1px rgba(255, 194, 71, 0.12),
    0 0 38px rgba(255, 138, 31, 0.18);
}

.choice-card-3d .card-icon {
  background: rgba(255, 194, 71, 0.12);
  border: 1px solid rgba(255, 194, 71, 0.14);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.04);
  position: relative;
  z-index: 1;
}

.choice-card-3d h3,
.choice-card-3d p,
.choice-card-3d a {
  position: relative;
  z-index: 1;
}

.choice-card-3d h3 {
  font-size: 2rem;
  margin-bottom: 14px;
}

.choice-card-3d p {
  font-size: 1.08rem;
  line-height: 1.85;
  max-width: 440px;
}

.choice-card-3d a {
  margin-top: auto;
  display: inline-block;
  color: #FFC247;
  font-weight: 900;
  font-size: 1.1rem;
}

.choice-card-3d:hover a,
.choice-card-3d:active a {
  color: #FFD98A;
}

@media (max-width: 920px) {
  .choice-grid.two-cards {
    grid-template-columns: 1fr;
  }

  .choice-card-3d {
    min-height: 280px;
    padding: 28px 24px;
  }

  .choice-card-3d h3 {
    font-size: 1.75rem;
  }

  .choice-card-3d:hover,
  .choice-card-3d:active {
    transform: translateY(-4px);
  }
}

/* Bloco 3 - Segurança laranja 3D */
.security-section-orange {
  grid-template-columns: 0.92fr 1.08fr;
  gap: 30px;
  border-radius: 38px;
  padding: 36px;
  border: 1px solid rgba(255, 194, 71, 0.22);
  background:
    radial-gradient(circle at top left, rgba(255, 226, 168, 0.18), transparent 26%),
    radial-gradient(circle at bottom right, rgba(255, 138, 31, 0.22), transparent 30%),
    linear-gradient(145deg, #FF8A1F 0%, #F59E0B 58%, #FFC247 100%);
  box-shadow:
    0 28px 70px rgba(0,0,0,0.24),
    inset 0 1px 0 rgba(255,255,255,0.16);
  transform: perspective(1400px) rotateX(0deg) rotateY(0deg) translateY(0);
  transition:
    transform .30s ease,
    box-shadow .30s ease,
    background .30s ease,
    border-color .30s ease;
}

.security-section-orange:hover,
.security-section-orange:active {
  transform: perspective(1400px) rotateX(3deg) rotateY(-3deg) translateY(-6px);
  border-color: rgba(255, 248, 220, 0.42);
  background:
    radial-gradient(circle at top left, rgba(255, 244, 212, 0.20), transparent 26%),
    radial-gradient(circle at bottom right, rgba(255, 169, 64, 0.24), transparent 30%),
    linear-gradient(145deg, #FFC247 0%, #FF9F2E 56%, #FF7A00 100%);
  box-shadow:
    0 34px 90px rgba(0,0,0,0.30),
    0 0 0 1px rgba(255,255,255,0.08);
}

.security-section-orange .security-copy span {
  color: #081421;
  border-color: rgba(8, 20, 33, 0.18);
  background: rgba(255,255,255,0.18);
}

.security-section-orange .security-copy h2,
.security-section-orange .security-copy p {
  color: #081421;
}

.security-section-orange .security-copy h2 {
  font-size: clamp(2.3rem, 4.7vw, 4.3rem);
  line-height: 0.98;
  max-width: 600px;
}

.security-section-orange .security-copy p {
  margin-top: 18px;
  color: rgba(8, 20, 33, 0.86);
  font-size: 1.08rem;
  line-height: 1.8;
  max-width: 610px;
}

.security-item-orange {
  border: 1px solid rgba(8, 20, 33, 0.14);
  background:
    linear-gradient(145deg, rgba(255,255,255,0.22), rgba(255,255,255,0.10)),
    rgba(8, 20, 33, 0.10);
  box-shadow:
    0 18px 35px rgba(0,0,0,0.10),
    inset 0 1px 0 rgba(255,255,255,0.10);
  border-radius: 28px;
  min-height: 150px;
  transition:
    transform .28s ease,
    background .28s ease,
    border-color .28s ease,
    box-shadow .28s ease;
}

.security-item-orange strong {
  color: #081421;
  font-size: 1.22rem;
  margin-bottom: 12px;
}

.security-item-orange p {
  color: rgba(8, 20, 33, 0.82);
  font-size: 1.02rem;
  line-height: 1.72;
}

.security-section-orange:hover .security-item-orange,
.security-section-orange:active .security-item-orange {
  transform: translateY(-4px);
  border-color: rgba(8, 20, 33, 0.22);
  background:
    linear-gradient(145deg, rgba(8,20,33,0.16), rgba(8,20,33,0.08)),
    rgba(255,255,255,0.16);
  box-shadow:
    0 22px 45px rgba(0,0,0,0.14),
    inset 0 1px 0 rgba(255,255,255,0.10);
}

.security-section-orange:hover .security-item-orange strong,
.security-section-orange:hover .security-item-orange p,
.security-section-orange:active .security-item-orange strong,
.security-section-orange:active .security-item-orange p {
  color: #081421;
}

@media (max-width: 920px) {
  .security-section-orange {
    grid-template-columns: 1fr;
    padding: 28px 22px;
  }

  .security-section-orange .security-copy h2 {
    font-size: clamp(2rem, 10vw, 3rem);
    line-height: 1;
  }

  .security-item-orange {
    min-height: 130px;
  }

  .security-section-orange:hover,
  .security-section-orange:active {
    transform: translateY(-4px);
  }
}

/* Bloco 3 - refinamento premium */
.security-section-orange {
  background:
    radial-gradient(circle at 12% 10%, rgba(255, 244, 214, 0.28), transparent 24%),
    radial-gradient(circle at 92% 90%, rgba(120, 57, 0, 0.20), transparent 32%),
    linear-gradient(145deg, #FF9A1F 0%, #F59E0B 54%, #FFC247 100%);
}

.security-section-orange .security-copy h2 {
  color: #07111F;
  text-shadow: 0 1px 0 rgba(255,255,255,0.10);
}

.security-section-orange .security-copy p {
  color: rgba(7, 17, 31, 0.88);
  font-weight: 600;
}

.security-section-orange .security-copy span {
  color: #07111F;
  font-weight: 900;
  background: rgba(255,255,255,0.22);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.18);
}

.security-item-orange {
  position: relative;
  padding: 24px;
  border-radius: 26px;
  border: 1px solid rgba(7, 17, 31, 0.18);
  background:
    linear-gradient(145deg, rgba(7, 17, 31, 0.20), rgba(7, 17, 31, 0.08)),
    rgba(255, 255, 255, 0.16);
  box-shadow:
    0 22px 45px rgba(73, 37, 0, 0.16),
    inset 0 1px 0 rgba(255,255,255,0.14);
  overflow: hidden;
}

.security-item-orange::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right, rgba(255,255,255,0.22), transparent 34%),
    linear-gradient(180deg, rgba(255,255,255,0.08), transparent);
  opacity: 0.8;
  pointer-events: none;
}

.security-mini-icon {
  position: relative;
  z-index: 1;
  display: inline-flex;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  background: rgba(7, 17, 31, 0.88);
  color: #FFC247;
  font-weight: 900;
  font-size: 0.86rem;
  box-shadow: 0 12px 28px rgba(7, 17, 31, 0.18);
}

.security-item-orange strong {
  position: relative;
  z-index: 1;
  color: #07111F;
  font-weight: 950;
  font-size: 1.2rem;
  letter-spacing: -0.02em;
}

.security-item-orange p {
  position: relative;
  z-index: 1;
  color: rgba(7, 17, 31, 0.84);
  font-weight: 600;
  line-height: 1.68;
}

.security-section-orange:hover,
.security-section-orange:active {
  background:
    radial-gradient(circle at 12% 10%, rgba(255, 255, 255, 0.30), transparent 24%),
    radial-gradient(circle at 92% 90%, rgba(255, 122, 0, 0.22), transparent 32%),
    linear-gradient(145deg, #FFC247 0%, #FF9A1F 50%, #F97316 100%);
}

.security-section-orange:hover .security-item-orange,
.security-section-orange:active .security-item-orange {
  transform: translateY(-6px) scale(1.015);
  border-color: rgba(7, 17, 31, 0.24);
  background:
    linear-gradient(145deg, rgba(255,255,255,0.28), rgba(255,255,255,0.14)),
    rgba(255, 138, 31, 0.18);
  box-shadow:
    0 26px 58px rgba(73, 37, 0, 0.22),
    inset 0 1px 0 rgba(255,255,255,0.18);
}

.security-section-orange:hover .security-mini-icon,
.security-section-orange:active .security-mini-icon {
  background: #07111F;
  color: #FFB020;
}

@media (max-width: 920px) {
  .security-mini-icon {
    width: 38px;
    height: 38px;
    border-radius: 12px;
    margin-bottom: 12px;
  }

  .security-item-orange {
    padding: 22px;
  }
}

/* Ajuste fino do Hero no mobile */
@media (max-width: 920px) {
  .topbar {
    width: calc(100% - 24px);
    margin: 14px auto 0;
    padding: 14px 16px;
    border-radius: 22px;
  }

  .brand {
    gap: 10px;
  }

  .brand-icon {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    font-size: 1.2rem;
  }

  .brand-name {
    font-size: 1.85rem;
    font-weight: 900;
  }

  .hero {
    display: flex;
    flex-direction: column;
    width: calc(100% - 24px);
    margin: 34px auto 0;
    gap: 24px;
  }

  .hero-content {
    width: 100%;
    padding-top: 0;
  }

  .badge {
    font-size: 0.86rem;
    line-height: 1.25;
    padding: 10px 14px;
    max-width: 100%;
  }

  .hero h1 {
    font-size: clamp(2.2rem, 12vw, 3.6rem);
    line-height: 0.98;
    letter-spacing: -0.06em;
    margin: 18px 0 16px;
    max-width: 100%;
  }

  .hero p {
    font-size: 1rem;
    line-height: 1.65;
    max-width: 100%;
  }

  .hero-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 24px;
  }

  .hero-actions .primary-btn,
  .hero-actions .secondary-btn {
    width: 100%;
    justify-content: center;
    min-height: 56px;
    font-size: 1.02rem;
  }

  .hero-panel {
    width: 100%;
    min-height: auto;
    display: block;
  }

  .hero-video-card {
    width: 100%;
    min-height: 280px;
    max-width: 100%;
    border-radius: 26px;
    transform: none;
    margin-top: 0;
  }

  .hero-video {
    width: 100%;
    min-height: 280px;
    height: 280px;
    object-fit: cover;
    object-position: center center;
    display: block;
  }
}

@media (max-width: 520px) {
  .topbar {
    padding: 12px 14px;
  }

  .brand-name {
    font-size: 1.6rem;
  }

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

  .badge {
    font-size: 0.8rem;
    padding: 9px 12px;
  }

  .hero h1 {
    font-size: clamp(2rem, 11.5vw, 3.1rem);
    line-height: 0.98;
    margin: 16px 0 14px;
  }

  .hero p {
    font-size: 0.96rem;
    line-height: 1.6;
  }

  .hero-actions .primary-btn,
  .hero-actions .secondary-btn {
    min-height: 54px;
    font-size: 1rem;
    padding: 14px 18px;
  }

  .hero-video-card {
    min-height: 250px;
    border-radius: 22px;
  }

  .hero-video {
    height: 250px;
    min-height: 250px;
  }
}

/* Bloco 4 - passos premium */
.steps-section-premium .section-title {
  max-width: 860px;
}

.steps-subtitle {
  margin-top: 14px;
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.7;
}

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

.premium-step-card {
  position: relative;
  min-height: 255px;
  padding: 28px;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  background:
    linear-gradient(145deg, rgba(255,255,255,0.06), rgba(255,255,255,0.03)),
    linear-gradient(180deg, rgba(255, 194, 71, 0.03), rgba(255, 138, 31, 0.02));
  box-shadow:
    0 18px 40px rgba(0,0,0,0.20),
    inset 0 1px 0 rgba(255,255,255,0.04);
  transform: perspective(1200px) rotateX(0deg) rotateY(0deg) translateY(0);
  transition:
    transform .28s ease,
    box-shadow .28s ease,
    border-color .28s ease,
    background .28s ease;
  overflow: hidden;
}

.premium-step-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right, rgba(255, 194, 71, 0.09), transparent 28%),
    radial-gradient(circle at bottom left, rgba(255, 138, 31, 0.07), transparent 26%);
  opacity: 0.9;
  pointer-events: none;
}

.premium-step-card:hover,
.premium-step-card:active {
  transform: perspective(1200px) rotateX(4deg) rotateY(-4deg) translateY(-8px);
  border-color: rgba(255, 194, 71, 0.55);
  background:
    linear-gradient(145deg, rgba(255, 194, 71, 0.14), rgba(255, 138, 31, 0.09)),
    linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.02));
  box-shadow:
    0 26px 60px rgba(0,0,0,0.30),
    0 0 0 1px rgba(255, 194, 71, 0.12),
    0 0 38px rgba(255, 138, 31, 0.16);
}

.step-number {
  position: relative;
  z-index: 1;
  display: inline-flex;
  width: 46px;
  height: 46px;
  border-radius: 15px;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  background: rgba(255, 194, 71, 0.12);
  border: 1px solid rgba(255, 194, 71, 0.16);
  color: #FFC247;
  font-weight: 900;
  font-size: 0.95rem;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.04);
}

.premium-step-card h3,
.premium-step-card p {
  position: relative;
  z-index: 1;
}

.premium-step-card h3 {
  font-size: 1.85rem;
  line-height: 1.08;
  margin-bottom: 14px;
}

.premium-step-card p {
  color: #C1CBD6;
  font-size: 1.03rem;
  line-height: 1.78;
}

@media (max-width: 920px) {
  .premium-steps-grid {
    grid-template-columns: 1fr;
  }

  .premium-step-card {
    min-height: 220px;
    padding: 24px;
  }

  .premium-step-card h3 {
    font-size: 1.6rem;
  }

  .premium-step-card:hover,
  .premium-step-card:active {
    transform: translateY(-4px);
  }
}

/* Bloco 5 - Planos laranja premium */
.plans-section-orange .section-title {
  max-width: 920px;
}

.plans-subtitle {
  margin-top: 14px;
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.72;
}

.premium-plans-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.premium-plan-card {
  position: relative;
  min-height: 310px;
  padding: 30px 28px;
  border-radius: 30px;
  border: 1px solid rgba(255, 194, 71, 0.22);
  background:
    radial-gradient(circle at top right, rgba(255,255,255,0.18), transparent 28%),
    linear-gradient(145deg, #FF9A1F 0%, #F59E0B 58%, #FFC247 100%);
  box-shadow:
    0 24px 55px rgba(0,0,0,0.22),
    inset 0 1px 0 rgba(255,255,255,0.12);
  transform: perspective(1200px) rotateX(0deg) rotateY(0deg) translateY(0);
  transition:
    transform .28s ease,
    box-shadow .28s ease,
    border-color .28s ease,
    background .28s ease;
  overflow: hidden;
}

.premium-plan-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at bottom left, rgba(255,255,255,0.22), transparent 30%),
    linear-gradient(180deg, rgba(255,255,255,0.05), transparent 40%);
  opacity: 0.9;
  pointer-events: none;
}

.premium-plan-card:hover,
.premium-plan-card:active {
  transform: perspective(1200px) rotateX(4deg) rotateY(-4deg) translateY(-8px);
  border-color: rgba(255, 247, 220, 0.44);
  background:
    radial-gradient(circle at top right, rgba(255,255,255,0.22), transparent 28%),
    linear-gradient(145deg, #FFC247 0%, #FF9F2E 52%, #F97316 100%);
  box-shadow:
    0 30px 70px rgba(0,0,0,0.28),
    0 0 0 1px rgba(255,255,255,0.06);
}

.plan-topline,
.premium-plan-card h3,
.premium-plan-card p,
.premium-plan-card a {
  position: relative;
  z-index: 1;
}

.plan-topline {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(7, 17, 31, 0.10);
  border: 1px solid rgba(7, 17, 31, 0.12);
  color: #07111F;
  font-weight: 900;
  font-size: 0.84rem;
}

.premium-plan-card h3 {
  color: #07111F;
  font-size: 2rem;
  margin-bottom: 14px;
  line-height: 1.02;
}

.premium-plan-card p {
  color: rgba(7, 17, 31, 0.88);
  font-size: 1.05rem;
  line-height: 1.78;
  max-width: 420px;
}

.premium-plan-card a {
  display: inline-block;
  margin-top: 22px;
  color: #07111F;
  font-weight: 950;
  font-size: 1.05rem;
}

.featured-plan-orange {
  box-shadow:
    0 26px 65px rgba(0,0,0,0.24),
    0 0 0 1px rgba(255,255,255,0.05),
    0 0 34px rgba(255, 160, 40, 0.16);
}

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

  .premium-plan-card {
    min-height: 280px;
    padding: 26px 24px;
  }

  .premium-plan-card h3 {
    font-size: 1.75rem;
  }

  .premium-plan-card:hover,
  .premium-plan-card:active {
    transform: translateY(-4px);
  }
}

/* Bloco 6 - Escala e crescimento */
.scale-section {
  width: min(1180px, calc(100% - 32px));
  margin: 96px auto 0;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 44px;
  align-items: start;
  padding: 18px 4px;
}

.scale-left,
.scale-right {
  min-width: 0;
}

.scale-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 194, 71, 0.22);
  background: rgba(255, 138, 31, 0.06);
  color: #FFC247;
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.scale-badge::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #FF9A1F;
  box-shadow: 0 0 16px rgba(255, 154, 31, 0.48);
}

.scale-left h2 {
  margin-top: 18px;
  color: #FFB54A;
  font-size: clamp(2.5rem, 4.8vw, 4.9rem);
  line-height: 0.96;
  letter-spacing: -0.07em;
  max-width: 620px;
}

.scale-intro {
  margin-top: 22px;
  color: #FFD084;
  font-size: 1.26rem;
  font-weight: 900;
}

.scale-list {
  margin: 18px 0 0 22px;
  padding: 0;
  color: #FFC247;
  display: grid;
  gap: 10px;
  font-size: 1.1rem;
  line-height: 1.7;
}

.scale-note {
  margin-top: 22px;
  max-width: 600px;
  color: rgba(255, 194, 71, 0.78);
  font-size: 1rem;
  line-height: 1.75;
}

.scale-right {
  display: grid;
  gap: 0;
  border-top: 1px solid rgba(255, 194, 71, 0.16);
}

.scale-stat {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 18px;
  align-items: center;
  padding: 26px 0;
  border-bottom: 1px solid rgba(255, 194, 71, 0.16);
  transition: transform .24s ease, border-color .24s ease, background .24s ease;
}

.scale-stat strong {
  color: #FF9A1F;
  font-size: clamp(2.5rem, 4vw, 4rem);
  line-height: 0.95;
  letter-spacing: -0.05em;
  font-weight: 950;
}

.scale-stat span {
  color: #FFD084;
  font-size: 1.15rem;
  line-height: 1.45;
  font-weight: 700;
  max-width: 280px;
}

.scale-stat:hover,
.scale-stat:active {
  transform: translateX(8px);
  border-bottom-color: rgba(255, 194, 71, 0.32);
  background: linear-gradient(90deg, rgba(255, 138, 31, 0.06), transparent 78%);
}

@media (max-width: 920px) {
  .scale-section {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .scale-left h2 {
    font-size: clamp(2.15rem, 10vw, 3.6rem);
    line-height: 1;
  }

  .scale-intro {
    font-size: 1.08rem;
  }

  .scale-list {
    font-size: 1rem;
    line-height: 1.65;
  }

  .scale-stat {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 22px 0;
  }

  .scale-stat strong {
    font-size: clamp(2.2rem, 10vw, 3.3rem);
  }

  .scale-stat span {
    font-size: 1rem;
    max-width: 100%;
  }

  .scale-stat:hover,
  .scale-stat:active {
    transform: translateY(-2px);
  }
}

/* CTA final - card azul premium 3D */
.final-cta-premium {
  position: relative;
  overflow: hidden;
  padding: 68px 28px;
  border-radius: 38px;
  border: 1px solid rgba(255, 194, 71, 0.18);
  background:
    radial-gradient(circle at 50% 45%, rgba(255, 138, 31, 0.13), transparent 24%),
    radial-gradient(circle at 28% 20%, rgba(67, 146, 255, 0.14), transparent 30%),
    linear-gradient(145deg, #101A24 0%, #0B1725 48%, #07111F 100%);
  box-shadow:
    0 28px 80px rgba(0,0,0,0.34),
    inset 0 1px 0 rgba(255,255,255,0.05);
  transform: perspective(1400px) rotateX(0deg) rotateY(0deg) translateY(0);
  transition:
    transform .30s ease,
    box-shadow .30s ease,
    border-color .30s ease,
    background .30s ease;
}

.final-cta-premium::before {
  content: "";
  position: absolute;
  inset: -2px;
  background:
    radial-gradient(circle at center, rgba(255, 194, 71, 0.14), transparent 38%),
    linear-gradient(120deg, transparent, rgba(255,255,255,0.08), transparent);
  opacity: 0.58;
  pointer-events: none;
}

.final-cta-premium:hover,
.final-cta-premium:active {
  transform: perspective(1400px) rotateX(2deg) rotateY(-2deg) translateY(-5px);
  border-color: rgba(255, 194, 71, 0.36);
  box-shadow:
    0 34px 95px rgba(0,0,0,0.42),
    0 0 46px rgba(255, 138, 31, 0.12),
    inset 0 1px 0 rgba(255,255,255,0.06);
  background:
    radial-gradient(circle at 50% 45%, rgba(255, 138, 31, 0.16), transparent 24%),
    radial-gradient(circle at 28% 20%, rgba(67, 146, 255, 0.18), transparent 30%),
    linear-gradient(145deg, #122437 0%, #0B1725 50%, #07111F 100%);
}

.final-cta-inner {
  position: relative;
  z-index: 1;
  max-width: 930px;
  margin: 0 auto;
  text-align: center;
}

.final-cta-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  padding: 10px 15px;
  border-radius: 999px;
  color: #FFC247;
  background: rgba(255, 138, 31, 0.08);
  border: 1px solid rgba(255, 194, 71, 0.24);
  font-size: 0.84rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.final-cta-premium h2 {
  margin: 0 auto;
  color: #F8FAFC;
  font-size: clamp(2.2rem, 4.5vw, 4.25rem);
  line-height: 1;
  letter-spacing: -0.065em;
  max-width: 940px;
}

.final-cta-premium p {
  margin: 20px auto 30px;
  max-width: 760px;
  color: #C6D0DB;
  font-size: 1.08rem;
  line-height: 1.75;
}

.final-cta-button {
  min-width: 280px;
}

@media (max-width: 920px) {
  .final-cta-premium {
    padding: 46px 22px;
    border-radius: 30px;
  }

  .final-cta-premium h2 {
    font-size: clamp(2rem, 10vw, 3.2rem);
  }

  .final-cta-premium p {
    font-size: 1rem;
  }

  .final-cta-button {
    min-width: 0;
    width: 100%;
  }

  .final-cta-premium:hover,
  .final-cta-premium:active {
    transform: translateY(-4px);
  }
}

.final-cta-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.secondary-final {
  border-color: rgba(255, 194, 71, 0.34);
  background: rgba(255, 138, 31, 0.08);
}

@media (max-width: 920px) {
  .final-cta-actions {
    flex-direction: column;
  }

  .final-cta-actions .final-cta-button {
    width: 100%;
  }
}

/* Mobile - mostrar botões Entrar e Fazer cadastro no topo */
@media (max-width: 920px) {
  .topbar {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 14px;
  }

  .topbar .nav {
    display: none;
  }

  .topbar .top-actions {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .topbar .login-btn,
  .topbar .primary-btn.small {
    width: 100%;
    min-height: 48px;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.96rem;
    font-weight: 900;
  }

  .topbar .login-btn {
    color: #F8FAFC;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 194, 71, 0.22);
  }

  .topbar .primary-btn.small {
    padding: 12px 14px;
  }
}

@media (max-width: 420px) {
  .topbar .top-actions {
    grid-template-columns: 1fr;
  }
}

/* Menu mobile premium */
.mobile-menu-btn,
.mobile-menu-panel,
.mobile-menu-backdrop {
  display: none;
}

@media (max-width: 920px) {
  .topbar {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
    gap: 14px;
  }

  .topbar .top-actions,
  .topbar .nav {
    display: none;
  }

  .mobile-menu-btn {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    border: 1px solid rgba(255, 194, 71, 0.22);
    background: rgba(255, 255, 255, 0.06);
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    cursor: pointer;
    flex: 0 0 auto;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.04);
  }

  .mobile-menu-btn span {
    width: 22px;
    height: 2px;
    border-radius: 999px;
    background: #FFC247;
    display: block;
  }

  .mobile-menu-backdrop {
    position: fixed;
    inset: 0;
    z-index: 80;
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(6px);
    opacity: 0;
    pointer-events: none;
    transition: opacity .24s ease;
  }

  .mobile-menu-panel {
    position: fixed;
    top: 0;
    right: 0;
    width: min(360px, 92vw);
    height: 100vh;
    z-index: 90;
    display: flex;
    flex-direction: column;
    padding: 22px;
    background:
      radial-gradient(circle at top left, rgba(255, 138, 31, 0.16), transparent 34%),
      linear-gradient(180deg, #101A24 0%, #07111F 100%);
    border-left: 1px solid rgba(255, 194, 71, 0.18);
    box-shadow: -28px 0 80px rgba(0,0,0,0.48);
    transform: translateX(104%);
    transition: transform .28s ease;
  }

  body.mobile-menu-open {
    overflow: hidden;
  }

  body.mobile-menu-open .mobile-menu-backdrop {
    opacity: 1;
    pointer-events: auto;
  }

  body.mobile-menu-open .mobile-menu-panel {
    transform: translateX(0);
  }

  .mobile-menu-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding-bottom: 22px;
    border-bottom: 1px solid rgba(255, 194, 71, 0.14);
  }

  .mobile-close-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid rgba(255, 194, 71, 0.18);
    background: rgba(255, 255, 255, 0.06);
    color: #F8FAFC;
    font-size: 2rem;
    line-height: 1;
    cursor: pointer;
  }

  .mobile-menu-links {
    display: grid;
    gap: 8px;
    padding: 22px 0;
  }

  .mobile-menu-links a {
    min-height: 54px;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 14px;
    border-radius: 18px;
    color: #D5DFEA;
    font-weight: 800;
    background: rgba(255, 255, 255, 0.035);
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: background .2s ease, border-color .2s ease, color .2s ease, transform .2s ease;
  }

  .mobile-menu-links a span {
    width: 32px;
    height: 32px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    background: rgba(255, 138, 31, 0.10);
    border: 1px solid rgba(255, 194, 71, 0.12);
  }

  .mobile-menu-links a:active,
  .mobile-menu-links a:hover {
    color: #FFC247;
    background: rgba(255, 138, 31, 0.10);
    border-color: rgba(255, 194, 71, 0.20);
    transform: translateX(3px);
  }

  .mobile-menu-actions {
    margin-top: 6px;
    display: grid;
    gap: 12px;
    padding-top: 14px;
    border-top: 1px solid rgba(255, 194, 71, 0.14);
  }

  .mobile-menu-actions .primary-btn {
    width: 100%;
    min-height: 56px;
  }

  .mobile-login-link {
    text-align: center;
    color: #FFC247;
    font-weight: 900;
    padding: 8px;
  }
}

@media (max-width: 420px) {
  .mobile-menu-panel {
    width: 100vw;
  }

  .brand-name {
    font-size: 1.45rem;
  }

  .mobile-menu-head .brand-name {
    font-size: 1.55rem;
  }
}

/* Página Para Empresas */
.company-hero {
  width: min(1180px, calc(100% - 32px));
  margin: 72px auto 0;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 52px;
  align-items: center;
}

.company-badge {
  display: inline-flex;
  color: #FFC247;
  border: 1px solid rgba(255, 194, 71, 0.34);
  background: rgba(255, 138, 31, 0.10);
  border-radius: 999px;
  padding: 10px 14px;
  font-size: 0.86rem;
  font-weight: 900;
}

.company-hero h1 {
  margin: 22px 0;
  color: #F8FAFC;
  font-size: clamp(2.65rem, 5.4vw, 5.25rem);
  line-height: 0.96;
  letter-spacing: -0.075em;
}

.company-hero p {
  color: #C6D0DB;
  font-size: 1.08rem;
  line-height: 1.76;
  max-width: 690px;
}

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

.company-dashboard-card {
  position: relative;
  padding: 28px;
  border-radius: 34px;
  border: 1px solid rgba(255, 194, 71, 0.18);
  background:
    radial-gradient(circle at top right, rgba(255, 138, 31, 0.16), transparent 30%),
    linear-gradient(145deg, rgba(255,255,255,0.07), rgba(255,255,255,0.035)),
    #101A24;
  box-shadow:
    0 30px 90px rgba(0,0,0,0.36),
    inset 0 1px 0 rgba(255,255,255,0.05);
  transform: perspective(1300px) rotateX(0deg) rotateY(0deg);
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}

.company-dashboard-card:hover,
.company-dashboard-card:active {
  transform: perspective(1300px) rotateX(3deg) rotateY(-3deg) translateY(-6px);
  border-color: rgba(255, 194, 71, 0.36);
  box-shadow: 0 36px 105px rgba(0,0,0,0.42), 0 0 42px rgba(255, 138, 31, 0.10);
}

.dashboard-top {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255,255,255,0.10);
}

.dashboard-top span,
.dashboard-route small,
.proposal-card-mini span {
  display: block;
  color: #FFC247;
  font-size: 0.82rem;
  font-weight: 900;
  margin-bottom: 6px;
}

.dashboard-top strong {
  color: #F8FAFC;
  font-size: 1.25rem;
}

.dashboard-status {
  height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  color: #07111F;
  background: linear-gradient(135deg, #FF8A1F, #FFC247);
  font-weight: 900;
}

.dashboard-route {
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.dashboard-route div,
.driver-interest,
.proposal-card-mini {
  border: 1px solid rgba(255,255,255,0.09);
  background: rgba(255,255,255,0.045);
  border-radius: 20px;
  padding: 16px;
}

.dashboard-route strong {
  color: #F8FAFC;
  font-size: 0.98rem;
}

.driver-interest {
  margin-top: 14px;
  display: flex;
  gap: 14px;
  align-items: center;
}

.driver-dot {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: linear-gradient(135deg, #22C55E, #FFC247);
  color: #07111F;
  display: grid;
  place-items: center;
  font-weight: 950;
  flex: 0 0 auto;
}

.driver-interest strong {
  display: block;
  color: #F8FAFC;
  margin-bottom: 5px;
}

.driver-interest span,
.proposal-card-mini p {
  color: #AAB7C4;
  line-height: 1.55;
}

.proposal-card-mini {
  margin-top: 14px;
}

.proposal-card-mini strong {
  display: block;
  color: #F8FAFC;
  font-size: 1.15rem;
  margin-bottom: 8px;
}

.dashboard-actions {
  margin-top: 18px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.dashboard-actions button {
  border: 0;
  border-radius: 999px;
  padding: 13px 16px;
  color: #07111F;
  background: linear-gradient(135deg, #FF8A1F, #FFC247);
  font-weight: 950;
}

.dashboard-actions .ghost {
  color: #F8FAFC;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255, 194, 71, 0.20);
}

.company-fit-section,
.company-problems-section,
.company-flow-section,
.company-final-cta {
  width: min(1180px, calc(100% - 32px));
  margin: 96px auto 0;
}

.company-fit-grid,
.company-flow-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.company-fit-card,
.company-flow-card {
  min-height: 230px;
  padding: 26px;
  border-radius: 28px;
  border: 1px solid rgba(255,255,255,0.10);
  background:
    linear-gradient(145deg, rgba(255,255,255,0.06), rgba(255,255,255,0.03)),
    rgba(255, 138, 31, 0.025);
  transition: transform .25s ease, border-color .25s ease, background .25s ease, box-shadow .25s ease;
}

.company-fit-card:hover,
.company-fit-card:active,
.company-flow-card:hover,
.company-flow-card:active {
  transform: translateY(-6px);
  border-color: rgba(255, 194, 71, 0.38);
  background: rgba(255, 138, 31, 0.10);
  box-shadow: 0 24px 55px rgba(0,0,0,0.25);
}

.company-fit-card h3,
.company-flow-card h3 {
  color: #F8FAFC;
  font-size: 1.35rem;
  margin-bottom: 12px;
}

.company-fit-card p,
.company-flow-card p {
  color: #C6D0DB;
  line-height: 1.72;
}

.company-problems-section {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 32px;
  align-items: center;
  padding: 36px;
  border-radius: 38px;
  background:
    radial-gradient(circle at top left, rgba(255, 244, 214, 0.24), transparent 24%),
    linear-gradient(145deg, #FF9A1F 0%, #F59E0B 56%, #FFC247 100%);
  box-shadow: 0 30px 80px rgba(0,0,0,0.26);
}

.company-problems-copy span {
  display: inline-flex;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.20);
  color: #07111F;
  font-weight: 900;
}

.company-problems-copy h2 {
  margin-top: 18px;
  color: #07111F;
  font-size: clamp(2.2rem, 4.6vw, 4.2rem);
  line-height: 0.98;
  letter-spacing: -0.065em;
}

.company-problems-copy p {
  margin-top: 18px;
  color: rgba(7,17,31,0.86);
  font-weight: 700;
  line-height: 1.75;
}

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

.company-problems-grid div {
  min-height: 160px;
  padding: 22px;
  border-radius: 24px;
  background: rgba(255,255,255,0.18);
  border: 1px solid rgba(7,17,31,0.12);
}

.company-problems-grid strong {
  display: block;
  color: #07111F;
  font-size: 1.12rem;
  margin-bottom: 10px;
}

.company-problems-grid p {
  color: rgba(7,17,31,0.82);
  font-weight: 600;
  line-height: 1.6;
}

.company-final-cta {
  text-align: center;
  padding: 58px 28px;
  border-radius: 38px;
  border: 1px solid rgba(255, 194, 71, 0.18);
  background:
    radial-gradient(circle at center, rgba(255, 138, 31, 0.13), transparent 28%),
    linear-gradient(145deg, #101A24 0%, #07111F 100%);
}

.company-final-cta h2 {
  color: #F8FAFC;
  font-size: clamp(2.1rem, 4.2vw, 4rem);
  line-height: 1;
  letter-spacing: -0.06em;
  max-width: 880px;
  margin: 0 auto;
}

.company-final-cta p {
  color: #C6D0DB;
  max-width: 680px;
  margin: 18px auto 28px;
  line-height: 1.7;
}

.company-final-cta div {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

@media (max-width: 920px) {
  .company-hero,
  .company-problems-section {
    grid-template-columns: 1fr;
  }

  .company-hero {
    margin-top: 40px;
    gap: 28px;
  }

  .company-hero h1 {
    font-size: clamp(2.2rem, 11.5vw, 3.5rem);
  }

  .company-hero-actions {
    flex-direction: column;
  }

  .company-hero-actions a {
    width: 100%;
  }

  .dashboard-route,
  .company-fit-grid,
  .company-flow-grid,
  .company-problems-grid {
    grid-template-columns: 1fr;
  }

  .company-dashboard-card,
  .company-problems-section {
    padding: 24px;
  }

  .company-dashboard-card:hover,
  .company-dashboard-card:active {
    transform: translateY(-4px);
  }

  .company-final-cta div {
    flex-direction: column;
  }

  .company-final-cta a {
    width: 100%;
  }
}

/* Página Empresas - Hero refinado */
.company-hero-refined {
  grid-template-columns: 0.92fr 1.08fr;
  gap: 56px;
  align-items: center;
}

.company-hero-refined .company-hero-copy h1 {
  font-size: clamp(2.8rem, 4.7vw, 4.85rem);
  line-height: 0.98;
  max-width: 700px;
}

.company-hero-refined .company-hero-copy p {
  max-width: 640px;
}

.company-dashboard-clean {
  padding: 30px;
  max-width: 560px;
  margin-left: auto;
}

.dashboard-clean-head {
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(255,255,255,0.10);
}

.dashboard-clean-head span,
.clean-negotiation span {
  display: inline-flex;
  color: #FFC247;
  font-size: 0.82rem;
  font-weight: 900;
  margin-bottom: 8px;
}

.dashboard-clean-head strong {
  display: block;
  color: #F8FAFC;
  font-size: 1.7rem;
  line-height: 1.12;
  letter-spacing: -0.035em;
}

.dashboard-clean-head small {
  display: block;
  margin-top: 10px;
  color: #AAB7C4;
  font-size: 0.98rem;
}

.clean-status-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 18px;
}

.clean-status-grid div {
  padding: 18px;
  border-radius: 22px;
  background: rgba(255,255,255,0.055);
  border: 1px solid rgba(255,255,255,0.09);
}

.clean-status-grid span {
  display: block;
  color: #FF9A1F;
  font-size: 2.5rem;
  font-weight: 950;
  line-height: 1;
  margin-bottom: 8px;
}

.clean-status-grid strong {
  color: #F8FAFC;
  font-size: 0.98rem;
  line-height: 1.35;
}

.clean-negotiation {
  margin-top: 14px;
  padding: 20px;
  border-radius: 24px;
  background:
    linear-gradient(145deg, rgba(255, 138, 31, 0.12), rgba(255,255,255,0.04));
  border: 1px solid rgba(255, 194, 71, 0.16);
}

.clean-negotiation strong {
  display: block;
  color: #F8FAFC;
  font-size: 1.25rem;
  line-height: 1.25;
  margin-bottom: 8px;
}

.clean-negotiation p {
  color: #AAB7C4;
  line-height: 1.6;
  font-size: 0.98rem;
}

@media (max-width: 920px) {
  .company-hero-refined {
    grid-template-columns: 1fr;
  }

  .company-hero-refined .company-hero-copy h1 {
    font-size: clamp(2.25rem, 11vw, 3.5rem);
  }

  .company-dashboard-clean {
    max-width: 100%;
    margin-left: 0;
  }

  .clean-status-grid {
    grid-template-columns: 1fr;
  }
}

/* Empresas - card rotativo de cargas */
.rotating-load-card {
  min-height: 445px;
}

.rotating-load-card .dashboard-clean-head,
.rotating-load-card .clean-status-grid,
.rotating-load-card .clean-negotiation {
  transition: opacity .22s ease, transform .22s ease, filter .22s ease;
}

.rotating-load-card.is-switching .dashboard-clean-head,
.rotating-load-card.is-switching .clean-status-grid,
.rotating-load-card.is-switching .clean-negotiation {
  opacity: 0;
  transform: translateY(8px);
  filter: blur(2px);
}

.load-dots {
  display: flex;
  gap: 8px;
  align-items: center;
  margin-top: 16px;
  margin-bottom: 2px;
}

.load-dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  border: 0;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.22);
  transition: width .22s ease, background .22s ease, transform .22s ease;
}

.load-dot.active {
  width: 30px;
  background: linear-gradient(135deg, #FF8A1F, #FFC247);
  box-shadow: 0 0 18px rgba(255, 138, 31, 0.28);
}

.load-dot:hover,
.load-dot:active {
  transform: scale(1.16);
  background: #FFC247;
}

@media (max-width: 920px) {
  .rotating-load-card {
    min-height: auto;
  }

  .load-dots {
    justify-content: center;
    margin-top: 14px;
  }
}

/* Página Empresas - refinamento bloco 2 */
.company-fit-section .section-title {
  max-width: 880px;
}

.company-fit-subtitle {
  margin-top: 16px;
  color: #C6D0DB;
  font-size: 1.06rem;
  line-height: 1.72;
}

.company-fit-card {
  position: relative;
  overflow: hidden;
  min-height: 245px;
  transform: perspective(1100px) rotateX(0) rotateY(0) translateY(0);
  box-shadow:
    0 18px 40px rgba(0,0,0,0.18),
    inset 0 1px 0 rgba(255,255,255,0.04);
}

.company-fit-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right, rgba(255, 194, 71, 0.10), transparent 30%),
    radial-gradient(circle at bottom left, rgba(255, 138, 31, 0.07), transparent 28%);
  opacity: 0.7;
  pointer-events: none;
}

.company-fit-card h3,
.company-fit-card p {
  position: relative;
  z-index: 1;
}

.company-fit-card:hover,
.company-fit-card:active {
  transform: perspective(1100px) rotateX(3deg) rotateY(-3deg) translateY(-8px);
  border-color: rgba(255, 194, 71, 0.48);
  background:
    linear-gradient(145deg, rgba(255, 194, 71, 0.12), rgba(255, 138, 31, 0.08)),
    rgba(255,255,255,0.035);
  box-shadow:
    0 26px 60px rgba(0,0,0,0.30),
    0 0 34px rgba(255, 138, 31, 0.12);
}

.company-fit-card:hover h3,
.company-fit-card:active h3 {
  color: #FFC247;
}

@media (max-width: 920px) {
  .company-fit-card {
    min-height: 210px;
  }

  .company-fit-card:hover,
  .company-fit-card:active {
    transform: translateY(-4px);
  }
}

/* Página Empresas - Bloco 3 premium */
.company-problems-premium {
  position: relative;
  overflow: hidden;
  border-radius: 40px;
  padding: 40px;
  border: 1px solid rgba(255, 194, 71, 0.22);
  background:
    radial-gradient(circle at 12% 10%, rgba(255, 244, 214, 0.26), transparent 24%),
    radial-gradient(circle at 92% 88%, rgba(120, 57, 0, 0.20), transparent 32%),
    linear-gradient(145deg, #FF9A1F 0%, #F59E0B 54%, #FFC247 100%);
  box-shadow:
    0 30px 90px rgba(0,0,0,0.28),
    inset 0 1px 0 rgba(255,255,255,0.14);
  transform: perspective(1400px) rotateX(0deg) rotateY(0deg) translateY(0);
  transition:
    transform .30s ease,
    box-shadow .30s ease,
    background .30s ease,
    border-color .30s ease;
}

.company-problems-premium::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at center, rgba(255,255,255,0.12), transparent 34%),
    linear-gradient(120deg, transparent, rgba(255,255,255,0.08), transparent);
  opacity: 0.55;
  pointer-events: none;
}

.company-problems-premium:hover,
.company-problems-premium:active {
  transform: perspective(1400px) rotateX(3deg) rotateY(-3deg) translateY(-6px);
  border-color: rgba(255, 248, 220, 0.42);
  background:
    radial-gradient(circle at 12% 10%, rgba(255, 255, 255, 0.30), transparent 24%),
    radial-gradient(circle at 92% 88%, rgba(255, 122, 0, 0.22), transparent 32%),
    linear-gradient(145deg, #FFC247 0%, #FF9A1F 50%, #F97316 100%);
  box-shadow:
    0 36px 105px rgba(0,0,0,0.34),
    0 0 44px rgba(255, 138, 31, 0.14);
}

.company-problems-premium .company-problems-copy,
.company-problems-premium .company-problems-grid {
  position: relative;
  z-index: 1;
}

.company-problems-premium .company-problems-copy span {
  color: #07111F;
  background: rgba(255,255,255,0.24);
  border: 1px solid rgba(7,17,31,0.12);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.20);
}

.company-problems-premium .company-problems-copy h2 {
  color: #07111F;
  text-shadow: 0 1px 0 rgba(255,255,255,0.10);
}

.company-problems-premium .company-problems-copy p {
  color: rgba(7,17,31,0.88);
  font-weight: 700;
  max-width: 620px;
}

.company-problems-premium .company-problems-grid div {
  position: relative;
  overflow: hidden;
  min-height: 170px;
  padding: 24px;
  border-radius: 26px;
  border: 1px solid rgba(7,17,31,0.16);
  background:
    linear-gradient(145deg, rgba(7, 17, 31, 0.16), rgba(7, 17, 31, 0.07)),
    rgba(255,255,255,0.18);
  box-shadow:
    0 22px 46px rgba(73,37,0,0.15),
    inset 0 1px 0 rgba(255,255,255,0.12);
  transition:
    transform .28s ease,
    background .28s ease,
    border-color .28s ease,
    box-shadow .28s ease;
}

.company-problems-premium .company-problems-grid div::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right, rgba(255,255,255,0.20), transparent 34%),
    linear-gradient(180deg, rgba(255,255,255,0.07), transparent);
  opacity: 0.85;
  pointer-events: none;
}

.company-problems-premium .company-problems-grid strong,
.company-problems-premium .company-problems-grid p {
  position: relative;
  z-index: 1;
}

.company-problems-premium .company-problems-grid strong {
  color: #07111F;
  font-size: 1.22rem;
  font-weight: 950;
  letter-spacing: -0.02em;
}

.company-problems-premium .company-problems-grid p {
  color: rgba(7,17,31,0.84);
  font-weight: 650;
  line-height: 1.66;
}

.company-problems-premium:hover .company-problems-grid div,
.company-problems-premium:active .company-problems-grid div {
  transform: translateY(-6px) scale(1.015);
  border-color: rgba(7,17,31,0.24);
  background:
    linear-gradient(145deg, rgba(255,255,255,0.30), rgba(255,255,255,0.15)),
    rgba(255, 138, 31, 0.16);
  box-shadow:
    0 26px 58px rgba(73,37,0,0.22),
    inset 0 1px 0 rgba(255,255,255,0.16);
}

@media (max-width: 920px) {
  .company-problems-premium {
    padding: 28px 22px;
    border-radius: 32px;
  }

  .company-problems-premium:hover,
  .company-problems-premium:active {
    transform: translateY(-4px);
  }

  .company-problems-premium .company-problems-grid div {
    min-height: 145px;
  }
}

/* Página Empresas - Tipos de frete */
.company-load-types-section {
  width: min(1180px, calc(100% - 32px));
  margin: 96px auto 0;
}

.company-load-types-section .section-title {
  max-width: 940px;
}

.company-load-types-subtitle {
  margin-top: 16px;
  color: #C6D0DB;
  font-size: 1.06rem;
  line-height: 1.72;
}

.company-load-types-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.company-load-type-card {
  position: relative;
  min-height: 280px;
  padding: 28px;
  border-radius: 30px;
  border: 1px solid rgba(255,255,255,0.10);
  background:
    linear-gradient(145deg, rgba(255,255,255,0.06), rgba(255,255,255,0.03)),
    linear-gradient(180deg, rgba(255, 194, 71, 0.03), rgba(255, 138, 31, 0.02));
  box-shadow:
    0 18px 40px rgba(0,0,0,0.20),
    inset 0 1px 0 rgba(255,255,255,0.04);
  transform: perspective(1200px) rotateX(0deg) rotateY(0deg) translateY(0);
  transition:
    transform .28s ease,
    box-shadow .28s ease,
    border-color .28s ease,
    background .28s ease;
  overflow: hidden;
}

.company-load-type-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right, rgba(255, 194, 71, 0.11), transparent 30%),
    radial-gradient(circle at bottom left, rgba(255, 138, 31, 0.08), transparent 28%);
  opacity: 0.75;
  pointer-events: none;
}

.company-load-type-card:hover,
.company-load-type-card:active {
  transform: perspective(1200px) rotateX(4deg) rotateY(-4deg) translateY(-8px);
  border-color: rgba(255, 194, 71, 0.52);
  background:
    linear-gradient(145deg, rgba(255, 194, 71, 0.14), rgba(255, 138, 31, 0.09)),
    linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.02));
  box-shadow:
    0 28px 64px rgba(0,0,0,0.30),
    0 0 38px rgba(255, 138, 31, 0.16),
    inset 0 1px 0 rgba(255,255,255,0.05);
}

.load-type-icon {
  position: relative;
  z-index: 1;
  width: 58px;
  height: 58px;
  border-radius: 20px;
  display: grid;
  place-items: center;
  margin-bottom: 24px;
  background: rgba(255, 194, 71, 0.12);
  border: 1px solid rgba(255, 194, 71, 0.16);
  font-size: 1.75rem;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.04);
}

.company-load-type-card h3,
.company-load-type-card p {
  position: relative;
  z-index: 1;
}

.company-load-type-card h3 {
  color: #F8FAFC;
  font-size: 1.55rem;
  line-height: 1.08;
  margin-bottom: 14px;
}

.company-load-type-card p {
  color: #C6D0DB;
  font-size: 1.02rem;
  line-height: 1.72;
}

.company-load-type-card:hover h3,
.company-load-type-card:active h3 {
  color: #FFC247;
}

@media (max-width: 920px) {
  .company-load-types-grid {
    grid-template-columns: 1fr;
  }

  .company-load-type-card {
    min-height: 235px;
    padding: 24px;
  }

  .company-load-type-card:hover,
  .company-load-type-card:active {
    transform: translateY(-4px);
  }
}

/* Página Empresas - CTA final laranja premium */
.company-final-cta {
  position: relative;
  overflow: hidden;
  padding: 68px 28px;
  border-radius: 40px;
  border: 1px solid rgba(255, 194, 71, 0.28);
  background:
    radial-gradient(circle at 18% 18%, rgba(255, 255, 255, 0.26), transparent 24%),
    radial-gradient(circle at 88% 90%, rgba(126, 54, 0, 0.22), transparent 34%),
    linear-gradient(145deg, #FF9A1F 0%, #F59E0B 55%, #FFC247 100%);
  box-shadow:
    0 32px 90px rgba(0,0,0,0.30),
    0 0 46px rgba(255, 138, 31, 0.14),
    inset 0 1px 0 rgba(255,255,255,0.18);
  transform: perspective(1400px) rotateX(0deg) rotateY(0deg) translateY(0);
  transition:
    transform .30s ease,
    box-shadow .30s ease,
    background .30s ease,
    border-color .30s ease;
}

.company-final-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at center, rgba(255,255,255,0.13), transparent 34%),
    linear-gradient(120deg, transparent, rgba(255,255,255,0.10), transparent);
  opacity: 0.65;
  pointer-events: none;
}

.company-final-cta:hover,
.company-final-cta:active {
  transform: perspective(1400px) rotateX(3deg) rotateY(-3deg) translateY(-6px);
  border-color: rgba(255, 248, 220, 0.46);
  background:
    radial-gradient(circle at 18% 18%, rgba(255, 255, 255, 0.30), transparent 24%),
    radial-gradient(circle at 88% 90%, rgba(255, 122, 0, 0.24), transparent 34%),
    linear-gradient(145deg, #FFC247 0%, #FF9A1F 52%, #F97316 100%);
  box-shadow:
    0 38px 110px rgba(0,0,0,0.36),
    0 0 58px rgba(255, 138, 31, 0.18),
    inset 0 1px 0 rgba(255,255,255,0.20);
}

.company-final-cta h2,
.company-final-cta p,
.company-final-cta div {
  position: relative;
  z-index: 1;
}

.company-final-cta h2 {
  color: #07111F;
  text-shadow: 0 1px 0 rgba(255,255,255,0.10);
}

.company-final-cta p {
  color: rgba(7, 17, 31, 0.88);
  font-weight: 700;
}

.company-final-cta .primary-btn {
  background: #07111F;
  color: #FFC247;
  box-shadow:
    0 20px 44px rgba(7,17,31,0.26),
    inset 0 1px 0 rgba(255,255,255,0.06);
}

.company-final-cta .secondary-btn {
  color: #07111F;
  background: rgba(255,255,255,0.18);
  border-color: rgba(7,17,31,0.20);
  font-weight: 950;
}

.company-final-cta .primary-btn:hover,
.company-final-cta .secondary-btn:hover {
  transform: translateY(-3px);
}

@media (max-width: 920px) {
  .company-final-cta {
    padding: 48px 22px;
    border-radius: 32px;
  }

  .company-final-cta:hover,
  .company-final-cta:active {
    transform: translateY(-4px);
  }
}

@media (max-width: 920px) {
  .driver-hero,
  .driver-security-section {
    grid-template-columns: 1fr;
  }

  .driver-hero {
    margin-top: 40px;
    gap: 28px;
  }

  .driver-hero h1 {
    font-size: clamp(2.25rem, 11vw, 3.5rem);
  }

  .driver-hero-actions {
    flex-direction: column;
  }

  .driver-hero-actions a {
    width: 100%;
  }

  .driver-phone-card {
    min-height: auto;
  }

  .phone-shell {
    width: 100%;
    border-radius: 34px;
  }

  .phone-screen {
    min-height: auto;
  }

  .driver-benefits-grid,
  .driver-load-types-grid,
  .driver-how-grid,
  .driver-security-grid {
    grid-template-columns: 1fr;
  }

  .driver-security-section {
    padding: 28px 22px;
  }

  .driver-benefit-card,
  .driver-load-type-card,
  .driver-how-card {
    min-height: 220px;
  }

  .driver-final-cta {
    padding: 48px 22px;
    border-radius: 32px;
  }

  .driver-final-cta div {
    flex-direction: column;
  }

  .driver-final-cta a {
    width: 100%;
  }
}


/* Página Para Caminhoneiros */
.driver-hero {
  width: min(1180px, calc(100% - 32px));
  margin: 72px auto 0;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 54px;
  align-items: center;
}

.driver-badge {
  display: inline-flex;
  color: #FFC247;
  border: 1px solid rgba(255, 194, 71, 0.34);
  background: rgba(255, 138, 31, 0.10);
  border-radius: 999px;
  padding: 10px 14px;
  font-size: 0.86rem;
  font-weight: 900;
}

.driver-hero h1 {
  margin: 22px 0;
  color: #F8FAFC;
  font-size: clamp(2.7rem, 5vw, 5rem);
  line-height: 0.98;
  letter-spacing: -0.075em;
  max-width: 720px;
}

.driver-hero p {
  color: #C6D0DB;
  font-size: 1.08rem;
  line-height: 1.76;
  max-width: 690px;
}

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

.driver-phone-card {
  display: flex;
  justify-content: center;
  align-items: center;
}

.driver-phone-mockup {
  width: 100%;
  display: flex;
  justify-content: center;
}

.driver-phone-frame {
  width: min(395px, 100%);
  padding: 14px;
  border-radius: 44px;
  background:
    linear-gradient(145deg, rgba(255,255,255,0.12), rgba(255,255,255,0.04)),
    linear-gradient(180deg, #1b2530 0%, #0b131d 100%);
  border: 1px solid rgba(255, 194, 71, 0.26);
  box-shadow:
    0 35px 100px rgba(0,0,0,0.45),
    0 0 35px rgba(255,138,31,0.10),
    inset 0 1px 0 rgba(255,255,255,0.06);
  position: relative;
  transition: transform .30s ease, box-shadow .30s ease;
}

.driver-phone-frame:hover,
.driver-phone-frame:active {
  transform: perspective(1200px) rotateX(5deg) rotateY(-5deg) translateY(-8px);
  box-shadow:
    0 42px 110px rgba(0,0,0,0.52),
    0 0 55px rgba(255,138,31,0.18);
}

.driver-phone-notch {
  width: 92px;
  height: 6px;
  border-radius: 999px;
  background: rgba(255,255,255,0.26);
  margin: 0 auto 12px;
}

.driver-phone-screen {
  border-radius: 34px;
  padding: 18px;
  min-height: 590px;
  background:
    radial-gradient(circle at top left, rgba(255, 194, 71, 0.10), transparent 28%),
    linear-gradient(180deg, #08111d 0%, #06101b 100%);
  border: 1px solid rgba(255,255,255,0.06);
  transition: opacity .22s ease, transform .22s ease, filter .22s ease;
}

.rotating-driver-card.is-switching .driver-phone-screen {
  opacity: 0.80;
  transform: translateY(6px);
  filter: blur(1px);
}

.driver-phone-statusbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #A9B5C2;
  font-size: 0.78rem;
  margin-bottom: 14px;
}

.driver-app-header small,
.driver-app-price-card span,
.driver-app-proposal small {
  display: block;
  color: #FFC247;
  font-size: 0.82rem;
  font-weight: 900;
  margin-bottom: 6px;
}

.driver-app-header h3 {
  color: #F8FAFC;
  font-size: 1.22rem;
  line-height: 1.14;
  margin: 0 0 8px;
  letter-spacing: -0.03em;
}

.driver-app-header p {
  color: #A9B5C2;
  margin: 0;
  font-size: 0.95rem;
}

.driver-app-price-card,
.driver-app-mini-card,
.driver-app-proposal,
.driver-app-step {
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.05);
  border-radius: 22px;
}

.driver-app-price-card {
  margin-top: 16px;
  padding: 16px;
}

.driver-app-price-card strong {
  display: block;
  color: #FF9A1F;
  font-size: 1.95rem;
  line-height: 1;
}

.driver-app-mini-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 14px;
}

.driver-app-mini-card {
  padding: 14px 16px;
}

.driver-app-mini-card span {
  display: block;
  color: #F8FAFC;
  font-size: 1.08rem;
  font-weight: 900;
  line-height: 1.1;
}

.driver-app-mini-card small {
  color: #A9B5C2;
}

.driver-app-steps {
  margin-top: 14px;
  display: grid;
  gap: 10px;
}

.driver-app-step {
  padding: 14px 16px;
}

.driver-app-step b {
  display: block;
  color: #FFC247;
  font-size: 0.8rem;
  margin-bottom: 4px;
}

.driver-app-step span {
  color: #F8FAFC;
  font-weight: 800;
  line-height: 1.3;
}

.driver-app-step-line {
  height: 10px;
  width: 2px;
  background: linear-gradient(180deg, rgba(255,194,71,0.55), rgba(255,138,31,0.12));
  margin: -2px auto -2px 18px;
}

.driver-app-proposal {
  margin-top: 14px;
  padding: 16px;
  background:
    linear-gradient(145deg, rgba(255,138,31,0.11), rgba(255,255,255,0.04));
  border-color: rgba(255, 194, 71, 0.18);
}

.driver-app-proposal strong {
  display: block;
  color: #F8FAFC;
  font-size: 1.08rem;
  margin: 4px 0 6px;
  line-height: 1.2;
}

.driver-app-proposal p {
  color: #A9B5C2;
  font-size: 0.92rem;
  line-height: 1.55;
  margin: 0;
}

.driver-app-actions {
  margin-top: 16px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.driver-ghost-btn,
.driver-primary-btn {
  min-height: 48px;
  border-radius: 999px;
  font-weight: 900;
  border: none;
  cursor: pointer;
}

.driver-ghost-btn {
  background: rgba(255,255,255,0.06);
  color: #F8FAFC;
  border: 1px solid rgba(255,194,71,0.18);
}

.driver-primary-btn {
  background: linear-gradient(135deg, #FF8A1F, #FFC247);
  color: #07111F;
  box-shadow: 0 14px 28px rgba(255,138,31,0.18);
}

.driver-dots {
  display: flex;
  gap: 8px;
  align-items: center;
  margin-top: 16px;
  justify-content: center;
}

.driver-dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  border: 0;
  cursor: pointer;
  background: rgba(255,255,255,0.22);
  transition: width .22s ease, background .22s ease, transform .22s ease;
}

.driver-dot.active {
  width: 30px;
  background: linear-gradient(135deg, #FF8A1F, #FFC247);
  box-shadow: 0 0 18px rgba(255, 138, 31, 0.28);
}

.driver-benefits-section,
.driver-security-section,
.driver-load-types-section,
.driver-how-section,
.driver-final-cta {
  width: min(1180px, calc(100% - 32px));
  margin: 96px auto 0;
}

.driver-benefits-section .section-title,
.driver-load-types-section .section-title,
.driver-how-section .section-title {
  max-width: 920px;
}

.driver-benefits-subtitle,
.driver-load-types-subtitle {
  margin-top: 16px;
  color: #C6D0DB;
  font-size: 1.06rem;
  line-height: 1.72;
}

.driver-benefits-grid,
.driver-load-types-grid,
.driver-how-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.driver-benefit-card,
.driver-load-type-card,
.driver-how-card {
  position: relative;
  min-height: 255px;
  padding: 28px;
  border-radius: 30px;
  border: 1px solid rgba(255,255,255,0.10);
  background:
    linear-gradient(145deg, rgba(255,255,255,0.06), rgba(255,255,255,0.03)),
    linear-gradient(180deg, rgba(255, 194, 71, 0.03), rgba(255, 138, 31, 0.02));
  box-shadow:
    0 18px 40px rgba(0,0,0,0.20),
    inset 0 1px 0 rgba(255,255,255,0.04);
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease, background .28s ease;
  overflow: hidden;
}

.driver-benefit-card::before,
.driver-load-type-card::before,
.driver-how-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right, rgba(255, 194, 71, 0.11), transparent 30%),
    radial-gradient(circle at bottom left, rgba(255, 138, 31, 0.08), transparent 28%);
  opacity: 0.75;
  pointer-events: none;
}

.driver-benefit-card:hover,
.driver-benefit-card:active,
.driver-load-type-card:hover,
.driver-load-type-card:active,
.driver-how-card:hover,
.driver-how-card:active {
  transform: perspective(1200px) rotateX(4deg) rotateY(-4deg) translateY(-8px);
  border-color: rgba(255, 194, 71, 0.52);
  background:
    linear-gradient(145deg, rgba(255, 194, 71, 0.14), rgba(255, 138, 31, 0.09)),
    linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.02));
  box-shadow:
    0 28px 64px rgba(0,0,0,0.30),
    0 0 38px rgba(255, 138, 31, 0.16);
}

.driver-benefit-icon {
  position: relative;
  z-index: 1;
  width: 58px;
  height: 58px;
  border-radius: 20px;
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  background: rgba(255, 194, 71, 0.12);
  border: 1px solid rgba(255, 194, 71, 0.16);
  font-size: 1.75rem;
}

.driver-benefit-card h3,
.driver-benefit-card p,
.driver-load-type-card h3,
.driver-load-type-card p,
.driver-how-card h3,
.driver-how-card p {
  position: relative;
  z-index: 1;
}

.driver-benefit-card h3,
.driver-load-type-card h3,
.driver-how-card h3 {
  color: #F8FAFC;
  font-size: 1.42rem;
  line-height: 1.08;
  margin-bottom: 14px;
}

.driver-benefit-card p,
.driver-load-type-card p,
.driver-how-card p {
  color: #C6D0DB;
  line-height: 1.72;
}

.driver-benefit-card:hover h3,
.driver-load-type-card:hover h3,
.driver-how-card:hover h3 {
  color: #FFC247;
}

.driver-security-section {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 32px;
  align-items: center;
  padding: 40px;
  border-radius: 40px;
  border: 1px solid rgba(255, 194, 71, 0.22);
  background:
    radial-gradient(circle at 12% 10%, rgba(255, 244, 214, 0.26), transparent 24%),
    radial-gradient(circle at 92% 88%, rgba(120, 57, 0, 0.20), transparent 32%),
    linear-gradient(145deg, #FF9A1F 0%, #F59E0B 54%, #FFC247 100%);
  box-shadow: 0 30px 90px rgba(0,0,0,0.28);
  transition: transform .30s ease, box-shadow .30s ease, background .30s ease;
}

.driver-security-section:hover,
.driver-security-section:active {
  transform: perspective(1400px) rotateX(3deg) rotateY(-3deg) translateY(-6px);
  background:
    radial-gradient(circle at 12% 10%, rgba(255,255,255,0.30), transparent 24%),
    radial-gradient(circle at 92% 88%, rgba(255, 122, 0, 0.22), transparent 32%),
    linear-gradient(145deg, #FFC247 0%, #FF9A1F 50%, #F97316 100%);
}

.driver-security-copy span {
  display: inline-flex;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.24);
  color: #07111F;
  font-weight: 900;
}

.driver-security-copy h2 {
  margin-top: 18px;
  color: #07111F;
  font-size: clamp(2.2rem, 4.6vw, 4.2rem);
  line-height: 0.98;
  letter-spacing: -0.065em;
}

.driver-security-copy p {
  margin-top: 18px;
  color: rgba(7,17,31,0.86);
  font-weight: 700;
  line-height: 1.75;
}

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

.driver-security-grid div {
  min-height: 165px;
  padding: 24px;
  border-radius: 26px;
  border: 1px solid rgba(7,17,31,0.16);
  background:
    linear-gradient(145deg, rgba(7, 17, 31, 0.16), rgba(7, 17, 31, 0.07)),
    rgba(255,255,255,0.18);
  box-shadow: 0 22px 46px rgba(73,37,0,0.15);
}

.driver-security-grid strong {
  display: block;
  color: #07111F;
  font-size: 1.18rem;
  font-weight: 950;
  margin-bottom: 10px;
}

.driver-security-grid p {
  color: rgba(7,17,31,0.84);
  font-weight: 650;
  line-height: 1.66;
}

.driver-final-cta {
  text-align: center;
  padding: 68px 28px;
  border-radius: 40px;
  border: 1px solid rgba(255, 194, 71, 0.28);
  background:
    radial-gradient(circle at 18% 18%, rgba(255,255,255,0.26), transparent 24%),
    radial-gradient(circle at 88% 90%, rgba(126,54,0,0.22), transparent 34%),
    linear-gradient(145deg, #FF9A1F 0%, #F59E0B 55%, #FFC247 100%);
  box-shadow: 0 32px 90px rgba(0,0,0,0.30);
}

.driver-final-cta h2 {
  color: #07111F;
  font-size: clamp(2.1rem, 4.2vw, 4rem);
  line-height: 1;
  letter-spacing: -0.06em;
  max-width: 880px;
  margin: 0 auto;
}

.driver-final-cta p {
  color: rgba(7,17,31,0.88);
  font-weight: 700;
  max-width: 720px;
  margin: 18px auto 28px;
  line-height: 1.7;
}

.driver-final-cta div {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.driver-final-cta .primary-btn {
  background: #07111F;
  color: #FFC247;
}

.driver-final-cta .secondary-btn {
  color: #07111F;
  background: rgba(255,255,255,0.18);
  border-color: rgba(7,17,31,0.20);
  font-weight: 950;
}

@media (max-width: 920px) {
  .driver-hero,
  .driver-security-section {
    grid-template-columns: 1fr;
  }

  .driver-hero {
    margin-top: 40px;
    gap: 28px;
  }

  .driver-hero h1 {
    font-size: clamp(2.25rem, 11vw, 3.5rem);
  }

  .driver-hero-actions {
    flex-direction: column;
  }

  .driver-hero-actions a {
    width: 100%;
  }

  .driver-phone-frame {
    width: 100%;
    max-width: 390px;
  }

  .driver-phone-screen {
    min-height: auto;
  }

  .driver-app-actions {
    grid-template-columns: 1fr;
  }

  .driver-benefits-grid,
  .driver-load-types-grid,
  .driver-how-grid,
  .driver-security-grid {
    grid-template-columns: 1fr;
  }

  .driver-security-section {
    padding: 28px 22px;
  }

  .driver-benefit-card,
  .driver-load-type-card,
  .driver-how-card {
    min-height: 220px;
  }

  .driver-final-cta {
    padding: 48px 22px;
    border-radius: 32px;
  }

  .driver-final-cta div {
    flex-direction: column;
  }

  .driver-final-cta a {
    width: 100%;
  }
}


/* Correção definitiva - Hero Caminhoneiros com mockup de celular */
.driver-hero-app {
  width: min(1180px, calc(100% - 32px));
  margin: 72px auto 0;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 58px;
  align-items: center;
}

.driver-hero-app .driver-hero-copy h1 {
  font-size: clamp(2.65rem, 4.8vw, 4.8rem);
  line-height: 0.98;
  letter-spacing: -0.075em;
  max-width: 760px;
}

.driver-app-mockup-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 620px;
}

.driver-app-phone {
  width: min(390px, 100%);
  padding: 14px;
  border-radius: 46px;
  background:
    linear-gradient(145deg, rgba(255,255,255,0.14), rgba(255,255,255,0.04)),
    linear-gradient(180deg, #1B2530 0%, #07111F 100%);
  border: 1px solid rgba(255, 194, 71, 0.28);
  box-shadow:
    0 38px 110px rgba(0,0,0,0.48),
    0 0 46px rgba(255, 138, 31, 0.12),
    inset 0 1px 0 rgba(255,255,255,0.08);
  transform: perspective(1300px) rotateX(0deg) rotateY(0deg);
  transition: transform .30s ease, box-shadow .30s ease;
}

.driver-app-phone:hover,
.driver-app-phone:active {
  transform: perspective(1300px) rotateX(4deg) rotateY(-5deg) translateY(-8px);
  box-shadow:
    0 44px 120px rgba(0,0,0,0.54),
    0 0 62px rgba(255, 138, 31, 0.18);
}

.driver-phone-speaker {
  width: 92px;
  height: 6px;
  border-radius: 999px;
  background: rgba(255,255,255,0.26);
  margin: 0 auto 12px;
}

.driver-app-screen {
  min-height: 560px;
  padding: 20px;
  border-radius: 34px;
  background:
    radial-gradient(circle at top left, rgba(255, 194, 71, 0.12), transparent 30%),
    linear-gradient(180deg, #0B1725 0%, #07111F 100%);
  border: 1px solid rgba(255,255,255,0.08);
  overflow: hidden;
}

.driver-app-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 18px;
}

.driver-app-top span {
  display: block;
  color: #FFC247;
  font-size: 0.82rem;
  font-weight: 900;
  margin-bottom: 4px;
}

.driver-app-top strong {
  color: #F8FAFC;
  font-size: 1.45rem;
  letter-spacing: -0.04em;
}

.driver-app-badge {
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(34, 197, 94, 0.14);
  border: 1px solid rgba(34, 197, 94, 0.22);
  color: #41F0A2;
  font-size: 0.78rem;
  font-weight: 900;
}

.driver-filter-row {
  display: flex;
  gap: 8px;
  margin-bottom: 14px;
  overflow: hidden;
}

.driver-filter-row span {
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  color: #C6D0DB;
  font-size: 0.78rem;
  font-weight: 800;
  white-space: nowrap;
}

.driver-freight-list {
  display: grid;
  gap: 12px;
}

.driver-freight-card {
  padding: 15px;
  border-radius: 22px;
  background:
    linear-gradient(145deg, rgba(255,255,255,0.07), rgba(255,255,255,0.035));
  border: 1px solid rgba(255,255,255,0.09);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.04);
  transition: transform .25s ease, border-color .25s ease, background .25s ease;
}

.driver-freight-card.active,
.driver-freight-card:hover,
.driver-freight-card:active {
  transform: translateY(-3px);
  border-color: rgba(255, 194, 71, 0.34);
  background:
    linear-gradient(145deg, rgba(255, 138, 31, 0.13), rgba(255,255,255,0.045));
}

.freight-card-head {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: flex-start;
}

.freight-card-head strong {
  color: #F8FAFC;
  font-size: 0.98rem;
  line-height: 1.25;
}

.freight-card-head span {
  color: #FFC247;
  font-size: 0.78rem;
  font-weight: 900;
  white-space: nowrap;
}

.driver-freight-card p {
  margin: 7px 0 12px;
  color: #AAB7C4;
  font-size: 0.86rem;
  line-height: 1.45;
}

.freight-card-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.freight-card-bottom b {
  color: #FF9A1F;
  font-size: 1.35rem;
  letter-spacing: -0.04em;
}

.freight-card-bottom button {
  border: 0;
  border-radius: 999px;
  min-height: 36px;
  padding: 0 13px;
  background: linear-gradient(135deg, #FF8A1F, #FFC247);
  color: #07111F;
  font-size: 0.8rem;
  font-weight: 950;
  cursor: pointer;
}

.driver-app-footer {
  margin-top: 16px;
  display: grid;
  gap: 8px;
}

.driver-app-footer span {
  padding: 10px 12px;
  border-radius: 16px;
  background: rgba(255,255,255,0.045);
  border: 1px solid rgba(255,255,255,0.07);
  color: #C6D0DB;
  font-size: 0.82rem;
  font-weight: 800;
}

@media (max-width: 920px) {
  .driver-hero-app {
    grid-template-columns: 1fr;
    margin-top: 40px;
    gap: 30px;
  }

  .driver-hero-app .driver-hero-copy h1 {
    font-size: clamp(2.2rem, 10.8vw, 3.45rem);
  }

  .driver-app-mockup-wrap {
    min-height: auto;
  }

  .driver-app-phone {
    max-width: 390px;
  }
}

@media (max-width: 430px) {
  .driver-app-screen {
    padding: 16px;
  }

  .freight-card-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .freight-card-bottom button {
    width: 100%;
  }
}

/* Rotação dos 3 fretes no mockup do caminhoneiro */
.rotating-freight-list {
  transition: opacity .22s ease, transform .22s ease, filter .22s ease;
}

.rotating-freight-list.is-changing {
  opacity: 0.45;
  transform: translateY(8px);
  filter: blur(2px);
}

.freight-rotation-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin: 14px 0 4px;
}

.freight-rotation-dot {
  width: 9px;
  height: 9px;
  border: 0;
  border-radius: 999px;
  background: rgba(255,255,255,0.22);
  cursor: pointer;
  transition: width .22s ease, background .22s ease, transform .22s ease;
}

.freight-rotation-dot.active {
  width: 32px;
  background: linear-gradient(135deg, #FF8A1F, #FFC247);
  box-shadow: 0 0 18px rgba(255, 138, 31, 0.30);
}

.freight-rotation-dot:hover,
.freight-rotation-dot:active {
  transform: scale(1.16);
  background: #FFC247;
}

/* Caminhoneiros - refinamento bloco vantagens */
.driver-benefits-section .section-title {
  max-width: 980px;
}

.driver-benefit-card {
  min-height: 275px;
}

.driver-benefit-card:hover,
.driver-benefit-card:active {
  border-color: rgba(255, 194, 71, 0.58);
  background:
    linear-gradient(145deg, rgba(255, 194, 71, 0.18), rgba(255, 138, 31, 0.11)),
    linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
}

.driver-benefit-card:hover .driver-benefit-icon,
.driver-benefit-card:active .driver-benefit-icon {
  background: linear-gradient(135deg, #FF8A1F, #FFC247);
  color: #07111F;
  transform: translateY(-2px) scale(1.04);
}

.driver-benefit-icon {
  transition: transform .24s ease, background .24s ease, color .24s ease;
}

@media (max-width: 920px) {
  .driver-benefit-card {
    min-height: 220px;
  }
}

/* Caminhoneiros - refinamento bloco veículos */
.driver-load-types-section .section-title {
  max-width: 940px;
}

.driver-load-type-card {
  min-height: 270px;
}

.driver-load-type-card:hover,
.driver-load-type-card:active {
  border-color: rgba(255, 194, 71, 0.58);
  background:
    linear-gradient(145deg, rgba(255, 194, 71, 0.17), rgba(255, 138, 31, 0.11)),
    linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
}

.driver-load-type-card h3 {
  font-size: 1.55rem;
}

.driver-load-type-card:hover h3,
.driver-load-type-card:active h3 {
  color: #FFC247;
}

@media (max-width: 920px) {
  .driver-load-type-card {
    min-height: 220px;
  }
}

/* Caminhoneiros - refinamento como começar */
.driver-how-section .section-title {
  max-width: 900px;
}

.driver-how-card {
  min-height: 255px;
}

.driver-how-card:hover,
.driver-how-card:active {
  border-color: rgba(255, 194, 71, 0.58);
  background:
    linear-gradient(145deg, rgba(255, 194, 71, 0.18), rgba(255, 138, 31, 0.11)),
    linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
}

.driver-how-card:hover h3,
.driver-how-card:active h3 {
  color: #FFC247;
}

@media (max-width: 920px) {
  .driver-how-card {
    min-height: 215px;
  }
}


/* === CTA FINAL CAMINHONEIROS START === */
.truck-cta-final{
  position:relative;
  overflow:hidden;
  margin:36px auto 0;
  padding:28px;
  border-radius:36px;
  background:
    radial-gradient(circle at 20% 18%, rgba(255,255,255,.22), transparent 24%),
    radial-gradient(circle at 78% 86%, rgba(255,240,210,.18), transparent 22%),
    linear-gradient(135deg, #ffb13a 0%, #ff9f0a 44%, #f6a313 100%);
  border:1px solid rgba(255, 193, 94, .55);
  box-shadow:
    0 26px 60px rgba(255, 155, 0, .18),
    inset 0 1px 0 rgba(255,255,255,.22),
    inset 0 -18px 40px rgba(120,55,0,.12);
}

.truck-cta-final__inner{
  position:relative;
  z-index:2;
  max-width:1000px;
  margin:0 auto;
  text-align:center;
  color:#07111f;
}

.truck-cta-final__glow{
  position:absolute;
  width:320px;
  height:320px;
  border-radius:50%;
  filter:blur(70px);
  opacity:.18;
  z-index:1;
}

.truck-cta-final__glow--left{
  left:-60px;
  top:-80px;
  background:#fff3db;
}

.truck-cta-final__glow--right{
  right:-80px;
  bottom:-100px;
  background:#ffd48b;
}

.truck-cta-final__badge{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  margin-bottom:18px;
  padding:10px 18px;
  border-radius:999px;
  background:rgba(255,248,235,.36);
  border:1px solid rgba(7,17,31,.14);
  box-shadow:0 10px 24px rgba(0,0,0,.08), inset 0 1px 0 rgba(255,255,255,.35);
  color:#0a1423;
  font-size:.9rem;
  font-weight:800;
  text-transform:uppercase;
  letter-spacing:.08em;
}

.truck-cta-final__title{
  margin:0;
  font-size:clamp(2.2rem, 5vw, 4.25rem);
  line-height:.98;
  font-weight:900;
  color:#08111e;
}

.truck-cta-final__text{
  max-width:880px;
  margin:22px auto 0;
  font-size:1.14rem;
  line-height:1.75;
  color:rgba(8,17,30,.92);
  font-weight:600;
}

.truck-cta-final__actions{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:16px;
  flex-wrap:wrap;
  margin-top:28px;
}

.truck-cta-final__btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:60px;
  padding:0 28px;
  border-radius:999px;
  text-decoration:none;
  font-weight:800;
  font-size:1rem;
  transition:transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease;
}

.truck-cta-final__btn:hover{
  transform:translateY(-2px);
}

.truck-cta-final__btn--primary{
  background:#07111f;
  color:#ffffff;
  box-shadow:0 16px 34px rgba(7,17,31,.22);
}

.truck-cta-final__btn--primary:hover{
  background:#0d1b2e;
  color:#ffffff;
}

.truck-cta-final__btn--secondary{
  background:rgba(255,246,230,.34);
  color:#07111f;
  border:1px solid rgba(7,17,31,.16);
  box-shadow:0 12px 26px rgba(0,0,0,.08), inset 0 1px 0 rgba(255,255,255,.35);
}

.truck-cta-final__btn--secondary:hover{
  background:rgba(255,247,234,.52);
  color:#07111f;
}

.truck-cta-final__chips{
  display:flex;
  align-items:center;
  justify-content:center;
  flex-wrap:wrap;
  gap:12px;
  margin-top:26px;
}

.truck-cta-final__chip{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:12px 16px;
  border-radius:999px;
  background:rgba(255,246,231,.28);
  border:1px solid rgba(7,17,31,.14);
  color:#0b1523;
  font-weight:700;
  font-size:.95rem;
  box-shadow:0 10px 22px rgba(0,0,0,.07), inset 0 1px 0 rgba(255,255,255,.25);
}

@media (max-width: 768px){
  .truck-cta-final{
    padding:22px 18px;
    border-radius:28px;
  }

  .truck-cta-final__title{
    font-size:clamp(1.9rem, 8vw, 3rem);
  }

  .truck-cta-final__text{
    font-size:1rem;
    line-height:1.65;
  }

  .truck-cta-final__actions{
    flex-direction:column;
  }

  .truck-cta-final__btn{
    width:100%;
    max-width:340px;
  }

  .truck-cta-final__chips{
    margin-top:20px;
  }
}
/* === CTA FINAL CAMINHONEIROS END === */

/* Ajuste CTA caminhoneiros - tamanho mais elegante */
.truck-cta-final {
  padding: 46px 24px !important;
  margin-top: 70px !important;
  border-radius: 34px !important;
}

.truck-cta-final__badge {
  margin-bottom: 14px !important;
  padding: 8px 14px !important;
  font-size: 0.74rem !important;
  letter-spacing: 0.10em !important;
}

.truck-cta-final__title {
  font-size: clamp(2.15rem, 3.8vw, 3.6rem) !important;
  line-height: 1.02 !important;
  max-width: 860px !important;
  margin: 0 auto !important;
}

.truck-cta-final__text {
  max-width: 760px !important;
  margin-top: 18px !important;
  font-size: 1.02rem !important;
  line-height: 1.62 !important;
}

.truck-cta-final__actions {
  margin-top: 24px !important;
}

.truck-cta-final__btn {
  min-height: 54px !important;
  padding: 0 24px !important;
  font-size: 0.98rem !important;
}

.truck-cta-final__chips {
  margin-top: 20px !important;
  gap: 10px !important;
}

.truck-cta-final__chip {
  padding: 9px 13px !important;
  font-size: 0.84rem !important;
}

@media (max-width: 768px) {
  .truck-cta-final {
    padding: 36px 18px !important;
    border-radius: 28px !important;
  }

  .truck-cta-final__title {
    font-size: clamp(1.9rem, 8vw, 2.75rem) !important;
  }

  .truck-cta-final__text {
    font-size: 0.96rem !important;
  }

  .truck-cta-final__chips {
    display: none !important;
  }
}

/* Correção forte CTA caminhoneiros menor */
body .truck-cta-final {
  max-width: 1180px !important;
  width: calc(100% - 32px) !important;
  margin: 70px auto 0 !important;
  padding: 34px 24px !important;
  border-radius: 30px !important;
  min-height: auto !important;
}

body .truck-cta-final__inner {
  max-width: 850px !important;
}

body .truck-cta-final__badge {
  margin-bottom: 10px !important;
  padding: 7px 13px !important;
  font-size: 0.68rem !important;
}

body .truck-cta-final__title {
  font-size: clamp(1.95rem, 3.1vw, 3rem) !important;
  line-height: 1.02 !important;
  letter-spacing: -0.055em !important;
  max-width: 760px !important;
}

body .truck-cta-final__text {
  max-width: 680px !important;
  margin: 14px auto 0 !important;
  font-size: 0.95rem !important;
  line-height: 1.55 !important;
}

body .truck-cta-final__actions {
  margin-top: 20px !important;
  gap: 12px !important;
}

body .truck-cta-final__btn {
  min-height: 48px !important;
  padding: 0 22px !important;
  font-size: 0.92rem !important;
}

body .truck-cta-final__chips {
  display: none !important;
}

@media (max-width: 768px) {
  body .truck-cta-final {
    width: calc(100% - 24px) !important;
    padding: 30px 18px !important;
    border-radius: 26px !important;
  }

  body .truck-cta-final__title {
    font-size: clamp(1.75rem, 8vw, 2.55rem) !important;
  }

  body .truck-cta-final__actions {
    flex-direction: column !important;
  }

  body .truck-cta-final__btn {
    width: 100% !important;
  }
}

/* Página Segurança */
.security-page-hero {
  width: min(1180px, calc(100% - 32px));
  margin: 72px auto 0;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 58px;
  align-items: center;
}

.security-page-badge {
  display: inline-flex;
  color: #FFC247;
  border: 1px solid rgba(255, 194, 71, 0.34);
  background: rgba(255, 138, 31, 0.10);
  border-radius: 999px;
  padding: 10px 14px;
  font-size: 0.86rem;
  font-weight: 900;
}

.security-page-copy h1 {
  margin: 22px 0;
  color: #F8FAFC;
  font-size: clamp(2.7rem, 5vw, 5rem);
  line-height: 0.98;
  letter-spacing: -0.075em;
  max-width: 760px;
}

.security-page-copy p {
  color: #C6D0DB;
  font-size: 1.08rem;
  line-height: 1.76;
  max-width: 690px;
}

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

.security-dashboard-card {
  display: grid;
  place-items: center;
}

.security-map-panel {
  position: relative;
  width: min(540px, 100%);
  min-height: 460px;
  border-radius: 38px;
  overflow: hidden;
  border: 1px solid rgba(255, 194, 71, 0.22);
  background:
    linear-gradient(rgba(255,255,255,0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.045) 1px, transparent 1px),
    radial-gradient(circle at 20% 20%, rgba(255, 138, 31, 0.16), transparent 30%),
    linear-gradient(145deg, #101A24 0%, #07111F 100%);
  background-size: 58px 58px, 58px 58px, auto, auto;
  box-shadow:
    0 34px 100px rgba(0,0,0,0.42),
    0 0 44px rgba(255, 138, 31, 0.10),
    inset 0 1px 0 rgba(255,255,255,0.05);
  transform: perspective(1300px) rotateX(0deg) rotateY(0deg);
  transition: transform .30s ease, box-shadow .30s ease;
}

.security-map-panel:hover,
.security-map-panel:active {
  transform: perspective(1300px) rotateX(4deg) rotateY(-5deg) translateY(-8px);
  box-shadow:
    0 42px 110px rgba(0,0,0,0.50),
    0 0 58px rgba(255, 138, 31, 0.16);
}

.security-map-line {
  position: absolute;
  left: 16%;
  top: 68%;
  width: 70%;
  height: 5px;
  border-radius: 999px;
  transform: rotate(-25deg);
  background: linear-gradient(90deg, #22E6C1, #FF9A1F);
  box-shadow: 0 0 24px rgba(255, 138, 31, 0.26);
}

.security-map-point {
  position: absolute;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #FFC247;
  border: 5px solid #F8FAFC;
  box-shadow: 0 0 26px rgba(255, 194, 71, 0.50);
}

.security-map-point-a {
  left: 18%;
  top: 62%;
}

.security-map-point-b {
  right: 14%;
  top: 31%;
}

.security-floating-card {
  position: absolute;
  padding: 16px 18px;
  border-radius: 22px;
  background: rgba(7, 17, 31, 0.86);
  border: 1px solid rgba(255, 194, 71, 0.16);
  box-shadow: 0 20px 50px rgba(0,0,0,0.30);
}

.security-floating-card span {
  display: block;
  color: #FFC247;
  font-size: 0.78rem;
  font-weight: 900;
  margin-bottom: 5px;
}

.security-floating-card strong {
  color: #F8FAFC;
  font-size: 1rem;
}

.card-driver {
  left: 8%;
  top: 14%;
}

.card-route {
  right: 7%;
  top: 47%;
}

.card-proof {
  left: 22%;
  bottom: 12%;
}

.security-before-section,
.security-during-section,
.security-after-section,
.security-two-sides-section,
.security-steps-section,
.security-final-cta {
  width: min(1180px, calc(100% - 32px));
  margin: 96px auto 0;
}

.security-before-section {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 32px;
  align-items: center;
  padding: 40px;
  border-radius: 40px;
  border: 1px solid rgba(255, 194, 71, 0.22);
  background:
    radial-gradient(circle at 12% 10%, rgba(255, 244, 214, 0.26), transparent 24%),
    radial-gradient(circle at 92% 88%, rgba(120, 57, 0, 0.20), transparent 32%),
    linear-gradient(145deg, #FF9A1F 0%, #F59E0B 54%, #FFC247 100%);
  box-shadow: 0 30px 90px rgba(0,0,0,0.28);
  transition: transform .30s ease, box-shadow .30s ease, background .30s ease;
}

.security-before-section:hover,
.security-before-section:active {
  transform: perspective(1400px) rotateX(3deg) rotateY(-3deg) translateY(-6px);
  background:
    radial-gradient(circle at 12% 10%, rgba(255,255,255,0.30), transparent 24%),
    radial-gradient(circle at 92% 88%, rgba(255, 122, 0, 0.22), transparent 32%),
    linear-gradient(145deg, #FFC247 0%, #FF9A1F 50%, #F97316 100%);
}

.security-before-copy span {
  display: inline-flex;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.24);
  color: #07111F;
  font-weight: 900;
}

.security-before-copy h2 {
  margin-top: 18px;
  color: #07111F;
  font-size: clamp(2.2rem, 4.6vw, 4.2rem);
  line-height: 0.98;
  letter-spacing: -0.065em;
}

.security-before-copy p {
  margin-top: 18px;
  color: rgba(7,17,31,0.86);
  font-weight: 700;
  line-height: 1.75;
}

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

.security-before-grid div {
  min-height: 165px;
  padding: 24px;
  border-radius: 26px;
  border: 1px solid rgba(7,17,31,0.16);
  background:
    linear-gradient(145deg, rgba(7, 17, 31, 0.16), rgba(7, 17, 31, 0.07)),
    rgba(255,255,255,0.18);
  box-shadow: 0 22px 46px rgba(73,37,0,0.15);
}

.security-before-grid strong {
  display: block;
  color: #07111F;
  font-size: 1.18rem;
  font-weight: 950;
  margin-bottom: 10px;
}

.security-before-grid p {
  color: rgba(7,17,31,0.84);
  font-weight: 650;
  line-height: 1.66;
}

.security-during-section .section-title,
.security-after-section .section-title,
.security-two-sides-section .section-title,
.security-steps-section .section-title {
  max-width: 940px;
}

.security-section-subtitle {
  margin-top: 16px;
  color: #C6D0DB;
  font-size: 1.06rem;
  line-height: 1.72;
}

.security-feature-grid,
.security-after-grid,
.security-steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.security-feature-card,
.security-after-card,
.security-step-card {
  position: relative;
  min-height: 265px;
  padding: 28px;
  border-radius: 30px;
  border: 1px solid rgba(255,255,255,0.10);
  background:
    linear-gradient(145deg, rgba(255,255,255,0.06), rgba(255,255,255,0.03)),
    linear-gradient(180deg, rgba(255, 194, 71, 0.03), rgba(255, 138, 31, 0.02));
  box-shadow:
    0 18px 40px rgba(0,0,0,0.20),
    inset 0 1px 0 rgba(255,255,255,0.04);
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease, background .28s ease;
  overflow: hidden;
}

.security-feature-card::before,
.security-after-card::before,
.security-step-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right, rgba(255, 194, 71, 0.11), transparent 30%),
    radial-gradient(circle at bottom left, rgba(255, 138, 31, 0.08), transparent 28%);
  opacity: 0.75;
  pointer-events: none;
}

.security-feature-card:hover,
.security-feature-card:active,
.security-after-card:hover,
.security-after-card:active,
.security-step-card:hover,
.security-step-card:active {
  transform: perspective(1200px) rotateX(4deg) rotateY(-4deg) translateY(-8px);
  border-color: rgba(255, 194, 71, 0.52);
  background:
    linear-gradient(145deg, rgba(255, 194, 71, 0.14), rgba(255, 138, 31, 0.09)),
    linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.02));
  box-shadow:
    0 28px 64px rgba(0,0,0,0.30),
    0 0 38px rgba(255, 138, 31, 0.16);
}

.security-feature-icon {
  position: relative;
  z-index: 1;
  width: 58px;
  height: 58px;
  border-radius: 20px;
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  background: rgba(255, 194, 71, 0.12);
  border: 1px solid rgba(255, 194, 71, 0.16);
  font-size: 1.75rem;
}

.security-feature-card h3,
.security-feature-card p,
.security-after-card h3,
.security-after-card p,
.security-step-card h3,
.security-step-card p {
  position: relative;
  z-index: 1;
}

.security-feature-card h3,
.security-after-card h3,
.security-step-card h3 {
  color: #F8FAFC;
  font-size: 1.42rem;
  line-height: 1.08;
  margin-bottom: 14px;
}

.security-feature-card p,
.security-after-card p,
.security-step-card p {
  color: #C6D0DB;
  line-height: 1.72;
}

.security-feature-card:hover h3,
.security-after-card:hover h3,
.security-step-card:hover h3 {
  color: #FFC247;
}

.security-two-sides-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.security-side-card {
  position: relative;
  overflow: hidden;
  padding: 34px;
  border-radius: 34px;
  border: 1px solid rgba(255, 194, 71, 0.22);
  background:
    radial-gradient(circle at top right, rgba(255, 138, 31, 0.14), transparent 30%),
    linear-gradient(145deg, rgba(255,255,255,0.07), rgba(255,255,255,0.035)),
    #101A24;
  box-shadow: 0 26px 70px rgba(0,0,0,0.30);
  transition: transform .28s ease, border-color .28s ease, box-shadow .28s ease;
}

.security-side-card:hover,
.security-side-card:active {
  transform: translateY(-7px);
  border-color: rgba(255, 194, 71, 0.44);
  box-shadow: 0 34px 90px rgba(0,0,0,0.38), 0 0 42px rgba(255, 138, 31, 0.12);
}

.security-side-card span {
  display: inline-flex;
  color: #FFC247;
  font-weight: 900;
  margin-bottom: 14px;
}

.security-side-card h3 {
  color: #F8FAFC;
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  line-height: 1.02;
  letter-spacing: -0.055em;
  margin-bottom: 20px;
}

.security-side-card ul {
  margin: 0;
  padding-left: 20px;
  color: #C6D0DB;
  display: grid;
  gap: 12px;
  line-height: 1.55;
}

.security-final-cta {
  text-align: center;
  padding: 52px 24px;
  border-radius: 34px;
  border: 1px solid rgba(255, 194, 71, 0.28);
  background:
    radial-gradient(circle at 18% 18%, rgba(255,255,255,0.26), transparent 24%),
    radial-gradient(circle at 88% 90%, rgba(126,54,0,0.22), transparent 34%),
    linear-gradient(145deg, #FF9A1F 0%, #F59E0B 55%, #FFC247 100%);
  box-shadow: 0 32px 90px rgba(0,0,0,0.30);
}

.security-final-cta h2 {
  color: #07111F;
  font-size: clamp(2rem, 3.8vw, 3.5rem);
  line-height: 1.02;
  letter-spacing: -0.055em;
  max-width: 850px;
  margin: 0 auto;
}

.security-final-cta p {
  color: rgba(7,17,31,0.88);
  font-weight: 700;
  max-width: 760px;
  margin: 18px auto 26px;
  line-height: 1.65;
}

.security-final-cta div {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.security-final-cta .primary-btn {
  background: #07111F;
  color: #FFC247;
}

.security-final-cta .secondary-btn {
  color: #07111F;
  background: rgba(255,255,255,0.18);
  border-color: rgba(7,17,31,0.20);
  font-weight: 950;
}

@media (max-width: 920px) {
  .security-page-hero,
  .security-before-section {
    grid-template-columns: 1fr;
  }

  .security-page-hero {
    margin-top: 40px;
    gap: 30px;
  }

  .security-page-copy h1 {
    font-size: clamp(2.25rem, 11vw, 3.5rem);
  }

  .security-page-actions {
    flex-direction: column;
  }

  .security-page-actions a {
    width: 100%;
  }

  .security-map-panel {
    min-height: 390px;
  }

  .security-before-section {
    padding: 28px 22px;
  }

  .security-before-grid,
  .security-feature-grid,
  .security-after-grid,
  .security-steps-grid,
  .security-two-sides-grid {
    grid-template-columns: 1fr;
  }

  .security-feature-card,
  .security-after-card,
  .security-step-card {
    min-height: 220px;
  }

  .security-final-cta {
    padding: 40px 18px;
    border-radius: 28px;
  }

  .security-final-cta div {
    flex-direction: column;
  }

  .security-final-cta a {
    width: 100%;
  }
}

@media (max-width: 430px) {
  .security-floating-card {
    padding: 12px 14px;
  }

  .security-floating-card strong {
    font-size: 0.88rem;
  }

  .card-route {
    right: 4%;
  }
}

/* Página Segurança */
.security-page-hero {
  width: min(1180px, calc(100% - 32px));
  margin: 72px auto 0;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 58px;
  align-items: center;
}

.security-page-badge {
  display: inline-flex;
  color: #FFC247;
  border: 1px solid rgba(255, 194, 71, 0.34);
  background: rgba(255, 138, 31, 0.10);
  border-radius: 999px;
  padding: 10px 14px;
  font-size: 0.86rem;
  font-weight: 900;
}

.security-page-copy h1 {
  margin: 22px 0;
  color: #F8FAFC;
  font-size: clamp(2.7rem, 5vw, 5rem);
  line-height: 0.98;
  letter-spacing: -0.075em;
  max-width: 760px;
}

.security-page-copy p {
  color: #C6D0DB;
  font-size: 1.08rem;
  line-height: 1.76;
  max-width: 690px;
}

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

.security-dashboard-card {
  display: grid;
  place-items: center;
}

.security-map-panel {
  position: relative;
  width: min(540px, 100%);
  min-height: 460px;
  border-radius: 38px;
  overflow: hidden;
  border: 1px solid rgba(255, 194, 71, 0.22);
  background:
    linear-gradient(rgba(255,255,255,0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.045) 1px, transparent 1px),
    radial-gradient(circle at 20% 20%, rgba(255, 138, 31, 0.16), transparent 30%),
    linear-gradient(145deg, #101A24 0%, #07111F 100%);
  background-size: 58px 58px, 58px 58px, auto, auto;
  box-shadow:
    0 34px 100px rgba(0,0,0,0.42),
    0 0 44px rgba(255, 138, 31, 0.10),
    inset 0 1px 0 rgba(255,255,255,0.05);
  transform: perspective(1300px) rotateX(0deg) rotateY(0deg);
  transition: transform .30s ease, box-shadow .30s ease;
}

.security-map-panel:hover,
.security-map-panel:active {
  transform: perspective(1300px) rotateX(4deg) rotateY(-5deg) translateY(-8px);
  box-shadow:
    0 42px 110px rgba(0,0,0,0.50),
    0 0 58px rgba(255, 138, 31, 0.16);
}

.security-map-line {
  position: absolute;
  left: 16%;
  top: 68%;
  width: 70%;
  height: 5px;
  border-radius: 999px;
  transform: rotate(-25deg);
  background: linear-gradient(90deg, #22E6C1, #FF9A1F);
  box-shadow: 0 0 24px rgba(255, 138, 31, 0.26);
}

.security-map-point {
  position: absolute;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #FFC247;
  border: 5px solid #F8FAFC;
  box-shadow: 0 0 26px rgba(255, 194, 71, 0.50);
}

.security-map-point-a {
  left: 18%;
  top: 62%;
}

.security-map-point-b {
  right: 14%;
  top: 31%;
}

.security-floating-card {
  position: absolute;
  padding: 16px 18px;
  border-radius: 22px;
  background: rgba(7, 17, 31, 0.86);
  border: 1px solid rgba(255, 194, 71, 0.16);
  box-shadow: 0 20px 50px rgba(0,0,0,0.30);
}

.security-floating-card span {
  display: block;
  color: #FFC247;
  font-size: 0.78rem;
  font-weight: 900;
  margin-bottom: 5px;
}

.security-floating-card strong {
  color: #F8FAFC;
  font-size: 1rem;
}

.card-driver {
  left: 8%;
  top: 14%;
}

.card-route {
  right: 7%;
  top: 47%;
}

.card-proof {
  left: 22%;
  bottom: 12%;
}

.security-before-section,
.security-during-section,
.security-after-section,
.security-two-sides-section,
.security-steps-section,
.security-final-cta {
  width: min(1180px, calc(100% - 32px));
  margin: 96px auto 0;
}

.security-before-section {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 32px;
  align-items: center;
  padding: 40px;
  border-radius: 40px;
  border: 1px solid rgba(255, 194, 71, 0.22);
  background:
    radial-gradient(circle at 12% 10%, rgba(255, 244, 214, 0.26), transparent 24%),
    radial-gradient(circle at 92% 88%, rgba(120, 57, 0, 0.20), transparent 32%),
    linear-gradient(145deg, #FF9A1F 0%, #F59E0B 54%, #FFC247 100%);
  box-shadow: 0 30px 90px rgba(0,0,0,0.28);
  transition: transform .30s ease, box-shadow .30s ease, background .30s ease;
}

.security-before-section:hover,
.security-before-section:active {
  transform: perspective(1400px) rotateX(3deg) rotateY(-3deg) translateY(-6px);
  background:
    radial-gradient(circle at 12% 10%, rgba(255,255,255,0.30), transparent 24%),
    radial-gradient(circle at 92% 88%, rgba(255, 122, 0, 0.22), transparent 32%),
    linear-gradient(145deg, #FFC247 0%, #FF9A1F 50%, #F97316 100%);
}

.security-before-copy span {
  display: inline-flex;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.24);
  color: #07111F;
  font-weight: 900;
}

.security-before-copy h2 {
  margin-top: 18px;
  color: #07111F;
  font-size: clamp(2.2rem, 4.6vw, 4.2rem);
  line-height: 0.98;
  letter-spacing: -0.065em;
}

.security-before-copy p {
  margin-top: 18px;
  color: rgba(7,17,31,0.86);
  font-weight: 700;
  line-height: 1.75;
}

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

.security-before-grid div {
  min-height: 165px;
  padding: 24px;
  border-radius: 26px;
  border: 1px solid rgba(7,17,31,0.16);
  background:
    linear-gradient(145deg, rgba(7, 17, 31, 0.16), rgba(7, 17, 31, 0.07)),
    rgba(255,255,255,0.18);
  box-shadow: 0 22px 46px rgba(73,37,0,0.15);
}

.security-before-grid strong {
  display: block;
  color: #07111F;
  font-size: 1.18rem;
  font-weight: 950;
  margin-bottom: 10px;
}

.security-before-grid p {
  color: rgba(7,17,31,0.84);
  font-weight: 650;
  line-height: 1.66;
}

.security-during-section .section-title,
.security-after-section .section-title,
.security-two-sides-section .section-title,
.security-steps-section .section-title {
  max-width: 940px;
}

.security-section-subtitle {
  margin-top: 16px;
  color: #C6D0DB;
  font-size: 1.06rem;
  line-height: 1.72;
}

.security-feature-grid,
.security-after-grid,
.security-steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.security-feature-card,
.security-after-card,
.security-step-card {
  position: relative;
  min-height: 265px;
  padding: 28px;
  border-radius: 30px;
  border: 1px solid rgba(255,255,255,0.10);
  background:
    linear-gradient(145deg, rgba(255,255,255,0.06), rgba(255,255,255,0.03)),
    linear-gradient(180deg, rgba(255, 194, 71, 0.03), rgba(255, 138, 31, 0.02));
  box-shadow:
    0 18px 40px rgba(0,0,0,0.20),
    inset 0 1px 0 rgba(255,255,255,0.04);
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease, background .28s ease;
  overflow: hidden;
}

.security-feature-card::before,
.security-after-card::before,
.security-step-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right, rgba(255, 194, 71, 0.11), transparent 30%),
    radial-gradient(circle at bottom left, rgba(255, 138, 31, 0.08), transparent 28%);
  opacity: 0.75;
  pointer-events: none;
}

.security-feature-card:hover,
.security-feature-card:active,
.security-after-card:hover,
.security-after-card:active,
.security-step-card:hover,
.security-step-card:active {
  transform: perspective(1200px) rotateX(4deg) rotateY(-4deg) translateY(-8px);
  border-color: rgba(255, 194, 71, 0.52);
  background:
    linear-gradient(145deg, rgba(255, 194, 71, 0.14), rgba(255, 138, 31, 0.09)),
    linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.02));
  box-shadow:
    0 28px 64px rgba(0,0,0,0.30),
    0 0 38px rgba(255, 138, 31, 0.16);
}

.security-feature-icon {
  position: relative;
  z-index: 1;
  width: 58px;
  height: 58px;
  border-radius: 20px;
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  background: rgba(255, 194, 71, 0.12);
  border: 1px solid rgba(255, 194, 71, 0.16);
  font-size: 1.75rem;
}

.security-feature-card h3,
.security-feature-card p,
.security-after-card h3,
.security-after-card p,
.security-step-card h3,
.security-step-card p {
  position: relative;
  z-index: 1;
}

.security-feature-card h3,
.security-after-card h3,
.security-step-card h3 {
  color: #F8FAFC;
  font-size: 1.42rem;
  line-height: 1.08;
  margin-bottom: 14px;
}

.security-feature-card p,
.security-after-card p,
.security-step-card p {
  color: #C6D0DB;
  line-height: 1.72;
}

.security-feature-card:hover h3,
.security-after-card:hover h3,
.security-step-card:hover h3 {
  color: #FFC247;
}

.security-two-sides-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.security-side-card {
  position: relative;
  overflow: hidden;
  padding: 34px;
  border-radius: 34px;
  border: 1px solid rgba(255, 194, 71, 0.22);
  background:
    radial-gradient(circle at top right, rgba(255, 138, 31, 0.14), transparent 30%),
    linear-gradient(145deg, rgba(255,255,255,0.07), rgba(255,255,255,0.035)),
    #101A24;
  box-shadow: 0 26px 70px rgba(0,0,0,0.30);
  transition: transform .28s ease, border-color .28s ease, box-shadow .28s ease;
}

.security-side-card:hover,
.security-side-card:active {
  transform: translateY(-7px);
  border-color: rgba(255, 194, 71, 0.44);
  box-shadow: 0 34px 90px rgba(0,0,0,0.38), 0 0 42px rgba(255, 138, 31, 0.12);
}

.security-side-card span {
  display: inline-flex;
  color: #FFC247;
  font-weight: 900;
  margin-bottom: 14px;
}

.security-side-card h3 {
  color: #F8FAFC;
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  line-height: 1.02;
  letter-spacing: -0.055em;
  margin-bottom: 20px;
}

.security-side-card ul {
  margin: 0;
  padding-left: 20px;
  color: #C6D0DB;
  display: grid;
  gap: 12px;
  line-height: 1.55;
}

.security-final-cta {
  text-align: center;
  padding: 52px 24px;
  border-radius: 34px;
  border: 1px solid rgba(255, 194, 71, 0.28);
  background:
    radial-gradient(circle at 18% 18%, rgba(255,255,255,0.26), transparent 24%),
    radial-gradient(circle at 88% 90%, rgba(126,54,0,0.22), transparent 34%),
    linear-gradient(145deg, #FF9A1F 0%, #F59E0B 55%, #FFC247 100%);
  box-shadow: 0 32px 90px rgba(0,0,0,0.30);
}

.security-final-cta h2 {
  color: #07111F;
  font-size: clamp(2rem, 3.8vw, 3.5rem);
  line-height: 1.02;
  letter-spacing: -0.055em;
  max-width: 850px;
  margin: 0 auto;
}

.security-final-cta p {
  color: rgba(7,17,31,0.88);
  font-weight: 700;
  max-width: 760px;
  margin: 18px auto 26px;
  line-height: 1.65;
}

.security-final-cta div {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.security-final-cta .primary-btn {
  background: #07111F;
  color: #FFC247;
}

.security-final-cta .secondary-btn {
  color: #07111F;
  background: rgba(255,255,255,0.18);
  border-color: rgba(7,17,31,0.20);
  font-weight: 950;
}

@media (max-width: 920px) {
  .security-page-hero,
  .security-before-section {
    grid-template-columns: 1fr;
  }

  .security-page-hero {
    margin-top: 40px;
    gap: 30px;
  }

  .security-page-copy h1 {
    font-size: clamp(2.25rem, 11vw, 3.5rem);
  }

  .security-page-actions {
    flex-direction: column;
  }

  .security-page-actions a {
    width: 100%;
  }

  .security-map-panel {
    min-height: 390px;
  }

  .security-before-section {
    padding: 28px 22px;
  }

  .security-before-grid,
  .security-feature-grid,
  .security-after-grid,
  .security-steps-grid,
  .security-two-sides-grid {
    grid-template-columns: 1fr;
  }

  .security-feature-card,
  .security-after-card,
  .security-step-card {
    min-height: 220px;
  }

  .security-final-cta {
    padding: 40px 18px;
    border-radius: 28px;
  }

  .security-final-cta div {
    flex-direction: column;
  }

  .security-final-cta a {
    width: 100%;
  }
}

@media (max-width: 430px) {
  .security-floating-card {
    padding: 12px 14px;
  }

  .security-floating-card strong {
    font-size: 0.88rem;
  }

  .card-route {
    right: 4%;
  }
}


/* Segurança hero selfie mockup */
.security-dashboard-card {
  position: relative;
  display: grid;
  place-items: center;
}

.security-verification-phone {
  position: relative;
  width: min(420px, 100%);
  min-height: 560px;
  padding: 16px;
  border-radius: 42px;
  border: 1px solid rgba(255, 194, 71, 0.22);
  background:
    radial-gradient(circle at 20% 10%, rgba(255, 138, 31, 0.12), transparent 26%),
    linear-gradient(145deg, #18222c 0%, #0c1520 100%);
  box-shadow:
    0 34px 100px rgba(0,0,0,0.46),
    0 0 42px rgba(255, 138, 31, 0.10),
    inset 0 1px 0 rgba(255,255,255,0.05);
  transition: transform .30s ease, box-shadow .30s ease;
}

.security-verification-phone:hover,
.security-verification-phone:active {
  transform: perspective(1300px) rotateX(4deg) rotateY(-5deg) translateY(-8px);
  box-shadow:
    0 42px 110px rgba(0,0,0,0.52),
    0 0 60px rgba(255, 138, 31, 0.18);
}

.security-phone-topbar {
  width: 108px;
  height: 6px;
  border-radius: 999px;
  margin: 0 auto 14px;
  background: rgba(255,255,255,0.32);
}

.security-phone-screen {
  position: relative;
  min-height: 510px;
  padding: 22px;
  border-radius: 32px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.05);
  background:
    radial-gradient(circle at top right, rgba(255, 194, 71, 0.08), transparent 24%),
    linear-gradient(180deg, #07111F 0%, #0A1727 100%);
}

.security-phone-label {
  display: inline-flex;
  margin-bottom: 18px;
  color: #FFC247;
  font-size: 0.88rem;
  font-weight: 900;
}

.security-selfie-frame {
  position: relative;
  min-height: 235px;
  border-radius: 28px;
  border: 1px solid rgba(255, 194, 71, 0.16);
  background:
    radial-gradient(circle at 50% 24%, rgba(255,255,255,0.08), transparent 24%),
    linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.02));
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.04);
}

.security-selfie-avatar {
  position: relative;
  width: 130px;
  height: 150px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.security-avatar-head {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: linear-gradient(180deg, #FFC247, #FF9A1F);
  box-shadow: 0 0 26px rgba(255, 194, 71, 0.26);
}

.security-avatar-body {
  width: 98px;
  height: 72px;
  border-radius: 28px 28px 16px 16px;
  margin-top: 10px;
  background: linear-gradient(180deg, #FFC247, #FF9A1F);
  box-shadow: 0 0 26px rgba(255, 154, 31, 0.20);
}

.security-face-corner {
  position: absolute;
  width: 28px;
  height: 28px;
  border-color: #22E6C1;
  border-style: solid;
  opacity: 0.95;
  box-shadow: 0 0 16px rgba(34, 230, 193, 0.28);
}

.corner-1 { top: 26px; left: 26px; border-width: 3px 0 0 3px; border-radius: 10px 0 0 0; }
.corner-2 { top: 26px; right: 26px; border-width: 3px 3px 0 0; border-radius: 0 10px 0 0; }
.corner-3 { bottom: 26px; left: 26px; border-width: 0 0 3px 3px; border-radius: 0 0 0 10px; }
.corner-4 { bottom: 26px; right: 26px; border-width: 0 3px 3px 0; border-radius: 0 0 10px 0; }

.security-scan-line {
  position: absolute;
  left: 16%;
  right: 16%;
  top: 50%;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, #22E6C1, transparent);
  box-shadow: 0 0 22px rgba(34, 230, 193, 0.34);
}

.security-scan-status {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 16px;
  padding: 12px 14px;
  border-radius: 18px;
  background: rgba(7, 17, 31, 0.86);
  border: 1px solid rgba(255, 194, 71, 0.14);
}

.security-scan-status span {
  display: block;
  color: #9FB0C5;
  font-size: 0.78rem;
  margin-bottom: 3px;
}

.security-scan-status strong {
  color: #F8FAFC;
  font-size: 0.98rem;
}

.security-verification-status {
  margin-top: 18px;
  padding: 16px;
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.03);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.security-verification-status span {
  display: block;
  color: #9FB0C5;
  font-size: 0.76rem;
  margin-bottom: 4px;
}

.security-verification-status strong {
  color: #F8FAFC;
  font-size: 1rem;
}

.security-ok-pill {
  white-space: nowrap;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(34, 230, 193, 0.12);
  border: 1px solid rgba(34, 230, 193, 0.24);
  color: #22E6C1;
  font-weight: 900;
  font-size: 0.82rem;
}

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

.security-mini-item {
  padding: 16px 14px;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.03);
}

.security-mini-item span {
  display: block;
  color: #9FB0C5;
  font-size: 0.75rem;
  margin-bottom: 4px;
}

.security-mini-item strong {
  color: #F8FAFC;
  font-size: 0.95rem;
}

.security-approval-card {
  margin-top: 14px;
  padding: 18px 16px;
  border-radius: 22px;
  border: 1px solid rgba(255, 194, 71, 0.16);
  background: linear-gradient(145deg, rgba(255, 194, 71, 0.08), rgba(255, 138, 31, 0.05));
}

.security-approval-card span {
  display: block;
  color: #FFC247;
  font-size: 0.78rem;
  font-weight: 900;
  margin-bottom: 5px;
}

.security-approval-card strong {
  color: #F8FAFC;
  font-size: 1rem;
}

.security-identity-toast {
  position: absolute;
  right: -18px;
  bottom: 32px;
  max-width: 230px;
  padding: 14px 16px;
  border-radius: 20px;
  background: rgba(7, 17, 31, 0.92);
  border: 1px solid rgba(255, 194, 71, 0.16);
  box-shadow: 0 18px 44px rgba(0,0,0,0.34);
}

.security-identity-toast span {
  display: block;
  color: #FFC247;
  font-size: 0.75rem;
  font-weight: 900;
  margin-bottom: 4px;
}

.security-identity-toast strong {
  color: #F8FAFC;
  font-size: 0.94rem;
  line-height: 1.35;
}

@media (max-width: 920px) {
  .security-verification-phone {
    width: min(390px, 100%);
    min-height: 520px;
  }

  .security-phone-screen {
    min-height: 470px;
  }

  .security-identity-toast {
    position: static;
    margin-top: 14px;
    max-width: 100%;
  }
}

@media (max-width: 430px) {
  .security-mini-grid {
    grid-template-columns: 1fr;
  }

  .security-verification-status {
    flex-direction: column;
    align-items: flex-start;
  }

  .security-ok-pill {
    width: 100%;
    text-align: center;
  }
}

/* Segurança - remove badge flutuante se ainda existir por cache */
.security-identity-toast {
  display: none !important;
}

/* Segurança - Depois da entrega premium */
.security-after-premium .section-title {
  max-width: 980px;
}

.security-after-premium .security-after-card {
  min-height: 285px;
  padding-top: 30px;
}

.security-after-icon {
  position: relative;
  z-index: 1;
  width: 58px;
  height: 58px;
  border-radius: 20px;
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  background: rgba(255, 194, 71, 0.12);
  border: 1px solid rgba(255, 194, 71, 0.16);
  font-size: 1.75rem;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.04);
  transition: transform .24s ease, background .24s ease;
}

.security-after-card:hover .security-after-icon,
.security-after-card:active .security-after-icon {
  transform: translateY(-2px) scale(1.04);
  background: linear-gradient(135deg, #FF8A1F, #FFC247);
}

.security-after-premium .security-after-card:hover,
.security-after-premium .security-after-card:active {
  border-color: rgba(255, 194, 71, 0.58);
  background:
    linear-gradient(145deg, rgba(255, 194, 71, 0.17), rgba(255, 138, 31, 0.11)),
    linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
}

.security-after-premium .security-after-card h3 {
  font-size: 1.5rem;
}

@media (max-width: 920px) {
  .security-after-premium .security-after-card {
    min-height: 225px;
  }
}

/* Segurança - proteção para os dois lados premium */
.security-two-sides-premium .security-side-card {
  min-height: 360px;
  transform: perspective(1200px) rotateX(0deg) rotateY(0deg) translateY(0);
}

.security-two-sides-premium .security-side-card:hover,
.security-two-sides-premium .security-side-card:active {
  transform: perspective(1200px) rotateX(3deg) rotateY(-3deg) translateY(-8px);
  border-color: rgba(255, 194, 71, 0.56);
  background:
    radial-gradient(circle at top right, rgba(255, 138, 31, 0.20), transparent 32%),
    linear-gradient(145deg, rgba(255, 194, 71, 0.12), rgba(255,255,255,0.04)),
    #101A24;
  box-shadow:
    0 36px 95px rgba(0,0,0,0.40),
    0 0 46px rgba(255, 138, 31, 0.14);
}

.security-side-list {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}

.security-side-list div {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: #D7E1EC;
  font-size: 1.02rem;
  line-height: 1.48;
  padding: 13px 14px;
  border-radius: 18px;
  background: rgba(255,255,255,0.045);
  border: 1px solid rgba(255,255,255,0.07);
  transition: transform .22s ease, background .22s ease, border-color .22s ease;
}

.security-side-list b {
  width: 24px;
  height: 24px;
  border-radius: 999px;
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  color: #07111F;
  background: linear-gradient(135deg, #22E6C1, #FFC247);
  font-size: 0.86rem;
  font-weight: 950;
  box-shadow: 0 0 18px rgba(34,230,193,0.14);
}

.security-side-card:hover .security-side-list div,
.security-side-card:active .security-side-list div {
  background: rgba(255, 138, 31, 0.08);
  border-color: rgba(255, 194, 71, 0.16);
}

.security-side-card:hover .security-side-list div:hover {
  transform: translateX(4px);
}

@media (max-width: 920px) {
  .security-two-sides-premium .security-side-card {
    min-height: auto;
  }

  .security-side-list div {
    font-size: 0.96rem;
  }
}

/* Página Planos */
.plans-hero {
  width: min(1080px, calc(100% - 32px));
  margin: 76px auto 0;
  text-align: center;
}

.plans-badge {
  display: inline-flex;
  color: #FFC247;
  border: 1px solid rgba(255, 194, 71, 0.34);
  background: rgba(255, 138, 31, 0.10);
  border-radius: 999px;
  padding: 10px 14px;
  font-size: 0.86rem;
  font-weight: 900;
}

.plans-hero h1 {
  margin: 22px auto 0;
  color: #F8FAFC;
  font-size: clamp(2.5rem, 5vw, 4.8rem);
  line-height: 0.98;
  letter-spacing: -0.075em;
  max-width: 950px;
}

.plans-hero p {
  color: #C6D0DB;
  font-size: 1.08rem;
  line-height: 1.76;
  max-width: 820px;
  margin: 22px auto 0;
}

.plans-tabs {
  margin: 34px auto 0;
  display: inline-flex;
  gap: 10px;
  padding: 8px;
  border-radius: 999px;
  background: rgba(255,255,255,0.045);
  border: 1px solid rgba(255, 194, 71, 0.16);
}

.plans-tab {
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  border: 0;
  cursor: pointer;
  background: transparent;
  color: #C6D0DB;
  font-weight: 950;
  transition: background .22s ease, color .22s ease, transform .22s ease;
}

.plans-tab.active {
  color: #07111F;
  background: linear-gradient(135deg, #FF8A1F, #FFC247);
  box-shadow: 0 16px 34px rgba(255,138,31,0.16);
}

.plans-section {
  width: min(1180px, calc(100% - 32px));
  margin: 70px auto 0;
}

.plan-panel {
  display: none;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 24px;
  align-items: stretch;
}

.plan-panel.active {
  display: grid;
}

.launch-plan-card {
  position: relative;
  overflow: hidden;
  padding: 38px;
  border-radius: 40px;
  border: 1px solid rgba(255, 194, 71, 0.28);
  background:
    radial-gradient(circle at 18% 18%, rgba(255,255,255,0.26), transparent 24%),
    radial-gradient(circle at 88% 90%, rgba(126,54,0,0.22), transparent 34%),
    linear-gradient(145deg, #FF9A1F 0%, #F59E0B 55%, #FFC247 100%);
  box-shadow:
    0 32px 90px rgba(0,0,0,0.30),
    inset 0 1px 0 rgba(255,255,255,0.18);
  transform: perspective(1400px) rotateX(0deg) rotateY(0deg);
  transition: transform .30s ease, box-shadow .30s ease;
}

.launch-plan-card:hover,
.launch-plan-card:active {
  transform: perspective(1400px) rotateX(3deg) rotateY(-3deg) translateY(-6px);
  box-shadow:
    0 38px 110px rgba(0,0,0,0.36),
    0 0 58px rgba(255,138,31,0.18);
}

.launch-plan-head {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: center;
  margin-bottom: 26px;
}

.launch-plan-head span,
.launch-plan-head strong {
  display: inline-flex;
  padding: 10px 14px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 950;
}

.launch-plan-head span {
  color: #07111F;
  background: rgba(255,255,255,0.24);
  border: 1px solid rgba(7,17,31,0.12);
}

.launch-plan-head strong {
  color: #FFC247;
  background: #07111F;
}

.launch-plan-card h2 {
  color: #07111F;
  font-size: clamp(2.2rem, 4.2vw, 4.3rem);
  line-height: 0.98;
  letter-spacing: -0.07em;
  margin: 0 0 20px;
}

.plan-price {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  color: #07111F;
  margin-bottom: 20px;
}

.plan-price small {
  font-size: 1.3rem;
  font-weight: 950;
  margin-bottom: 10px;
}

.plan-price strong {
  font-size: clamp(3.3rem, 7vw, 6.3rem);
  line-height: 0.82;
  letter-spacing: -0.08em;
  font-weight: 950;
}

.plan-price span {
  font-weight: 950;
  font-size: 1.05rem;
  margin-bottom: 10px;
}

.plan-description {
  color: rgba(7,17,31,0.88);
  font-weight: 700;
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 680px;
}

.plan-highlight {
  margin-top: 20px;
  padding: 16px 18px;
  border-radius: 22px;
  background: rgba(255,255,255,0.24);
  border: 1px solid rgba(7,17,31,0.12);
  color: #07111F;
  font-weight: 900;
}

.plan-highlight strong {
  font-weight: 950;
}

.plan-benefits {
  margin-top: 22px;
  display: grid;
  gap: 10px;
}

.plan-benefits div {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: rgba(7,17,31,0.90);
  font-weight: 800;
  line-height: 1.42;
}

.plan-benefits b {
  width: 24px;
  height: 24px;
  border-radius: 999px;
  display: inline-grid;
  place-items: center;
  color: #07111F;
  background: rgba(255,255,255,0.34);
  flex: 0 0 auto;
}

.plan-main-btn {
  margin-top: 28px;
  min-height: 58px;
  padding: 0 26px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #07111F;
  color: #FFC247;
  font-weight: 950;
  text-decoration: none;
  box-shadow: 0 18px 38px rgba(7,17,31,0.24);
}

.plan-note {
  display: block;
  margin-top: 16px;
  color: rgba(7,17,31,0.72);
  font-weight: 800;
  line-height: 1.45;
}

.plan-side-card {
  padding: 34px;
  border-radius: 36px;
  border: 1px solid rgba(255, 194, 71, 0.20);
  background:
    radial-gradient(circle at top right, rgba(255, 138, 31, 0.14), transparent 30%),
    linear-gradient(145deg, rgba(255,255,255,0.07), rgba(255,255,255,0.035)),
    #101A24;
  box-shadow: 0 26px 70px rgba(0,0,0,0.30);
}

.plan-side-card span {
  display: inline-flex;
  color: #FFC247;
  font-weight: 950;
  margin-bottom: 16px;
}

.plan-side-card h3 {
  color: #F8FAFC;
  font-size: clamp(2rem, 3.6vw, 3.4rem);
  line-height: 1;
  letter-spacing: -0.065em;
  margin-bottom: 18px;
}

.plan-side-card p {
  color: #C6D0DB;
  line-height: 1.7;
  font-size: 1.02rem;
}

.plan-side-list {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.plan-side-list div {
  padding: 14px 16px;
  border-radius: 18px;
  color: #D7E1EC;
  font-weight: 850;
  background: rgba(255,255,255,0.045);
  border: 1px solid rgba(255,255,255,0.07);
}

.plans-warning {
  width: min(1180px, calc(100% - 32px));
  margin: 90px auto 0;
  padding: 34px;
  border-radius: 34px;
  border: 1px solid rgba(255, 194, 71, 0.20);
  background:
    linear-gradient(145deg, rgba(255,255,255,0.07), rgba(255,255,255,0.035)),
    #101A24;
}

.plans-warning span {
  color: #FFC247;
  font-weight: 950;
}

.plans-warning h2 {
  color: #F8FAFC;
  font-size: clamp(2rem, 3.6vw, 3.5rem);
  line-height: 1;
  letter-spacing: -0.06em;
  max-width: 850px;
  margin: 14px 0;
}

.plans-warning p {
  color: #C6D0DB;
  line-height: 1.7;
  max-width: 900px;
}

.plans-final-cta {
  width: min(1180px, calc(100% - 32px));
  margin: 90px auto 0;
  text-align: center;
  padding: 46px 24px;
  border-radius: 34px;
  border: 1px solid rgba(255, 194, 71, 0.28);
  background:
    radial-gradient(circle at 18% 18%, rgba(255,255,255,0.26), transparent 24%),
    radial-gradient(circle at 88% 90%, rgba(126,54,0,0.22), transparent 34%),
    linear-gradient(145deg, #FF9A1F 0%, #F59E0B 55%, #FFC247 100%);
  box-shadow: 0 32px 90px rgba(0,0,0,0.30);
}

.plans-final-cta h2 {
  color: #07111F;
  font-size: clamp(2rem, 3.8vw, 3.5rem);
  line-height: 1.02;
  letter-spacing: -0.055em;
  margin: 0 auto;
}

.plans-final-cta p {
  color: rgba(7,17,31,0.88);
  font-weight: 700;
  max-width: 760px;
  margin: 16px auto 24px;
  line-height: 1.65;
}

.plans-final-cta div {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.plans-final-cta .primary-btn {
  background: #07111F;
  color: #FFC247;
}

.plans-final-cta .secondary-btn {
  color: #07111F;
  background: rgba(255,255,255,0.18);
  border-color: rgba(7,17,31,0.20);
  font-weight: 950;
}

@media (max-width: 920px) {
  .plans-hero {
    margin-top: 44px;
  }

  .plans-hero h1 {
    font-size: clamp(2.15rem, 10.5vw, 3.5rem);
  }

  .plans-tabs {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
    border-radius: 24px;
  }

  .plan-panel.active {
    grid-template-columns: 1fr;
  }

  .launch-plan-card,
  .plan-side-card,
  .plans-warning,
  .plans-final-cta {
    padding: 28px 22px;
    border-radius: 30px;
  }

  .launch-plan-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .plan-price strong {
    font-size: clamp(3rem, 18vw, 4.8rem);
  }

  .plans-final-cta div {
    flex-direction: column;
  }

  .plans-final-cta a {
    width: 100%;
  }
}

/* Rodapé premium FreteCiF */
.fretecif-footer {
  width: min(1180px, calc(100% - 32px));
  margin: 96px auto 32px;
  padding: 34px 0 0;
  border-top: 1px solid rgba(255, 194, 71, 0.18);
  color: #C6D0DB;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr;
  gap: 42px;
  align-items: start;
}

.footer-brand .brand {
  display: inline-flex;
  text-decoration: none;
  margin-bottom: 16px;
}

.footer-brand p {
  max-width: 430px;
  color: #AAB7C4;
  line-height: 1.65;
  margin: 0;
}

.footer-col {
  display: grid;
  gap: 10px;
}

.footer-col strong {
  color: #F8FAFC;
  font-size: 1rem;
  margin-bottom: 6px;
}

.footer-col a {
  color: #AAB7C4;
  text-decoration: none;
  transition: color .2s ease, transform .2s ease;
}

.footer-col a:hover {
  color: #FFC247;
  transform: translateX(3px);
}

.footer-bottom {
  margin-top: 30px;
  padding: 22px 0 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  color: #8FA0B2;
  font-size: 0.92rem;
}

.footer-bottom a {
  color: #FFC247;
  font-weight: 900;
  text-decoration: none;
}

.footer-bottom a:hover {
  text-decoration: underline;
}

@media (max-width: 920px) {
  .fretecif-footer {
    margin-top: 72px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

/* Logo oficial FreteCiF */
.brand-logo-img {
  display: block;
  height: 54px;
  width: auto;
  object-fit: contain;
}

.topbar .brand {
  gap: 0;
  text-decoration: none;
}

.mobile-menu-head .brand-logo-img {
  height: 50px;
}

.footer-brand .brand-logo-img {
  height: 58px;
}

@media (max-width: 920px) {
  .brand-logo-img {
    height: 48px;
  }

  .footer-brand .brand-logo-img {
    height: 52px;
  }
}

/* Ajuste definitivo da logo FreteCiF no menu */
.brand-logo-img {
  display: block !important;
  height: 64px !important;
  width: auto !important;
  max-width: 220px !important;
  object-fit: contain !important;
}

.topbar .brand {
  min-width: 190px !important;
  height: auto !important;
  display: flex !important;
  align-items: center !important;
  text-decoration: none !important;
}

.mobile-menu-head .brand-logo-img {
  height: 58px !important;
}

.footer-brand .brand-logo-img {
  height: 68px !important;
}

@media (max-width: 920px) {
  .brand-logo-img {
    height: 56px !important;
    max-width: 185px !important;
  }

  .topbar .brand {
    min-width: 155px !important;
  }
}

/* Ajuste final da logo FreteCiF */
.brand-logo-img {
  width: 190px !important;
  max-width: 190px !important;
  height: auto !important;
  object-fit: contain !important;
}

.mobile-menu-head .brand-logo-img {
  width: 170px !important;
  max-width: 170px !important;
}

.footer-brand .brand-logo-img {
  width: 180px !important;
  max-width: 180px !important;
}

/* Correção mobile: botões Entrar/Fazer cadastro visíveis no menu */
@media (max-width: 900px) {
  .mobile-menu-panel {
    height: 100dvh !important;
    max-height: 100dvh !important;
    overflow-y: auto !important;
    padding-bottom: 22px !important;
  }

  .mobile-menu-links {
    margin-bottom: 14px !important;
  }

  .mobile-menu-actions {
    margin-top: 14px !important;
    padding-top: 14px !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 12px !important;
    border-top: 1px solid rgba(255,255,255,.08) !important;
  }

  .mobile-menu-actions .primary-btn {
    width: 100% !important;
    min-height: 46px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
  }

  .mobile-login-link {
    width: 100% !important;
    min-height: 42px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
  }
}

/* FIX SNIPER MENU MOBILE */
@media (max-width: 900px) {
  .mobile-menu-panel {
    justify-content: flex-start !important;
    gap: 0 !important;
  }

  .mobile-menu-head {
    padding-bottom: 12px !important;
  }

  .mobile-menu-links {
    padding: 12px 0 8px !important;
    gap: 6px !important;
  }

  .mobile-menu-links a {
    min-height: 44px !important;
    padding: 10px 12px !important;
  }

  .mobile-menu-actions {
    margin-top: 4px !important;
    padding-top: 10px !important;
    flex: 0 0 auto !important;
  }

  .mobile-menu-actions .primary-btn {
    min-height: 42px !important;
  }

  .mobile-login-link {
    min-height: 36px !important;
    padding: 6px !important;
  }
}


/* FIX REAL MENU MOBILE - SEM ESPAÇO GIGANTE */
@media (max-width: 900px) {
  .mobile-menu-panel {
    justify-content: flex-start !important;
    height: 100dvh !important;
    max-height: 100dvh !important;
    overflow-y: auto !important;
    padding: 16px !important;
  }

  .mobile-menu-head {
    padding-bottom: 12px !important;
    margin-bottom: 0 !important;
  }

  .mobile-menu-links {
    padding: 14px 0 8px !important;
    margin: 0 !important;
    gap: 7px !important;
  }

  .mobile-menu-links a {
    min-height: 44px !important;
    padding: 10px 12px !important;
    border-radius: 14px !important;
  }

  .mobile-menu-links a span {
    width: 28px !important;
    height: 28px !important;
  }

  .mobile-menu-actions {
    margin-top: 8px !important;
    padding-top: 10px !important;
    display: grid !important;
    gap: 8px !important;
    flex: none !important;
    border-top: 1px solid rgba(255,255,255,.08) !important;
  }

  .mobile-menu-actions .primary-btn {
    width: 100% !important;
    min-height: 42px !important;
    padding: 10px 14px !important;
    border-radius: 999px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
  }

  .mobile-login-link {
    min-height: 32px !important;
    padding: 4px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
  }
}

/* FIX DEFINITIVO: botões após Planos, sem descer para fora da tela */
@media (max-width: 900px) {
  .mobile-menu-panel {
    display: block !important;
    height: 100dvh !important;
    overflow-y: auto !important;
    padding: 16px !important;
  }

  .mobile-menu-head {
    display: flex !important;
    padding-bottom: 12px !important;
    margin-bottom: 0 !important;
  }

  .mobile-menu-links {
    display: grid !important;
    padding: 14px 0 8px !important;
    margin: 0 !important;
    gap: 7px !important;
  }

  .mobile-menu-links a {
    min-height: 42px !important;
    padding: 9px 12px !important;
    border-radius: 14px !important;
  }

  .mobile-menu-actions {
    position: static !important;
    display: grid !important;
    margin: 8px 0 0 0 !important;
    padding: 10px 0 0 0 !important;
    gap: 8px !important;
    border-top: 1px solid rgba(255,255,255,.08) !important;
    transform: none !important;
  }

  .mobile-menu-actions .primary-btn {
    min-height: 42px !important;
    width: 100% !important;
    padding: 10px 14px !important;
    border-radius: 999px !important;
  }

  .mobile-login-link {
    min-height: 30px !important;
    padding: 4px 0 !important;
  }
}


/* BOTÕES MOBILE DENTRO DA LISTA, APÓS PLANOS */
@media (max-width: 900px) {
  .mobile-menu-links .mobile-login-inline {
    margin-top: 8px !important;
    background: rgba(255, 194, 71, .10) !important;
    color: #FFC247 !important;
    border-color: rgba(255, 194, 71, .22) !important;
    justify-content: center !important;
    font-weight: 950 !important;
  }

  .mobile-menu-links .mobile-register-inline {
    background: linear-gradient(135deg, #ff8a1f, #ffc247) !important;
    color: #111827 !important;
    border-color: rgba(255, 194, 71, .35) !important;
    justify-content: center !important;
    font-weight: 950 !important;
    box-shadow: 0 12px 24px rgba(255,138,31,.22) !important;
  }
}

/* CTA mobile em destaque: Entrar + Fazer cadastro */
@media (max-width: 900px) {
  .mobile-menu-links .mobile-login-inline,
  .mobile-menu-links .mobile-register-inline {
    justify-content: center !important;
    font-weight: 950 !important;
    color: #111827 !important;
    border-radius: 14px !important;
    border: 1px solid rgba(255, 194, 71, 0.38) !important;
    box-shadow: 0 0 0 rgba(255, 138, 31, 0.0);
    animation: fretecifBlinkPulse 1.15s infinite;
  }

  .mobile-menu-links .mobile-login-inline {
    margin-top: 8px !important;
    background: linear-gradient(135deg, #ff9a1f, #ffbf3c) !important;
  }

  .mobile-menu-links .mobile-register-inline {
    background: linear-gradient(135deg, #ff7b00, #ffc247) !important;
  }

  .mobile-menu-links .mobile-login-inline span,
  .mobile-menu-links .mobile-register-inline span {
    background: rgba(255,255,255,.18) !important;
    border-color: rgba(255,255,255,.18) !important;
  }
}

@keyframes fretecifBlinkPulse {
  0% {
    opacity: 1;
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(255, 138, 31, 0.00);
  }
  25% {
    opacity: .78;
    transform: scale(1.015);
    box-shadow: 0 0 0 4px rgba(255, 138, 31, 0.10);
  }
  50% {
    opacity: 1;
    transform: scale(1.03);
    box-shadow: 0 0 0 8px rgba(255, 138, 31, 0.18), 0 0 22px rgba(255, 138, 31, 0.34);
  }
  75% {
    opacity: .82;
    transform: scale(1.015);
    box-shadow: 0 0 0 4px rgba(255, 138, 31, 0.10);
  }
  100% {
    opacity: 1;
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(255, 138, 31, 0.00);
  }
}

/* Centralizar texto dos CTAs mobile */
@media (max-width: 900px) {
  .mobile-menu-links .mobile-login-inline,
  .mobile-menu-links .mobile-register-inline {
    position: relative !important;
    text-align: center !important;
    justify-content: center !important;
  }

  .mobile-menu-links .mobile-login-inline span,
  .mobile-menu-links .mobile-register-inline span {
    position: absolute !important;
    left: 50px !important;
    margin: 0 !important;
  }
}

/* Página Entrar - escolha de perfil */
.login-choice-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at 70% 12%, rgba(255, 138, 31, .20), transparent 34%),
    linear-gradient(135deg, #07111f 0%, #0c1622 50%, #060b12 100%);
  color: #f8fafc;
}

.login-choice-shell {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 28px;
}

.login-choice-card {
  width: min(960px, 100%);
  min-height: 560px;
  border-radius: 34px;
  background: rgba(16, 26, 36, .92);
  border: 1px solid rgba(255, 194, 71, .18);
  box-shadow: 0 30px 90px rgba(0,0,0,.42);
  padding: 34px;
  display: grid;
  align-content: start;
}

.login-choice-logo img {
  width: 190px;
  max-width: 70%;
  height: auto;
}

.login-choice-content {
  max-width: 620px;
  margin: 58px auto 0;
  width: 100%;
  text-align: center;
}

.login-choice-kicker {
  display: inline-flex;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 138, 31, .10);
  color: #ffc247;
  font-weight: 900;
  margin-bottom: 18px;
}

.login-choice-content h1 {
  font-size: clamp(32px, 4vw, 52px);
  letter-spacing: -1.5px;
  margin-bottom: 12px;
}

.login-choice-content p {
  color: #aeb8c7;
  font-size: 1.05rem;
  line-height: 1.6;
}

.login-choice-options {
  display: grid;
  gap: 16px;
  margin-top: 34px;
}

.login-choice-option {
  min-height: 112px;
  display: grid;
  grid-template-columns: 58px 1fr 24px;
  gap: 18px;
  align-items: center;
  text-align: left;
  padding: 20px;
  border-radius: 22px;
  background: rgba(255,255,255,.055);
  border: 1px solid rgba(255,255,255,.09);
  transition: .22s ease;
}

.login-choice-option:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 194, 71, .34);
  background: rgba(255, 138, 31, .10);
}

.login-choice-icon {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: rgba(255, 138, 31, .14);
  border: 1px solid rgba(255, 194, 71, .18);
  font-size: 1.7rem;
}

.login-choice-option strong {
  display: block;
  font-size: 1.35rem;
  margin-bottom: 6px;
}

.login-choice-option span {
  color: #aeb8c7;
  line-height: 1.45;
}

.login-choice-option b {
  font-size: 2rem;
  color: #ffc247;
}

.login-choice-foot {
  margin-top: 28px;
  color: #aeb8c7;
}

.login-choice-foot a {
  color: #ffc247;
  font-weight: 900;
  margin-left: 6px;
}

@media (max-width: 640px) {
  .login-choice-shell {
    padding: 14px;
    place-items: start center;
  }

  .login-choice-card {
    min-height: calc(100vh - 28px);
    padding: 22px;
    border-radius: 24px;
  }

  .login-choice-logo img {
    width: 145px;
  }

  .login-choice-content {
    margin-top: 38px;
  }

  .login-choice-option {
    grid-template-columns: 48px 1fr 18px;
    gap: 13px;
    padding: 16px;
  }

  .login-choice-icon {
    width: 48px;
    height: 48px;
    border-radius: 15px;
  }

  .login-choice-option strong {
    font-size: 1.05rem;
  }

  .login-choice-option span {
    font-size: .88rem;
  }
}

/* =========================================================
   Correção tamanho site público - Home / Empresas / Planos
   Mantém CRM compacto e não altera página Caminhoneiros
========================================================= */

body:has(.hero) .topbar,
body:has(.company-hero) .topbar,
body:has(.plans-hero) .topbar{
  min-height: 86px !important;
  padding: 18px 42px !important;
}

body:has(.hero) .brand-logo-img,
body:has(.company-hero) .brand-logo-img,
body:has(.plans-hero) .brand-logo-img{
  width: 168px !important;
  max-height: none !important;
  height: auto !important;
  object-fit: contain !important;
}

body:has(.hero) .hero{
  width: min(1180px, calc(100% - 32px)) !important;
  margin: 72px auto 0 !important;
  gap: 58px !important;
  align-items: center !important;
}

body:has(.hero) .hero h1{
  font-size: clamp(2.85rem, 5.2vw, 5.35rem) !important;
  line-height: .98 !important;
  letter-spacing: -0.075em !important;
  max-width: 780px !important;
}

body:has(.hero) .hero p{
  font-size: 1.12rem !important;
  line-height: 1.72 !important;
  max-width: 700px !important;
}

body:has(.company-hero) .company-hero{
  width: min(1180px, calc(100% - 32px)) !important;
  margin: 72px auto 0 !important;
  gap: 58px !important;
  align-items: center !important;
}

body:has(.company-hero) .company-hero-copy h1{
  font-size: clamp(2.85rem, 5vw, 5.15rem) !important;
  line-height: .98 !important;
  letter-spacing: -0.075em !important;
  max-width: 780px !important;
}

body:has(.company-hero) .company-hero-copy p{
  font-size: 1.12rem !important;
  line-height: 1.72 !important;
  max-width: 700px !important;
}

body:has(.plans-hero) .plans-hero{
  width: min(1180px, calc(100% - 32px)) !important;
  margin: 72px auto 0 !important;
  padding-top: 18px !important;
}

body:has(.plans-hero) .plans-hero h1{
  font-size: clamp(2.85rem, 5.2vw, 5.35rem) !important;
  line-height: .98 !important;
  letter-spacing: -0.075em !important;
  max-width: 980px !important;
}

body:has(.plans-hero) .plans-hero p{
  font-size: 1.12rem !important;
  line-height: 1.72 !important;
  max-width: 760px !important;
}

@media (max-width: 920px){
  body:has(.hero) .topbar,
  body:has(.company-hero) .topbar,
  body:has(.plans-hero) .topbar{
    min-height: 76px !important;
    padding: 14px 16px !important;
  }

  body:has(.hero) .brand-logo-img,
  body:has(.company-hero) .brand-logo-img,
  body:has(.plans-hero) .brand-logo-img{
    width: 150px !important;
  }

  body:has(.hero) .hero,
  body:has(.company-hero) .company-hero,
  body:has(.plans-hero) .plans-hero{
    margin-top: 40px !important;
  }

  body:has(.hero) .hero h1,
  body:has(.company-hero) .company-hero-copy h1,
  body:has(.plans-hero) .plans-hero h1{
    font-size: clamp(2.25rem, 10.8vw, 3.55rem) !important;
  }
}

/* Ajuste isolado - Logo apenas na Home */
body:has(section.hero#comece) header.topbar .brand{
  display: flex !important;
  align-items: center !important;
  height: 100% !important;
}

body:has(section.hero#comece) header.topbar .brand-logo-img{
  width: 142px !important;
  height: auto !important;
  max-height: 52px !important;
  display: block !important;
  object-fit: contain !important;
  object-position: center !important;
}

/* Ajuste final Home / Para Empresas - escala visual */
.brand-logo-img {
  max-width: 155px !important;
  width: 155px !important;
  height: auto !important;
  object-fit: contain !important;
}

.topbar .brand,
.header .brand,
.brand {
  min-width: auto !important;
}

.nav {
  gap: 22px !important;
}

.nav a {
  font-size: 0.92rem !important;
  white-space: nowrap !important;
}

.hero {
  padding-top: 92px !important;
  padding-bottom: 76px !important;
}

.hero h1 {
  font-size: clamp(2.05rem, 3.25vw, 3.25rem) !important;
  line-height: 1.04 !important;
  letter-spacing: -1.6px !important;
  max-width: 760px !important;
}

.hero p {
  font-size: 1rem !important;
  line-height: 1.65 !important;
  max-width: 780px !important;
}

.hero-actions .primary-btn,
.hero-actions .secondary-btn,
.primary-btn,
.secondary-btn {
  min-height: 50px !important;
  padding: 13px 24px !important;
  font-size: 0.95rem !important;
}

.company-hero {
  padding-top: 92px !important;
  padding-bottom: 74px !important;
}

.company-hero h1,
.company-hero-refined .company-hero-copy h1 {
  font-size: clamp(2.05rem, 3.2vw, 3.15rem) !important;
  line-height: 1.04 !important;
  letter-spacing: -1.5px !important;
  max-width: 800px !important;
}

.company-hero p {
  font-size: 1rem !important;
  line-height: 1.65 !important;
  max-width: 800px !important;
}

.company-hero-actions a {
  min-height: 50px !important;
  padding: 13px 24px !important;
  font-size: 0.95rem !important;
}

@media (max-width: 900px) {
  .brand-logo-img {
    width: 138px !important;
    max-width: 138px !important;
  }

  .hero h1,
  .company-hero h1,
  .company-hero-refined .company-hero-copy h1 {
    font-size: 2.05rem !important;
    letter-spacing: -1px !important;
  }

  .hero,
  .company-hero {
    padding-top: 72px !important;
    padding-bottom: 58px !important;
  }
}
