@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  outline: 0;
}

header {
  padding-top: 20px;
  width: 100%;
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: column;
}
.cossoro {
  display: flex;
  flex-wrap: wrap; 
  justify-content: space-between;
  width: 100%;
  padding: 5%;
}

i {
  color: #fff;
}

.header-icons {
  display: flex;
  gap: 14px;
}

.header-icons a:hover i {
  color: #FF6600;
  transition: 0.5s;
  animation: translateY 0.8s infinite alternate;
}

@keyframes translateY {
  from {
    transform: translateY(0) scale(1);
  }
  to {
    transform: translateY(-8px) scale(1.1);
  }
}
.header-button {
  border: 1px solid #fff;
  padding: 8px 24px;
  border-radius: 4px;
  color: #fff;
  background-color: transparent;
  transition: background-color 0.8s;
}

.header-button:hover {
  border: 1px solid #FF6600;
  background-color: #FF6600;
}

.header-logo {
   display: flex;
  align-items: flex-end;
  justify-content: flex-start; 
    
}
.header-logo img{
 max-height: 100%;
 padding: 0;
 
}

@media screen and (max-width: 768px) {
  .cossoro {
    width: 100%;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .cossoro i {
    margin-top: 16px;
    font-size: 36px;
  }
  .header-button {
    display: none;
  }
}
/* 
.main{
    height: 100vh;
    width: 100%;
    position: absolute;

    .slide {
        width: 100%;
        height: 100%;
        overflow: hidden;

        .image {
            height: 100%;
            width: 100%;
            object-fit: cover;
        }

        .image-data {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            text-align: center;
            width: 100%;
            z-index: 10;

            h2 {
                font-size: 45px;
                font-weight: 600;
                color: #fff;
            }
        }

        .image-data span.text {
            font-size: 14px;
            font-weight: 400;
            color: #fff;
        }
    }

    .slide::before {
        content: "";
        position: absolute;
        height: 100%;
        width: 100%;
        background-color: rgba($color: #000000, $alpha: .4);
        z-index: 10;
    }
}
*/
.container {
  max-width: 1440px;
  margin: 0 auto;
 
}

.bg-home {
  position: relative;
}

.bg-home::before {
  content: "";
  display: block;
  position: absolute;
  background-image: linear-gradient(to bottom, rgba(6, 18, 30, 0.1), #06121e), url("./Img/frota3.png");
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 50% 0;
  opacity: 0.3;
}

.hero {
  color: #fff;
  /* min-height: 80vh; */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 14px;
}
.hero h1 {
  text-align: center;
  line-height: 150%;
  max-width: 940px;
  font-size: 46px;
}
.hero p {
  text-align: center;
  margin: 14px 0;
}

.button-contact {
  padding: 14px 28px;
  color: #fff;
  background-color: #FF6600;
  border: 0;
  font-size: 18px;
  font-weight: 600;
  margin: 14px 0;
}

.button-contact:hover {
  animation: scaleButton 0.8s alternate infinite;
}

@keyframes scaleButton {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.07);
  }
}
@media screen and (max-width: 768px) {
  .hero {
    min-height: 60vh;
}
.about-content {
    flex-direction: column;
}
.spaceY {
    display: none;
}
.beneficts-row .dots img {
    width: 75px;
    height: 75px;
}
  .hero h1 {
    font-size: 34px;
    padding: 0 14px;
    width: 100%;
  }
  .hero p {
    font-size: 14px;
  }
}
@media screen and (max-width: 480px) {
  .hero h1 {
    font-size: 24px;
  }
  .hero p {
    font-size: 14px;
  }
}
.about {
  background-color: #FF6600;
  overflow: hidden;
  color: #ffffff;
}

.about-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 34px 14px 64px 14px;
}
.about-content img {
  max-width: 100%;
}

.about-content div {
  flex: 1;
}

.about-description {
  align-items: center;
  justify-content: center;
}
.about-description h2 {
  padding: 14px 0 0 0;
  font-size: 38px;
  margin-bottom: 24px;
  text-align: center;
  font-family: "Montserrat", Sans-serif;
}
.about-description p {
  margin-bottom: 44px;
  margin-left: 50px;
  margin-right: 50px;
  line-height: 200%;
}

