html {
  scroll-behavior: smooth;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #333;
  background-color: #fff;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  height: auto;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: #ff9141;
  transition: background-color 0.3s, box-shadow 0.3s;
  z-index: 999;
  width: calc(100% - 2rem);
  margin: 0 1rem;
  border-radius: 0 0 16px 16px;
}

.header.scrolled {
  background-color: #fff;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  flex-wrap: wrap;
  width: 100%;
}

.logo {
  height: 87px;
  transition: all 0.3s ease-in-out;
  margin-right: -10px;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: white;
  z-index: 1001;
  transition: color 0.3s ease;
  position: absolute;
  top: 1rem;
  left: 1rem;
}

.header.scrolled .menu-toggle {
  color: #000;
}

.nav-menu {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  align-items: center;
  flex: 1;
  justify-content: center;
}

.nav-menu a {
  text-decoration: none;
  color: white;
  font-size: 1.1rem;
  transition: color 0.3s;
}

.nav-menu a:hover {
  color: #000000;
}

.header.scrolled .nav-menu a {
  color: #333;
}

.header.scrolled .nav-menu a:hover {
  color: #ff9141;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
}

.btn.initial {
  background-color: #000;
  color: #ffffff;
  border: 2px solid #ff9141;
}

.link {
  color: white;
  font-size: 0.9rem;
  text-decoration: none;
  transition: color 0.3s;
}

.header.scrolled .link {
  color: #333;
}

.btn {
  background-color: #ff9141;
  color: #fff;
  padding: 0.5rem 1.2rem;
  border-radius: 999px;
  text-decoration: none;
  font-size: 0.9rem;
  transition: background 0.3s;
}

.btn:hover {
  background-color: #e07c2d;
}

@media (max-width: 768px) {
  .header-content {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }

  .menu-toggle {
    display: block;
  }

  .logo {
    margin: 0 auto;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    left: -100%;
    height: 100vh;
    width: 250px;
    background-color: #ff9141;
    flex-direction: column;
    align-items: flex-start;
    padding: 5rem 1rem 2rem;
    gap: 1rem;
    transition: left 0.3s ease;
    z-index: 1000;
  }

  .nav-menu.open {
    left: 0;
  }

  .cta-buttons {
    display: none;
  }

  .btn-outline {
    width: 100%;
    text-align: center;
    padding-left: 0;
    padding-right: 0;
  }

  .hero-text h1 {
    font-size: 2rem;
  }

  .partners-title {
    font-size: 2rem;
  }

  .hero-content {
    flex-direction: column;
    text-align: center;
  }

  .partners-logos {
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
  }
.linha-total {
  grid-column: 1 / -1; /* Ocupa 100% da linha do grid */
  display: block;
  width: 100%;
  text-align: center;
  margin-top: 2rem;
}

.destaque-transporte {
  color: #ff9141;
  font-size: 1.8rem;
  font-weight: bold;
  margin: 0;
}
.frase-transporte {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: transparent;
  width: 100%;
  height: 120px; /* mesmo que a altura dos ícones */
  font-size: 1.1rem;
  color: #ff9141;
  font-weight: bold;
  grid-column: auto;
  margin: 0;
  padding: 0;
}

.frase-transporte h3 {
  margin: 0;
  font-size: 1.1rem;
  color: #ff9141;
}

  .filter {
    font-size: 0.85rem;
    padding: 0.5rem 1rem;
  }
}

.hero {
  background-color: #ff9141;
  color: white;
  padding: 10rem 1rem 2rem;
  border-radius: 24px;
  margin: 1rem;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  text-align: center;
}

@media(min-width: 768px) {
  .hero-content {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    text-align: left;
  }
}

.hero-text h1 {
  font-size: 2.5rem;
  font-weight: bold;
  line-height: 1.3;
  margin-bottom: 1.5rem;
  margin-top: -30px;
}

.hero-text p {
  margin-bottom: 1.5rem;
  font-size: 1rem;
}

.btn-outline {
  display: inline-block;
  background-color: #fff;
  color: #ff9141;
  padding: 0.6rem 2rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 500;
  transition: background 0.3s;
}

.btn-outline:hover {
  background-color: #fbe0cb;
}

.hero-img img {
  max-width: 400px; 
  height: auto;
  margin: 0 auto;
  display: block;
}
@media (max-width: 768px) {
  .hero-img img {
    max-width: 280px;
  }
}

