/*primeira parte*/


* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}



/* HEADER */
.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  background-color: rgba(255, 255, 255, 0.95);
  position: sticky;
  top: 0;
  z-index: 100;
}

.site-header .logo {
  height: 110px;
}

.header-button {
  background-color: #22418e;
  color: #fff;
  padding: 12px 18px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
}


@media (max-width: 850px){

  .header-button {
  background-color: #22418e;
  color: #fff;
  padding: 8px 15px;
  border-radius: 9px;
  text-decoration: none;
  font-weight: bold;
  font-size: 15px
  
}

.site-header .logo {
  height: 90px;
}

}

/* HERO */

.fundo{
 
  background: url('capa7.png') center/cover no-repeat;
  height: 70vh;
 
  color: #fff;
}
.hero {
 /*background-image: url('capa6.png'); /* Substitua pelo seu arquivo */
  height: 75vh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  text-align: center;
  padding: 80px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.hero-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
}

.hero-text {
  flex: 1;
  max-width: 600px;
}

.hero-img {
  
  flex: 1;
  text-align: center;
}

.hero-img img {
 width: 700px;
  height: auto;
}

/* TEXTO */
.titulo {
  font-size: 2.8rem;
  font-weight: bold;
  color: #22418e;
  margin-bottom: 20px;
}

.subtitulo {
  color: #22418e;
  font-weight: 600;
  margin-bottom: 10px;
}

.descricao {
  font-size: 1rem;
  margin-bottom: 30px;
  line-height: 1.6;
  color: #000;
}

.cta-button {
  background-color: #b20101;
  color: #fff;
  padding: 14px 22px;
  border: none;
  border-radius: 6px;
  font-size: 1rem;
  text-decoration: none;
  display: inline-block;
}

/* ANIMAÇÃO */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

.animate-on-scroll.delay {
  transition-delay: 0.4s;
}

/* RESPONSIVO */
 @media (max-width: 850px){
  .hero-content {
    flex-direction: column-reverse;
    text-align: center;
  }

  .hero-text,
  .hero-img {
    max-width: 300px;
    flex: unset;
  }

  .titulo {
    font-size: 1.5rem;
  }

  .descricao {
    font-size: 0.85rem;
  }

  .fundo{
  background-image: url('capa8.png'); /* Substitua pelo seu arquivo */
  height: 77vh;
}

.hero-img img {
 width: 320px;
  height: auto;
}
}




@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@500;600;700&display=swap');

.vantagens {
  padding: 80px 10%;
  background-color: #fff;
  font-family: "Montserrat", sans-serif;
}

.vantagens-container {
  display: flex;
  align-items: center;
  justify-content: center; 
  gap: 80px; 
  max-width: 1200px; 
  margin: 0 auto; 
  flex-wrap: wrap;
}

.vantagens-imagem {
   flex: 1;
  min-width: 350px;
  max-width: 500px; 
  opacity: 0;
  transform: translateY(40px);
  transition: all 1s ease-out;
}

.vantagens-imagem img {
  width: 100%;
  border-radius: 12px;
  
  object-fit: cover;
}

.vantagens-texto {
  flex: 1;
  min-width: 350px;
  max-width: 600px;
  opacity: 0;
  transform: translateY(40px);
  transition: all 1s ease-out;
}

.vantagens-texto h5 {
  color: #22418e;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.vantagens-texto h2 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #111;
}