.spaceY {
  background-color: #06121e;
  position: absolute;
  width: 5px;
  height: 500px;
  border-radius: 10px;
  left: 45%;
}

.beneficts {
  background-color: #06121e;
  border-radius: 10px;
  color: #fff;
}

.beneficts-row {
  margin-top: 10px;
  display: flex;
  width: 100%;
}

.beneficts-row .dots {
  text-align: center;
  font-family: "Montserrat", Sans-serif;
  font-size: 16px;
  font-weight: 500;
}
.beneficts-row .dots p {
  margin-top: 15px;
}

.beneficts-row .dots img {
  width: 100px;
  height: 100px;
  transition: transform 0.4s;
  border: 2px solid #fff;
  border-radius: 50%;
}

.beneficts-row .dots img:hover {
  transform: scale(1.15);
}

@media screen and (max-width: 768px) {
  .about-content {
    flex-direction: column;
  }
  .spaceY {
    display: none;
  }
  .beneficts-row .dots img {
    width: 75px;
    height: 75px;
  }
  .beneficts-row .dots p {
    font-size: 14px;
    width: 100px;
  }
  .aplicativo .suboptions {
    justify-content: center;
    height: 165px;
    margin-left: 0px;
    margin-top: 0px;
  }
}
.aplicativo {
  justify-content: center;
  align-items: center;
}

.aplicativo .celular {
  background-image: url(./Img/Iphone2.png);
  background-repeat: no-repeat;
  background-size: cover;
  width: 630px;
  height: 650px;
}

.aplicativo .menu {
  transform: translateY(60px);
}

.aplicativo .suboptions {
  width: 265px;
  height: 190px;
  display: flex;
  margin-left: 175px;
}
.aplicativo .suboptions .point {
  width: 100px;
  height: 100px;
  margin-left: 15px;
  background-color: #FF6600;
  color: #fff;
  font-family: "montserrat" sans-serif;
  font-weight: 600;
  text-align: center;
  border-radius: 10px;
  border: 1px solid #fff;
}
.aplicativo .suboptions .point p {
  margin-top: 10px;
}
.aplicativo .suboptions .point img {
  width: 90px;
  height: 90px;
  margin-top: 5px;
}
.aplicativo .suboptions .point:hover {
  background-color: #ffa500;
}

.clientes {
  background-color: #06121e;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-around;
  padding-top: 54px;
  padding-bottom: 54px;
  font-family: "poppins";
}
.clientes .planos {
  color: #fff;
  font-size: 24px;
  margin-top: 50px;
}
.clientes .planos {
  
  font-size: 36px;
  
}
.clientes .dados {
  display: flex;
  flex-direction: row;
  gap: 36px;
  color: #fff;
}
.clientes .dados h2 {
  font-size: 40px;
  text-align: center;
}
.clientes .dados p {
  text-align: center;
  margin: 14px 0;
  line-height: 200%;
  font-size: 30px;
}
.clientes .beneficios {
  display: flex;
  flex-direction:column;
  align-items: center;
  justify-content: center;
  width: 100%;
  gap: 16px;
  background-color: #ff6400;
}
.clientes .beneficios .cards {
  color: #06121e;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-around;
  
 
  flex-wrap: wrap;
  text-decoration: none;
  margin-bottom: 50px;
}
.clientes .beneficios .cards .frota {
  background-color: #fff;
  width: 350px;
  height: 500px;
  border-radius: 30px;
  display: flex;
  align-items: center;
  text-align: center;
  justify-content: space-around;
  flex-direction: column;
  margin: 20px;
  transition: transform 0.1s linear;
}
.clientes .beneficios .cards .frota ul {
  list-style-type: none;
}
.clientes .beneficios .cards .frota a {
  background-color: #06121e;
  width: 100px;
  height: 40px;
  border: none;
  border-radius: 30px;
  color: #fff;
  font-size: 15px;
  padding-top: 6px;
}
.clientes .beneficios .cards .frota a:hover {
  background-color: #0f2b47;
}
.clientes .beneficios .cards .projeto:hover,
.clientes .beneficios .cards .frota:hover {
  transform: scale(1.05);
}
.clientes .beneficios .cards .projeto {
  background-color: #fff;
  width: 350px;
  height: 500px;
  margin: 20px;
  border-radius: 30px;
  display: flex;
  align-items: center;
  text-align: center;
  justify-content: space-around;
  flex-direction: column;
  transition: transform 0.1s linear;
}
.clientes .beneficios .cards .projeto ul {
  list-style-type: none;
}
.clientes .beneficios .cards .projeto a {
  background-color: #06121e;
  width: 100px;
  height: 40px;
  border: none;
  border-radius: 30px;
  color: #fff;
  font-size: 15px;
  padding-top: 6px;
}
.clientes .beneficios .cards .projeto a:hover {
  background-color: #0f2b47;
}

