* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  }
  
  header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #f93;
    padding: 15px 20px;
    position: relative;
    z-index: 100;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  }
  
  .logo img {
    height: 50px;
    width: auto;
  }
  
  nav {
    position: relative;
  }
  
  .nav-links {
    display: flex;
    list-style: none;
    gap: 20px;
  }
  
  .nav-links a {
    text-decoration: none;
    color: white;
    font-weight: bold;
    font-size: 1rem;
    transition: color 0.3s;
  }
  
  .nav-links a:hover {
    color: #fffbe6;
  }
  
  .menu-toggle {
    display: none;
    font-size: 2rem;
    color: white;
    cursor: pointer;
  }
  
  /* ======== Responsivo ======== */
  @media (max-width: 768px) {
    .nav-links {
      display: none;
      position: absolute;
      top: 70px;
      right: 20px;
      background-color: #fff;
      flex-direction: column;
      width: 220px;
      border-radius: 8px;
      box-shadow: 0 4px 12px rgba(0,0,0,0.15);
      padding: 15px;
      z-index: 1000;
      transition: all 0.3s ease-in-out;
    }
  
    .nav-links.active {
      display: flex;
    }
  
    .nav-links li {
      margin-bottom: 12px;
    }
  
    .nav-links li:last-child {
      margin-bottom: 0;
    }
  
    .nav-links a {
      color: #333;
      font-weight: 600;
      font-size: 1.1rem;
    }
  
    .nav-links a:hover {
      color: #f93;
    }
  
    .menu-toggle {
      display: block;
    }
  }

  /* Estilo da seção parallax */
.parallax {
  position: relative;
  overflow: hidden; /* Evita artefatos visuais */
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 40px 20px;
  color: white;
}

/* Camada de fundo com a imagem do parallax */
.parallax-layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('banner01.png'); /* Certifique-se de que o caminho está correto */
  background-size: cover;
  background-position: center;
  will-change: transform; /* Otimiza o uso da GPU */
  z-index: -1; /* Mantém a camada atrás do conteúdo */
}

/* Conteúdo dentro do parallax */
.parallax-content {
  position: relative;
  z-index: 1; /* Garante que o conteúdo fique acima da imagem */
}

/* Fallback para dispositivos móveis */
@media (max-width: 768px) {
  .parallax-layer {
      transform: none; /* Fallback sem o efeito parallax */
      background-attachment: scroll;
  }
}
  
  .parallax::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.4); /* escurece a imagem para melhor contraste */
    z-index: 1;
  }
  
  .parallax-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
  }
  
  .parallax-content h1 {
    font-size: 2rem;
    margin-bottom: 15px;
  }
  
  .parallax-content p {
    font-size: 1.2rem;
  }
  
  .parallax-content a {
    color: #ffff; /* Cor do texto */
    font-weight: bold;
    text-decoration: none; /* Retira o sublinhado */
  }
  

  .cta-button {
    background-color: #f93;  /* Cor do botão */
    color: white;  /* Cor do texto dentro do botão */
    padding: 12px 24px;
    border: none;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: bold;
    text-decoration: none;
    display: inline-block;
    margin-top: 10px;
    transition: background-color 0.3s ease, transform 0.2s ease;
  }
  
  .cta-button:hover {
    background-color: #e68a00;  /* Cor do botão ao passar o mouse */
    transform: scale(1.05);
    cursor: pointer;
  }


/* Estilização específica para os botões dentro da seção parallax */
.parallax-content .cta-buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px; /* Espaçamento horizontal entre os botões */
  flex-wrap: wrap; /* Permite quebrar linha em telas pequenas */
  margin-top: 20px;
}

.parallax-content .cta-button {
  background-color: #f93;
  color: #fff;
  padding: 12px 24px;
  border: none;
  border-radius: 30px;
  font-size: 1rem;
  font-weight: bold;
  text-decoration: none;
  display: inline-block;
  transition: background-color 0.3s ease, transform 0.2s ease;
  margin: 0; /* Remove qualquer margem lateral que possa ter sido herdada */
}

.parallax-content .cta-button:hover {
  background-color: #e68a00;
  transform: scale(1.05);
  cursor: pointer;
}

