/* ===== VARIÁVEIS GLOBAIS ===== */
:root {
  --cor-primaria: rgb(54, 54, 194);
  --cor-destaque: #db1111;
  --cor-whatsapp: #28a745;
  --cor-texto: #262626;
  --cor-fundo-claro: #f8f9ff;
}

.content {
    float:left;
    width:92%;
    margin:0 4%;
    padding: 20px 0;
}

.interface {
  width: 100%;
  margin: auto;   
  max-width: 1280px;
  padding: 0;  
}

/*BTN*/
.btn-download { 
    background-color:#ee2727;
    color:#fff;
    border-radius: 50px;
    font-family: "Oswald", sans-serif;
    padding: 0.5em 0.8em;
    display:block;
    float: none;
    text-decoration: none;
    margin: auto;
    width:100%;
    font-size: 1.5em;
    text-align: center;
    line-height: 40px;
}

.btn-download:hover {
    background-color:#d00f0f;
    color:#fff;
}

/*TOP BAR*/

.topbar {  
    background-color: rgb(59, 81, 182);      
    padding:5px; 
    z-index: 100000;      
}

.barra{
     margin-left: clamp(10px, 10vw, 200px);
     margin-right:clamp(10px, 10vw, 200px) ;

    display: flex;     
    justify-content:end; 
    align-items: center;
    flex-direction: row-reverse;
}

.topbar .barra .txt-telefone a{
    color: #fff;
    font-size: 16px;
    font-weight: 800;
    text-decoration: none;
    margin-left: 10px;
}

.btn-social {
    display: flex;  
    justify-content: center;
    align-content: center;      
}


.btn-social button {  
  width: 30px;
  height: 30px;
  font-size: 20px;
  border-radius: 50%;
  color: #fff;
  background-color:transparent;  
  border: transparent;   
  cursor: pointer;
  transition: transform 0.1s ease-in-out;
  margin-left: 10px;
}

.btn-social button:hover{
  transform: scale(1.2);
}

