.custom-hero .hero-text {
  flex: 1;
  min-width: 280px;
}



.custom-hero .hero-text h1 {
  font-size: 42px;
  color: #0f172a;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
}



.custom-hero .hero-text p {
  font-size: 18px;
  color: #475569;
  margin-bottom: 30px;
}



.custom-hero .hero-image {
  flex: 1;
  min-width: 280px;
  display: flex;
  justify-content: center;
}



.custom-hero .hero-image img {
  max-width: 100%;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}


.cta-button {
  background-color: #2563eb;
  color: #fff;
  border-radius: 8px;
  padding: 14px 28px;
  font-size: 16px;
  white-space: nowrap;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}



.cta-button:hover {
  background-color: #1d4ed8; /* tom mais escuro */
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
}


.cta-outline {
  border: 1px solid #2563eb;
  color: #2563eb;
  background-color: transparent;
  padding: 10px 20px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
}



.cta-outline:hover {
  background-color: #2563eb;
  color: white;
}

.cta-amarelo {
  background-color: #facc15;
  color: #1e293b;
  padding: 12px 24px;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  display: inline-block;
  transition: background-color 0.3s ease;
}

.cta-amarelo:hover {
  background-color: #eab308; /* tom mais escuro */
}



.card {
  background-color: #fff;
  padding: 24px;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}



.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}



.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  justify-content: center;
}



.card-grid.four-columns {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}




.subtitulo {
  color: #475569;
  font-size: 16px;
  margin-top: 8px;
  margin-bottom: 24px;
}


.menu-cta .cta-button {
  background-color: #2563eb;
  color: white;
  padding: 8px 16px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.3s ease;
}


.menu-cta .cta-button:hover {
  background-color: #1e4ed8;
}


.acessorios-hero {
  background: linear-gradient(to bottom, #f5f9ff, #ffffff);
  padding: 80px 20px;
}



.container-hero {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 60px;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}



.acessorios-hero .hero-text {
  flex: 1;
  min-width: 280px;
}



.acessorios-hero .hero-text h1 {
  font-size: 42px;
  color: #0f172a;
  font-weight: 700;
  margin-bottom: 16px;
}



.acessorios-hero .hero-text p {
  font-size: 18px;
  color: #475569;
  margin-bottom: 24px;
  max-width: 500px;
}



.acessorios-hero .hero-image {
  flex: 1;
  min-width: 280px;
  display: flex;
  justify-content: center;
}



.acessorios-hero .hero-image img {
  max-width: 100%;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}



.hero-text {
  max-width: 520px;
}



.hero-text h1 {
  font-size: 42px;
  color: #0f172a;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
}



.hero-text p {
  font-size: 18px;
  color: #475569;
  margin-bottom: 30px;
}



#segmentos .titulo {
  font-size: 32px;
  color: #0f172a;
  font-weight: 700;
  margin-bottom: 10px;
}




.lista-check {
  list-style: none;
  padding-left: 0;
  margin: 0;
}



.lista-check li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 8px;
  font-size: 14px;
  line-height: 1.6;
  color: #334155;
}



.lista-check li::before {
  content: "\f1d8"; /* Ícone paper-plane */
  font-family: 'Roboto', sans-serif;
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 0.15em;
  font-size: 12px;
  color: #2563eb;
}


ul.lista-check {
  list-style: none !important;
  padding-left: 0;
  margin-left: 0;
}



ul.lista-check li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 8px;
  font-size: 14px;
  color: #334155;
}



ul.lista-check li::before {
  content: "\f1d8"; /* paper-plane icon */
  font-family: 'Roboto', sans-serif;
  font-weight: 900;
  color: #2563eb;
  position: absolute;
  left: 0;
  top: 0.2em;
  font-size: 12px;
}



.section.centered {
  text-align: center;
  padding: 80px 20px;
}



.section.centered h2 {
  font-size: 32px;
  color: #0f172a;
  margin-bottom: 10px;
  font-weight: 700;
}



.section.centered .sub {
  font-size: 18px;
  color: #64748b;
  max-width: 760px;
  margin: 0 auto 40px;
}