/* Seção principal */
.options {
  padding: 50px 20px;
  text-align: center;
  background: linear-gradient(135deg, #f6f9fc, #e8eff7);
}



/* Título moderno e chamativo */
.options-title {
  font-size: 3.5rem;
  font-weight: bold;
  text-transform: uppercase;
  background: linear-gradient(90deg, #ff6f00, #ff8c33);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: 3px;
  margin-bottom: 10px;
  position: relative;
}

.options-title::after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background: #ff6f00;
  margin: 10px auto 0;
  border-radius: 2px;
}

/* Descrição */
.options p {
  font-size: 1.2rem;
  color: #666;
  margin-bottom: 40px;
  font-style: italic;
}

/* Cards de opções */
.options-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.option-card {
  background: linear-gradient(135deg, #ff6f00, #ff8c33); /* Gradiente moderno em tons de laranja */
  border-radius: 20px;
  box-shadow: 0 15px 25px rgba(0, 0, 0, 0.2);
  padding: 30px 20px;
  text-align: center;
  width: 250px;
  height: 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.option-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 45px rgba(0, 0, 0, 0.3);
}

.option-card a {
  font-size: 1.4rem;
  font-weight: bold;
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
}

.option-card a:hover {
  text-decoration: underline;
}

/* Ícones */
.icon-wrapper {
  width: 100px;
  height: 100px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.icon-wrapper i {
  font-size: 2.5rem;
  color: #ff6f00;
}

/* Responsividade */
@media (max-width: 768px) {
  .option-card {
    width: 100%;
    height: auto;
  }

  .options-cards {
    flex-direction: column;
    align-items: center;
  }
}


/* Tipografia */
body {
    font-family: 'Poppins', 'Roboto', Arial, sans-serif;
    line-height: 1.6;
  }
  
  h2, h3 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    letter-spacing: 1px;
  }
  
  /* Seção de Sorteio */
  .giveaway {
    padding: 60px 20px;
    background: linear-gradient(135deg, #ff6f00, #ff9800); /* Gradiente refinado */
    color: white;
    text-align: center;
  }
  
  .giveaway h2 {
    font-size: 2.8rem;
    font-weight: bold;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
  }
  
  .giveaway p {
    font-size: 1.2rem;
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto 40px;
  }
  
  .giveaway-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    gap: 40px;
  }
  
  /* Imagem e Regras */
  .giveaway-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 500px;
  }
  
  .giveaway-image img {
    max-width: 100%;
    border-radius: 20px;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
  }
  
  .giveaway-image img:hover {
    transform: scale(1.05);
  }
  
  .giveaway-rules {
    background: white;
    color: #333;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
    margin-top: 20px;
    text-align: left;
    width: 100%;
  }
  
  .giveaway-rules h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #ff6f00;
  }
  
  .giveaway-rules ul {
    list-style: none;
    padding-left: 0;
  }
  
  .giveaway-rules ul li {
    margin-bottom: 10px;
    font-size: 1rem;
    line-height: 1.5;
  }
  
  .giveaway-rules ul ul {
    margin-top: 10px;
    margin-left: 20px;
    list-style: disc;
  }
  
  /* Formulário */
  .giveaway-form {
    background: white;
    padding: 30px 40px;
    border-radius: 15px;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
    max-width: 400px;
    width: 100%;
    text-align: left;
  }
  
  .giveaway-form label {
    font-size: 1rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 8px;
    display: block;
  }
  
  .giveaway-form input {
    width: 100%;
    padding: 12px;
    margin-bottom: 20px;
    border: 2px solid #ddd;
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
  }
  
  .giveaway-form input:focus {
    border-color: #ff6f00;
    box-shadow: 0 0 8px rgba(255, 111, 0, 0.4);
    outline: none;
  }
  
  .giveaway-form .cta-button {
    background: #ff6f00;
    color: white;
    padding: 15px 25px;
    border: none;
    border-radius: 30px;
    font-size: 1.2rem;
    font-weight: bold;
    text-align: center;
    text-transform: uppercase;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
    width: 100%;
  }
  
  .giveaway-form .cta-button:hover {
    background-color: #e65c00;
    transform: scale(1.05);
  }
  
  /* Responsividade */
  @media (max-width: 768px) {
    .giveaway-container {
      flex-direction: column;
      gap: 20px;
    }
  
    .giveaway-info {
      max-width: 100%;
    }
  
    .giveaway-form {
      max-width: 100%;
    }
  }

 