/* Link social estilizado como botão (substitui <a><button>) */
.btn-social-link {
  width: 30px;
  height: 30px;
  font-size: 20px;
  border-radius: 50%;
  color: #fff;
  background-color: transparent;
  border: none;
  cursor: pointer;
  transition: transform 0.1s ease-in-out;
  margin-left: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.btn-social-link:hover {
  transform: scale(1.2);
}

/*HEADER*/
.main_header { 
    background:#ffffff;
    border-bottom:1px #f4f4f4 solid;
    z-index:1;
    padding:0em;     
    border-bottom: 3px solid rgb(54, 54, 194); /* Espessura, estilo e cor */
    
}
.main_header .content {
    float:left;
    padding:0;
}

.fixed { 
    display:block;
    position:fixed;
    z-index:9;
    margin-top: -50px;
}
.main_header_logo {
    float:left;       
}

.main_header_logo a img {    
   display: flex;
   align-items: center;
    
}

/*Seu Código*/
.section-seu-codigo          { padding:10px 0px; background-color:#f4f4f4; }
.section-seu-codigo .content { float:left; padding:1em 0; }
.section_title               { width: 100%; float:left; margin-bottom:1em; font-size:1.3em; font-weight: 300; text-align: center; border-bottom: 1px #eceaea solid; padding-bottom: 1em; }

.box-artigo   { width:100%; float:left; }


/*Menu Responsivo*/
.menu-fixo { display:none; }

nav {
    background:#ffffff;
    z-index:1;
    width: 75%;
    float: right;
    text-align: right;    
}

nav ul {
    list-style:none;
}

nav ul li {
    display:inline-block;
    position: relative;      
    text-align: center;  
}


nav ul li:hover {    
    background:rgb(59, 81, 182);     
}

nav ul li a {
    color:#262626;
    display:block;
    text-decoration:none;
    padding:1.8em 1em;
}

nav ul li a:hover {
    color:#ffffff;    

}

nav ul li a span {
    margin-right:10px;
}

nav ul li:hover .children {
    display:block;
}

nav ul li .children {
    display: none;
    background:rgb(59, 81, 182);
    position: absolute;
    width:100%;
    z-index:1000;
    text-align:left;    
}

nav ul li .children li {
    display:block;
    overflow: hidden;
    border-bottom: 1px solid rgba(255,255,255,.5);
}

nav ul li .children li:hover { background:#262626; color:#ffffff;}

nav ul li .children li a  {
    display: block;
    color: #d7d7d8;
}

nav ul li .children li a span {
    float: right;
    position: relative;
    top:3px;
    margin-right:0;
    margin-left:10px;
}

nav ul li .caret {
    position: relative;
    top:3px;
    margin-left:10px;
    margin-right:0px;
  }

/*MAIN - TELA-BACKGROUND*/

main div.background-section-video video{
  width: 100%;
  height: 580px;
  object-fit: cover;
  object-position: center;
  filter: brightness(50%); 
  position:absolute;    
}

 main .txt-textoPrincipal{    
  display: flex;   
  flex-direction:column;
  align-items: center;
  justify-content:space-between; 
  padding-top: 150px; 
  position:relative;  
  line-height:1.4;
}

.txt-textoPrincipal .txt-textoTela h1{
  font-size: 48px;
  color: #ffffff;
  font-weight:bold;
  font-family: "Oswald", sans-serif;
  text-align: center;
}

.txt-textoPrincipal .txt-textoTela h1 span{
    font-family: "Oswald", sans-serif;
    color: #db1111;
}

.txt-textoPrincipal .txt-textoTela p {
  font-size: 18px;
  color: #ffffff;
  margin-top: 20px;  
  font-weight: 300;
  text-align: center;
  margin-bottom: 20px;  
}

.button-main{
  display: flex;
  justify-content: center; 
  align-items: center;  
  margin-bottom: 10px;   
}

.txt-textoPrincipal .button-principal{  
  width: 280px;
  height: 40px;
  background: rgb(54, 54, 194);
  border: none;
  
  margin-top: 10px;  
  font-size: 14px;
  border-radius: 4px;
  cursor: pointer;
  margin-right:  10px;   
}

.button-principal {
  text-decoration: none;
  color: #fff;
  transition: .3 ease;
}

.button-principal:hover{
  background-color: #db1111;  
}

.txt-textoPrincipal .button-secundario {
  width: 160px;
  height: 40px;
  background: rgb(255, 255, 255);
  border: none;

  margin-top: 10px;  
  font-size: 14px;
  border-radius: 4px;
  cursor: pointer;
  margin-left: 10px;  
}

.button-secundario {
  text-decoration: none;
  color: rgb(54, 54, 194) ;
  transition: .3 ease;
}

.button-secundario:hover {
  background-color: #db1111;
  color: rgb(255, 255, 255);
}

.textoEcelular {
  display: flex;
  align-items: center;
  justify-content:flex-start;
  margin-left: 30px;
}

.textoEcelular img {
  border-radius: 50%;
  height: 35px;
}

.textoEcelular h3{
  color: #e7ab3b;
  font-weight: 100;
  margin-left: 10px;  
  font-size: 12px;
}

.textoEcelular h3 span {
  font-weight: 600;
}

.logo-baixar{
  width: 95%;  
  display: flex;
  justify-content: end;
  flex-direction: column;  
}

.logo-baixar .txt-baixar{
    justify-content: end; 
    margin-top: 30px; 
    margin-bottom: 5px;
    margin-right: 10px;  
}

.logo-baixar .txt-baixar p{
    font-size:12px;   
}

.logo-baixar p{
    float: right;    
    color: #fff;
    font-size: 14px;    
    text-align: center;     
}

.logo-appStore {
  height: 32px;
  float: right;  
}

.logo-googlePlay{
  height: 32px;  
  float: right;  
}


/*teste - pagina antiga*/

/*2 SESSÃO - 2 TELA*/

.tela-Secundaria {
  padding-left: 40px;
  padding-right: 40px; 
  padding-top: 50px;
  padding-bottom: 50px;
}

.interface .seg-veiculos{
  display: flex;   
  flex-direction: row;
  align-items: center;
  justify-content:center;     
  gap: 80px;
}

.img-veiculos{
  gap: 0;
}

.img-veiculos img{
  width: 100%;  
}

.seg-veiculos .seg-titulo h3{
  background-color:rgb(54, 54, 194);
  color: #fff;  
  display: flex;
  justify-content: center;
  padding: 4px;
  font-size: 18px;
}

.seg-veiculos .seg-titulo h2{
  padding-top: 25px;
  font-size: 38px;
  
}

.seg-veiculos .seg-titulo h2 span{
  color: #db1111;
}

.seg-veiculos .button-principal{
  width: 230px;
  height: 40px;
  background: rgb(54, 54, 194);
  border: none;
  margin-top: 40px;  
  font-size: 14px;
  border-radius: 4px;
  cursor: pointer;  
}

.seg-veiculos .button-principal a{
  text-decoration: none;
  color: #fff;
  transition: .3 ease;
}

.button-principal:hover{
  background-color: #db1111; 
}

.interface .seg-textos{
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content:center;  
  gap: 12px;
}

.interface .seg-textos-primeiro h3{
  font-size: 20px;
}

.seg-textos-primeiro {  
  background-color: #f18a8a;
  border-radius: 10px;
  padding: 15px;
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.5);
  box-sizing: border-box;  
  height: 220px;  
}

.seg-textos-primeiro button{
  width: 50px;
  height: 50px;
  font-size: 30px;
  border-radius: 50%;
  color: #992323;
  background-color:transparent;  
  border: transparent;  
  transition: transform 0.3s ease-in-out;
}

.interface .seg-textos h3{
  margin-top: 10px;  
}

.interface .seg-textos p{
  color: #442b2b;  
  margin-top: 10px;
  font-size: 14px;  
}



/* ===== SEÇÃO DEPOIMENTOS ===== */
.depoimentos {
  background-color: #f8f9ff;
  padding: 60px 0;
}
.depoimentos-wrapper {
  padding: 0 40px;
}
.depoimentos-wrapper > h2 {
  text-align: center;
  font-size: 34px;
  margin-bottom: 10px;
  
}
.depoimentos-wrapper > h2 span { color: #db1111; }
.depoimentos-subtitulo {
  text-align: center;
  color: #666;
  font-size: 16px;
  margin-bottom: 40px;
}
.depoimentos-grid {
  display: flex;
  flex-direction: row;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
}
.depoimento-card {
  background: #fff;
  border-radius: 12px;
  padding: 28px;
  max-width: 320px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  border-top: 4px solid rgb(54, 54, 194);
  flex: 1 1 260px;
}
.depoimento-card .estrelas {
  color: #f5a623;
  font-size: 18px;
  margin-bottom: 12px;
}
.depoimento-card p {
  color: #555;
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 16px;
  font-style: italic;
}
.depoimento-card strong {
  color: #333;
  font-size: 14px;
}


/*3 SESSÃO - 2 TELA  POR QUE ESCOLHER NOSSOS SERVIÇOS?*/


.terceira-tela{
 background: linear-gradient(135deg, #0d1117 0%, #0f1f5c 60%, #1a0a3a 100%);
  position: relative;
  overflow: hidden;
}

.terceira-tela::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(54,54,194,0.18) 0%, transparent 65%);
  pointer-events: none;
}

.tela-terceira{
  padding-left: 40px;
  padding-right: 40px;
  padding-top: 70px;
  padding-bottom: 70px;
  position: relative;
}

.interface .ter-terceira {
  display: flex;   
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 100px;
}

.ter-texto{
  max-width: 690px;  
}

.ter-terceira .ter-texto h2{
  font-size: 34px;
  margin-left: 50px;
  text-align: center;
  color: #ffffff;
  font-weight: 700;
  letter-spacing: 0.5px;   
}

.ter-terceira .ter-texto span{
  color: #818cf8;
}

.ter-terceira .ter-texto p{
  color: #94a3b8;
  margin-top: 20px;
  margin-bottom: 20px;
  margin-left: 50px;
  line-height: 1.7;
  text-align: justify;
}

.ter-terceira .ter-texto strong{
  font-size: 18px;
  color: #818cf8;
  font-weight: 600;
}

.ter-terceira .ter-texto ul {
  list-style: none;
}


.ter-terceira .ter-texto ul li {
  list-style: none;
  margin-top: 10px;
  margin-left: 50px;
  color: #cbd5e1;
  padding-left: 24px;
  position: relative;   
}

.ter-terceira .ter-texto ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #22c55e;
  font-weight: 700;
}


.ter-terceira .ter-texto .ter-texto-paragrafo{
  border: none;
  background: linear-gradient(90deg, rgb(54, 54, 194), #818cf8);
  margin-top: 40px;
  margin-left: 50px;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(54, 54, 194, 0.4);
}

.ter-terceira .ter-texto h3{
  font-size: 18px;
  text-align: center;
  color: #ffffff;
  letter-spacing: 0.5px;
  padding: 4px 0;
}

.ter-rastreamento video{ 
  padding-top:20px ;   
  max-width: 280px;
  object-fit: contain;

  border-radius: 20px;
  box-shadow: 0 8px 48px rgba(0,0,0,0.5);
   flex-shrink: 0;
}

/*4 sessão - 4 tela proteja seu vículo não importa o tamanho*/

.tela-quarta {
  padding-top: 50px;
  padding-bottom: 50px; 
}

.quarto-texto {
  text-align: center;
}

.automoveis-quarta .quarto-texto h2{
  font-size: 34px;
  margin-bottom: 50px;
}

.automoveis-quarta .quarto-texto span {
  color:rgb(54, 54, 194) ;
}

.automoveis-quarta .automoveis-quarto-img{
  display: flex;   
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;  
}

.automoveis-quarto-img .img-veiculos-quarto {
  padding: 10px;
  transition: transform 0.3s ease;
}

.automoveis-quarto-img .img-veiculos-quarto img {
  filter: drop-shadow(0 0 10px rgba(54, 54, 194, 0.55)) drop-shadow(0 4px 16px rgba(0, 0, 0, 0.35));
  transition: filter 0.3s ease, transform 0.3s ease;
}

.automoveis-quarto-img .img-veiculos-quarto:hover img {
  filter: drop-shadow(0 0 18px rgba(54, 54, 194, 0.9)) drop-shadow(0 6px 22px rgba(0, 0, 0, 0.45));
  transform: translateY(-6px) scale(1.06);
}

.automoveis-quarta .button-principal-1{
  display: flex;  
  justify-content: center;
  margin-top: 20px;  
}

.automoveis-quarta .button-principal-1 .button-principal{
  width: 270px;
  height: 40px;
  background: rgb(54, 54, 194);
  border: none;
  margin-top: 15px;  
  font-size: 14px;
  border-radius: 4px;
  cursor: pointer; 
}

.automoveis-quarta .button-principal-1 .button-principal {
  text-decoration: none;
  color: #fff;
  transition: .3 ease;
}

.automoveis-quarta .button-principal-1 .button-principal:hover{
  background-color: #db1111;
  color:#fff ;
}

.automoveis-quarta .button-principal-1 .button-principal:hover a{
  color:#fff; 
}

/* 5 SESSAO - MAPA, LOCALIZACAO E CONTATO*/

.quinta-tela{
  background: linear-gradient(to top, rgba(0,0,0,0.8)50%, rgba(0,0,0,0.8)50%), url(/img/teladefundo5.png);
  background-position: center;
  background-size: cover;
}

.tela-quinta{
  padding-left: 40px;
  padding-right: 40px;
  padding-top: 50px;
  padding-bottom: 50px;
}

.interface .endereco {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 40px;
}

.mapBox {
  flex: 1 1 auto;
  max-width: 500px;
}

.mapBox iframe {
  width: 100%;
  height: 350px;
}

.endereco .form{
  width: 390px;
  height: 360px;
  background: linear-gradient(to top, rgba(0,0,0,0.6)50%, rgba(0,0,0,0.6)50%);  
  border-radius: 10px;
  padding: 25px;   
  
}

.endereco .form h2{  
  padding-bottom: 10px;  
  text-align: center;
  color:rgb(255, 255, 255);
  font-size: 22px;
}

 .endereco .form input{
  width:340px;
  height: 30px;
  background: transparent;
  border-bottom: 1px solid rgb(54, 54, 194);
  border-top: none;
  border-right: none;
  border-left: none;
  color: #fff;
  font-size: 12px;
  letter-spacing: 1px;
  outline: none;
}

.endereco .form textarea{
  margin-top: 20px;
  outline: none;
  width: 345px;
  height: 80px;
}

.endereco .form button{
  width: 240px;
  height: 30px;
  background: rgb(54, 54, 194);
  border: none;
  margin-top: 10px;
  margin-left: 60px;
  font-size: 14px;
  border-radius: 4px;
  cursor: pointer;
  color: #fff;
}

.endereco .form button:hover {
  background-color: #db1111;
  color:#fff;
}


/*FOOTER */

.sexta-tela{
  background-color: #2d2c30;
}

.interface .rodape {
  display: flex;   
  flex-direction: row;
  align-items: center;
  justify-content:space-around;  
}

.tela-sexta{
  padding-left: 40px;
  padding-right: 40px;   
  padding-bottom: 30px;  
}

.rodape .informacoes-contato-novo{
  display: flex; 
  gap: 10px;

}

.rodape .informacoes-contato {
  font-size: 14px;
  line-height: 1.5;
}

.rodape .informacoes-contato-pg {
  font-size: 14px;
  line-height: 1.5;
  display: flex;
  flex-direction: column;  
}

.rodape .informacoes-contato-pg h3{
  font-weight: 600;  
  position: relative;
  margin-bottom: 10px;
  transition: transform 0.3s ease-in-out;
  color:#f0e8e8;
}

.rodape .informacoes-contato-pg a{
  color:#f0e8e8;
}

.rodape .informacoes-contato-pg h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: rgb(255, 255, 255); 
}

.rodape .informacoes-contato h3 {   
  position: relative;
  margin-bottom: 10px;
  font-weight: 600;
  color:#f0e8e8;
}

.rodape .informacoes-contato h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: rgb(255, 255, 255); 
}

.rodape .informacoes-contato h4{ 
 font-weight: 200; 
 color:#f0e8e8;
}

.rodape .informacoes-contato h4 a{ 
 font-weight: 200; 
 color:#f0e8e8;
 text-decoration: none;
}


.rodape .baixar-app{
  margin-top: 43px;
}

.footer-logo-baixar{  
  width: 100%;  
  display: flex;
  justify-content: start;
  flex-direction: row;  
  margin-left: -8px;
}

.logo-appStore {
  height: 30px; 
}

.logo-googlePlay{
  height: 30px;  
}

.rodape .baixar-app h3 {
  font-size: 16px;  
  position: relative;
  margin-bottom: 10px;
 color:#f0e8e8;
}

.rodape .baixar-app h3::after{
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 52%;
  height: 1px;
  background-color: rgb(255, 255, 255);
}

.rodape .baixar-app p{
  font-size: 14px;
  font-weight: 200;
  color:#f0e8e8;
}

.rodape .baixar-app h3 span {
  font-size: 18px;
  color:#e7ab3b;
  line-height: 1.5;
}

.rodape .baixar-app p {
  color:#f0e8e8;
}

.rodape .baixar-app .logo-baixar {
  margin-top: 10px;
  margin-left: -5px;
}

 .finais {
  display: flex;   
  flex-direction: row;
  justify-content: space-around; 
  border-top: #ffffff;   
  padding-top: 15px;
  padding-bottom: 15px; 
}

 .finais p{
 color:#f0e8e8;
  font-size: 12px;

}

/*************BOTAO WHATSAP*****************/
/*Botao whatsapp*/
.botao-wpp {
  position: fixed;
  bottom:40px;
  right:20px;
}

.botao-wpp:hover {
  transform: scale(1.2); /* Aumenta um pouco ao passar o mouse */
  transition: 0.3s;
}


/*******************PAGINA CONTATO***************/


.pag-contato{
  background: linear-gradient(to top, rgba(0,0,0,0.8)50%, rgba(0,0,0,0.8)50%), url(/assets/img/carros.jpg);
  background-position: center;
  background-size: cover;
  height: 60vh;
}

.txt-carro h1,
.txt-carro h2 {
  text-align: center;
  color: #fff;
  font-size: 32px;
  font-family: "Oswald", sans-serif;
  padding-bottom: 20px;
}

.txt-carro h1 span,
.txt-carro h2 span { font-family: "Oswald", sans-serif; color: #db1111; }

.txt-carro h3 {
  color: #fff;  
  font-size: 18px;
  padding-top: 10px;
  text-align: center;
  font-weight: 200;
  
}

.interface .contato-tela-sec{
  display: flex;   
  flex-direction: row;
  flex-wrap: wrap;
  justify-content:space-evenly;
  padding-top: 50px;
  padding-bottom: 50px;  
  padding-left: 20px;
  padding-right: 20px;  
}

.informacoes-contatoDois{ 
  padding-top: 0px; 
  display: flex;
  flex-direction: column;
  max-width: 450px; 
  margin-right: 20px;  
   
}

.txt-informacoes-contatoDois h2{
color: #000000;
font-size: 30px;
text-align: justify; 
}
  
.txt-informacoes-contatoDois h2 span{
  color: #db1111;
  
}
.txt-informacoes-contatoDois p{
  color: #000;
  padding-top: 16px;
  padding-bottom: 16px; 
  text-align: justify;
}

.txt-informacoes-contatoTres p{
  color: #000;
  padding-top: 2px;
  text-align: justify; 
}

.btn-whatsapp{
  display: flex;
  justify-content: center;
  align-items: center;
  height: 50px;
  width: 100%;
  max-width: 450px;
  background-color: #28a745;
  border-radius: 10px;
  cursor: pointer;
  color: #fff;
  margin-bottom: 10px;
  text-decoration: none;
}

.btn-whatsapp:hover{
  background-color: #db1111;
  
} 

.btn-whatsapp i{
  margin-right: 10px;
}

.form-contato{
  width:390px;
  height: 340px;
  background: linear-gradient(to top, rgba(0,0,0,0.9)50%, rgba(0,0,0,0.9)50%);  
  border-radius: 10px;
  padding: 25px;   
  
}

.form-contato h2{
   padding-bottom: 10px;  
  text-align: center;
  color:rgb(255, 255, 255);
  font-size: 22px;
}

.form-contato input{
  width:340px;
  height: 30px;
  background: transparent;
  border-bottom: 1px solid rgb(54, 54, 194);
  border-top: none;
  border-right: none;
  border-left: none;
  color: #fff;
  font-size: 12px;
  letter-spacing: 1px;
  outline: none;
}

.form-contato textarea{
 
  margin-top: 20px;
  outline: none;
  width: 345px;
  height: 80px;
}

.form-contato button{
  width: 240px;
  height: 30px;
  background: rgb(54, 54, 194);
  border: none;
  margin-top: 10px;
  margin-left: 60px;
  font-size: 14px;
  border-radius: 4px;
  cursor: pointer;
  color: #fff;
}

.form-contato button:hover {
 background-color: #db1111;
  color:#fff;
}
/*******************FIM DA PAG-CONTATO***************/

/*******************PAGINA RASTREAMENTO VEICULAR(TODOS OS AUTOMÓVEIS)***************/

.txt-carro h1,
.txt-carro h2 {
  text-align: center;
  color: #fff;
  font-size: 32px;
  font-family: "Oswald", sans-serif;
  padding-top: 260px;
}

.txt-carro h1 span,
.txt-carro h2 span {
  font-family: "Oswald", sans-serif;
  color: #db1111;
}


.interface .txt-carro{
  text-align: center;  
  padding-top: 110px;
  padding-bottom: 70px;  
  padding-left: 20px;
  padding-right: 20px;
}

 .tela-prioridade-carro{
  width: 100%;  
  background: linear-gradient(to top, rgba(0,0,0,0.8)50%, rgba(0,0,0,0.8)50%), url(/assets/img/carros.jpg);
  background-position: center;
  background-size: cover;
  height: 60vh;  
}

.txt-carro h2{
  color: #fff;
  font-size: 2.5rem;  
}

.txt-carro h3{
  color: #fff;
  font-size: 1.0rem;
  font-weight: 300;
  margin-top: 0px;
}

 /*PAGINA-RASTREAMENTO VEICULAR(TODOS OS AUTOMÓVEIS) TELA2*/

 .interface .segundaTela-carro{
  display: flex;   
  flex-direction: row;
  align-items: center;
  justify-content:space-around; 
  margin-top: 50px;
  margin-bottom: 50px;
 }


 .interface .carro-telaDois h2 {
  font-size: 26px;
  text-align: center;
  width: 100%;
  max-width: 550px;
  padding-bottom: 20px;
 }

 .interface .carro-telaDois h2 span {
  color: #db1111;
 }


 .interface .carro-telaDois h3{
  font-size: 14px;
  font-weight: 200;
  text-align: justify;
  width: 100%;
  max-width: 550px;
 }

.carro-telaDois-dois {   
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1); /* Efeito de sombra */
  font-family: sans-serif;
  text-align: center;
  background: #fff; 
}

.carro-telaDois-dois .btn-whatsapp{
  width: 100%;
  padding: 0px;
}

.carro-plano h2 {
  font-size: 1.5rem;
  margin: 10px 0;
  color: #000000; 
}

.badge {
  background: #ffeb3b;
  font-size: 0.75rem;
  padding: 4px 10px;
  border-radius: 20px;
  font-weight: bold;   
}

.carro-preco p{
  color: #000; 
  margin-top: 20px;
  padding-top: 15px;
  border-top: 1px solid #f0f0f0; /* Linhas entre benefícios */  
}

.carro-preco h2 { 
  font-size: 2.5rem;
  margin: 10px;
  color: #1a73e8; 
  border-bottom: 1px solid #f0f0f0; /* Linhas entre benefícios */
  padding-bottom: 10px;
}

.beneficios {
  list-style: none; /* Remove as bolinhas padrão */
  padding: 0;
  text-align: left;
  margin: 10px 0;
}

.beneficios li {
  padding: 8px 0;
  border-bottom: 1px solid #f0f0f0; /* Linhas entre benefícios */  
  color: #555;
  display: flex;
  align-items: center;
}

.beneficios span { color: #28a745; font-weight: bold; margin-right: 10px; }

.btn-contratar {
  width: 100%;
  padding: 12px;
  background: #28a745;
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-weight: bold;
}

/*******************FIM DA PAG-AUTOMÓVEIS***************/

/********************SOBRE****************/

.sobre-caminhao {
  width: 100%;
  max-width: 550px;
  padding-top: 20px;
  padding-bottom: 20px;
}


/********FALE-AGORA*/

/* MOBILE */

.page-links {
    min-height: 100vh;
    display: flex;
    justify-content: center;   

    background-image: url('/assets/img/papel-de-parede-instagram.jpeg');
    background-size: cover;
    position: relative;
    background-position: center;
    background-repeat: no-repeat;

    width: 100%;
    max-width: 100%;
    overflow-x: hidden;   
}

/* overlay escuro */
.page-links::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);    
}