@media screen and (max-width: 768px) {
  .clientes .beneficios .cards {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
  }
}
.interesses {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
}
.interesses .inter {
  margin-top: 50px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 14px;
  width: 100%;
  text-align: center;
  margin-bottom: 50px;
}
.interesses .inter .cards {
  background-color: #ffffff;
  width: 350px;
  height: 350px;
  border-radius: 30px;
  display: flex;
  align-items: center;
  text-align: center;
  flex-direction: column;
  justify-content: space-around;
  transition: transform 0.1s linear;
  text-decoration: none;
  color: #FF6600;
}
.interesses .inter .cards ion-icon {
  font-size: 50px;
  color: #FF6600;
}
.interesses .inter .cards:hover {
  transform: scale(1.05);
}

@media screen and (max-width: 768px) {
  .inter {
    padding: 10px;
  }
}
.services {
  background-color: #FF6600;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 54px 14px;
}

.services-content h2 {
  text-transform: uppercase;
  text-align: center;
  font-size: 38px;
  margin-bottom: 14px;
}

.services-content p {
  line-height: 150%;
  text-align: center;
  margin-bottom: 20px;
  max-width: 780px;
}

.offers {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  padding: 0 44px 34px 44px;
}

.service1 {
  flex: 1;
  width: 200px;
  height: 250px;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #171921;
  border-radius: 8px;
  border: 1px solid #fff;
  overflow: hidden;
}
.service1 img {
  width: 100%;
  max-width: 150px;
  transition: transform 0.2s;
}

.service1:hover img {
  transform: scale(1.1);
}

.service-info {
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 14px;
  background-color: #171921;
  color: #fff;
  text-align: center;
  z-index: 99;
}

@media screen and (max-width: 768px) {
  .offers {
    flex-direction: column;
  }
  .service1 {
    max-width: 740px;
  }
}
.telemetria {
  background-color: #06121e;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 54px 14px;
}

.telemetria-content h2 {
  text-transform: uppercase;
  text-align: center;
  font-size: 38px;
  margin-bottom: 14px;
}

.placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.switch {
  position: relative;
  width: 200px;
  height: 50px;
  border-radius: 25px;
}

.switch input {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  width: 200px;
  height: 50px;
  border-radius: 25px;
  background: #06121e;
  outline: none;
}

.switch input::before,
.switch input::after {
  z-index: 2;
  position: absolute;
  top: 25px;
  transform: translateY(-50%);
  font-weight: bolder;
}

.switch input::before {
  content: "Telemetria";
  left: 20px;
}

.switch input::after {
  content: "Videometria";
  right: 20px;
}

.switch input:checked {
  background: #FF6600;
}

.switch label {
  z-index: 1;
  position: absolute;
  top: 7px;
  bottom: 7px;
  border-radius: 20px;
}

.switch input {
  transition: 0.25s;
}

.switch input:checked::after,
.switch input:checked::before {
  color: #fff;
  transition: color 0.5s;
}

.switch input:checked + label {
  left: 10px;
  right: 100px;
  background: #1e1e1e;
  transition: left 0.5s, right 0.4s 0.2s;
}

.switch input:not(:checked) {
  background: #06121e;
  transition: background 0.4s;
}

.switch input:not(:checked)::before {
  color: #fff;
  transition: color 0.5s;
}

.switch input:not(:checked)::after {
  color: #06121e;
  transition: color 0.5s 0.2s;
}

.switch input:not(:checked) + label {
  left: 100px;
  right: 10px;
  background: #FF6600;
  transition: left 0.4s 0.2s, right 0.5s, background 0.35s;
}