.card-grid.small {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
}

@media (max-width: 600px) {
  .card-grid.small {
    padding: 0 16px;
    gap: 16px;
  }

  .card-grid.small .card {
    padding: 20px;
    font-size: 14px;
  }

  .card-grid.small h3 {
    font-size: 18px;
  }

  .card-grid.small .subtitulo {
    font-size: 15px;
    margin-bottom: 12px;
  }

  .card-grid.small .lista-check li {
    font-size: 14px;
  }

  .card-grid.small .cta-outline {
    font-size: 14px;
    padding: 10px 18px;
  }
}


.card {
  background-color: #fff;
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  border: 1px solid #e2e8f0;
  text-align: left;
  transition: all 0.2s ease;
  text-align: center;
  align-items: center;
  justify-content: center;
}



.card:hover {
    background-color: #eef4ff;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
  }


  

.card.active {
  background-color: #eef4ff;
  border: 1px solid #2563eb;
}


.card-grid.small .card img {
  width: 40px;
  height: 40px;
  margin-bottom: 10px;
}



.card-grid.small .card h3 {
  margin-top: 0;
}


.card-grid.steps {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
}


#equipamentos-rastreamento .card i {
  color: #2658F6;
  font-size: 2rem;
  margin-bottom: 0.5rem;
}


#recursos .card i {
  color: #2658F6;
  font-size: 2rem;
  margin-bottom: 0.75rem;
}



#beneficios .cta-button {
  margin-top: 40px;
  display: inline-block;
  background-color: #2563eb;
  color: #fff;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  transition: background-color 0.3s ease;
}



#beneficios .cta-button:hover {
  background-color: #1d4ed8;
}



ul.lista-check {
  list-style: none;
  padding-left: 0;
  margin-left: 0;
  text-align: left; /* alinha texto */
}



ul.lista-check li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 10px;
  font-size: 15px;
  color: #334155;
}






.icon-top {
  font-size: 36px;
  color: #2563eb;
  margin-bottom: 12px;
}


.beneficios-acessorios {
  padding: 80px 20px;
  background-color: #f8fafc;
  text-align: center;
}



.beneficios-acessorios .section-title {
  font-size: 28px;
  color: #0f172a;
  font-weight: 700;
  margin-bottom: 10px;
}



.beneficios-acessorios .subtitulo {
  font-size: 16px;
  color: #475569;
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}



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



.icon-circle {
  width: 40px;
  height: 40px;
  background-color: #2563eb;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}



.beneficio-item h3 {
  font-size: 16px;
  color: #0f172a;
  margin-bottom: 6px;
  font-weight: 600;
}



.beneficios-acessorios {
  padding: 80px 20px;
  background-color: #f8fafc;
  text-align: center;
}



.beneficios-acessorios .section-title {
  font-size: 28px;
  color: #0f172a;
  font-weight: 700;
  margin-bottom: 10px;
}



.beneficios-acessorios .subtitulo {
  font-size: 16px;
  color: #475569;
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}







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



.icon-circle {
  width: 44px;
  height: 44px;
  background-color: #2563eb;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}



.beneficio-item h3 {
  font-size: 16px;
  color: #0f172a;
  margin-bottom: 6px;
  font-weight: 600;
}



.beneficio-item p {
  font-size: 14px;
  color: #475569;
  line-height: 1.5;
}


  



.catalogo-galeria .container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}



.catalogo-galeria .titulo {
  font-size: 32px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 10px;
}



.catalogo-card .lista-check {
  list-style: none;
  padding-left: 0;
  margin-bottom: 16px;
}



.catalogo-card .lista-check li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 8px;
  font-size: 14px;
  color: #334155;
}



.catalogo-card .lista-check li::before {
  content: "\f00c"; /* check icon */
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 0.2em;
  font-size: 13px;
  color: #2563eb;
}



.catalogo-galeria .container {
  max-width: 1200px;
  margin: 0 auto;
}



.catalogo-galeria .titulo {
  font-size: 32px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 12px;
  text-align: center;
}