/* container invisível (agora é só estrutura) */
.page-links .container-faleAgora {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 420px;
    padding: 20px;
    text-align: center;
    color: #fff;

    /* REMOVE QUALQUER VISUAL */
    background: none;
    box-shadow: none;
    backdrop-filter: none;
}

/* reset */
.page-links * {
    box-sizing: border-box;    
}

/* perfil */

.page-links .perfil {
   margin-top: 60px; 

}
.page-links .perfil img {          
    border: none;
    margin-bottom: 50px;    
}

.page-links .perfil h1 {
    font-size: 32px;
    margin-bottom: 5px;
    font-family: "Oswald", sans-serif;
    line-height: 1.2;
    
}

.page-links .perfil h1 span {
  font-family: "Oswald", sans-serif;
  color: #db1111;
}

.page-links .perfil p {
    font-size: 12px;
    opacity: 0.9;
    margin-bottom: 25px;
    margin-top: 10px;
}

/* botões */
.page-links .links {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.page-links .btn {
    display: block;
    padding: 15px;
    border-radius: 30px;
    text-decoration: none;
    color: #fff;
    font-weight: 600;

    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(6px);

    transition: all 0.25s ease;
}

/* hover */
.page-links .btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.03);
}

/* destaque whatsapp */
.page-links .whatsapp {
    background: #25D366;
}