/* Seção de Patrocinadores */
.sponsors {
  padding: 50px 20px;
  background: linear-gradient(135deg, #ffffff, #f5f5f5);
  text-align: center;
}

.sponsors h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #e65c00;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.sponsors p {
  font-size: 1.2rem;
  color: #555;
  margin-bottom: 30px;
}

.sponsor-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px; /* Espaço entre logos */
  flex-wrap: wrap; /* Permite quebrar linha em telas menores */
}

.sponsor-logo-wrapper {
  width: 150px; /* Tamanho fixo da moldura */
  height: 150px;
  border-radius: 50%; /* Moldura arredondada */
  background-color: #f0f0f0; /* Fundo da moldura */
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Sombra para destaque */
  overflow: hidden; /* Garante que a logo fique dentro da moldura */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sponsor-logo-wrapper:hover {
  transform: scale(1.1); /* Efeito de hover */
  box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2);
}

/* Ajustes na exibição das logos */
.sponsor-logo {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Garante que a logo preencha toda a moldura */
  display: block;
}


/* Responsividade */
@media (max-width: 768px) {
  .sponsor-logo-wrapper {
      width: 120px; /* Ajusta o tamanho da moldura em telas menores */
      height: 120px;
  }
}

@media (max-width: 480px) {
  .sponsor-logo-wrapper {
      width: 100px; /* Ajusta o tamanho da moldura em telas muito pequenas */
      height: 100px;
  }

  .sponsors h2 {
      font-size: 2rem; /* Reduz o tamanho do título em telas pequenas */
  }

  .sponsors p {
      font-size: 1rem; /* Reduz o tamanho do texto em telas pequenas */
  }
}

/* Footer */
.footer {
  background-color: #333;
  color: #fff;
  padding: 40px 20px;
  text-align: center;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-column {
  flex: 1;
  min-width: 200px;
}

.footer-column h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: #e65c00;
  text-transform: uppercase;
}

.footer-column p,
.footer-column ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-column ul li {
  margin-bottom: 10px;
}

.footer-column ul li a {
  text-decoration: none;
  color: #fff;
  transition: color 0.3s ease;
}

.footer-column ul li a:hover {
  color: #e65c00;
}

.social-icons {
  display: flex;
  gap: 10px;
  justify-content: center;
}

.social-icon img {
  width: 30px;
  height: 30px;
  transition: transform 0.3s ease;
}

.social-icon img:hover {
  transform: scale(1.2);
}

/* Direitos Autorais */
.footer-bottom {
  margin-top: 20px;
  font-size: 0.9rem;
  border-top: 1px solid #444;
  padding-top: 10px;
  color: #aaa;
}

/* Responsividade */
@media (max-width: 768px) {
  .footer-container {
      flex-direction: column;
      align-items: center;
      text-align: center;
  }

  .footer-column {
      margin-bottom: 20px;
  }
}
  
  
  
.modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  padding: 1rem;
}

.modal.hidden {
  display: none;
}

.modal-content {
  background-color: #fff;
  padding: 2rem;
  border-radius: 1rem;
  width: 100%;
  max-width: 500px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
  font-family: 'Segoe UI', sans-serif;
  position: relative;
  overflow-y: auto;
  max-height: 90vh;
}

.close-button {
  position: absolute;
  top: 10px;
  right: 14px;
  font-size: 1.8rem;
  color: #888;
  cursor: pointer;
  background: none;
  border: none;
}

.close-button:hover {
  color: #000;
}

.modal-message {
  font-size: 1rem;
  margin-bottom: 1.5rem;
  color: #333;
  line-height: 1.6;
}

.giveaway-form {
  display: flex;
  flex-direction: column;
}

.giveaway-form label {
  margin-bottom: 0.25rem;
  font-weight: 600;
  font-size: 0.95rem;
  color: #222;
}

.giveaway-form input {
  margin-bottom: 1rem;
  padding: 0.75rem;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 1rem;
  width: 100%;
}

.cta-button {
  padding: 0.9rem;
  font-size: 1.05rem;
  border: none;
  border-radius: 8px;
  background-color: #e65c00;
  color: white;
  cursor: pointer;
  transition: background 0.3s;
}

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

/* 🔁 Responsivo para telas pequenas */
@media (max-width: 480px) {
  .modal-content {
    padding: 1.2rem;
    border-radius: 0.75rem;
    max-height: 95vh;
  }

  .modal-message {
    font-size: 0.95rem;
  }

  .cta-button {
    font-size: 1rem;
    padding: 0.8rem;
  }

  .close-button {
    font-size: 1.5rem;
    top: 8px;
    right: 10px;
  }
}