.lista-check {
  list-style: none;
  padding-left: 0;
  margin-bottom: 25px;
}



.lista-check li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 10px;
  font-size: 15px;
  color: #334155;
  line-height: 1.5;
}



.lista-check li::before {
  content: "\f00c";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: #2563eb;
  position: absolute;
  left: 0;
  top: 0.2em;
  font-size: 14px;
}



.solucoes-personalizadas {
  background: linear-gradient(to right, #f9fafb, #ffffff);
  padding: 80px 20px;
}



.solucoes-personalizadas .container-hero {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 60px;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}



.solucoes-personalizadas .hero-text {
  flex: 1;
  min-width: 280px;
}



.solucoes-personalizadas .hero-text .categoria {
  color: #2563eb;
  font-weight: 600;
  margin-bottom: 8px;
}



.solucoes-personalizadas .hero-text .titulo {
  font-size: 32px;
  color: #0f172a;
  font-weight: 700;
  margin-bottom: 16px;
}



.solucoes-personalizadas .hero-text p {
  font-size: 16px;
  color: #475569;
  margin-bottom: 16px;
  line-height: 1.6;
}



.solucoes-personalizadas .hero-image {
  flex: 1;
  min-width: 280px;
  display: flex;
  justify-content: center;
}



.solucoes-personalizadas .hero-image img {
  max-width: 100%;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}



.casos-uso-carrossel {
  background-color: #f9fbfd;
  padding: 80px 20px;
  text-align: center;
  position: relative; /* ESSENCIAL para permitir que os botões fiquem dentro do contexto do section */
  overflow: hidden; /* evita que os botões saiam para fora do contêiner */
}



.carrossel-titulo h2 {
  font-size: 28px;
  color: #0f172a;
  margin-bottom: 10px;
  font-weight: 700;
}



.carrossel-titulo p {
  color: #475569;
  font-size: 15px;
  margin-bottom: 40px;
}



.caso-card {
  background: white;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
  transition: all 0.3s ease;
  width: 260px;
  text-align: center;
}

.caso-card:hover {
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
  transform: translateY(-4px);
}



.caso-card img {
  width: 100%;
  border-radius: 8px;
  margin-bottom: 12px;
}



.caso-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
  color: #0f172a;
}

.caso-card p {
  font-size: 14px;
  color: #64748b;
  line-height: 1.5;
}



.carousel-wrapper-loop {
  overflow: hidden;
  position: relative;
  max-width: 100%;
  padding: 0 20px;
}



.carousel-loop {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: scrollLoop 40s linear infinite;
  animation-play-state: running;
}



.carousel-loop .caso-card {
  flex: 0 0 280px;
  background-color: white;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  padding: 16px;
  text-align: left;
}



.carousel-loop .caso-card img {
  width: 100%;
  border-radius: 8px;
  margin-bottom: 12px;
}



.carousel-loop .caso-card h3 {
  font-size: 16px;
  color: #0f172a;
  font-weight: 700;
  margin-bottom: 8px;
}



.carousel-loop .caso-card p {
  font-size: 14px;
  color: #475569;
  line-height: 1.5;
}



.carousel-wrapper-loop:hover .carousel-loop {
  animation-play-state: paused;
}



.carousel-wrapper-loop {
  overflow: hidden;
  position: relative;
  width: 100%;
  padding: 0 20px;
}



.carousel-loop {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: scrollLoopAuto 60s linear infinite;
  animation-play-state: running;
}



.carousel-wrapper-loop:hover .carousel-loop {
  animation-play-state: paused;
}


.caso-card {
  flex: 0 0 280px;
  background-color: white;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  text-align: left;
  padding: 16px;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}



.caso-card:hover {
  background-color: #e8f0fe; /* azul suave */
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}



.diferenciais-acessorios {
  background: linear-gradient(to bottom right, #1e3a8a, #2563eb);
  padding: 80px 20px;
  color: white;
  text-align: center;
}



.diferenciais-acessorios .container {
  max-width: 1200px;
  margin: 0 auto;
}



.diferenciais-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
  margin-bottom: 60px;
}