.page-links .whatsapp:hover {
    background: #1ebe5d;
}
/*FIM*/

/*---------TELAR RESPONSIVA----------*/
@media screen and (max-width: 1226px) {

.interface .seg-veiculos{
  display: flex;   
  flex-direction: row;
  align-items: center;
  justify-content:center;     
  gap: 0px;
}

.img-veiculos img{
  width: 78%;  
}

.seg-veiculos .seg-titulo h3{
  background-color:rgb(54, 54, 194);
  color: #fff;  
  display: flex;
  justify-content: center;
  padding: 4px;
  font-size: 13px;  
}

.seg-veiculos .seg-titulo h2{ 
  font-size: clamp(24px, 26px, 36px) 
}

.seg-veiculos .button-principal{
  width: 220px;
  height: 35px;
  background: rgb(54, 54, 194);
  border: none;
  margin-top: 20px;  
  font-size: 12px;
  border-radius: 4px;
  cursor: pointer;   
}

.seg-veiculos .button-principal a{
  text-decoration: none;
  color: #fff;
  transition: .3 ease;
}

.button-principal:hover{
  background-color: #db1111;  
}

.button-principal:hover a{
  color:#ffffff ;
}

.interface .seg-textos-primeiro h3{
  font-size: 16px;
}
.seg-textos-primeiro {  
  background-color: #f18a8a;
  border-radius: 10px;
  padding: 15px;
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.5);
  box-sizing: border-box;  
  height: 250px;  
}


/*3 SESSÃO - 2 TELA  POR QUE ESCOLHER NOSSOS SERVIÇOS?*/



.terceira-tela{
 background: linear-gradient(135deg, #0d1117 0%, #0f1f5c 60%, #1a0a3a 100%);
  position: relative;
  overflow: hidden;
}

.terceira-tela::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(54,54,194,0.18) 0%, transparent 65%);
  pointer-events: none;
}

.tela-terceira{
  padding-left: 40px;
  padding-right: 40px;
  padding-top: 70px;
  padding-bottom: 70px;
  position: relative;
}

.interface .ter-terceira {
  display: flex;   
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 40px;
}

.ter-texto{
  max-width: 690px;  
}

.ter-terceira .ter-texto h2{
  font-size: 28px;
  margin-left: 50px;
  text-align: center;
  color: #ffffff;
  font-weight: 700;
  letter-spacing: 0.5px;   
}

.ter-terceira .ter-texto span{
  color: #818cf8;
}