.partners-section {
  background-color: #f9f9f9;
  padding: 4rem 1rem;
  text-align: center;
  border-radius: 24px;
  margin: 2rem 1rem;
}

.partners-title {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
  color: #111;
}

.partners-subtitle {
  color: #555;
  margin-bottom: 2rem;
  font-size: 1.1rem;
}

.partners-filters {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.filter {
  background-color: #f2f2f2;
  border: none;
  padding: 0.6rem 1.4rem;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 600;
  color: #bbb;
  transition: all 0.3s ease;
  font-size: 0.95rem;
  display: inline-block;
}

.filter.active,
.filter:hover {
  background-color: #ffe2d2;
  color: #ff9141;
}

.partners-logos {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 1.5rem;
  justify-items: center;
  align-items: center;
  max-width: 100%;
  margin: 0 auto;
  padding: 1rem 0;
}

.partners-logos.centered {
  justify-content: center;
  max-width: 600px;
  margin: 0 auto;
  grid-template-columns: repeat(auto-fit, minmax(120px, 160px));
}

@media (max-width: 768px) {
  .partners-section {
    padding: 2.5rem 1rem;
  }

  .partners-title {
    font-size: 1.8rem;
  }

  .partners-subtitle {
    font-size: 1rem;
  }

  .partners-filters {
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
  }

  .filter {
    width: 100%;
    max-width: 300px;
    text-align: center;
    font-size: 0.9rem;
    padding: 0.6rem 1.2rem;
  }

  .partners-logos {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .partners-logos img {
    height: 100px;
    padding: 0.75rem;
  }

  .partners-invite {
    font-size: 0.95rem;
    padding: 0 1rem;
  }

  .partner-cta {
    display: inline-block;
    margin-top: 0.5rem;
  }
}



.partners-logos img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: contain;
  padding: 10px;
  transition: transform 0.5s ease;
}


.partners-logos img:hover {
   transform: rotateY(360deg);
}

.partners-invite {
  font-size: 1rem;
  font-weight: 500;
  color: #222;
  margin-bottom: 0.3rem;
}

.partner-cta {
  color: #ff9141;
  text-decoration: none;
  font-weight: bold;
}

.partner-cta:hover {
  text-decoration: underline;
}

.how-it-works {
  background-color: #ff9141;
  color: white;
  padding: 6rem 1rem 4rem;
  border-radius: 24px;
  margin: 2rem 1rem;
}

.how-it-works .container {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: center;
  text-align: center;
}

@media (min-width: 768px) {
  .how-it-works .container {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

.how-it-works .steps {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  flex: 1;
}

@media (min-width: 768px) {
  .how-it-works .steps {
    max-width: 600px;
  }
  
}

.how-it-works h2 {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 2rem;
  width: 100%;
}

.how-it-works .step h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.how-it-works .step p {
  font-size: 1rem;
  line-height: 1.6;
}

.how-it-works .step i {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  color: white;
}

.how-it-works-image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.how-it-works-image img {
  max-width: 100%;
  height: auto;
  border-radius: 16px;
}
@media (max-width: 768px) {
  .how-it-works-image {
    display: none;
  }
}

.diferenciais-section {
  background-color: #f9f9f9;
  padding: 6rem 2rem;
  border-radius: 24px;
  margin: 3rem 1rem;
  text-align: center;
}

.diferenciais-title {
  font-size: 3rem;
  font-weight: 900;
  margin-bottom: 4rem;
  color: #111;
}

.diferenciais-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 3rem;
}


.diferencial {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.diferencial img {
  height: 190px;
  margin-bottom: 1.5rem;
  object-fit: contain;
}

.diferencial h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #ff9141;
}

.diferencial p {
  font-size: 1.1rem;
  color: #555;
  line-height: 1.7;
  max-width: 340px;
}

.btn-vermais {
  margin-top: 1rem;
  background-color: transparent;
  border: 2px solid #ff9141;
  color: #ff9141;
  padding: 0.5rem 1.2rem;
  border-radius: 999px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-vermais:hover {
  background-color: #ff9141;
  color: white;
}

.modal-financeiro {
  display: none;
  position: fixed;
  z-index: 1000;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.6); /* Fundo escuro translúcido */
  justify-content: center;
  align-items: center;
  padding: 2rem;
}

.modal-financeiro.ativo {
  animation: fadeIn 0.3s ease forwards;
}

.modal-conteudo {
  background-color: #fff;
  color: #000;
  border-radius: 12px;
  max-width: 900px;
  width: 100%;
  padding: 2rem 1.5rem; /* Reduzido padding lateral de 2rem para 1.5rem */
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}




.modal-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  width: 100%;
}

.modal-bloco {
  flex: 1 1 300px;
  max-width: 400px;
  text-align: center;
}

.modal-bloco h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #ff9141; 
}

