    :root {
      --red: #d62828;
      --red-dark: #981616;
      --dark: #070707;
      --dark-2: #111417;
      --text: #f5f5f5;
      --muted: #c7c7c7;
      --light: #f5f6f8;
    }

    * {
      box-sizing: border-box;
    }

    body {
      margin: 0;
      font-family: "Segoe UI", Arial, sans-serif;
      color: #111;
      background: #fff;
      overflow-x: hidden;
    }

    a {
      text-decoration: none;
    }

    /* NAVBAR */

    .navbar {
      background: rgba(8, 10, 12, 0.92);
      backdrop-filter: blur(14px);
      border-bottom: 1px solid rgba(255,255,255,0.08);
      padding: 14px 0;
      transition: 0.3s;
    }

    .navbar.scrolled {
      padding: 8px 0;
      box-shadow: 0 10px 35px rgba(0,0,0,0.35);
    }

    .navbar-brand img {
      height: 48px;
      max-width: 210px;
      object-fit: contain;
    }

    .navbar .nav-link {
      color: #ddd;
      font-weight: 600;
      margin-left: 14px;
      font-size: 0.95rem;
    }

    .navbar .nav-link:hover {
      color: #fff;
    }

    .btn-nav {
      background: linear-gradient(135deg, var(--red), var(--red-dark));
      color: #fff !important;
      border-radius: 12px;
      padding: 10px 18px !important;
      box-shadow: 0 12px 30px rgba(214,40,40,0.28);
    }

    /* HERO */

    .hero {
      min-height: 100vh;
      position: relative;
      display: flex;
      align-items: center;
      padding: 130px 0 80px;
      color: #fff;
      background:
        linear-gradient(90deg, rgba(0,0,0,0.92) 0%, rgba(0,0,0,0.75) 43%, rgba(0,0,0,0.38) 100%),
        url("../img/backgroud2.png") center right / cover no-repeat;
      overflow: hidden;
    }

    .hero::after {
      content: "";
      position: absolute;
      inset: 0;
      background:
        radial-gradient(circle at 20% 30%, rgba(214,40,40,0.18), transparent 28%),
        radial-gradient(circle at 80% 70%, rgba(214,40,40,0.22), transparent 32%);
      pointer-events: none;
    }

    .hero-content {
      position: relative;
      z-index: 2;
      max-width: 670px;
    }

    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: rgba(214,40,40,0.16);
      color: #fff;
      border: 1px solid rgba(255,255,255,0.15);
      padding: 9px 16px;
      border-radius: 999px;
      font-size: 0.9rem;
      font-weight: 700;
      margin-bottom: 24px;
    }

    .hero h1 {
      font-size: clamp(2.8rem, 6vw, 5.8rem);
      line-height: 0.95;
      font-weight: 900;
      text-transform: uppercase;
      margin-bottom: 24px;
    }

    .hero h1 span {
      display: block;
      color: var(--red);
      text-shadow: 0 0 28px rgba(214,40,40,0.35);
    }

    .hero p {
      font-size: 1.2rem;
      color: #e0e0e0;
      line-height: 1.7;
      max-width: 600px;
      margin-bottom: 32px;
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 14px;
      margin-bottom: 35px;
    }

    .btn-main {
      padding: 15px 28px;
      border-radius: 14px;
      background: linear-gradient(135deg, var(--red), var(--red-dark));
      color: #fff;
      font-weight: 800;
      border: none;
      box-shadow: 0 18px 42px rgba(214,40,40,0.35);
    }

    .btn-main:hover {
      color: #fff;
      transform: translateY(-2px);
    }

    .btn-outline-main {
      padding: 15px 28px;
      border-radius: 14px;
      border: 1px solid rgba(255,255,255,0.28);
      color: #fff;
      font-weight: 800;
      background: rgba(255,255,255,0.05);
    }

    .btn-outline-main:hover {
      color: #fff;
      border-color: var(--red);
      background: rgba(214,40,40,0.12);
    }

    .hero-features {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 15px;
      max-width: 650px;
    }

    .hero-feature {
      padding: 15px 12px;
      background: rgba(255,255,255,0.06);
      border: 1px solid rgba(255,255,255,0.10);
      border-radius: 16px;
      backdrop-filter: blur(10px);
      text-align: center;
    }

    .hero-feature i {
      color: var(--red);
      font-size: 1.7rem;
      margin-bottom: 9px;
    }

    .hero-feature span {
      display: block;
      font-size: 0.82rem;
      font-weight: 800;
      text-transform: uppercase;
      color: #fff;
    }

    /* SECTIONS */

    section {
      position: relative;
    }

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

    .section-title .label {
      display: inline-block;
      color: var(--red);
      font-weight: 900;
      text-transform: uppercase;
      font-size: 0.85rem;
      letter-spacing: 1.5px;
      margin-bottom: 10px;
    }

    .section-title h2 {
      font-size: clamp(2rem, 4vw, 3rem);
      font-weight: 900;
      margin-bottom: 12px;
    }

    .section-title p {
      color: #666;
      max-width: 680px;
      margin: auto;
    }

    /* RECURSOS */

    .recursos {
      padding: 95px 0;
      background: #fff;
    }

    .recurso-card {
      height: 100%;
      padding: 34px;
      border-radius: 24px;
      background: #fff;
      border: 1px solid #eee;
      box-shadow: 0 18px 45px rgba(0,0,0,0.06);
      transition: 0.25s ease;
    }

    .recurso-card:hover {
      transform: translateY(-6px);
      border-color: rgba(214,40,40,0.35);
      box-shadow: 0 24px 65px rgba(0,0,0,0.11);
    }

    .recurso-icon {
      width: 64px;
      height: 64px;
      border-radius: 18px;
      display: flex;
      align-items: center;
      justify-content: center;
      background: linear-gradient(135deg, var(--red), var(--red-dark));
      color: #fff;
      font-size: 1.6rem;
      margin-bottom: 24px;
      box-shadow: 0 14px 32px rgba(214,40,40,0.25);
    }

    .recurso-card h4 {
      font-weight: 850;
      margin-bottom: 10px;
    }

    .recurso-card p {
      color: #666;
      margin: 0;
      line-height: 1.6;
    }

    /* PLATAFORMA */

    .plataforma {
      padding: 95px 0;
      background: var(--light);
      overflow: hidden;
    }

    .dashboard-wrap {
      position: relative;
      border-radius: 30px;
      padding: 14px;
      background: linear-gradient(145deg, #fff, #e9e9e9);
      box-shadow: 0 30px 90px rgba(0,0,0,0.15);
    }

    .dashboard-wrap img {
      width: 100%;
      border-radius: 22px;
      display: block;
    }

    .platform-list {
      list-style: none;
      padding: 0;
      margin: 28px 0 0;
    }

    .platform-list li {
      display: flex;
      gap: 13px;
      margin-bottom: 16px;
      color: #333;
      font-weight: 600;
    }

    .platform-list i {
      color: var(--red);
      margin-top: 3px;
    }

    /* FRANQUIA */

    .franquia-section {
      position: relative;
      overflow: hidden;
      padding: 100px 0;
      background:
        radial-gradient(circle at 20% 30%, rgba(198, 40, 40, 0.25), transparent 30%),
        radial-gradient(circle at 80% 70%, rgba(198, 40, 40, 0.18), transparent 35%),
        linear-gradient(135deg, #070707 0%, #141414 50%, #090909 100%);
      color: #fff;
    }

    .franquia-section::before {
      content: "";
      position: absolute;
      inset: 0;
      background-image:
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
      background-size: 42px 42px;
      opacity: 0.35;
    }

    .franquia-bg-effect {
      position: absolute;
      width: 520px;
      height: 520px;
      right: -180px;
      top: 50px;
      background: rgba(198, 40, 40, 0.35);
      filter: blur(120px);
      border-radius: 50%;
    }

    .franquia-label {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 9px 16px;
      margin-bottom: 22px;
      background: rgba(198, 40, 40, 0.18);
      border: 1px solid rgba(255, 255, 255, 0.12);
      color: #fff;
      border-radius: 999px;
      font-size: 14px;
      font-weight: 800;
      letter-spacing: 0.3px;
    }

    .franquia-label i {
      color: #ef3b3b;
    }

    .franquia-title {
      font-size: clamp(2.4rem, 5vw, 4.6rem);
      line-height: 1;
      font-weight: 950;
      text-transform: uppercase;
      margin-bottom: 24px;
    }

    .franquia-title span {
      display: block;
      color: #ef2f2f;
      text-shadow: 0 0 25px rgba(239, 47, 47, 0.35);
    }

    .franquia-text {
      max-width: 620px;
      font-size: 1.1rem;
      line-height: 1.7;
      color: #d8d8d8;
      margin-bottom: 28px;
    }

    .franquia-benefits {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 18px;
      margin-bottom: 32px;
    }

    .franquia-benefit {
      display: flex;
      gap: 15px;
      padding: 18px;
      background: rgba(255,255,255,0.055);
      border: 1px solid rgba(255,255,255,0.09);
      border-radius: 18px;
      backdrop-filter: blur(12px);
      transition: 0.25s ease;
    }

    .franquia-benefit:hover {
      transform: translateY(-4px);
      border-color: rgba(239, 47, 47, 0.6);
      background: rgba(198, 40, 40, 0.12);
    }

    .franquia-icon {
      min-width: 46px;
      height: 46px;
      border-radius: 14px;
      background: linear-gradient(135deg, #ef2f2f, #8d1111);
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 0 25px rgba(239, 47, 47, 0.35);
    }

    .franquia-icon i {
      color: #fff;
      font-size: 20px;
    }

    .franquia-benefit h5 {
      font-size: 1rem;
      font-weight: 850;
      margin-bottom: 5px;
    }

    .franquia-benefit p {
      margin: 0;
      color: #cfcfcf;
      font-size: 0.92rem;
      line-height: 1.45;
    }

    .franquia-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 14px;
    }

    .btn-franquia {
      padding: 14px 26px;
      background: linear-gradient(135deg, #ef2f2f, #b91515);
      color: #fff;
      border-radius: 14px;
      font-weight: 850;
      border: none;
      box-shadow: 0 12px 35px rgba(239, 47, 47, 0.28);
    }

    .btn-franquia:hover {
      color: #fff;
      transform: translateY(-2px);
      box-shadow: 0 16px 42px rgba(239, 47, 47, 0.4);
    }

    .btn-franquia-outline {
      padding: 14px 26px;
      color: #fff;
      border: 1px solid rgba(255,255,255,0.28);
      border-radius: 14px;
      font-weight: 850;
      background: rgba(255,255,255,0.04);
    }

    .btn-franquia-outline:hover {
      color: #fff;
      border-color: #ef2f2f;
      background: rgba(239, 47, 47, 0.12);
    }

    .franquia-card-image {
      position: relative;
      padding: 14px;
      border-radius: 28px;
      background: linear-gradient(145deg, rgba(255,255,255,0.12), rgba(255,255,255,0.03));
      border: 1px solid rgba(255,255,255,0.12);
      box-shadow: 0 28px 80px rgba(0,0,0,0.45);
    }

    .franquia-card-image img {
      border-radius: 22px;
      width: 100%;
      display: block;
    }

    .franquia-floating-card {
      position: absolute;
      padding: 14px 18px;
      background: rgba(8, 8, 8, 0.82);
      border: 1px solid rgba(255,255,255,0.12);
      border-left: 4px solid #ef2f2f;
      border-radius: 16px;
      backdrop-filter: blur(12px);
      box-shadow: 0 18px 45px rgba(0,0,0,0.35);
    }

    .franquia-floating-card strong {
      display: block;
      font-size: 0.95rem;
      color: #fff;
    }

    .franquia-floating-card span {
      font-size: 0.82rem;
      color: #cfcfcf;
    }

    .card-top {
      top: 35px;
      left: -20px;
    }

    .card-bottom {
      right: -20px;
      bottom: 35px;
    }

    /* BENEFICIOS */

    .beneficios {
      padding: 80px 0;
      background: #080808;
      color: #fff;
    }

    .beneficio-item {
      text-align: center;
      padding: 26px 20px;
    }

    .beneficio-item i {
      font-size: 2.3rem;
      color: var(--red);
      margin-bottom: 18px;
    }

    .beneficio-item h3 {
      font-weight: 900;
      margin-bottom: 8px;
    }

    .beneficio-item p {
      color: #cfcfcf;
      margin: 0;
    }

    /* CTA */

    .cta {
      padding: 90px 0;
      background:
        linear-gradient(135deg, rgba(214,40,40,0.92), rgba(126,14,14,0.95)),
        url("../img/backgroud2.png") center / cover no-repeat;
      color: #fff;
      text-align: center;
    }

    .cta h2 {
      font-size: clamp(2rem, 4vw, 3.2rem);
      font-weight: 950;
      margin-bottom: 16px;
    }

    .cta p {
      color: #f2f2f2;
      font-size: 1.15rem;
      margin-bottom: 30px;
    }

    .btn-cta-white {
      background: #fff;
      color: var(--red);
      padding: 15px 30px;
      border-radius: 14px;
      font-weight: 900;
      display: inline-block;
    }

    .btn-cta-white:hover {
      color: var(--red-dark);
      transform: translateY(-2px);
    }

    /* FOOTER */

    footer {
      background: #020202;
      color: #fff;
      padding: 55px 0 28px;
    }

    footer img {
      height: 50px;
      margin-bottom: 18px;
    }

    footer p,
    footer a {
      color: #cfcfcf;
      font-size: 0.95rem;
    }

    footer a:hover {
      color: #fff;
    }

    .footer-title {
      font-weight: 850;
      margin-bottom: 16px;
      color: #fff;
    }

    .footer-bottom {
      border-top: 1px solid rgba(255,255,255,0.08);
      margin-top: 35px;
      padding-top: 20px;
      color: #aaa;
      font-size: 0.9rem;
      text-align: center;
    }

    /* WHATSAPP */

    .whatsapp-float {
      position: fixed;
      right: 22px;
      bottom: 22px;
      width: 60px;
      height: 60px;
      background: #25d366;
      color: #fff;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 2rem;
      z-index: 999;
      box-shadow: 0 16px 35px rgba(0,0,0,0.28);
      transition: 0.25s;
    }

    .whatsapp-float:hover {
      color: #fff;
      transform: scale(1.08);
    }

    /* RESPONSIVO */

    @media (max-width: 991px) {
      .hero {
        min-height: auto;
        padding: 125px 0 70px;
        background-position: center;
      }

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

      .franquia-section {
        padding: 75px 0;
      }

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

      .franquia-card-image {
        margin-top: 25px;
      }

      .card-top,
      .card-bottom {
        position: static;
        margin-top: 14px;
      }
    }

    @media (max-width: 576px) {
      .hero h1 {
        font-size: 2.7rem;
      }

      .hero-actions .btn,
      .franquia-actions .btn {
        width: 100%;
        text-align: center;
      }

      .hero-features {
        grid-template-columns: 1fr;
      }

      .franquia-title {
        font-size: 2.4rem;
      }

      .navbar-brand img {
        height: 42px;
      }
    }
.navbar-brand img {
  height: 58px;
  max-width: 230px;
}

.navbar {
  padding: 10px 0;
}

.hero {
  background:
    linear-gradient(90deg, rgba(0,0,0,0.90) 0%, rgba(0,0,0,0.62) 45%, rgba(0,0,0,0.20) 100%),
    url("../img/backgroud2.png") center right / cover no-repeat;
}

.plataforma {
  padding: 110px 0;
}

.dashboard-wrap img {
  max-height: 430px;
  object-fit: cover;
  object-position: top;
}

/* Visual refresh */

:root {
  --red: #e21f26;
  --red-dark: #9f151a;
  --dark: #08090b;
  --dark-2: #13161b;
  --text: #f7f8fb;
  --muted: #c9ced8;
  --light: #f4f6f9;
  --line: #e4e8ef;
  --green: #27c46b;
  --amber: #f5b640;
}

body {
  color: #171b22;
  background: #fff;
}

.navbar {
  background: rgba(7, 9, 12, 0.86);
  border-bottom: 1px solid rgba(255,255,255,0.10);
  padding: 10px 0;
}

.navbar.scrolled {
  background: rgba(7, 9, 12, 0.96);
  padding: 7px 0;
}

.navbar-brand {
  align-items: center;
  background: rgba(255,255,255,0.96);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 8px;
  display: inline-flex;
  min-height: 58px;
  padding: 4px 12px;
}

.navbar-brand img {
  height: 48px;
  max-width: 188px;
  object-fit: contain;
}

.navbar .nav-link {
  border-radius: 8px;
  color: rgba(255,255,255,0.82);
  font-weight: 750;
  margin-left: 6px;
  padding: 9px 12px;
}

.navbar .nav-link:hover {
  background: rgba(255,255,255,0.08);
  color: #fff;
}

.btn-nav {
  border-radius: 8px;
  margin-left: 10px;
  padding: 10px 16px !important;
}

.btn-language {
  align-items: center;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 8px;
  color: #fff;
  display: inline-flex;
  font-weight: 800;
  justify-content: center;
  min-height: 42px;
  min-width: 58px;
}

.btn-language:hover,
.btn-language:focus {
  background: rgba(255,255,255,0.10);
  border-color: rgba(255,255,255,0.28);
  color: #fff;
}

.language-menu {
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 8px;
  box-shadow: 0 18px 44px rgba(0,0,0,0.18);
  padding: 6px;
}

.language-menu .dropdown-item {
  border-radius: 6px;
  font-weight: 800;
  padding: 8px 10px;
}

.hero {
  background:
    linear-gradient(90deg, rgba(4,5,7,0.95) 0%, rgba(8,10,13,0.86) 48%, rgba(8,10,13,0.45) 100%),
    url("../img/backgroud2.png") center right / cover no-repeat;
  min-height: 100vh;
  padding: 124px 0 72px;
}

.hero::after {
  background:
    linear-gradient(135deg, rgba(226,31,38,0.18), transparent 38%),
    linear-gradient(0deg, rgba(0,0,0,0.42), transparent 54%);
}

.hero-layout {
  align-items: center;
  display: grid;
  gap: 54px;
  grid-template-columns: minmax(0, 1.04fr) minmax(360px, 0.86fr);
  position: relative;
  z-index: 2;
}

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

.hero-badge {
  background: rgba(226,31,38,0.15);
  border-color: rgba(255,255,255,0.18);
  border-radius: 8px;
}

.hero h1 {
  letter-spacing: 0;
  line-height: 0.98;
  max-width: 720px;
}

.hero p {
  color: rgba(255,255,255,0.80);
  font-size: 1.14rem;
  max-width: 640px;
}

.btn-main,
.btn-outline-main,
.btn-franquia,
.btn-franquia-outline,
.btn-cta-white {
  border-radius: 8px;
}

.btn-main {
  box-shadow: 0 16px 34px rgba(226,31,38,0.30);
}

.btn-outline-main {
  background: rgba(255,255,255,0.08);
}

.hero-stats {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 0 0 24px;
  max-width: 690px;
}

.hero-stats div {
  background: rgba(255,255,255,0.075);
  border: 1px solid rgba(255,255,255,0.11);
  border-radius: 8px;
  padding: 14px 16px;
}

.hero-stats strong,
.hero-stats span {
  display: block;
}

.hero-stats strong {
  color: #fff;
  font-size: 1.05rem;
  font-weight: 900;
  line-height: 1.1;
}

.hero-stats span {
  color: rgba(255,255,255,0.64);
  font-size: 0.78rem;
  font-weight: 750;
  margin-top: 5px;
  text-transform: uppercase;
}

.hero-features {
  gap: 12px;
}

.hero-feature {
  border-radius: 8px;
  min-height: 112px;
  padding: 17px 12px;
}

.hero-feature i {
  color: #ff4148;
}

.hero-visual {
  min-width: 0;
}

.tracking-device {
  background: rgba(250,250,252,0.96);
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 18px;
  box-shadow: 0 32px 86px rgba(0,0,0,0.42);
  color: #151922;
  overflow: hidden;
}

.device-topbar {
  align-items: center;
  background: #fff;
  border-bottom: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  min-height: 72px;
  padding: 12px 16px;
}

.device-topbar img {
  height: 46px;
  object-fit: contain;
  width: 118px;
}

.device-topbar span {
  align-items: center;
  background: rgba(39,196,107,0.12);
  border-radius: 8px;
  color: #167c42;
  display: inline-flex;
  font-size: 0.78rem;
  font-weight: 900;
  gap: 7px;
  padding: 8px 10px;
  text-transform: uppercase;
}

.device-topbar i {
  font-size: 0.52rem;
}

.tracking-map {
  background:
    linear-gradient(90deg, rgba(226,31,38,0.06) 1px, transparent 1px),
    linear-gradient(0deg, rgba(20,25,35,0.07) 1px, transparent 1px),
    #eef2f6;
  background-size: 34px 34px;
  min-height: 360px;
  overflow: hidden;
  position: relative;
}

.map-line {
  background: rgba(18,24,34,0.18);
  border-radius: 999px;
  display: block;
  height: 14px;
  position: absolute;
  transform-origin: center;
}

.line-one {
  left: -30px;
  top: 112px;
  transform: rotate(18deg);
  width: 540px;
}

.line-two {
  right: -80px;
  top: 214px;
  transform: rotate(-25deg);
  width: 470px;
}

.line-three {
  bottom: 72px;
  left: 56px;
  transform: rotate(-6deg);
  width: 340px;
}

.vehicle-marker {
  align-items: center;
  background: var(--red);
  border: 4px solid #fff;
  border-radius: 999px;
  box-shadow: 0 14px 28px rgba(100,20,24,0.28);
  color: #fff;
  display: flex;
  height: 54px;
  justify-content: center;
  position: absolute;
  width: 54px;
}

.marker-one {
  left: 58%;
  top: 74px;
}

.marker-two {
  left: 18%;
  top: 196px;
}

.marker-three {
  right: 15%;
  bottom: 56px;
}

.route-summary {
  background: rgba(255,255,255,0.94);
  border: 1px solid var(--line);
  border-left: 4px solid var(--red);
  border-radius: 8px;
  bottom: 22px;
  box-shadow: 0 16px 36px rgba(20,25,35,0.14);
  left: 22px;
  padding: 13px 15px;
  position: absolute;
  width: min(260px, calc(100% - 44px));
}

.route-summary small,
.route-summary strong,
.route-summary span {
  display: block;
}

.route-summary small {
  color: #687282;
  font-weight: 800;
  text-transform: uppercase;
}

.route-summary strong {
  font-size: 1.45rem;
  line-height: 1.15;
}

.route-summary span {
  color: #394251;
  font-size: 0.88rem;
  font-weight: 700;
}

.device-metrics {
  background: #fff;
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(3, 1fr);
}

.device-metrics div {
  background: #fff;
  border-top: 1px solid var(--line);
  padding: 16px;
}

.device-metrics span {
  color: #687282;
  display: block;
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.device-metrics strong {
  color: #151922;
  display: block;
  font-size: 1.5rem;
  line-height: 1.1;
  margin-top: 5px;
}

.recursos,
.plataforma {
  padding: 104px 0;
}

.section-title .label {
  color: var(--red);
}

.section-title h2 {
  color: #11151c;
  line-height: 1.08;
}

.section-title p {
  color: #606a78;
  font-size: 1.04rem;
}

.recurso-card,
.dashboard-wrap,
.franquia-benefit,
.franquia-card-image,
.franquia-floating-card {
  border-radius: 8px;
}

.recurso-card {
  border-color: var(--line);
  box-shadow: 0 16px 42px rgba(16,22,32,0.07);
}

.recurso-card:hover {
  box-shadow: 0 24px 58px rgba(16,22,32,0.12);
}

.recurso-icon {
  border-radius: 8px;
}

.dashboard-wrap {
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 28px 70px rgba(16,22,32,0.13);
  padding: 10px;
}

.dashboard-wrap img {
  border-radius: 8px;
  max-height: 480px;
}

.platform-list li {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  margin-bottom: 10px;
  padding: 13px 15px;
}

.franquia-section {
  background:
    linear-gradient(135deg, rgba(7,9,12,0.96), rgba(28,8,10,0.93)),
    url("../img/seja-franqueado.png") center right / contain no-repeat;
}

.franquia-bg-effect {
  display: none;
}

.beneficios {
  background: #101318;
}

.cta {
  background:
    linear-gradient(135deg, rgba(226,31,38,0.94), rgba(94,10,13,0.96)),
    url("../img/backgroud2.png") center / cover no-repeat;
}

footer img {
  background: #fff;
  border-radius: 8px;
  height: 58px;
  object-fit: contain;
  padding: 4px 10px;
}

.whatsapp-float {
  border-radius: 999px;
}

@media (max-width: 1199px) {
  .hero-layout {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    max-width: 640px;
  }
}

@media (max-width: 991px) {
  .hero {
    padding: 112px 0 64px;
  }

  .navbar .nav-link,
  .btn-nav {
    margin-left: 0;
  }

  .btn-nav {
    display: inline-flex;
    justify-content: center;
    margin-top: 8px;
    width: 100%;
  }

  .navbar-nav .dropdown,
  .navbar-nav .dropdown > .btn-language {
    width: 100%;
  }
}

@media (max-width: 767px) {
  .hero-stats {
    grid-template-columns: 1fr;
  }

  .tracking-map {
    min-height: 300px;
  }

  .device-metrics {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .navbar-brand {
    min-height: 52px;
  }

  .navbar-brand img {
    height: 40px;
    max-width: 158px;
  }

  .hero h1 {
    font-size: 2.55rem;
  }

  .hero p {
    font-size: 1rem;
  }

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

  .device-topbar {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .marker-one {
    left: 62%;
  }

  .marker-two {
    left: 10%;
  }
}

/* Hero banner rotation and scale tuning */

.hero {
  background: #07090c;
  min-height: 92vh;
  padding: 118px 0 58px;
}

.hero-bg-slider,
.hero-bg-slide {
  inset: 0;
  position: absolute;
}

.hero-bg-slider {
  overflow: hidden;
  z-index: 0;
}

.hero-bg-slide {
  animation: heroBgFade 18s infinite;
  background-position: center right;
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 0;
  transform: scale(1.04);
}

.hero-bg-slide::after {
  background:
    linear-gradient(90deg, rgba(4,5,7,0.94) 0%, rgba(7,9,12,0.80) 42%, rgba(7,9,12,0.42) 100%),
    linear-gradient(0deg, rgba(4,5,7,0.62), rgba(4,5,7,0.10) 58%);
  content: "";
  inset: 0;
  position: absolute;
}

.slide-one {
  animation-delay: 0s;
  background-image: url("../img/backgroud2.png");
}

.slide-two {
  animation-delay: 6s;
  background-image: url("../img/dashboard.png");
}

.slide-three {
  animation-delay: 12s;
  background-image: url("../img/seja-franqueado.png");
  background-position: center;
}

@keyframes heroBgFade {
  0%,
  30% {
    opacity: 1;
  }

  38%,
  92% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

.hero::after {
  background:
    linear-gradient(135deg, rgba(226,31,38,0.16), transparent 34%),
    linear-gradient(0deg, rgba(0,0,0,0.36), transparent 58%);
  z-index: 1;
}

.hero-layout {
  gap: 42px;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.86fr);
}

.hero-content {
  max-width: 620px;
}

.hero h1 {
  font-size: clamp(2.35rem, 4.15vw, 4.45rem);
  line-height: 1.02;
  margin-bottom: 20px;
  max-width: 610px;
}

.hero p {
  font-size: 1.05rem;
  margin-bottom: 24px;
  max-width: 590px;
}

.hero-actions {
  margin-bottom: 22px;
}

.hero-stats {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-bottom: 18px;
  max-width: 600px;
}

.hero-stats div {
  padding: 12px 13px;
}

.hero-features {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  max-width: 600px;
}

.hero-feature {
  min-height: 96px;
  padding: 14px 10px;
}

.hero-feature i {
  font-size: 1.42rem;
}

.hero-feature span {
  font-size: 0.76rem;
}

.tracking-device {
  border-radius: 14px;
  transform: translateY(8px);
}

.tracking-map {
  min-height: 300px;
}

.device-topbar {
  min-height: 64px;
}

.device-metrics div {
  padding: 13px 16px;
}

@media (max-width: 1199px) {
  .hero {
    min-height: auto;
  }

  .hero-layout {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 767px) {
  .hero {
    padding: 104px 0 48px;
  }

  .hero h1 {
    font-size: clamp(2.2rem, 12vw, 3.25rem);
  }

  .hero-stats,
  .hero-features {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .tracking-map {
    min-height: 260px;
  }
}

@media (max-width: 480px) {
  .hero-stats,
  .hero-features {
    grid-template-columns: 1fr;
  }
}

/* Clean hero layout */

.hero-layout {
  display: block;
}

.hero h1 {
  font-size: clamp(2.15rem, 3.55vw, 3.75rem);
  max-width: 560px;
}

.hero h1 span {
  color: #fff;
}

.hero h1 span[data-i18n="hero.titleAccent"] {
  color: var(--red);
}

.franquia-title span[data-i18n="franchise.titleTop"] {
  color: #fff;
  text-shadow: none;
}

.hero p {
  max-width: 560px;
}

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

@media (max-width: 767px) {
  .hero h1 {
    font-size: clamp(2rem, 10vw, 3rem);
  }
}