.ter-terceira .ter-texto p{
  color: #94a3b8;
  margin-top: 20px;
  margin-bottom: 20px;
  margin-left: 50px;
  line-height: 1.7;
  text-align: justify;
}

.ter-terceira .ter-texto strong{
  font-size: 18px;
  color: #818cf8;
  font-weight: 600;
}

.ter-terceira .ter-texto ul {
  list-style: none;
}


.ter-terceira .ter-texto ul li {
  list-style: none;
  margin-top: 10px;
  margin-left: 50px;
  color: #cbd5e1;
  padding-left: 24px;
  position: relative;   
}

.ter-terceira .ter-texto ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #22c55e;
  font-weight: 700;
}


.ter-terceira .ter-texto .ter-texto-paragrafo{
 border: none;
  background: linear-gradient(90deg, rgb(54, 54, 194), #818cf8);
  margin-top: 40px;
  margin-left: 50px;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(54, 54, 194, 0.4);
}

.ter-terceira .ter-texto h3{
  font-size: 16px;
  text-align: center;
  color: #ffffff;
  letter-spacing: 0.5px;
  padding: 4px 0;
}

.ter-rastreamento video{ 
  padding-top:20px ;   
  max-width: 280px;
  object-fit: contain;

  border-radius: 20px;
  box-shadow: 0 8px 48px rgba(0,0,0,0.5);
   flex-shrink: 0;
}

/* 5 SESSAO - MAPA, LOCALIZACAO E CONTATO*/

.mapBox iframe {
  width: 100%;
  max-width: 450px;
  height: 350px;
}

/*******************PAGINA CONTATO***************/

.txt-informacoes-contatoDois h2{
color: #000000;
font-size: 26px;
text-align: justify; 
}  

.informacoes-contatoDois{ 
  padding-top: 0px; 
  display: flex;
  flex-direction: column;
  max-width: 430px; 
  margin-right: 20px;  
   
}

.btn-whatsapp{
  display: flex;
  justify-content: center;
  align-items: center;
  height: 50px;
  width: 100%;
  background-color: #28a745;
  border-radius: 10px;
  cursor: pointer;
  color: #fff;
  margin-bottom: 10px;
}


}

/*FIMMMMMMMMM*/

@media screen and (max-width: 900px) {

    .menu-fixo {
        display:flex;
        width:100%;
        background:#ffffff;
        position:absolute;     
        justify-content:space-around;
        align-items: center; 
    }
    
    .menu-fixo .btn-mobile {
        width: auto;
        display: inline-block;
        cursor: pointer;
        color: rgb(54, 54, 194);
    }

    .menu-fixo span {
        float: right;
        font-size:25px;
    }

    .menu-fixo .btn-mobile img {
      margin-left: 20px;
               
    } 

    nav {
        width: 60%;
        height: 105%; /*tamanho do menu celular*/
        position: fixed;
        right:100%;
        margin-top: 0px;
        overflow: scroll;
        text-align:left;
        
    }

    nav ul li {
        display: block;
        border-bottom:1px #f0f0f0 solid;
        text-align: left;
    }

    nav ul li a {
        display: block;
    }

    nav ul li:hover .children {
        display: none;
    }

    nav ul li .children {
        width: 100%;
        position: relative;
    }

    nav ul li .children li a {
        margin-left:20px;
    }

    nav ul li .caret {
        float: right;
    }

/*MAIN - TELA-BACKGROUND*/

main div.background-section-video video{
  width: 100%;
  height: 510px;
  object-fit: cover;
  object-position: center;
  filter: brightness(50%); 
  position:absolute;    
}

 main .txt-textoPrincipal{    
  display: flex;   
  flex-direction:column;
  align-items: center;
  justify-content:space-between; 
  padding-top: 120px; 
  position:relative;  
  line-height:1.4;
}


.txt-textoPrincipal .txt-textoTela h1{
  font-size: 36px;
  color: #ffffff;
  font-weight:bold;
  font-family: "Oswald", sans-serif;
  text-align: center; 
}

.txt-textoPrincipal .txt-textoTela p {
  font-size: 14px;
  color: #ffffff;
  margin-top: 20px;  
  font-weight: 300;
  text-align: center;
  margin-bottom: 20px;  
}

.txt-textoPrincipal .button-principal{  
  width: 220px;
  height: 40px;
  background: rgb(54, 54, 194);
  border: none;
  
  margin-top: 10px;  
  font-size: 14px;
  border-radius: 4px;
  cursor: pointer;
  margin-right:  5px;   
}
.button-principal {
  text-decoration: none;
  color: #fff;
  transition: .3 ease;
}

.button-principal:hover{
  background-color: #db1111;    
}

.txt-textoPrincipal .button-secundario {
  width: 118px;
  height: 40px;
  background: rgb(255, 255, 255);
  border: none;

  margin-top: 10px;  
  font-size: 14px;
  border-radius: 4px;
  cursor: pointer;
  margin-left: 5px;  
}

.button-secundario {
  text-decoration: none;
  color: rgb(54, 54, 194) ;
  transition: .3 ease;
}

.button-secundario:hover {
  background-color: #db1111;
  color: rgb(255, 255, 255);
}

.textoEcelular {
  display: flex;
  align-items: center;
  justify-content:flex-start;
   margin-left: clamp(10px, 10vw, 200px);
}

.textoEcelular img {
  border-radius: 50%;
  height: 35px;
}

.textoEcelular h3{
  color: #e7ab3b;
  font-weight: 100;
  margin-left: 10px;  
  font-size: 12px;
}

.textoEcelular h3 span {
  font-weight: 600;
}

.logo-baixar .txt-baixar{
    justify-content: end; 
    margin-top: 30px; 
    margin-bottom: 5px;
    margin-right: 10px;  
}

.logo-baixar .txt-baixar p{
    font-size:10px;   
}

.logo-appStore {
  height: 28px;
  float: right;  
}

.logo-googlePlay{
  height: 28px;  
  float: right;   
}


/*3 SESSÃO - 2 TELA*/

.interface .seg-veiculos{
  display: flex;   
  flex-direction: column-reverse;
  align-items: center;
  justify-content:space-around; 
  margin-top: 50px; 

  margin-left: 10px;
  margin-right:10px ;
}

.seg-veiculos .seg-titulo h3{
  background-color:rgb(54, 54, 194);
  color: #fff;
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 4px;
  font-size: 12px;
}

.seg-veiculos .seg-titulo h2{
  padding-top: 15px;
  font-size: 34px;
}

.seg-veiculos .button-principal{
  width: 300px;
  height: 32px;
  background: rgb(54, 54, 194);
  border: none;
  margin-top: 30px;  
  font-size: 12px;
  border-radius: 4px;
  cursor: pointer; 
  margin-left: 100px;
  margin-bottom: 50px;  
}

.seg-veiculos .button-principal {
  text-decoration: none;
  color: #fff;
  transition: .3 ease;
}

.button-principal:hover{
  background-color: #db1111;  
  color:rgb(54, 54, 194) ;
}

.button-principal:hover {
  color:rgb(255, 255, 255); ;
}

.img-veiculos img{
   display: none;
  }

.interface .seg-textos{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content:space-around;   
}

.interface .seg-textos-primeiro h3{
  font-size: 20px;
}

.seg-textos-primeiro {
  margin-left: 5px;
  margin-right: 5px;
  background-color: #f18a8a;
  border-radius: 10px;
  padding: 15px;
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.5);
  
  height: 210px;
  width: 300px;  
  margin-bottom: 10px;
}

/*3 SESSÃO - 2 TELA  POR QUE ESCOLHER NOSSOS SERVIÇOS?*/