.vantagens-texto ul {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.vantagens-texto ul li {
  font-size: 17px;
  margin-bottom: 10px;
  position: relative;
  padding-left: 25px;
  color: #333;
}

.vantagens-texto ul li::before {
  content: "✔";
  color: #b20101;
  font-weight: bold;
  position: absolute;
  left: 0;
  top: 0;
}

.vantagens-texto p {
  color: #444;
  line-height: 1.6;
  margin-bottom: 30px;
}

.botao-verde {
  display: inline-flex;
  align-items: center;
  background-color: #22418e;
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  padding: 14px 28px;
  border-radius: 30px;
  font-size: 15px;
  transition: background 0.3s ease;
}

.botao-verde i {
  margin-right: 8px;
  font-size: 18px;
  
}

.botao-verde:hover {
  background-color: #b20101;
}


@media (max-width: 850px) {
  .vantagens-container {
    flex-direction: column-reverse;
    text-align: left;
  }

  .vantagens-texto h2 {
    font-size: 30px;
  }

  .vantagens-texto ul li {
  font-size: 19px;
  margin-bottom: 10px;
  position: relative;
  padding-left: 25px;
  color: #333;
}
}




/*terceira parte do site*/

.transportes {
  font-family: "Montserrat", sans-serif;
  color: #1a1a1a;
  background-color: #23438f;
  overflow: hidden;
}


.transportes-topo {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 80px 10%;
  position: relative;
}

.imagem-fundo {
  flex: 1;
  height: 350px;
  background: url('entregador2.png') center/cover no-repeat;
  border-top-right-radius: 120px;
  border-bottom-right-radius: 120px;
  opacity: 0.8;
}

.conteudo-texto {
  flex: 1;
  padding-left: 60px;
}

.conteudo-texto h2 {
  font-size: 38px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #fff;
}

.conteudo-texto p {
  font-size: 16px;
  color: #fff;
  line-height: 1.6;
}


.transportes-cards {
  display: flex;
  justify-content: center;
  gap: 40px;
  padding: 80px 10%;
  flex-wrap: wrap;
}

.card {
  background-color: #e6ecfa;
  padding: 40px 30px;
  border-radius: 25px;
  flex: 1;
  min-width: 280px;
  max-width: 360px;
  transition: all 0.3s ease;
  text-align: left;
  position: relative;
}

.card img {
  width: 90px;
  height: auto;
  margin-bottom: 25px;
}

.card h3 {
  font-size: 20px;
  margin-bottom: 15px;
  color: #22418e;
}

.card p {
  font-size: 15px;
  line-height: 1.6;
  color: #333;
  margin-bottom: 25px;
}

.card .link-card {
  text-decoration: none;
  color: #b20101;
  font-weight: 600;
  transition: 0.3s;
}

.card .link-card:hover {
  color: #00225c;
}


.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  background-color: #d9dff2;
}


@media (max-width: 950px) {
  .transportes-topo {
    flex-direction: column;
    text-align: center;
    padding: 60px 5%;
  }

  .imagem-fundo {
    width: 100%;
    height: 280px;
    border-radius: 0 0 80px 80px;
    margin-bottom: 30px;
  }

  

  .conteudo-texto {
    padding: 0;
  }

  .conteudo-texto h2 {
    font-size: 30px;
  }

  .transportes-cards {
    padding: 60px 5%;
    gap: 25px;
  }

  .conteudo-texto h2 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #fff;
}
}


/*quarta parte do site*/

.tipos-transporte {
  padding: 80px 10%;
  background-color: #fff;
  height: 75vh;
  font-family: "Montserrat", sans-serif;
}

.tipos-transporte .container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 60px;
  max-width: 1300px;
  margin: 0 auto;
}

.texto-esquerda {
  flex: 1;
  min-width: 320px;
  max-width: 600px;
}

.texto-esquerda h2 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #111;
}

.texto-esquerda p {
  font-size: 16px;
  color: #444;
  line-height: 1.6;
  margin-bottom: 30px;
}

.texto-esquerda strong {
  color: #000;
}

.botao-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background-color: #22418e;
  color: #fff;
  padding: 14px 28px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  font-size: 15px;
  transition: background 0.3s ease;
}

.botao-whatsapp:hover {
  background-color: #b20101;
}

.botao-whatsapp i {
  font-size: 20px;
}

/* Área dos ícones */
.icones-direita {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(220px, 1fr));
  gap: 30px 50px;
  min-width: 320px;
}

.item {
  display: flex;
  align-items: center;
  gap: 16px;
  color: #104b3f;
}

.item img {
  width: 55px;
  height: auto;
}

.item span {
  font-size: 15px;
  color: #222;
}
body {
  font-family: 'Montserrat', sans-serif;
}
.item {
  display: flex;
  align-items: center;
  gap: 16px;
  color: #104b3f;
  transition: all 0.3s ease;
  padding: 10px;
  border-radius: 10px;
}

.item:hover {
  transform: translateY(-4px);
  background-color: #f5f5f5;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  cursor: pointer;
}