.modal-bloco ul {
  list-style: none;
  padding: 0;
  color: #333; /* Texto levemente mais claro */
}

.modal-bloco ul li {
  margin-bottom: 0.75rem;
  font-size: 1rem;
}

.fechar-modal {
  position: absolute;
  top: 1rem;
  left: 1.5rem;
  font-size: 2.2rem;
  background: none;
  border: none;
  color: #ff9141; /* cor solicitada */
  cursor: pointer;
  font-weight: bold;
  line-height: 1;
  transition: transform 0.2s ease;
}

.fechar-modal:hover {
  transform: scale(1.2);
}

@keyframes fadeIn {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}

@media (max-width: 600px) {
  .modal-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .diferenciais-section {
    padding: 4rem 1rem;
  }

   .diferenciais-grid {
    grid-template-columns: 1fr; 
  }

  .diferenciais-title {
    font-size: 2.2rem;
  }

  .diferencial img {
    height: 100px;
  }

  .diferencial h3 {
    font-size: 1.25rem;
  }

  .diferencial p {
    font-size: 1rem;
  }
}

.faq-section {
  background-color: #ff9141;
  color: white;
  padding: 6rem 2rem;
  border-radius: 24px;
  margin: 2rem 1rem;
}

.faq-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 768px) {
  .faq-content {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }
}

.faq-questions {
  flex: 1;
  max-width: 600px;
}

.faq-questions h2 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
}

.faq-item {
  margin-bottom: 1rem;
  background-color: white;
  color: #333;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.4s ease;
  box-shadow: 0 3px 8px rgba(0,0,0,0.05);
}

.faq-question {
  width: 100%;
  padding: 1.2rem 1.5rem;
  font-size: 1.2rem;
  font-weight: bold;
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.3s ease;
}

.faq-question:hover {
  background-color: #f3f3f3;
}

.faq-question .arrow svg {
  transition: transform 0.4s ease;
  stroke: #ff9141;
  width: 20px;
  height: 20px;
}

.faq-item.active .faq-question .arrow svg {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 1.5rem;
  opacity: 0;
  transition: max-height 0.5s ease, padding 0.5s ease, opacity 0.4s ease;
}

.faq-item.active .faq-answer {
  max-height: 500px; 
  padding: 1rem 1.5rem;
  opacity: 1;
}
.faq-image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.faq-image img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  margin-bottom: -55px;
}

.about-section {
  background-color: #f9f9f9;
  padding: 6rem 1rem; 
  border-radius: 24px;
  margin: 3rem 1rem;
}

.about-text {
  max-width: 95vw; 
  margin: 0 auto;
  color: #333;
  text-align: left;
  padding: 0;
}



.about-text h2 {
  font-size: 3rem;
  color: #ff9141;
  margin-bottom: 2rem;
}


.about-text p {
  font-size: 1.2rem;
  margin-bottom: 1.2rem;
  line-height: 1.7;
}

.checklist {
  list-style: none;
  padding-left: 0;
  margin: 2rem 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.checklist li {
  font-size: 1.15rem;
  color: #444;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.checklist i {
  color: #ff9141;
  font-size: 1.2rem;
}

.contact-section {
  background-color: #ff9141;
  padding: 6rem 2rem;
  border-radius: 24px;
  margin: 2rem 1rem;
}

.contact-section .container {
  max-width: 1200px;
  margin: 0 auto;
}

.contact-title {
  font-size: 2.8rem;
  color: white;
  text-align: center;
  margin-bottom: 4rem;
  font-weight: 800;
}

.contact-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
  align-items: flex-start;
}

.contact-form {
  flex: 1;
  min-width: 280px;
}

.contact-form h3 {
  font-size: 1.8rem;
  color: white;
  margin-bottom: 1.5rem;
}