.interface .ter-terceira {
  display: flex;   
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.ter-texto{
  max-width: clamp(590px, 650px, 690px);  
}


.ter-terceira .ter-texto h2{
  font-size: 32px;
  margin-left: 50px;
  padding-right: clamp(10px, 5vw, 180px);   
}


.ter-terceira .ter-texto .ter-texto-paragrafo{
  border: 3px solid rgb(54, 54, 194);
  background-color:rgb(54, 54, 194);
  margin-top: 40px;
  margin-left:50px;   
}

.ter-terceira .ter-texto .ter-texto-paragrafo{
 border: none;
  background: linear-gradient(90deg, rgb(54, 54, 194), #818cf8);
  margin-top: 40px;
  margin-left: 50px;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(54, 54, 194, 0.4);
}

.ter-terceira .ter-texto h3{
  font-size: 18px;
  text-align: center;
  color: #ffffff;
  letter-spacing: 0.5px;
  padding: 4px 0;
  margin-bottom: 20px;
}
.ter-rastreamento video{    
  height: 400px;
  margin-top: -35px;
}

.ter-rastreamento video{ 
  padding-top:20px ;   
  max-width: 280px;
  object-fit: contain;
}


/* 6 SESSAO - MAPA, LOCALIZACAO E CONTATO*/

.interface .endereco {
  display: flex;   
  flex-direction: column;
  align-items: center;
  justify-content:space-around;
}

.mapBox {
  width: 100%;
  max-width: 454px;
}

.mapBox iframe {
  width: 100%;
  height: 330px;
}


.endereco .form{
  width: 100%;
  max-width: 454px;
  height: 360px;
  background: linear-gradient(to top, rgba(0,0,0,0.6)50%, rgba(0,0,0,0.6)50%);
  border-radius: 10px;
  padding: 25px;
  margin-top: 40px;
}


 .endereco .form input{
  width: 100%;
}

.endereco .form textarea{
  margin-top: 20px;
  outline: none;
  width: 100%;
}

.endereco .form button{
  
  margin-top: 10px;
  margin-left: 80px;
  font-size: 16px; 
  cursor: pointer;
  color: #fff;
}

/*FOOTER */

.interface .rodape {
  display: flex;   
  flex-direction:row;
  flex-wrap: wrap;
  align-items: center;
  justify-content:space-around;  
}

.tela-sexta{
  padding-left: 40px;
  padding-right: 40px;   
  padding-bottom: 30px;  
  padding-top: 30px;
}

.rodape .informacoes-contato {
  font-size: 14px;
  line-height: 1.5;
  text-decoration: none;
}

.rodape .informacoes-contato-pg {
  font-size: 14px;
  line-height: 1.5;
  display: flex;
  flex-direction: column;
}

.rodape .informacoes-contato-pg h3{
  font-weight: 600;  
  position: relative;
  margin-bottom: 10px;
  transition: transform 0.3s ease-in-out;
  color:#f0e8e8;
}

.rodape .informacoes-contato-pg a{
  color:#f0e8e8;
}

.rodape .informacoes-contato-pg h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: rgb(255, 255, 255); 
}

.rodape .informacoes-contato h3 {   
  position: relative;
  margin-bottom: 10px;
  font-weight: 600;
  color:#f0e8e8;
}

.rodape .informacoes-contato h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: rgb(255, 255, 255); 
}

.rodape .informacoes-contato h4{ 
 font-weight: 200; 
 color:#f0e8e8;
}

.rodape .baixar-app{
  margin-top: 43px;
}

.logo-appStore {
  height: 30px;
}

.logo-googlePlay{
  height: 30px;  
}

.rodape .baixar-app h3 {
  font-size: 16px;  
  position: relative;
  margin-bottom: 10px;
 color:#f0e8e8;
}

.rodape .baixar-app h3::after{
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 52%;
  height: 1px;
  background-color: rgb(255, 255, 255);
}

.rodape .baixar-app p{
  font-size: 14px;
  font-weight: 200;
  color:#f0e8e8;
}

.rodape .baixar-app h3 span {
  font-size: 18px;
  color:#e7ab3b;
  line-height: 1.5;
}

.rodape .baixar-app p {
  color:#f0e8e8;
}

.rodape .baixar-app .logo-baixar {
  margin-top: 10px;
  margin-left: -5px;
}

/*******************PAGINA CONTATO***************/


.pag-contato{ 
  background: linear-gradient(to top, rgba(0,0,0,0.8)50%, rgba(0,0,0,0.8)50%), url(/assets/img/carros.jpg);
  background-position: center;
  background-size: cover;
  height: 60vh;        
}

.txt-carro h1,
.txt-carro h2 {
  text-align: center;
  color: #fff;
  font-size: 32px;
  font-family: "Oswald", sans-serif;
  padding-top: 240px;
}

.txt-carro h3 {
  color: #fff;
  font-size: 18px;
  padding-top: 10px;
  text-align: center;
  font-weight: 200;
}

.interface .contato-tela-sec{
  display: flex;   
  flex-direction: row;
  flex-wrap: wrap;
  justify-content:space-evenly;
  padding-top: 50px;
  padding-bottom: 50px;  
  padding-left: 20px;
  padding-right: 20px;  
}

.informacoes-contatoDois{ 
  padding-top: 0px; 
  display: flex;
  flex-direction: column;
  max-width: 450px; 
  margin-right: 20px;  
   
}

.txt-informacoes-contatoDois h2{
color: #000000;
font-size: 30px;
text-align: justify; 
}
  
.txt-informacoes-contatoDois h2 span{
  color: #db1111;
  
}
.txt-informacoes-contatoDois p{
  color: #000;
  padding-top: 16px;
  padding-bottom: 16px; 
  text-align: justify;
}

.txt-informacoes-contatoTres p{
  color: #000;
  padding-top: 2px;
  text-align: justify; 
}

.btn-whatsapp{
  display: flex;
  justify-content: center;
  align-items: center;
  height: 50px;
  width: 100%;
  background-color: #28a745;
  border-radius: 10px;
  cursor: pointer;
  color: #fff;
  margin-bottom: 10px;
}

.btn-whatsapp:hover{
  background-color: #db1111;
}

.btn-whatsapp i{
  margin-right: 10px;
}

.form-contato{
  width:450px;
  height: 340px;
  background: linear-gradient(to top, rgba(0,0,0,0.9)50%, rgba(0,0,0,0.9)50%);  
  border-radius: 10px;
  padding: 25px;  
  margin-right: 20px; 
  margin-top: 40px;  
}

.form-contato h2{
   padding-bottom: 10px;  
  text-align: center;
  color:rgb(255, 255, 255);
  font-size: 22px;
}

.form-contato input{
  width:390px;
  height: 30px;
  background: transparent;
  border-bottom: 1px solid rgb(54, 54, 194);
  border-top: none;
  border-right: none;
  border-left: none;
  color: #fff;
  font-size: 12px;
  letter-spacing: 1px;
  outline: none;
}

.form-contato textarea{
 
  margin-top: 20px;
  outline: none;
  width: 390px;
  height: 80px;
}

.form-contato button{
  width: 240px;
  height: 30px;
  background: rgb(54, 54, 194);
  border: none;
  margin-top: 10px;
  margin-left: 80px;
  font-size: 14px;
  border-radius: 4px;
  cursor: pointer;
  color: #fff;
}

.form-contato button:hover {
 background-color: #db1111;
  color:#fff;
}


/*******************FIM***************/

   
/*PAGINA-RASTREAMENTO VEICULAR(TODOS OS AUTOMÓVEIS)*/

.txt-carro h1,
.txt-carro h2 {
  text-align: center;
  color: #fff;
  font-size: 32px;
  font-family: "Oswald", sans-serif;
  padding-top: 250px;
}


.interface .segundaTela-carro{
  display: flex;   
  flex-direction: row;
  flex-wrap: wrap;
  justify-content:center;
  align-items: center;
  padding-top: 0px;
  padding-bottom: 50px;  
  padding-left: 20px;
  padding-right: 20px;
 }       

.carro-telaDois{
  padding-left: 10px;
  padding-right: 10px;
  margin-bottom: 40px;
} 