/* Responsivo */
@media (max-width: 900px) {
  .tipos-transporte .container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .texto-esquerda {
    max-width: 100%;
  }

 .icones-direita {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px; /* espaço uniforme entre os itens */
    width: 100%;
  }

  .item {
    width: 95%; /* ocupa 90% da largura da tela */
    max-width: 300px; /* evita estourar */
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 12px;
    border-radius: 10px;
    background-color: #f9f9f9; /* opcional para visual */
    transition: all 0.3s ease;
    text-align: left;
  }

  .item:hover {
    background-color: #f0f0f0;
    transform: translateY(-4px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  }

  .item img {
    width: 40px;
    height: auto;
  }

  .item span {
    font-size: 15px;
    color: #222;
  }

  .tipos-transporte {
  padding: 80px 10%;
  background-color: #fff;
  height: 156vh;
  font-family: "Montserrat", sans-serif;
}
}


.rastreamento {
  background-color: #22418e;
  color: white;
  padding: 80px 5%;
  border-radius: 20px;
  margin: 40px auto;
  font-family: 'Montserrat', sans-serif;
  position: relative;
  overflow: hidden;
}

/* Simula cortes suaves nas laterais usando pseudo-elementos */
.rastreamento::before {
  content: '';
  position: absolute;
  top: 0;
  left: -50px;
  width: 120%;
  height: 100%;
  background-color: #196b5a;
  transform: skewY(-2deg);
  z-index: -1;
  border-radius: 40px;
}

.conteudo-rastreamento {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.conteudo-rastreamento h2 {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 10px;
}

.conteudo-rastreamento p {
  font-size: 16px;
  opacity: 0.9;
  margin-bottom: 60px;
}

.etapas {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  position: relative;
  flex-wrap: wrap;
}

.etapa {
  flex: 1;
  min-width: 250px;
  max-width: 350px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
}

.etapa-icon {
  width: 80px;
  height: 80px;
  border: 2px solid #b20101;
  border-radius: 50%;
  background-color: #b20101;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
}

.etapa-icon img {
  width: 36px;
  height: 36px;
}

.etapa-texto h3 {
  font-size: 18px;
  margin-bottom: 10px;
  font-weight: 600;
}

.etapa-texto h3 span {
  font-size: 30px;
  font-weight: 800;
  margin-right: 6px;
  color: white;
}

.etapa-texto p {
  font-size: 14px;
  line-height: 1.6;
  opacity: 0.95;
}

/* Linha conectando os ícones */
.etapas::before {
  content: "";
  position: absolute;
  top: 40px;
  left: 0;
  right: 0;
  height: 2px;
  background-color: #b20101;
  z-index: 1;
}

@media (max-width: 900px) {
  .etapas {
    flex-direction: column;
    gap: 60px;
  }

  .etapas::before {
    display: none;
  }

  .etapa {
    max-width: 100%;
  }
}




.containerr {
  display: flex;
  min-height: 74vh;
  background-color: #fff;
}

/* ----- DESKTOP IMAGE ----- */
.image-side {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
}

.image-side img {
  width: 100%;
  min-width: 400px;
  height: auto;
}

/* ----- FORMULÁRIO ----- */
.form-side {
  flex: 1;
  padding: 60px;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.form-side h1 {
  font-size: 28px;
  color: #23438f;
  margin-bottom: 10px;
}

.form-side p {
  margin-bottom: 30px;
  font-size: 16px;
  color: #000;
}

form input,
form textarea {
  width: 100%;
  padding: 14px;
  margin-bottom: 18px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 15px;
}

form textarea {
  height: 100px;
  resize: vertical;
}

button {
  background-color: #ad1e16;
  color: #fff;
  padding: 14px;
  width: 100%;
  border: none;
  border-radius: 30px;
  font-size: 16px;
  cursor: pointer;
}

button:hover {
  background-color: #00225c;
}

/* ----- MOBILE ----- */

 @media (max-width: 768px) {
  .containerr {
    flex-direction: column;
  }

  .image-side {
    display: flex;
    padding: 20px;
    order: -1; /* Coloca a imagem antes do formulário */
  }

  .image-side img {
    max-width: 300px;
    width: 100%;
    height: auto;
    margin: 0 auto;
  }

  .form-side {
    padding: 20px;
  }
}








/*.site-footer {
  background-color: #fff; 
  color: black;
  padding: 15px 30px;
  font-size: 14px;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.footer-content span {
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-content .dev-info img {
  height: 20px;
  width: auto;
}*/


.faq-section {
  background-color: #fff;
  color: #fff;
  text-align: center;
  padding: 80px 20px;
}

.faq-section h5 {
  color: #000;
  letter-spacing: 3px;
  margin-bottom: 10px;
}

.faq-section h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 40px;
  color: #000;
}

.faq {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 15px;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.faq-item.show {
  opacity: 1;
  transform: translateY(0);
}

.faq-question {
  background-color: #b20101;
  color: #fff;
  width: 100%;
  border: none;
  text-align: left;
  padding: 18px 20px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 4px;
  cursor: pointer;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.3s;
}

.faq-question:hover {
  background-color: #ff1919;
}

.arrow {
  transition: transform 0.3s ease;
}

.faq-item.active .arrow {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  background-color: #f4f4f4;
  color: #333;
  text-align: left;
  border-radius: 0 0 4px 4px;
  transition: max-height 0.4s ease;
}

.faq-answer p {
  padding: 15px 20px;
}

.faq-item.active .faq-answer {
  max-height: 200px;
}

@media (max-width: 768px){
  .faq-question {
  background-color: #b20101;
  color: #fff;
  width: 100%;
  border: none;
  text-align: left;
  padding: 18px 35px;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 10px;
  cursor: pointer;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.3s;
}
}



.frota-section {
  position: relative;
  background: url('fundoCaminhao.png') center/cover no-repeat;
  height: 80vh;
  display: flex;
  align-items: center;
  color: #fff;
}

.frota-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.85) 45%, rgba(0, 0, 0, 0.1));
  z-index: 1;
}