.gifts {
  padding: 2rem 1rem;
  text-align: center;
}

.gifts h2 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.gifts p {
  color: #555;
  margin-bottom: 2rem;
}

.gift-cards {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); /* Adaptação automática */
  justify-items: center;
}

@media (min-width: 768px) {
  .gift-cards {
    grid-template-columns: repeat(2, 1fr); /* Exibir dois cards por linha em telas maiores */
    gap: 1rem; /* Reduzindo o espaçamento entre os cards */
  }
}

@media (min-width: 1024px) {
  .gift-cards {
    grid-template-columns: repeat(3, 1fr); /* Exibir três cards por linha em telas grandes */
    gap: 1.5rem; /* Ajustando o espaçamento */
  }
}

.gift-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  padding: 1.5rem;
  text-align: center;
  max-width: 320px;
  transition: transform 0.3s ease;
}

.gift-card:hover {
  transform: translateY(-4px);
}

.gift-logo {
  width: 100px; /* Ajuste no tamanho da logo */
  height: auto;
  margin: 0 auto 1rem auto; /* Centraliza a logo */
  display: block;
  border-radius: 50%; /* Moldura arredondada */
  padding: 10px; /* Espaçamento interno para a logo não colar na borda */
  background-color: #f4f4f4; /* Cor de fundo leve para a moldura */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Sombra sutil */
}

.gift-content h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.discount {
  color: #e63946;
  font-weight: bold;
  margin-bottom: 0.5rem;
}

.gift-description {
  font-size: 0.95rem;
  color: #333;
}


html {
  scroll-behavior: smooth;
}

#sorteio {
  scroll-margin-top: 80px; /* ajuste se tiver header fixo */
}


/* Seção Premium */
.premium-section {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 60px 30px;
  background: #fff; /* Fundo branco */
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1); /* Sombra suave */
  gap: 30px;
  overflow: hidden;
  border-left: 5px solid #e65c00; /* Detalhe na cor #e65c00 */
  border-right: 5px solid #e65c00; /* Detalhe na cor #e65c00 */
}

/* Conteúdo do Texto */
.premium-content {
  flex: 1 1 50%;
  max-width: 600px;
}

.premium-title {
  font-size: 3rem;
  font-weight: bold;
  color: #e65c00; /* Cor chamativa para o título */
  margin-bottom: 20px;
}

.premium-description {
  font-size: 1.2rem;
  color: #333;
  line-height: 1.8;
  margin-bottom: 20px;
}

/* Imagem e Botão */
.premium-image {
  flex: 1 1 40%;
  max-width: 500px;
  text-align: center; /* Centraliza o botão sob a imagem */
}

.premium-image img {
  width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3); /* Destaque na imagem */
  margin-bottom: 20px; /* Espaçamento entre imagem e botão */
}

.cta-button {
  display: inline-block;
  padding: 15px 30px;
  background: #e65c00; /* Cor do botão */
  color: #fff;
  font-size: 1.2rem;
  font-weight: bold;
  border-radius: 50px; /* Botão arredondado */
  text-decoration: none;
  box-shadow: 0 5px 15px rgba(230, 92, 0, 0.3); /* Sombra elegante */
  transition: all 0.3s ease;
}

.cta-button:hover {
  background: #cc5200; /* Cor escura no hover */
  box-shadow: 0 8px 20px rgba(230, 92, 0, 0.5); /* Sombra mais forte no hover */
  transform: translateY(-3px); /* Efeito de elevação no hover */
}

/* Responsividade */
@media (max-width: 768px) {
  .premium-section {
    flex-direction: column;
    padding: 40px 20px;
    text-align: center;
  }

  .premium-content {
    flex: 1 1 100%;
  }

  .premium-image {
    flex: 1 1 100%;
    max-width: 100%; /* Ajusta para ocupar toda a largura no celular */
  }
}