.interface .carro-telaDois h2 {
  font-size: 26px;
  width: 100%;
  max-width: 550px;
}
}

/*---------TELAR RESPONSIVA----------*/
@media screen and (max-width: 480px) {


.barra{
     margin-left: clamp(10px, 10vw, 200px);
     margin-right:clamp(10px, 10vw, 200px) ;

    display: flex;     
    justify-content:space-between; 
    align-items: center;
    margin-left: 34px;
}

.txt-textoPrincipal .button-principal{  
  width: 210px;
  height: 35px;
  background: rgb(54, 54, 194);
  border: none;
  
  margin-top: 10px;  
  font-size: 14px;
  border-radius: 4px;
  cursor: pointer;
  margin-right:  10px;   
}


.txt-textoPrincipal .txt-textoTela h1{
  font-size: 33px;
  color: #ffffff;
  font-weight:bold;
  font-family: "Oswald", sans-serif;
  text-align: center; 
}

.txt-textoPrincipal .txt-textoTela p {
  font-size: 13px;
  color: #ffffff;
  margin-top: 20px;  
  font-weight: 300;
  text-align: center;
  margin-bottom: 20px;  
}

.txt-textoPrincipal .button-principal{  
  width: 205px;
  height: 35px;
  background: rgb(54, 54, 194);
  border: none;
  
  margin-top: 10px;  
  font-size: 14px;
  border-radius: 4px;
  cursor: pointer;
  margin-right:  5px;   
}

.button-principal a{
  text-decoration: none;
  color: #fff;
  transition: .3 ease;
}

.button-principal:hover{
  background-color: #db1111;  
}

.button-principal:hover a{
  color:#ffffff ;
}

.txt-textoPrincipal .button-secundario {
  width: 115px;
  height: 35px;
  background: rgb(255, 255, 255);
  border: none;

  margin-top: 10px;  
  font-size: 14px;
  border-radius: 4px;
  cursor: pointer;
  margin-left: 10px;  
}

.button-secundario a{
  text-decoration: none;
  color: rgb(54, 54, 194) ;
  transition: .3 ease;
}

.button-secundario:hover {
  background-color: #db1111;
  color: rgb(255, 255, 255);
}

.button-secundario:hover a{
  color:rgb(255, 255, 255) ;
}

.textoEcelular {
  display: flex;
  align-items: center;
  justify-content:flex-start;
  margin-left: 0px;
}

.logo-baixar .txt-baixar p{
    font-size:11px;   
}


/*2 SESSÃO - 2 TELA*/

.tela-Secundaria {
  padding-left: 10px;
  padding-right: 10px; 
  padding-top: 50px;
  padding-bottom: 50px;
  
}

.interface .seg-veiculos{
  display: flex;   
  flex-direction: row;
  align-items: center;
  justify-content:center;     
  gap: 0px;
  margin-left: 20px;
  margin-right: 20px;  
}

.img-veiculos{
  gap: 0;
}

.img-veiculos img{
  width: 100%;  
}

.seg-veiculos .seg-titulo h3{
  background-color:rgb(54, 54, 194);
  color: #fff;
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 4px;
  font-size: 10px;
}

.seg-veiculos .seg-titulo h2{
  padding-top: 15px;
  font-size: 24px;
  text-align: center;
}


.seg-veiculos .button-principal{
  width: 296px;
  height: 28px;
  background: rgb(54, 54, 194);
  border: none;
  margin-top: 30px;  
  font-size: 12px;
  border-radius: 4px;
  cursor: pointer;         
 
  margin-left:10px ;
  margin-bottom: 50px;  
}


.seg-veiculos .button-principal a{
  text-decoration: none;
  color: #fff;
  transition: .3 ease;  
}

.button-principal:hover{
  background-color: #db1111;  
  color:rgb(54, 54, 194) ;
}

.button-principal:hover a{
  color:rgb(255, 255, 255); ;
}

.img-veiculos img{
   display: none;
  }

.interface .seg-textos{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content:space-around;   
}

.interface .seg-textos-primeiro h3{
  font-size: 20px;
}

.seg-textos-primeiro {
  margin-left: 5px;
  margin-right: 5px;
  background-color: #f18a8a;
  border-radius: 10px;
  padding: 15px;
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.5);
  
  height: 210px;
  width: 300px;  
  margin-bottom: 10px;
}


/* ===== SEÇÃO DEPOIMENTOS ===== */

.depoimentos-wrapper > h2 {
  text-align: center;
  font-size: 28px;
  margin-bottom: 10px;
  
}

/*3 SESSÃO - 2 TELA  POR QUE ESCOLHER NOSSOS SERVIÇOS?*/

.interface .ter-terceira {
  display: flex;   
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-left: 0;
}

.ter-texto{
  max-width: clamp(590px, 650px, 690px);  
  
}

.ter-terceira .ter-texto h2{
  font-size: 24px;
  margin-left: 0px;
  padding-right: 0;  
  
}

.ter-terceira .ter-texto p{  
  margin-left: 0px;  
}

.ter-terceira .ter-texto ul li { 
  margin-left: 0px;    
}

.ter-terceira .ter-texto p strong{
  font-size:18px ;
}

.ter-terceira .ter-texto .ter-texto-paragrafo{
  border: none;
  background: linear-gradient(90deg, rgb(54, 54, 194), #818cf8);
  margin-top: 40px;
  margin-left:0px;   
}

.ter-terceira .ter-texto h3{
  font-size: 12px;
  text-align: center;
  color: #e0e0e0;
  margin-left:0px;

}
.ter-rastreamento video{    
  height: 400px;
  margin-top: -35px;
  object-fit: cover;
  object-position: center; 
}

/*4 sessão - 4 tela proteja seu vículo não importa o tamanho*/
.automoveis-quarta .quarto-texto  h2{
  font-size: 28px;
  margin-left: 10px;
  margin-right: 10px;
  margin-bottom: 30px;
}

.interface .endereco {
  display: flex;   
  flex-direction: column;
  align-items: center;
  justify-content:space-around;
}

.mapBox {
  width: 310px;
  
}

.mapBox iframe {
  width: 100%;
  height: 360px;
}

.endereco .form {
  margin-top: 0px;
}

.endereco .form h2{  
  padding-bottom: 10px;  
  text-align: center;
  color:rgb(255, 255, 255);
  font-size: 16px;
}

 .endereco .form input{
  width:270px;
  height: 30px;
  background: transparent;
  border-bottom: 1px solid rgb(54, 54, 194);
  border-top: none;
  border-right: none;
  border-left: none;
  color: #fff;
  font-size: 12px;
  letter-spacing: 1px;
  outline: none;
}

.endereco .form textarea{
  margin-top: 20px;
  outline: none;
  width: 270px;
  height: 80px;
}

.endereco .form{
  width: 310px;
  height: 360px;
  background: linear-gradient(to top, rgba(0,0,0,0.6)50%, rgba(0,0,0,0.6)50%);  
  border-radius: 10px;
  padding: 25px;   
}
.endereco .form button{
  width: 200px;
  height: 30px;
  background: rgb(54, 54, 194);
  border: none;
  margin-top: 20px;
  margin-left: 40px;
  font-size: 12px;
  border-radius: 4px;
  cursor: pointer;
  color: #fff;
}

.endereco .form button:hover {
  background-color: #db1111;
  color:#fff ;
}



/*FOOTER */

.interface .rodape {
  display: flex;   
  flex-direction:column;
  flex-wrap:wrap;
  align-items:start;
  justify-content:flex-start; 


}

.tela-sexta{
  padding-left: 40px;
  padding-right: 40px;   
  padding-bottom: 30px;  
  padding-top: 30px;
}

.rodape .informacoes-contato {
  font-size: 14px;
  line-height: 1.5; 
  padding-bottom: 40px;
   

  /*padding-right: 160px;*/

  
}

.rodape .informacoes-contato-pg {
  font-size: 14px;
  line-height: 1.5;
  
  
  /*padding-right: 160px;*/
}

.rodape .informacoes-contato-pg h3{
  font-weight: 600;  
  position: relative;
  margin-bottom: 10px;
  transition: transform 0.3s ease-in-out;
  color:#f0e8e8;
}

.rodape .informacoes-contato-pg a{
  color:#f0e8e8;
}

.rodape .informacoes-contato-pg h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: rgb(255, 255, 255); 
}