.diferencial-card {
  background: rgba(255, 255, 255, 0.05);
  padding: 32px;
  border-radius: 12px;
  flex: 1 1 300px;
  max-width: 360px;
  transition: transform 0.3s ease, background 0.3s ease;
}



.diferencial-card:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-5px);
}



.icon-circle-xl {
  width: 48px;
  height: 48px;
  background-color: #f1f5f9;
  color: #2563eb;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 20px;
  margin-left: 0; /* NOVO */
}



.diferencial-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
}



.diferencial-card p {
  font-size: 15px;
  line-height: 1.5;
}



.cta-azul {
  margin-top: 40px;
}



.cta-azul h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 16px;
}



.cta-azul p {
  font-size: 16px;
  margin-bottom: 24px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}



.cta-button-branco {
  background-color: white;
  color: #2563eb;
  padding: 14px 28px;
  font-size: 16px;
  white-space: nowrap;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.3s ease;
}



.cta-button-branco:hover {
  background-color: #dbeafe;
}



.icon-circle-xl {
  width: 48px;
  height: 48px;
  background-color: #f1f5f9;
  color: #2563eb;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 20px;
}



.titulo {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 16px;
  color: #0f172a;
}



.card.active:hover {
  transform: scale(1.02);
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}



.cta-button {
  padding: 14px 28px;
  font-size: 16px;
  white-space: nowrap;
}



#rastreaveis .card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 24px;
}



.cta-box.cta-azul {
  background-color: #eff6ff;
  padding: 40px 20px;
  border-radius: 12px;
  text-align: center;
  margin: 40px auto;
  max-width: 880px;
}



.cta-box.cta-azul h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 16px;
  color: #1e3a8a;
}



.cta-box.cta-azul p {
  font-size: 16px;
  color: #1e293b;
  margin-bottom: 24px;
}


body {
  font-family: 'Inter', sans-serif;
  margin: 0;
  padding: 0;
  background-color: #ffffff;
  color: #0f172a;
}