.textTelemetria {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: 20px;
  width: 100%; 
  max-width: 100%; 
  overflow: hidden;
}
.textTelemetria .text-organizer {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 400px;
  height: 400px;
  text-align: center;
  margin: 0 auto;
}
.textTelemetria .text-organizer p {
  margin-top: 10px;
  font-size: 18px;
}
.textTelemetria .text-organizer h3 {
  font-size: 24px;
}
.textTelemetria .image {
  max-width: 400px;
  max-height: 400px;
}

@media screen and (max-width: 768px) {
  .telemetria-content {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
  }
  .h2-services {
    width: 300px;
  }
  .textTelemetria {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
    width: 100%; 
    max-width: 100%; 
    overflow: hidden;
}
  .textTelemetria .text-organizer {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 360px;
    text-align: center;
    margin: 0 auto;
  }
  .textTelemetria .text-organizer p {
    margin-top: 10px;
    font-size: 16px;
  }
  .textTelemetria .text-organizer h3 {
    font-size: 20px;
  }
  .textTelemetria .image {
    max-width: 380px;
    max-height: 380px;
  }
}
.integrations {
  background-color: #FF6600;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 54px 14px;
}

.integrations-content h2 {
  text-transform: uppercase;
  text-align: center;
  font-size: 38px;
  margin-bottom: 14px;
}

.integrations-content p {
  line-height: 150%;
  text-align: center;
  margin-bottom: 20px;
  max-width: 780px;
}

.integrations-offers {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  padding: 0 44px 34px 44px;
}

.service1 {
  flex: 1;
  width: 200px;
  height: 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #fff;
  border-radius: 8px;
  border: 2px solid #06121e;
  overflow: hidden;
}
.service1 img {
  width: 100%;
  max-width: 250px;
  transition: transform 0.2s;
}

.service1:hover img {
  transform: scale(1.1);
}

.service-info {
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 14px;
  background-color: #FF6600;
  color: #333;
  text-align: center;
  z-index: 99;
}

@media screen and (max-width: 768px) {
  .integrations-offers {
    flex-direction: column;
  }
  .service1 {
    max-width: 740px;
  }
  #inicio img{
    
    max-width: 200px;
    }
}
.baseLocation {
  background-color: #06121e;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 54px 14px;
}

footer {
  width: 100%;
  color: #06121e;
}
footer .footer-content {
  background-color: #171921;
  display: flex;
  justify-content: space-around;
  padding: 3rem 3.5rem;
}
footer .footer-content #footer-contacts {
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
}
footer .footer-content #footer-contacts h1 {
  margin-bottom: 0.7rem;
}
footer .footer-content #footer-contacts .footer-email {
  display: flex;
  padding-top: 15px;
  gap: 0.5rem;
}
footer .footer-content #footer-contacts .footer-email .fa-envelope {
  font-size: 27px;
  color: #FF6600;
}
footer .footer-content #footer-contacts .footer-email p {
  color: #FF6600;
}
footer .footer-content #footer-contacts .footer-email p:hover {
  color: #ffa500;
}
footer .footer-content #footer-social-media {
  display: flex;
  gap: 2rem;
  margin-top: 1.5rem;
}
footer .footer-content #footer-social-media .footer-link {
  height: 2.5rem;
  width: 2.5rem;
  border-radius: 50%;
}
footer .footer-content #footer-social-media .footer-link i {
  color: #FF6600;
}
footer .footer-content #footer-social-media .footer-link i:hover {
  color: #ffa500;
}
footer .footer-content .footer-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  list-style: none;
  color: #fff;
}
footer .footer-content .footer-list h3 {
  font-size: 27px;
  color: #FF6600;
}
footer .footer-content .footer-list .footer-link {
  color: #fff;
}
footer .footer-content .footer-list .footer-link:hover {
  color: #FF6600;
}
footer .footer-content .footer-logo {
  max-width: 200px;
}