.rodape .informacoes-contato h3 {   
  position: relative;
  margin-bottom: 10px;
  font-weight: 600;
  color:#f0e8e8;
}

.rodape .informacoes-contato h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: rgb(255, 255, 255); 
}

.rodape .informacoes-contato h4{ 
 font-weight: 200; 
 color:#f0e8e8;
}

.rodape .baixar-app{
  margin-top: 43px;
}

.logo-appStore {
  height: 30px;
}

.logo-googlePlay{
  height: 30px;  
}


.rodape .baixar-app h3 {
  font-size: 16px;  
  position: relative;
  margin-bottom: 10px;
 color:#f0e8e8;
}

.rodape .baixar-app h3::after{
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 52%;
  height: 1px;
  background-color: rgb(255, 255, 255);
}

.rodape .baixar-app p{
  font-size: 14px;
  font-weight: 200;
  color:#f0e8e8;
}

.rodape .baixar-app h3 span {
  font-size: 18px;
  color:#e7ab3b;
  line-height: 1.5;
}

.rodape .baixar-app p {
  color:#f0e8e8;
}

.rodape .baixar-app .logo-baixar {
  margin-top: 10px;
  margin-left: -5px;
}


/*******************PAGINA CONTATO***************/


.pag-contato{ 
  background: linear-gradient(to top, rgba(0,0,0,0.8)50%, rgba(0,0,0,0.8)50%), url(/assets/img/carros.jpg);
  background-position: center;
  background-size: cover;
  height: 68vh;   
}

.txt-carro h1,
.txt-carro h2 {
  text-align: center;
  color: #fff;
  font-size: 32px;
  font-family: "Oswald", sans-serif;
  padding-top: 245px;
}

.txt-carro h3 {
  color: #fff;  
  font-size: 18px;
  padding-top: 20px;
  text-align:center;
  font-weight: 200;
  margin-left: 10px;
  margin-right: 10px;
 
}

.interface .contato-tela-sec{
  display: flex;   
  flex-direction: row;
  flex-wrap: wrap;
  justify-content:space-evenly;
  padding-top: 50px;
  padding-bottom: 50px;  
  padding-left: 20px;
  padding-right: 20px;  
}

.informacoes-contatoDois{ 
  padding-top: 0px; 
  display: flex;
  flex-direction: column;  
  margin-right: 10px;  
  margin-left: 10px;   
}

.txt-informacoes-contatoDois h2{
color: #000000;
font-size: 24px;
text-align: center; 
padding-bottom: 20px;
}
  
.txt-informacoes-contatoDois h2 span{
  color: #db1111;
  
}
.txt-informacoes-contatoDois p{
  color: #000;
  padding-top: 16px;
  padding-bottom: 30px; 
  text-align: justify;
}

.txt-informacoes-contatoTres p{
  color: #000;
  padding-top: 2px;
  text-align: justify; 
}

.btn-whatsapp{
  display: flex;
  justify-content: center;
  align-items: center;  
  width: auto;
  background-color: #28a745;
  border-radius: 10px;
  cursor: pointer;
  color: #fff;  
  margin-bottom: 30px;
}

.btn-whatsapp:hover{
  background-color: #db1111;
  
} 

.btn-whatsapp i{
  margin-right: 10px;
}

.form-contato{
  width:90%;
  height: 340px;
  background: linear-gradient(to top, rgba(0,0,0,0.9)50%, rgba(0,0,0,0.9)50%);  
  border-radius: 10px;
  padding: 25px;  
  margin-right: 20px; 
  margin-top: 40px;  
  margin-left: 10px;
  margin-right: 10px;
}

.form-contato h2{
   padding-bottom: 10px;  
  text-align: center;
  color:rgb(255, 255, 255);
  font-size: 22px;
}

.form-contato input{
  width:95%;
  height: 30px;
  background: transparent;
  border-bottom: 1px solid rgb(54, 54, 194);
  border-top: none;
  border-right: none;
  border-left: none;
  color: #fff;
  font-size: 12px;
  letter-spacing: 1px;
  outline: none;
}

.form-contato textarea{
 
  margin-top: 20px;
  outline: none;
  width: 95%;
  height: 80px;
}

.form-contato button{
  width: 65%;
  height: 30px;
  background: rgb(54, 54, 194);
  border: none;
  margin-top: 10px;
  margin-left: 40px;
  font-size: 14px;
  border-radius: 4px;
  cursor: pointer;
  color: #fff;
}

.form-contato button:hover {
 background-color: #db1111;
  color:#fff;
}


/*******************FIM***************/

/*PAGINA-RASTREAMENTO VEICULAR(TODOS OS AUTOMÓVEIS)*/

.txt-carro h2{
  color: #fff;
  font-size: 2.0rem;  
  padding-left: 10px;
  padding-right: 10px;  
  margin-bottom: -10px;
}

 .interface .carro-telaDois h2 {
  font-size: 24px;  
  padding-bottom: 30px;
  width: 380px; 
  padding-left: 20px;
  padding-right: 20px;    
 }

  .interface .carro-telaDois h3{
  font-size: 14px;
  font-weight: 200; 
  text-align: justify;
  width: 380px; 
  padding-left: 20px;
  padding-right: 20px;
 }

 .interface .carro-telaDois img{
  width: 360px;
  padding-left: 20px;
 }

/********************SOBRE****************/

.sobre-caminhao {
  width: auto;
  padding-top: 20px;
  padding-bottom: 20px;
}



}

/*Menu Responsivo*/

/*FOOTER*/
.main_footer          { background-color:#353535; color:#fff; font-size:0.875em; }
.main_footer .content { padding:3em 0em; }

.main_footer_copy       { background-color:#262626; width:100%; float:left; text-align:center; padding:1.5em 0em; }
.main_footer_copy p     { font-family:'open_sanslight'; font-size:1em; color:#e1e0e0; height:20px; }
.main_footer_copy .m-b-footer   { margin-bottom:0.5em; }
.main_footer_copy .by   { font-size:0.96em; }
.main_footer_copy .by i { font-size:0.96em; margin-right:3px; color:#e82626; }


/*Começa o Responsivo*/

/*480PX BREAKPOINT*/
/*480 dividido por 16 = 30em*/
@media (min-width:30em){

.boxBannerTopo { padding:1em 0; }

}

/*600PX BREAKPOINT*/
/*600 dividido por 16 = 37,5em*/
@media (min-width:37em){


} 

/*768PX BREAKPOINT*/
/*768 dividido por 16 = 48em*/
@media (min-width:48em){

} 

/*960PX BREAKPOINT*/
/*960 dividido por 16 = 60em*/
@media (min-width:60em){

 .section-seu-codigo          { padding:20px 0px; }
 .section-seu-codigo .content { width:80%; padding:1em 0; margin:0 10%; }

.btn-download { width:35%; }

}

/*1280PX BREAKPOINT*/
/*1280 dividido por 16 = 80em*/
@media (min-width:80em){

 
}

/*1366PX BREAKPOINT*/
/*1366 dividido por 16 = 85,375em*/
@media (min-width:85em){

 .content  { width:80%; margin:0 10%; }

}

/*1600PX BREAKPOINT*/
/*1600 dividido por 16 = 100em*/
@media (min-width:100em){


}
/*Fecha o Responsivo*/