.solicitar-motorista {
  background: linear-gradient(135deg, #fffbe6, #fffaf3);
  padding: 50px 20px;
  text-align: center;
}

.solicitar-content h2 {
  font-size: 2.2rem;
  color: #e65c00;
  margin-bottom: 10px;
  text-transform: uppercase;
}
.solicitar-content p {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 30px;
}

.solicitar-center {
  display: flex;
  justify-content: center;
}

.cta-button {
  background-color: #e65c00;
  color: #fff;
  padding: 14px 34px;
  border: none;
  border-radius: 30px;
  font-size: 1.1rem;
  font-weight: bold;
  text-decoration: none;
  display: inline-block;
  margin: 0 auto;
  transition: background-color 0.3s, transform 0.2s;
  cursor: pointer;
}
.cta-button.secundario {
  background-color: #ffb366;
  color: #fff;
  font-size: 1rem;
  padding: 10px 20px;
  border-radius: 20px;
}
.cta-button:hover {
  background-color: #c44f00;
  transform: scale(1.04);
}

/* MODAL */
.modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  padding: 1rem;
}
.modal.hidden {
  display: none;
}
.modal-content {
  background-color: #fff;
  padding: 2rem 1.5rem;
  border-radius: 1rem;
  width: 100%;
  max-width: 600px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
  font-family: 'Segoe UI', sans-serif;
  position: relative;
  overflow-y: auto;
  max-height: 95vh;
}
.close-button {
  position: absolute;
  top: 10px;
  right: 14px;
  font-size: 1.8rem;
  color: #888;
  cursor: pointer;
  background: none;
  border: none;
}
.close-button:hover {
  color: #000;
}

.motorista-form label {
  font-size: 1rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 4px;
  display: block;
}
.motorista-form input,
.motorista-form select {
  width: 100%;
  padding: 10px;
  margin-bottom: 14px;
  border: 1.5px solid #ddd;
  border-radius: 8px;
  font-size: 1rem;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
@media (max-width: 600px) {
  .form-grid {
    grid-template-columns: 1fr;
  }
}

.form-divider {
  margin: 24px 0;
  border: none;
  border-top: 1px solid #ececec;
}

.endereco-group {
  border: 1.5px dashed #e65c00;
  border-radius: 10px;
  padding: 15px 12px 10px 12px;
  margin-bottom: 18px;
  background: #fffdf7;
  position: relative;
}
.endereco-group h4 {
  color: #e65c00;
  margin-bottom: 8px;
  font-size: 1.1rem;
  font-weight: 700;
}
.remover-endereco {
  position: absolute;
  top: 10px;
  right: 10px;
  background: #e65c00;
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 3px 10px;
  cursor: pointer;
  font-size: 0.9rem;
  transition: background 0.2s;
}
.remover-endereco:hover {
  background: #c44f00;
}

.adicionar-center,
.salvar-center {
  display: flex;
  justify-content: center;
  margin-top: 6px;
}

.whatsapp-group {
  display: grid;
  grid-template-columns: 1fr 90px;
  gap: 18px;
  align-items: end;
  margin-bottom: 10px;
}
.whatsapp-group label {
  margin-bottom: 4px;
  font-weight: 600;
  color: #333;
  display: block;
}
.whatsapp-group input {
  width: 100%;
  padding: 10px;
  border: 1.5px solid #ddd;
  border-radius: 8px;
  font-size: 1rem;
  margin-bottom: 0;
}
.remover-whatsapp {
  background: #e65c00;
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 7px 10px;
  cursor: pointer;
  font-size: 0.95rem;
  transition: background 0.2s;
  margin-bottom: 4px;
}
.remover-whatsapp:hover {
  background: #c44f00;
}
.whatsapp-remove-placeholder {
  /* Espaço para o botão de remover não sumir o alinhamento */
}
@media (max-width: 600px) {
  .whatsapp-group {
    grid-template-columns: 1fr;
  }
}


/* CONTINUAÇÃO DO SEU CSS EXISTENTE */

/* Tipo de corrida (radio buttons Ida/Ida e Volta) */
.motorista-form > div > label[for="tipo_corrida"],
.motorista-form > div > label[for="volta_mesmo"] {
  margin-top: 10px;
  margin-bottom: 5px;
  font-weight: 600;
}

.motorista-form input[type="radio"] {
  accent-color: #e65c00;
  margin-right: 5px;
}

.motorista-form > div > div > label {
  margin-right: 20px;
  font-weight: 500;
  color: #444;
}

/* Bloco adicional "ida e volta extra" */
#ida-volta-extra,
#enderecos-volta-container {
  background: #fff8eb;
  border: 1.5px dashed #e65c00;
  border-radius: 9px;
  padding: 16px 13px 12px 13px;
  margin: 14px 0 12px 0;
}