.contact-whatsapp {
  flex: 1;
  min-width: 280px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.contact-whatsapp h3 {
  font-size: 1.8rem;
  color: white;
  margin-bottom: 1.5rem;
  text-align: center;
}


.contact-form form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-form input,
.contact-form textarea {
  padding: 1rem;
  border-radius: 12px;
  border: 1px solid #ccc;
  font-size: 1rem;
  outline: none;
}

.contact-form .btn {
  background-color: #000;
  color: #fff;
  border: none;
  padding: 0.8rem 1.5rem;
  border-radius: 999px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s ease;
}

.contact-form .btn:hover {
  background-color: #25D366;
}

.contact-divider {
  font-weight: bold;
  font-size: 1.2rem;
  color: #999;
  align-self: center;
}

.contact-divider span {
  background-color: #fff;
  padding: 0.5rem 1rem;
  border: 2px dashed #ccc;
  border-radius: 999px;
}

.contact-whatsapp p {
  margin-bottom: 1.5rem;
  font-size: 1rem;
  color: #fff;
  line-height: 1.5;
  text-align: center;
}

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background-color: #25D366;
  color: white;
  padding: 0.8rem 1.5rem;
  border-radius: 999px;
  font-weight: bold;
  font-size: 1rem;
  text-decoration: none;
  border: 2px solid transparent;
  transition: all 0.3s ease;
  margin-bottom: 1.5rem;
}

.btn-whatsapp:hover {
  background-color: transparent;
  color: #25D366;
  border: 2px solid white;
}
.whatsapp-image img {
  max-width: 180px;
  height: auto;
  display: block;
  margin-top: -15px;
}


@media (max-width: 768px) {
  .contact-wrapper {
    flex-direction: column;
    align-items: stretch;
  }

  .contact-divider {
    align-self: center;
    margin: 1rem 0;
  }
}



.footer {
  background-color: #333;
  padding: 3rem 1rem;
  border-radius: 24px 24px 0 0;
  margin-top: 4rem;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
}

.footer-left {
  flex: 1;
}

.footer-logo {
  height:85px;
  margin-bottom: 1rem;
}

.footer-left p {
  color: #fff;
  font-size: 0.9rem;
}

.footer-links {
  flex: 1;
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.footer-links a {
  color: #fff;
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #ff9141;
}

.footer-social {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  gap: 1rem;
}

.footer-social a {
  font-size: 1.6rem;
  color: #fff;
  transition: color 0.3s ease;
}

.footer-social a:hover {
  color: #ff9141;
}

@media (max-width: 768px) {
  .footer-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

@media (max-width: 768px) {
  .logo {
    height: 57px; 
    margin: 0 auto;
    display: block;
  }
}


  .footer-logo {
    margin: 0 auto 1rem;
  }

  .footer-social {
    justify-content: center;
  }
}
.modal-politica {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  justify-content: center;
  align-items: center;
  z-index: 9999;
  padding: 1rem;
}

.modal-politica.ativo {
  display: flex;
  animation: fadeIn 0.3s ease;
}

.modal-politica .conteudo-politica {
  background: #fff;
  color: #000;
  padding: 3rem 2rem 2rem 2rem; /* padding maior no topo para evitar corte */
  max-width: 600px;
  border-radius: 10px;
  position: relative;
  max-height: 90vh;
  overflow-y: auto;
}

.modal-politica .btn-fechar {
  position: absolute;
  top: 15px;
  right: 20px;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: #ff9141;
  cursor: pointer;
}
.modal-politica .conteudo-politica ul {
  list-style: none; /* Remove os marcadores padrão, opcional */
  padding: 0;
  margin: 1rem 0;
  text-align: center; /* Centraliza o texto dos <li> */
}

.modal-politica .conteudo-politica ul li {
  margin-bottom: 0.5rem;
}

@keyframes fadeIn {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}

.valores-section {
  color: #fff;
  padding: 2rem 1rem;
  width: 100%;
}

.valores-linha {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.bloco {
  flex: 1;
  min-width: 250px;
}

.bloco h2 {
  font-size: 1.9rem;
  color: #ff9141;
  margin-bottom: 0.5rem;
}

.bloco p {
  font-size: 1rem;
  line-height: 1.6;
  color: #000;
}

.valores-final {
  margin-top: 2.6rem;
  text-align: center;
  font-size: 1.5rem;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  color: #ff9141;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .valores-linha {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .bloco {
    max-width: 100%;
  }
}