.container,
.container-hero {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

h1, h2, h3 {
  font-weight: 700;
  color: #0f172a;
}

p {
  font-size: 16px;
  color: #475569;
  line-height: 1.6;
}

.cta-button,
.cta-button-branco,
.cta-outline {
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.cta-button {
  background-color: #2563eb;
  color: white;
  padding: 12px 24px;
}

.cta-button:hover {
  background-color: #1d4ed8;
}

.cta-outline {
  border: 1px solid #2563eb;
  color: #2563eb;
  background-color: transparent;
  padding: 10px 20px;
}

.cta-outline:hover {
  background-color: #2563eb;
  color: white;
}

.cta-button-branco {
  background-color: white;
  color: #2563eb;
  padding: 12px 24px;
  border: 1px solid #2563eb;
}

.cta-button-branco:hover {
  background-color: #ebf4ff;
}

.card {
  background-color: #fff;
  padding: 24px;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  text-align: center;
}

.card h3 {
  margin-top: 16px;
}

.icon-top {
  font-size: 36px;
  color: #2563eb;
}

ul.lista-check {
  list-style: none;
  padding-left: 0;
  margin: 0;
  text-align: left;
}

ul.lista-check li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 10px;
  font-size: 15px;
  color: #334155;
}


.acessorios-hero {
  background: linear-gradient(to right, #2563eb, #1e40af);
  padding: 80px 20px;
  color: white;
}

.acessorios-hero .hero-text h1 {
  color: #ffffff;
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 16px;
}

.acessorios-hero .hero-text p {
  font-size: 18px;
  color: #e0edff;
  margin-bottom: 24px;
  max-width: 500px;
}

.acessorios-hero .cta-button {
  background-color: #facc15;
  color: #1e293b;
}

.acessorios-hero .cta-button:hover {
  background-color: #eab308;
}


.beneficios-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px 60px;
  max-width: 1000px;
  margin: 0 auto;
  text-align: left;
}

@media (max-width: 768px) {
  .beneficios-grid {
    grid-template-columns: 1fr;
  }
}


.carousel-nav {
  position: absolute;
  top: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
  padding: 0 10px;
  pointer-events: none;
}

.carousel-btn {
  background-color: rgba(255, 255, 255, 0.9);
  border: none;
  border-radius: 50%;
  font-size: 18px;
  color: #2563eb;
  width: 40px;
  height: 40px;
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  pointer-events: all;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease;
}

.carousel-btn:hover {
  background-color: #2563eb;
  color: #fff;
}

.carousel-loop {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: scrollLoop 60s linear infinite;
}

@keyframes scrollLoop {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.carousel-wrapper-loop:hover .carousel-loop {
  animation-play-state: paused;
}

@media (max-width: 768px) {
  .carousel-loop {
    animation-duration: 30s;
  }
}

.carousel-wrapper-loop::before,
.carousel-wrapper-loop::after {
  content: '';
  position: absolute;
  top: 0;
  width: 60px;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

.carousel-wrapper-loop::before {
  left: 0;
  background: linear-gradient(to right, #f9fbfd, transparent);
}

.carousel-wrapper-loop::after {
  right: 0;
  background: linear-gradient(to left, #f9fbfd, transparent);
}

.diferenciais-grid-react {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
  margin-top: 40px;
  margin-bottom: 60px;
}

.diferencial-card-react {
  background: rgba(255, 255, 255, 0.07);
  border-radius: 20px;
  padding: 32px;
  color: white;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(6px);
  transition: transform 0.3s ease, background 0.3s ease;
}

.diferencial-card-react:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.10);
}

.icon-wrapper {
  background: white;
  color: #2563eb;
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  border-radius: 50%;
  font-size: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.diferencial-card-react h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
}

.diferencial-card-react p {
  font-size: 15px;
  color: #e0edff;
  line-height: 1.6;
}

/* CTA abaixo */
.cta-azul h2 {
  color: white;
  font-size: 24px;
  margin-bottom: 10px;
}

.cta-azul p {
  color: #dbeafe;
  font-size: 16px;
  margin-bottom: 24px;
}

.cta-button-branco {
  background-color: white;
  color: #2563eb;
  font-weight: 600;
  border-radius: 8px;
  padding: 12px 24px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.cta-button-branco:hover {
  background-color: #dbeafe;
}

.diferenciais-acessorios .titulo,
.diferenciais-acessorios h2,
.diferenciais-acessorios h3 {
  color: #ffffff !important;
}
.acessorios-hero-bg {
  background: url("../img/bg-acessorios-sensores-rastreamento-telemetria.png") no-repeat center center;
  background-size: cover;
  background-color: #1e3a8a; /* fallback */
  padding: 100px 20px;
  color: white;
  position: relative;
}

.acessorios-hero-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, #2563ebcc, #1e3a8acc);
  z-index: 1;
}

.acessorios-hero-bg .container-hero {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.acessorios-hero-bg .hero-text {
  max-width: 550px;
}

.acessorios-hero-bg .hero-text h1 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 16px;
  color: white;
}

.acessorios-hero-bg .hero-text p {
  font-size: 18px;
  color: #e0edff;
  margin-bottom: 24px;
}

.acessorios-hero-bg .cta-button {
  background-color: #facc15;
  color: #1e293b;
  font-weight: 600;
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
}
.hero-image-right {
  flex: 1 1 50%;
  text-align: center;
}

.hero-image-right img {
  max-width: 100%;
  height: auto;
}

/* Fundo escurecido da tela */
.modal-bx24 {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  display: none;
}

/* Sobreposição clicável para fechar */
.modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  z-index: 1;
}

/* Caixa central do modal */
.modal-box {
  position: relative;
  z-index: 2;
  background: white;
  padding: 40px 20px;
  border-radius: 12px;
  max-width: 540px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

/* Botão de fechar */
.close-bx24 {
  position: absolute;
  top: 12px;
  right: 16px;
  font-size: 28px;
  color: #999;
  cursor: pointer;
}

/* Container interno para limitar o formulário */
.form-wrapper-bx24 {
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
}

/* Responsividade */
@media (max-width: 600px) {
  .modal-box {
    padding: 20px 15px;
  }

  .close-bx24 {
    top: 8px;
    right: 10px;
    font-size: 24px;
  }
}
.icon-caso {
  font-size: 40px;
  color: #2563eb;
  background-color: #e0edff;
  border-radius: 50%;
  padding: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.06);
  margin-bottom: 16px;
  transition: transform 0.3s ease;
}

.caso-card:hover .icon-caso {
  transform: scale(1.1);
}


ul.lista-check li::before {
  content: "\f00c";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: #2563eb;
  position: absolute;
  left: 0;
  top: 0.2em;
  font-size: 14px;
}
@media (max-width: 500px) {
  .card-grid.small {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 480px) {
  .hero-text h1 {
    font-size: 28px;
  }
}

/* === AJUSTES DE RESPONSIVIDADE ADICIONAIS === */

@media (max-width: 900px) {
  .beneficios-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .acessorios-hero-bg .container-hero {
    flex-direction: column;
    text-align: center;
  }

  .acessorios-hero-bg .hero-text {
    margin-bottom: 24px;
  }
}

@media (max-width: 600px) {
  .caso-card {
    min-width: 260px;
    padding: 20px 12px;
  }
}

@media (max-width: 480px) {
  h2 {
    font-size: 22px;
  }

  h3 {
    font-size: 18px;
  }
}

@media (max-width: 600px) {
  .card-grid.small {
    grid-template-columns: 1fr;
    padding: 0 16px;
  }

  .card-grid.small .card {
    width: 100% !important;
    max-width: none !important;
    box-sizing: border-box;
  }
}

/* === RESPONSIVIDADE FINAL PARA CARDS E GRID === */
@media (max-width: 600px) {
  .card-grid.small {
    grid-template-columns: 1fr;
    padding: 0 16px;
  }

  .card {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box;
    margin-left: auto;
    margin-right: auto;
  }

  .card h3 {
    font-size: 18px;
  }

  .card .subtitulo {
    font-size: 15px;
  }

  .card .lista-check li {
    font-size: 14px;
    text-align: left;
  }

  .card .cta-outline {
    font-size: 14px;
    padding: 10px 20px;
  }
}

/* === ESTILO PARA BOTÃO AMARELO COM HOVER === */
.cta-amarelo {
  background-color: #facc15;
  color: #1e293b;
  padding: 12px 24px;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  display: inline-block;
  transition: background-color 0.3s ease;
}

.cta-amarelo:hover {
  background-color: #eab308;
}

/* === RESPONSIVIDADE REFORÇADA PARA CARDS NO MOBILE === */
@media (max-width: 600px) {
  .card-grid.small {
    grid-template-columns: 1fr;
    padding: 0 16px;
  }

  .card {
    max-width: none !important;
    width: 100% !important;
    margin: 0 auto;
    box-sizing: border-box;
  }

  .card .subtitulo {
    font-size: 15px;
  }

  .card .lista-check li {
    font-size: 14px;
    text-align: left;
  }

  .card .cta-outline {
    font-size: 14px;
    padding: 10px 20px;
  }
}

/* === BOTÃO AMARELO COM HOVER === */
.cta-amarelo {
  background-color: #facc15;
  color: #1e293b;
  padding: 12px 24px;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  display: inline-block;
  transition: background-color 0.3s ease;
}

.cta-amarelo:hover {
  background-color: #eab308;
}

/* === AJUSTE RESPONSIVO PARA .solucoes-personalizadas === */
@media (max-width: 768px) {
  .solucoes-personalizadas .container-hero {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 24px;
    padding: 0 16px;
  }

  .solucoes-personalizadas .hero-image {
    width: 100%;
    max-width: 100%;
  }

  .solucoes-personalizadas .hero-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
  }

  .solucoes-personalizadas .hero-text {
    width: 100%;
    max-width: 100%;
  }
}