/* Grupos de endereço da volta */
.endereco-group-volta {
  border: 1.5px dashed #4097a3;
  border-radius: 10px;
  padding: 15px 12px 10px 12px;
  margin-bottom: 18px;
  background: #f6fcff;
  position: relative;
}
.endereco-group-volta h4 {
  color: #4097a3;
  margin-bottom: 8px;
  font-size: 1.05rem;
  font-weight: 700;
}
.remover-endereco-volta {
  position: absolute;
  top: 10px;
  right: 10px;
  background: #4097a3;
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 3px 10px;
  cursor: pointer;
  font-size: 0.9rem;
  transition: background 0.2s;
}
.remover-endereco-volta:hover {
  background: #287080;
}

/* Bloco do QR Code Pix */
#pix-qrcode-area {
  background: #f4f7ff;
  border: 1px solid #e8ecf6;
  border-radius: 10px;
  padding: 17px 0 7px 0;
  margin-bottom: 10px;
  margin-top: 10px;
}

#pix-qrcode-area img {
  display: block;
  margin: 10px auto 0 auto;
  max-width: 200px;
  border-radius: 7px;
  border: 1px solid #d6dde1;
  background: #fff;
  box-shadow: 0 1px 7px 0 rgba(64,151,163,0.07);
}

/* Feedback de valor */
#resultado-distancia {
  font-size: 1.2rem;
  color: #0a3a2a;
  margin: 13px 0 7px 0;
  text-shadow: 0 1px 0 #fff;
}

@media (max-width: 600px) {
  #ida-volta-extra,
  #enderecos-volta-container {
    padding: 10px 5px;
  }
  #pix-qrcode-area {
    padding: 10px 0 5px 0;
  }
}

/* Pequenos ajustes para garantir espaçamento visual claro */
#ida-volta-extra label,
#enderecos-volta-container label {
  font-weight: 600;
  color: #333;
}

#ida-volta-extra {
  margin-bottom: 10px;
}

/* Ajuste para deixar tudo visualmente espaçado e claro */
.motorista-form input,
.motorista-form select,
.motorista-form textarea {
  margin-bottom: 14px;
}

.motorista-form textarea {
  border-radius: 8px;
  border: 1.5px solid #ddd;
  font-size: 1rem;
  padding: 10px;
  min-height: 40px;
}

.endereco-group-volta .form-grid {
  margin-bottom: 7px;
}

 /* Por padrão, a seção fica oculta */
 .mobile-only {
  display: none;
}

/* Quando a tela for menor ou igual a 768px (tamanho típico de tablets para baixo), exibe a seção */
@media screen and (max-width: 768px) {
  .mobile-only {
    display: block;
  }
}