.frota-container {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 60px 80px 10px; /* ← deslocamento maior à esquerda */
  display: flex;
  justify-content: flex-start;
}

.frota-text {
  max-width: 550px;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.frota-text.show {
  opacity: 1;
  transform: translateY(0);
}

.badge {
  background-color: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 8px 16px;
  border-radius: 30px;
  font-size: 0.9rem;
  display: inline-block;
  margin-bottom: 20px;
}

.frota-text h2 {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 25px;
}

.frota-text p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 35px;
  color: #e0e0e0;
}

.cta-btn {
  display: inline-block;
  background-color: #b20101;
  color: #fff;
  padding: 14px 28px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: background 0.3s ease, transform 0.3s ease;
  opacity: 0;
  transform: translateY(40px);
}

.cta-btn.show {
  opacity: 1;
  transform: translateY(0);
}

.cta-btn:hover {
  background-color: #00225c;
  transform: translateY(-3px);
}

/* Responsivo */
@media (max-width: 768px) {
  .frota-container {
    padding: 60px 20px;
  }

  .frota-text h2 {
    font-size: 1.9rem;
  }

  .frota-text p {
    font-size: 0.95rem;
  }

  .frota-section {
  position: relative;
  background: url('fundocaminhao2.png') center/cover no-repeat;
  height: 80vh;
  display: flex;
  align-items: center;
  color: #fff;
}
}


.localizacao-section {
 background: url('fundoloc.png') center/cover no-repeat;
  padding: 60px 5%;
}

.localizacao-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
}

.texto-localizacao {
  flex: 1;
  min-width: 280px;
}

.texto-localizacao h2 {
  font-size: 2rem;
  color: #fff;
  margin-bottom: 15px;
}

.texto-localizacao p {
  font-size: 1.1rem;
  color: #fff;
  margin-bottom: 5px;
}

.mapa-localizacao {
  flex: 1;
  min-width: 320px;
}

.mapa-localizacao iframe {
  width: 100%;
  height: 350px;
  border-radius: 10px;
  border: none;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

/* --- RESPONSIVO PARA CELULAR --- */
@media (max-width: 768px) {
  .localizacao-container {
    flex-direction: column;
  }

  .texto-localizacao {
    order: 1;
    text-align: center;
  }

  .mapa-localizacao {
    order: 2;
  }

  .texto-localizacao h2 {
    font-size: 1.6rem;
  }

  .texto-localizacao p {
    font-size: 1rem;
  }
}


.footer {
  background-color: #23438f;
  color: #fff;
  font-family: "Poppins", sans-serif;
  padding-top: 30px;
}

.footer-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 0 5% 20px 5%;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.footer-logo img {
  width: 120px;
  margin-bottom: 8px;
}

.footer-logo p {
  font-size: 0.9rem;
  color: #a8c6de;
}

.footer-info {
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-align: right;
}

.footer-info p {
  margin: 0;
  font-size: 0.95rem;
}

.footer-info i {
  color: #00aaff;
  margin-right: 8px;
}

.footer-bottom {
  text-align: center;
  padding: 12px 0;
  font-size: 0.8rem;
  color: #a8c6de;
  letter-spacing: 0.5px;
}

.footer-bottom strong {
  color: #fff;
}

/* --- RESPONSIVO --- */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    text-align: center;
  }

  .footer-info {
    text-align: center;
    margin-top: 20px;
  }
}