@media screen and (max-width: 768px) {
  .footer-content {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 2rem;
  }
  .footer-content #footer-contacts {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    text-align: center;
  }
}
@media screen and (max-width: 767px) {
  .beneficios h2{
    text-align: center;
  }
  .footer-content .footer-logo {
    display: none;
  }
}
@media screen and (max-width: 478px) {
  .clientes .beneficios .cards{
    max-width: 320px;
  }
  .text-organizer {
    max-width: 300px;

  }
  .textTelemetria {
    max-width: 300px;
}
  .textTelemetria .text-organizer h3 {
    max-width: 300px;
}
  .imgTelemetria{
    width: 100%;
    max-width: 300px;
  }
  .interesses{
    display: flex;
    
    text-align: center;
  }
  .textTelemetria .text-organizer p {
    width: 300px;
  }
  .clientes .beneficios .cards .frota {
    
    width: 300px;
    
  }
  .clientes .beneficios .cards .projeto {
    
    width: 300px;
    
  }
  #beneficios .container .row{
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 36px;
  }
  .container h1{
    text-align: center;
  }
  .clientes .dados  {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 36px;
    color: #fff;
  }
  
  .footer-content .footer-logo {
    display: none;
  }
}
@media screen and (max-width: 350px) {
  .clientes .beneficios .cards {
    display: flex;
    flex-direction: column; /* Empilha os cards verticalmente */
    align-items: center; /* Centraliza os cards */
    justify-content: center; /* Centraliza os cards verticalmente */
    gap: 20px; /* Espaçamento entre os cards */
    width: 100%; /* Garante que o container ocupe toda a largura */
  }

  .clientes .beneficios .cards .frota,
  .clientes .beneficios .cards .projeto {
    width: 90%; /* Garante que os cards ocupem 90% da largura da tela */
    max-width: 300px; /* Define uma largura máxima */
    margin: 0 auto; /* Centraliza os cards horizontalmente */
  }
}

html {
  scroll-behavior: smooth;
  --scroll-duration: 500ms; /* Defina a duração da rolagem suave aqui */
}

html, body {
  transition: transform var(--scroll-duration);
}

body {
  font-family: "Poppins", Sans-serif;
  height: 100vh;
  position: relative;
  background-color: #06121e;
  scroll-behavior: smooth; /* Rolagem suave */
}

button {
  font-family: "Montserrat", Sans-serif;
  cursor: pointer;
}



.imgTelemetria {
  width: 100%;
}

a {
  cursor: pointer;
  text-decoration: none;
}/*# sourceMappingURL=style.css.map */

body {
    font-family: 'Montserrat', sans-serif;
}

.partner-section {
    background-color: #06121e;
    color: #ffffff;
    text-align: center;
    padding: 50px 20px;
    margin: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.partner-section h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
}

.partner-section p {
    font-size: 1.5em;
    margin-bottom: 20px;
}

.partner-section ul {
    list-style: none;
    padding: 0;
    font-size: 1.2em;
    text-align: left;
    display: inline-block;
    margin-bottom: 30px;
}

.partner-section li {
    margin: 10px 0;
}

.partner-section button {
    background-color: #ffffff;
    color: #06121e;
    border: none;
    padding: 15px 30px;
    font-size: 1.2em;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
   
}

.partner-section button:hover {
    background-color: #ffffff;
}
.navbar {
  background-color: #FF6600;
  color: #fff;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
}

.navbar-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  max-width: 80%;
  margin: 0 auto;
}

.navbar-logo {
  color: #fff;
  text-decoration: none;
  font-size: 1.5rem;
  font-weight: 700;
}

.navbar-menu {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  margin: 0;
  padding: 0;
}

.navbar-menu li {
  list-style: none;
}

.navbar-menu a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

.navbar-menu a:hover {
  color: #ddd;
}

.content {
  padding-top: 80px; /* Ajuste o padding conforme necessário */
}

#beneficios {
  padding: 40px 0;
  background-color: #06121e;
}
#beneficios .container {
  max-width: 1200px;
  margin: auto;
}
#beneficios .row {
  display: flex;
  justify-content: space-around;
}
#beneficios .col {
  text-align: center;
  max-width: 300px;
}
 #beneficios .col p{
  color: #fff;
}
#beneficios .col h3{
  color: #fff;
} 
#beneficios .icon {
  width: 50px;
  height: 50px;
  margin-bottom: 20px;
}
#beneficios h1{
  font-size: 36px;
  display: flex;
justify-content: center;
padding-bottom: 75px;
color: #fff;
}
.footer-logo img{
max-width: 200px;
}
#inicio img{
padding-top: 20px;
}