.secao-solicite-motorista-bem-explicada {
  background: linear-gradient(135deg, #fff7ef 65%, #ffe2c2 100%);
  padding: 44px 0 38px 0;
  width: 100vw;
}
.container-solicite-motorista {
  max-width: 600px;
  margin: 0 auto;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 8px 32px -12px #e65c0033;
  padding: 36px 18px 24px 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.chamada-solicite-motorista {
  text-align: center;
  margin-bottom: 24px;
}
.icone-destaque {
  margin: 0 auto 12px auto;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #fff3e6 60%, #ffe2c2 100%);
  width: 76px;
  height: 76px;
  border-radius: 50%;
  box-shadow: 0 2px 12px -3px #e65c0033;
}
.titulo-solicite-motorista {
  font-size: 2.1rem;
  font-weight: 800;
  margin: 0 0 10px 0;
  color: #1d1d1d;
  letter-spacing: -0.5px;
}
.descricao-solicite-motorista {
  font-size: 1.18em;
  color: #333;
  margin-bottom: 0;
  line-height: 1.6;
}
.marcador-destaque {
  display: inline-block;
  background: #e65c00;
  color: #fff;
  border-radius: 7px;
  padding: 5px 14px;
  font-weight: 600;
  margin-top: 8px;
  box-shadow: 0 2px 8px -2px #e65c0044;
  font-size: 1.03em;
}
.botao-centralizado {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 28px 0 0 0;
  padding-bottom: 4px;
}
.popup-motorista-overlay {
  position: fixed;
  z-index: 1050;
  left: 0; top: 0; right: 0; bottom: 0;
  background: rgba(36, 37, 46, 0.85);
  display: flex;
  justify-content: center;
  align-items: center;
  animation: fadeIn 0.2s;
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.popup-motorista-modal {
  background: #fff;
  max-width: 500px;
  width: 94vw;
  max-height: 92vh;
  overflow-y: auto;
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(40, 40, 80, 0.22);
  padding: 32px 16px 24px 16px;
  position: relative;
  animation: slideup 0.3s;
  scrollbar-gutter: stable;
}
@keyframes slideup { from { transform: translateY(40px); opacity:0; } to { transform: translateY(0); opacity:1; } }
.popup-motorista-close {
  position: absolute;
  right: 16px;
  top: 12px;
  background: none;
  border: none;
  color: #e65c00;
  font-size: 2.2rem;
  cursor: pointer;
  transition: color 0.18s;
}
.popup-motorista-close:hover { color: #b74a00; }
.popup-motorista-modal h2 {
  margin-top: 0;
  font-weight: 700;
  color: #e65c00;
  letter-spacing: 0.01em;
}
.popup-motorista-modal p {
  color: #444;
  margin-bottom: 18px;
}
.motorista-form .form-group label {
  font-weight: 500;
  color: #e65c00;
  margin-bottom: 3px;
  display: block;
}
.motorista-form .form-group input,
.motorista-form .form-group select {
  width: 100%;
  padding: 8px 11px;
  border-radius: 7px;
  border: 1.5px solid #ffd8c1;
  font-size: 1rem;
  margin-bottom: 14px;
  background: #fff7f2;
  transition: border 0.22s;
}
.motorista-form .form-group input:focus,
.motorista-form .form-group select:focus {
  border: 1.5px solid #e65c00;
  outline: none;
  background: #fff;
}
.motorista-form .form-divider {
  border: none;
  border-top: 1.3px dashed #ffd8c1;
  margin: 18px 0 14px 0;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px 14px;
}
.form-grid > div label { margin-bottom: 2.5px; }
.salvar-center {
  text-align: center;
}
.cta-button {
  background: linear-gradient(90deg,#e65c00 70%,#ff8b3d 100%);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 12px 28px;
  font-size: 1.09rem;
  font-weight: 600;
  cursor: pointer;
  margin: 0 6px;
  box-shadow: 0 2px 12px -4px #e65c0033;
  transition: background .18s, box-shadow .18s;
}
.cta-button:hover {
  background: linear-gradient(90deg,#b74a00 60%,#ffb385 100%);
  box-shadow: 0 4px 18px -4px #e65c0044;
}
#resumo-solicitacao-iv h3, #resumo-solicitacao-iv h4 {
  color: #e65c00;
  margin-top: 0;
}
@media (max-width: 700px) {
  .container-solicite-motorista {
    padding: 18px 6vw 12px 6vw;
    max-width: 99vw;
    border-radius: 11px;
  }
  .titulo-solicite-motorista {
    font-size: 1.35rem;
  }
  .icone-destaque {
    width: 60px;
    height: 60px;
  }
}
@media (max-width: 600px) {
  .popup-motorista-modal {
    padding: 14px 4vw 12px 4vw;
    max-width: 98vw;
    min-width: 0;
    width: 99vw;
  }
  .form-grid {
    grid-template-columns: 1fr;
    gap: 10px 0;
  }
  .botao-centralizado {
    margin: 28px 0 16px 0;
  }
}
/* Suaviza input de número na webkit */
input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button { -webkit-appearance: none; margin: 0; }



/* 
  Adicione este CSS ao seu arquivo de estilos.
  A seção só será exibida em telas com largura de até 600px (típico de celulares).
*/

.mobile-only-section {
  display: none;
  text-align: center;
  padding: 20px 0;
}

@media (max-width: 600px) {
  .mobile-only-section {
    display: block;
  }
  .mobile-only-section img {
    max-width: 90vw;
    height: auto;
  }
}

.secao-solicite-motorista-bem-explicada {
  background: linear-gradient(120deg, #fff6ee 0%, #ffe8d8 100%);
  padding: 0;
  font-family: 'Inter', 'Segoe UI', Arial, sans-serif;
}

.container-solicite-motorista {
  max-width: 430px;
  margin: 48px auto 0 auto;
  background: #fff;
  border-radius: 32px;
  box-shadow: 0 12px 42px rgba(230,92,0,0.12), 0 2px 9px rgba(230,92,0,0.08);
  padding: 36px 24px 38px 24px;
  position: relative;
  animation: fadeinup 0.7s cubic-bezier(.25,.46,.45,.94);
}

.icone-destaque.icone-car-modern {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 18px;
}
.circle-gradient {
  background: linear-gradient(135deg, #e65c00 60%, #ff8b3d 100%);
  border-radius: 50%;
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 32px #e65c0055;
}
.circle-gradient i.fas {
  font-size: 2.6em;
  color: #fff;
  text-shadow: 0 1px 8px #ffb77b77;
}

.titulo-solicite-motorista {
  font-size: 2.2em;
  font-weight: 800;
  color: #263238;
  text-align: center;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
  line-height: 1.18;
}
.destaque-titulo {
  color: #fff;
  background: linear-gradient(90deg, #e65c00 70%, #ff8b3d 100%);
  padding: 3px 13px;
  border-radius: 18px;
  font-size: 1.07em;
  font-weight: 800;
  margin-top: 5px;
  display: inline-block;
  box-shadow: 0 1px 6px #e65c0022;
}

.badges-motorista {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 22px;
  margin-top: 7px;
}
.badge-item {
  background: #ffe8d8;
  color: #e65c00;
  font-weight: 700;
  font-size: 1.01em;
  border-radius: 16px;
  padding: 7px 17px 7px 13px;
  box-shadow: 0 1px 4px rgba(230,92,0,0.06);
  letter-spacing: 0.01em;
  display: flex;
  align-items: center;
  gap: 7px;
}

.descricao-solicite-motorista {
  font-size: 1.15em;
  color: #374151;
  text-align: center;
  margin: 0 0 16px 0;
  line-height: 1.45;
  font-weight: 400;
}

.beneficios-modern {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
  color: #444;
  font-size: 1.06em;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.beneficios-modern li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
}
.beneficios-modern i {
  color: #e65c00;
  font-size: 1.19em;
  min-width: 19px;
}

.card-destaque-modern {
  background: linear-gradient(90deg, #fff3e6 60%, #ffe8d8 100%);
  border-radius: 22px;
  box-shadow: 0 2px 12px rgba(230,92,0,0.09);
  padding: 18px 18px 15px 18px;
  margin: 18px 0 26px 0;
  text-align: center;
  animation: fadeinup 0.7s .22s backwards;
}
.card-titulo {
  color: #e65c00;
  font-weight: 800;
  font-size: 1.09em;
  margin-bottom: 5px;
  letter-spacing: 0.01em;
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
}
.atracoes-modern {
  color: #263238;
  font-size: 1.15em;
  font-weight: 700;
  margin-bottom: 7px;
}
.card-footer {
  font-size: 0.98em;
  color: #a04000;
  margin-top: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  font-weight: 500;
}

.botao-solicite-modern {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin: 18px auto 0 auto;
  padding: 16px 0;
  background: linear-gradient(90deg, #e65c00 60%, #ff8b3d 100%);
  color: #fff;
  font-size: 1.25em;
  font-weight: 800;
  border: none;
  border-radius: 30px;
  box-shadow: 0 2px 12px rgba(230,92,0,0.14);
  text-align: center;
  text-decoration: none;
  transition: background 0.18s, transform 0.13s, box-shadow 0.18s;
  gap: 13px;
  letter-spacing: 0.01em;
  cursor: pointer;
  animation: fadeinup 0.8s .28s backwards;
}
.botao-solicite-modern i {
  font-size: 1.36em;
}
.botao-solicite-modern:hover, .botao-solicite-modern:focus {
  background: linear-gradient(90deg, #ff8b3d 40%, #e65c00 100%);
  transform: scale(1.04);
  box-shadow: 0 6px 18px rgba(230,92,0,0.18);
  outline: none;
}

/* Fade in animation for elements */
@keyframes fadeinup {
  from { opacity: 0; transform: translateY(30px);}
  to   { opacity: 1; transform: translateY(0);}
}
.fadein {
  animation: fadeinup 0.7s backwards;
}

/* Responsividade mobile */
@media (max-width: 600px) {
  .container-solicite-motorista {
    padding: 13px 2vw 19px 2vw;
    max-width: 99vw;
  }
  .titulo-solicite-motorista {
    font-size: 1.19em;
  }
  .card-destaque-modern {
    font-size: 0.97em;
    padding: 11px 3vw 10px 3vw;
    margin: 12px 0 18px 0;
  }
  .botao-solicite-modern {
    font-size: 1.07em;
    padding: 13px 0;
    margin-top: 14px;
  }
}