/* Cores do selo Luciwise */
:root{
  --lw-1:#7c3aed; /* violeta */
  --lw-2:#22d3ee; /* ciano */
  --lw-glow:rgba(124,58,237,.55);
}

.footer-bottom{
  align-items:center;
  justify-content:space-between;
  gap:12px;
  flex-wrap:wrap;
}

/* Badge chamativo */
.by-luciwise.badge-lg{
  position:relative;
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:10px 16px;
  border-radius:9999px;
  font-weight:600;
  line-height:1;
  color:#fff;
  box-shadow:0 8px 24px -8px var(--lw-glow), inset 0 0 0 1px rgba(255,255,255,.18);
  text-decoration:none;
  transform:translateZ(0);
  overflow:hidden;
  transition:transform .2s ease, box-shadow .2s ease, filter .2s ease;
}

.by-luciwise.badge-lg .fa-bolt{
  font-size:1rem;
  filter:drop-shadow(0 0 6px rgba(255,255,255,.6));
  animation:boltPulse 1.8s ease-in-out infinite;
}

.by-luciwise.badge-lg .fa-arrow-right{
  opacity:.85;
  transition:transform .2s ease, opacity .2s ease;
}

.by-luciwise.badge-lg:hover{
  transform:translateY(-2px);
  box-shadow:0 12px 30px -10px var(--lw-glow), inset 0 0 0 1px rgba(255,255,255,.22);
  filter:saturate(1.1);
}

.by-luciwise.badge-lg:hover .fa-arrow-right{
  transform:translateX(4px);
  opacity:1;
}

/* Brilho passando no selo */
.by-luciwise .badge-shine{
  content:"";
  position:absolute;
  inset:-40%;
  background:linear-gradient(120deg, rgba(255,255,255,0) 30%, rgba(255,255,255,.35) 50%, rgba(255,255,255,0) 70%);
  transform:translateX(-120%);
  animation:shine 2.8s linear infinite;
  pointer-events:none;
  mix-blend-mode:screen;
}

/* Animações */
@keyframes shine{
  to { transform:translateX(120%); }
}

@keyframes boltPulse{
  0%,100%{ transform:scale(1); }
  50%{ transform:scale(1.15); }
}

/* Respeita usuários com redução de movimento */
@media (prefers-reduced-motion: reduce){
  .by-luciwise .badge-shine,
  .by-luciwise .fa-bolt{ animation:none; }
  .by-luciwise.badge-lg{ transition:none; }
}



.thank-you-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0; top: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(4px);
  justify-content: center;
  align-items: center;
}

.thank-you-content {
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 15px;
  padding: 30px;
  max-width: 400px;
  text-align: center;
  color: #fff;
  font-family: 'Caviar Dreams', sans-serif;
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
  animation: fadeIn 0.3s ease-in-out;
}

.thank-you-content h2 {
  margin-bottom: 10px;
  font-size: 24px;
}

.thank-you-content p {
  font-size: 16px;
  margin-bottom: 20px;
}

.thank-you-content button {
  padding: 10px 20px;
  border: none;
  background-color: #007BFF;
  color: white;
  border-radius: 8px;
  cursor: pointer;
  font-size: 15px;
}

.thank-you-content button:hover {
  background-color: #0056b3;
}

@keyframes fadeIn {
  from { opacity: 0; transform: scale(0.9); }
  to   { opacity: 1; transform: scale(1); }
}

/* =======================
   Estrutura geral
========================== */
body {
  margin: 0;
  padding: 0;
}

.main-header.scrolled {
  background: rgba(255, 255, 255, 0.85);
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}


.main-header {
  background: transparent; /* ❌ Remove o fundo degradê */
  padding: 12px 20px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  font-family: 'Caviar Dreams', sans-serif;
  box-shadow: none; /* ❌ remove sombra se quiser */
}



.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between; /* ✅ adiciona espaçamento automático entre logo e toggle/menu */
  flex-wrap: wrap;
  gap: 20px;
}


.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #111;
  font-weight: bold;
  font-size: 1.2rem;
}

.logo img {
  height: 130px; /* ou até 30px no mobile */
  max-width: 100%;
}


/* =======================
   Menu de navegação
========================== */
.nav-menu ul {
  list-style: none;
  display: flex;
  gap: 25px;
  margin: 0;
  padding: 0;
}

.nav-link {
  text-decoration: none;
  color: #000;
  font-weight: 500;
  padding-bottom: 4px;
  transition: 0.3s ease;
  position: relative;
      font-weight: bold;

}

.nav-link:hover,
.nav-link.active {
  color: #0066ff;
}

.nav-link:hover::after,
.nav-link.active::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  width: 100%;
  background-color: #0066ff;
}

/* =======================
   Botões Laterais Desktop
========================== */
.header-actions {
  display: flex;
  align-items: center;
  gap: 15px;
}

.phone, .quote-button {
  font-weight: bold;
  text-decoration: none;
  transition: background 0.3s ease;
}

/* Telefone */
.phone {
  display: inline-flex;
  align-items: center;
  background-color: rgb(115 190 224);
  padding: 8px 14px;
  border-radius: 20px;
  color: #000;
}

.phone:hover {
  background-color: rgba(255, 255, 255, 0.8);
}

.phone i {
  margin-right: 8px;
}



@keyframes pulse {
  0%   { transform: scale(1); }
  50%  { transform: scale(1.05); }
  100% { transform: scale(1); }
}

/* =======================
   Botão hamburguer
========================== */
.menu-toggle {
  background: white;
  border: none;
  font-size: 12px;
  cursor: pointer;
  padding: 8px 11px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  display: none;
  margin-left: auto;
}

@media (max-width: 850px) {
  .menu-toggle {
    display: block;
    margin-left: auto;
    margin-right: 0;  /* ✅ evita que passe do limite */
  }
}



/* =======================
   Visibilidade Condicional
========================== */
.desktop-only {
  display: flex;
}

.mobile-only {
  display: none;
}
@media (max-width: 768px) {
  .main-header {
    padding: 8px 15px; /* antes: 12px 20px */
  }
}

/* =======================
   Responsivo
========================== */
@media (max-width: 768px) {
  .nav-menu ul {
    display: none;
    flex-direction: column;
    background: white;
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    padding: 20px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    z-index: 999;
  }

  .nav-menu ul.active {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }

  .header-actions {
    display: none;
  }

  .desktop-only {
    display: none !important;
  }

  .mobile-only {
    display: block !important;
    text-align: center;
    margin-top: 10px;
  }

  .nav-menu ul.active li:last-child {
    margin-bottom: 10px;
  }

  .nav-menu ul.active li::after {
    content: "";
    display: block;
    margin-top: 10px;
  }
}


/* ===== Footer ===== */
.footer {
  background-color: #24365e;
  color: #fff;
  padding: 2px 30px;
  font-family: 'Caviar Dreams', sans-serif;
  font-size: 14px;
}

.footer a {
  color: #000000;
  text-decoration: none;
  display: block;
  margin: 6px 0;
  transition: 0.3s ease;
}

.footer a:hover {
  color: #ffffff;
  text-decoration: underline;
}

.footer hr {
  border: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin: 25px 0;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}

.footer-top .tagline {
  font-weight: bold;
  font-size: 15px;
  color: #ffffff;
}

.footer-middle {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 20px;
}

.footer-column h4 {
  color: #ffffff;
  font-weight: bold;
  margin-bottom: 10px;
}

.contact-info a {
  font-weight: bold;
  margin: 5px 0;
}

.contact-link {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 6px 0;
  color: #d0d0d0;
}

.contact-link:hover {
  color: #fff;
}

/* Rodapé final */
.footer-bottom {
  text-align: center;
  margin-top: 20px;
  font-size: 13px;
  color: #aaa;
}

/* Botão com animação (reutilizando do header) */
.quote-button {
  background-color: #9dd7f1;
  color: #000000;
  padding: 10px 18px;
  border-radius: 40px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s ease;
}

.quote-button:hover {
  background-color: #003fd0;
}

.pulse {
  animation: pulse 1.8s infinite;
}

@keyframes pulse {
  0%   { transform: scale(1); }
  50%  { transform: scale(1.05); }
  100% { transform: scale(1); }
}

/* Responsividade */
@media (max-width: 768px) {
  .footer-top, .footer-middle {
    flex-direction: column;
    align-items: flex-start;
  }

  .quote-button {
    align-self: flex-start;
  }
}

/* ======================
   HERO SECTION
========================= */
.hero-section {
  background: url('../images/road back.jpg') no-repeat top center/cover;
  min-height: 100vh;
  padding: 120px 10% 60px 10%; /* compensação da altura do header fixo */
  display: flex;
  align-items: center;
  justify-content: flex-start;
  color: #fff;
  position: relative;
  z-index: 0;
}



.hero-content {
  max-width: 600px;
  color: #fff;
  animation: fadeInLeft 1s ease-out;
}

.hero-content h1 {
  font-size: 3.5rem;
  font-weight: bold;
  margin-bottom: 20px;
  line-height: 1.2;
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  line-height: 1.5;
}

.cta-buttons {
  display: flex;
  gap: 20px;
}

/* Botões */
.btn-primary, .btn-secondary {
  padding: 12px 25px;
  border-radius: 30px;
  font-weight: bold;
  font-size: 1rem;
  text-decoration: none;
  transition: 0.3s ease;
}

.btn-primary {
  background-color: #0050f0;
  color: #fff;
}

.btn-primary:hover {
  background-color: #003fd0;
}

.btn-secondary {
  background-color: rgba(255, 255, 255, 0.8);
  color: #0c1c3f;
}

.btn-secondary:hover {
  background-color: #fff;
  color: #000;
}

/* Animação */
@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Reutiliza efeito pulsante */
.pulse {
  animation: pulse 1.8s infinite;
}

@keyframes pulse {
  0%   { transform: scale(1); }
  50%  { transform: scale(1.05); }
  100% { transform: scale(1); }
}

/* Responsivo */
@media (max-width: 768px) {
  .hero-section {
    padding: 40px 20px;
    justify-content: center;
    text-align: center;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
}


.services-section {
  padding: 80px 10%;
  background: #fff;
  font-family: 'Caviar Dreams', sans-serif;
}

.services-header h2 {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.services-header p {
  font-size: 1.8rem;
  font-weight: bold;
  max-width: 700px;
  margin-bottom: 25px;
}

.btn-learn {
  display: inline-block;
  padding: 10px 18px;
  border-radius: 25px;
  background-color: #f2f2f2;
  color: #000;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s;
}

.btn-learn:hover {
  background-color: #ddd;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.service-card {
  background-color: #f9f9f9;
  overflow: hidden;
  position: relative;
  border: 1px solid #eee;
  display: flex;
  flex-direction: column;
}

.card-image {
  background-size: cover;
  background-position: center;
  height: 300px;
  transition: transform 0.4s ease;
}

.service-card:hover .card-image {
  transform: scale(1.08);
}

.card-label {
  padding: 16px;
  font-weight: bold;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.card-label::after {
  content: "→";
  font-size: 18px;
}

/* Black Triangle CTA */
.service-cta-card {
  background-color: #000;
  clip-path: polygon(100% 0, 100% 100%, -128% 100%);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  transition: background 0.3s ease;
}

.service-cta-card:hover {
  background-color: #0050f0;
}

.cta-content {
  max-width: 200px;
  text-align: left;
}

.cta-content p {
  font-weight: bold;
  margin-bottom: 15px;
  font-size: 0.95rem;
}


/* Responsivo */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: 1fr 1fr;
  }

  .service-cta-card {
    clip-path: none;
  }
}

@media (max-width: 600px) {
  .services-grid {
    grid-template-columns: 1fr;
  }

  .card-image {
    height: 220px;
  }
}

.about-section {
  background-color: #fff;
  padding: 80px 10%;
  font-family: 'Caviar Dreams', sans-serif;
}

.about-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.about-text h4 {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
  color: #111;
}

.about-text h2 {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 20px;
  color: #0c0c0c;
  line-height: 1.4;
}

.about-text p {
  font-size: 1rem;
  line-height: 1.6;
  color: #333;
  margin-bottom: 30px;
}

.about-image img {
  width: 100%;
  border-radius: 4px;
  object-fit: cover;
  height: auto;
}

/* Botão */
.btn-learn {
  display: inline-block;
  padding: 10px 18px;
  border-radius: 25px;
  background-color: #f2f2f2;
  color: #000;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s ease;
}

.btn-learn:hover {
  background-color: #ddd;
}

/* Responsivo */
@media (max-width: 950px) {
  .about-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .about-image {
    margin-top: 30px;
  }
}



.testimonials-section {
  background: url('assets/images/bg-review.jpg') no-repeat center center/cover;
  padding: 80px 20px;
  position: relative;
  font-family: 'Caviar Dreams', sans-serif;
}

.testimonial-slider {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
}

.testimonial-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
  padding: 40px;
  display: none;
  animation: fade 1s ease-in-out;
  position: relative;
}

.testimonial-card.active {
  display: block;
}

.quote-icon {
  font-size: 40px;
  color: #0058ff;
  margin-bottom: 10px;
}

.quote-text {
  font-size: 1.3rem;
  line-height: 1.6;
  margin-bottom: 30px;
}

.author-box {
  display: flex;
  align-items: center;
  gap: 15px;
}

.google-icon img {
  width: 32px;
  transition: transform 0.3s ease;
}

.google-icon:hover img {
  transform: scale(1.2);
}

.author-info p {
  font-weight: bold;
  margin: 0;
}

.stars {
  color: #f6b21b;
  font-size: 1.1rem;
}

.testimonial-dots {
  text-align: center;
  margin-top: 20px;
}

.testimonial-dots .dot {
  height: 10px;
  width: 10px;
  margin: 0 6px;
  background-color: #ccc;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.3s;
}

.testimonial-dots .dot.active {
  background-color: #0058ff;
}

@keyframes fade {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}


.faq-section {
  padding: 80px 20px;
  background: #f7f9fb;
  font-family: 'Caviar Dreams', sans-serif;
}

.faq-container {
  display: flex;
  max-width: 1200px;
  margin: auto;
  gap: 40px;
  flex-wrap: wrap;
}

.faq-left {
  flex: 1;
  min-width: 300px;
}

.faq-left small {
  font-weight: bold;
  color: #555;
}

.faq-left h2 {
  font-size: 2.4rem;
  margin: 20px 0 10px;
}

.faq-left p {
  color: #444;
  font-size: 1.05rem;
  margin-bottom: 20px;
}

.faq-quote-btn {
  display: inline-block;
  background: #0058ff;
  color: white;
  padding: 12px 24px;
  border-radius: 30px;
  font-weight: bold;
  text-decoration: none;
  transition: background 0.3s;
}

.faq-quote-btn:hover {
  background: #003ecc;
}

.faq-image img {
  margin-top: 40px;
  max-width: 100%;
  clip-path: polygon(0 0, 100% 0, 70% 100%, 0% 100%);
  border-radius: 8px;
}

/* Coluna Direita */
.faq-right {
  flex: 1;
  min-width: 300px;
}

.faq-item {
  border-bottom: 1px solid #ccc;
  margin-bottom: 10px;
}

.faq-question {
  background: none;
  border: none;
  font-size: 1.1rem;
  font-weight: bold;
  width: 100%;
  text-align: left;
  padding: 14px;
  cursor: pointer;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-toggle {
  font-size: 24px;
  transition: transform 0.3s;
}

.faq-answer {
  display: none;
  padding: 0 14px 14px;
  font-size: 1rem;
  color: #444;
  animation: fadeIn 0.4s ease;
}

.faq-item.open .faq-answer {
  display: block;
}

.faq-item.open .faq-toggle {
  transform: rotate(45deg);
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}


.hero-about {
  position: relative;
  text-align: left;
  color: #0a1c3e;
  padding: 4rem -1rem 2rem 2rem; /* aumenta o espaço superior */
}


.hero-about h1{
    font-size:1rem;
    color:#555;
    margin-top:7rem;
      margin-left: 2rem;

    
}
.hero-about h2 {
  font-size: 2.8rem;
  font-weight: bold;
  margin-left: 2rem;
  margin-top: 1rem; /* desce o título */
}

.hero-image {
  width: 100%;
  display: block;
  margin-top: 2rem; /* desce a imagem */
}

.company-overview {
  padding: 4rem 2rem;
  background-color: #fff;
}

.aboutd-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 3rem;
}

.aboutd-image img {
  width: 500px;
  max-width: 100%;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

.aboutd-text {
  flex: 1;
  min-width: 300px;
  max-width: 700px;
  font-family: 'Caviar Dreams', sans-serif;
}

.aboutd-text h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #0a1c3e;
}

.aboutd-text p {
  margin-bottom: 1rem;
  font-size: 1.1rem;
  line-height: 1.6;
  color: #333;
}

    .cards-container {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      padding: 3rem 5%;
      border-top: 1px solid #ddd;
    }

    .card {
      flex: 1 1 45%;
      margin: 1rem;
    }

    .card h3 {
      color: #0a1c3e;
    }

    .card p {
      color: #444;
    }

    .highlight-section {
      display: flex;
      flex-wrap: wrap;
      padding: 3rem 5%;
      align-items: center;
      border-top: 1px solid #eee;
    }

    .highlight-text {
      flex: 1 1 50%;
      padding: 1rem;
    }

    .highlight-image {
      flex: 1 1 50%;
      text-align: center;
    }

    .highlight-image img {
      max-width: 100%;
      border-radius: 8px;
    }

    .aboutd-text {
      max-width: 800px;
      margin: 3rem auto;
      padding: 2rem;
      font-size: 1rem;
      line-height: 1.6;
      color: #333;
    }

    #mission-vision-values {
      background: #f9f9f9;
      padding: 3rem 1rem;
    }

    .mvv-container {
      max-width: 1200px;
      margin: 0 auto;
      display: flex;
      flex-wrap: wrap;
      gap: 2rem;
      justify-content: center;
    }

    .mvv-box {
      flex: 1 1 30%;
      background: #fff;
      padding: 2rem;
      border-radius: 10px;
      box-shadow: 0 0 15px rgba(0,0,0,0.05);
    }

    .mvv-box h2 {
      font-size: 1.4rem;
      margin-bottom: 1rem;
      color: #0a1c3e;
    }

    .mvv-box ul {
      padding-left: 1.2rem;
    }

    .mvv-box li {
      margin-bottom: 0.5rem;
    }

    @media (max-width: 768px) {
      .cards-container, .highlight-section, .mvv-container {
        flex-direction: column;
      }
      .card, .highlight-text, .highlight-image, .mvv-box {
        flex: 1 1 100%;
      }
    }






    .hero-services {
      text-align: left;
      padding: 4rem 2rem 0;
    }
    .hero-services h1 {
      font-size: 1rem;
      color: #555;
      margin-top: 3rem;

    }
    .hero-services h2 {
      font-size: 3rem;
      margin-top: 0.5rem;
      font-weight: bold;
      color: #0c1c3f;
    }
    .hero-image img {
      width: 100%;
      height: auto;
      display: block;
    }

    .services-intro {
      display: flex;
      justify-content: center;
      margin-top: 2rem;
      padding: 2rem;
    }
    .glass-box {
      background: rgba(255, 255, 255, 0.5);
      backdrop-filter: blur(10px);
      padding: 2rem;
      border-radius: 16px;
      max-width: 800px;
      text-align: center;
      box-shadow: 0 0 20px rgba(0,0,0,0.1);
    }
    .glass-box h2 {
      font-size: 2rem;
      color: #0c1c3f;
      animation: pulse 2s infinite;
    }

    .modern-services {
      margin-top: 3rem;
    }
    .service-row {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 2rem;
      flex-wrap: wrap;
    }
    .service-row.reverse {
      flex-direction: row-reverse;
    }
    .service-image img {
      width: 100%;
      max-width: 500px;
      border-radius: 12px;
      box-shadow: 0 0 12px rgba(0,0,0,0.2);
    }
    .service-content {
      flex: 1;
      padding: 1rem 2rem;
    }
    .service-content h3 {
      font-size: 1.8rem;
      color: #0c1c3f;
      animation: pulse 2.5s infinite;
    }
    .service-content p {
      font-size: 1rem;
      margin: 1rem 0;
    }
    .btn {
      background-color: #0c1c3f;
      color: white;
      padding: 0.7rem 1.5rem;
      text-decoration: none;
      border-radius: 5px;
      transition: background 0.3s ease;
    }
    .btn:hover {
      background-color: #0051ff;
    }

    @keyframes pulse {
      0%, 100% {
        transform: scale(1);
      }
      50% {
        transform: scale(1.03);
      }
    }

    @media (max-width: 768px) {
      .service-row {
        flex-direction: column;
      }
      .service-row.reverse {
        flex-direction: column;
      }
      .service-content {
        padding: 1rem 0;
      }
    }














.pickup-section {
  /* Background aplicado na seção inteira */
 
  background-size: cover;          /* garante escala correta */
  padding: 60px 20px;
  font-family: 'Caviar Dreams', sans-serif;
}

.pickup-container {
  /* Centraliza e limita a largura do conteúdo */
  max-width: 1000px;
  margin: 40px auto;               /* corrige falta de unidade */
  
  /* Se quiser fundo sem repetir, use apenas cor ou deixe transparente */
  background-color: rgba(255,255,255,0.8); 
  /* ou simplesmente remova completamente o background */

  padding: 6px;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.05);
  border-radius: 12px;
}


.pickup-title {
  font-size: 2.2rem;
  color: #002244;
  font-weight: bold;
  margin-bottom: 10px;
}

.booking-form h2 {
  margin-top: 30px;
  font-size: 1.5rem;
  color: #002244;
}

.booking-form label {
  display: block;
  margin-top: 20px;
  font-weight: bold;
  color: #333;
}

.booking-form input,
.booking-form textarea,
.booking-form select {
  width: 100%;
  padding: 12px;
  margin-top: 8px;
  border-radius: 6px;
  border: 1px solid #ccc;
  font-size: 14px;
}

.booking-form textarea {
  resize: vertical;
  height: 100px;
}

.form-note {
  margin-top: 20px;
  background: #eef5ff;
  padding: 12px;
  border-left: 5px solid #0044cc;
  font-size: 14px;
}

.submit-button {
  margin-top: 25px;
  background-color: #0044cc;
  color: white;
  padding: 12px 24px;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  cursor: pointer;
}

.submit-button:hover {
  background-color: #0033aa;
}


    .container {
      max-width: 1200px;
      margin: 150px auto;
      padding: 0 20px;
    }

    .form-title {
      font-size: 2rem;
      font-weight: bold;
      margin-bottom: 30px;
    }

    .form-wrapper {
      display: flex;
      flex-wrap: wrap;
      gap: 40px;
    }

    form {
      background-color: #efdcf08c;
      padding: 25px;
      flex: 1 1 600px;
      border-radius: 12px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    }

    .form-image {
      flex: 1 1 300px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .form-image img {
      max-width: 100%;
      border-radius: 12px;
      object-fit: cover;
    }

    .progress {
      height: 30px;
      margin-bottom: 50px;
      background-color: #e0e0e0;
      border-radius: 50px;
      overflow: hidden;
    }

    .progress-bar {
      background-color: #007BFF;
      font-weight: 600;
      font-size: 0.95rem;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .form-step {
      display: none;
    }

    .form-step.active {
      display: block;
    }

    .form-label {
      font-weight: 600;
      margin-top: 20px;
    }

    input, select, textarea {
      width: 100%;
      margin-top: 6px;
      padding: 12px 16px;
      border-radius: 6px;
      border: 1px solid #ccc;
      font-size: 1rem;
    }

    textarea {
      min-height: 100px;
    }

    .btn {
      padding: 12px 24px;
      font-weight: 600;
      font-size: 1rem;
      border-radius: 6px;
      transition: all 0.3s ease;
    }

    .btn-primary, .btn-success {
      background-color: #007BFF;
      color: white;
      border: none;
      position: relative;
    }

    .btn-success::after {
      content: '→';
      position: absolute;
      right: 20px;
      top: 50%;
      transform: translateY(-50%);
      font-size: 1.2rem;
      transition: right 0.3s ease;
    }

    .btn-success:hover::after {
      right: 15px;
    }

    .btn-secondary {
      background-color: #555;
      color: white;
      border: none;
    }

    #termsText {
      display: none;
      background: #f1f1f1;
      padding: 25px;
      margin-top: 25px;
      border-left: 5px solid #007BFF;
      border-radius: 8px;
      font-size: 0.95rem;
    }

    .form-check {
      margin-top: 12px;
    }

    @media (max-width: 768px) {
      .form-wrapper {
        flex-direction: column;
      }

      .form-image {
        order: -1;
        margin-bottom: 20px;
      }
    }
.contact-container {
  display: flex;
  flex-wrap: wrap;
  background-size: cover;
  font-family: 'Caviar Dreams', sans-serif;
  padding: 110px 10px;
  gap: 40px;
  justify-content: center;
}

.form-wrapper {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(0,0,0,0.1);
  padding: 30px;
  max-width: 600px;
  width: 100%;
}

.contact-info {
  flex: 1 1 400px;
  max-width: 500px;
}

.contact-info h1 {
  font-size: 2.8rem;
  font-weight: bold;
  margin: 20px 0;
}

.contact-info p {
  font-size: 1rem;
  color: #444;
}

.badge {
  display: inline-block;
  background: #eaeaea;
  color: #333;
  padding: 4px 12px;
  font-size: 0.8rem;
  border-radius: 5px;
  margin-top:40px ;
}

.info-box {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  background: #f7f9f7;
  padding: 15px;
  border-radius: 10px;
  margin-top: 20px;
  box-shadow: 0 0 6px rgba(0,0,0,0.05);
}

.info-box i {
  font-size: 1.5rem;
  color: #0e4d4d;
}

.info-box p {
  margin: 0;
  font-weight: 500;
}

.info-box a {
  text-decoration: none;
  color: #0e4d4d;
  font-weight: bold;
}

.form-wrapper {
  flex: 1 1 500px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(0,0,0,0.05);
  padding: 30px;
  max-width: 600px;
}

.form-header {
  background: #263b78;
  color: #fff;
  padding: 20px;
  border-radius: 10px 10px 0 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.form-header h2 {
  margin: 0;
  font-size: 1.2rem;
}

.form-header i {
  font-size: 1.5rem;
}

form input, form select, form textarea {
  width: 100%;
  padding: 10px;
  margin-top: 6px;
  margin-bottom: 16px;
  border-radius: 6px;
  border: 1px solid #ccc;
}

.next-step, .prev-step, .btn {
  background: #9ed6f1;
  border: none;
  padding: 10px 20px;
  border-radius: 6px;
  cursor: pointer;
}

.progress {
  width: 100%;
  height: 50px;
  background-color: #e0e0e0;
  border-radius: 50px;
  overflow: hidden;
  margin-bottom: 20px;
}

.progress-bar {
  height: 100%;
  background: linear-gradient(to right, #00c6ff, #0072ff);
  color: #fff;
  font-weight: bold;
  text-align: center;
  line-height: 20px;
  border-radius: 50px 0 0 50px;
  transition: width 0.4s ease;
}

.form-footer {
  font-size: 0.85rem;
  color: #555;
  margin-top: 20px;
  border-top: 1px solid #ddd;
  padding-top: 15px;
}


.our-system-hero {
  background: url('../images/oursys.png') no-repeat center center;
  background-size: cover;
  height: 85vh;
  display: flex;
  align-items: center;
  position: relative;
}

.our-system-overlay {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.our-system-content {
  color: #fff;
  max-width: 600px;
  padding: 0 5%;
  text-align: left;
}

.our-system-content h1 {
  font-size: 3.2rem;
  font-weight: bold;
  margin-bottom: 20px;
  color: #0a1c3e;
}

.our-system-content p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 30px;
    color: #0a1c3e;

}

.our-system-buttons .btn {
  padding: 10px 22px;
  font-weight: 600;
  border-radius: 30px;
  font-size: 1rem;
}

    
 .modern-card {
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
  padding: 30px 25px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: 0.3s ease;
  background: #fff;
}

.modern-card:hover {
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transform: translateY(-5px);
}

.card-icon {
  font-size: 2.5rem;
  color: #ba59d4;
  margin-bottom: 15px;
}

.modern-card h5 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 15px;
}

.modern-card ul {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.modern-card ul li {
  margin-bottom: 10px;
  position: relative;
  padding-left: 25px;
  font-size: 0.95rem;
}

.modern-card ul li::before {
  content: "✓";
  color: #2b7a78;
  position: absolute;
  left: 0;
  font-weight: bold;
}

.card-footer {
  background: #e6fbe6;
  padding: 15px;
  border-radius: 10px;
  text-align: left;
}

.learn-more-btn {
  background: #fff;
  color: #2b7a78;
  padding: 10px 16px;
  font-weight: bold;
  border: 1px solid #2b7a78;
  border-radius: 8px;
  text-decoration: none;
  display: inline-block;
  transition: 0.3s ease;
}

.learn-more-btn:hover {
  background: #2b7a78;
  color: #fff;
}
   
    
    
    
    
    

.system-icon {
  font-size: 1.8rem;
  color: #0044cc;
}

.btn-access {
  margin-top: 15px;
  padding: 10px 20px;
  font-size: 15px;
  border-radius: 8px;
}

.hero-box {
  text-align: center;
  padding: 70px 20px 30px;
}

.hero-box h1 {
  font-size: 2.5rem;
  color: #002244;
  font-weight: bold;
}

.hero-box .lead {
  color: #555;
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0 auto;
}



.feedback-wrapper {
  
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  min-height: 100vh;
  padding: 115px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}


.feedback-container {
  display: flex;
  max-width: 1200px;
  width: 100%;
  gap: 40px;
  flex-wrap: wrap;
}

.feedback-left {
  flex: 1;
  color: #000;
  font-family: 'Caviar Dreams', sans-serif;
  padding: 20px;
  max-width: 500px;
}

.feedback-heading {
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.4;
  margin-bottom: 40px;
}

.feedback-contact p {
  margin: 0;
  font-size: 15px;
  border-bottom: 1px solid #000;
  display: inline-block;
  margin-bottom: 10px;
}

.feedback-right {
  flex: 1;
  max-width: 600px;
}

.feedback-glass {
  background: linear-gradient(rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.08)),
              url('../images/333.png') no-repeat center center / cover;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 40px;
  border-radius: 20px;
  color: #000000;
  box-shadow: 0 0 20px rgba(0,0,0,0.3);
}

.feedback-title {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.feedback-subtitle {
  font-size: 1rem;
  margin-bottom: 30px;
}

.feedback-form .form-group {
  margin-bottom: 20px;
}

.feedback-form label {
  display: block;
  font-weight: 500;
  margin-bottom: 5px;
}

.feedback-form input,
.feedback-form select,
.feedback-form textarea {
  width: 100%;
  padding: 12px;
  border: none;
  border-radius: 8px;
  background-color: rgb(7 7 7 / 20%);
  color: #fff;
  font-size: 15px;
}

.feedback-form input::placeholder,
.feedback-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.feedback-button {
  width: 100%;
  padding: 14px;
  background-color: #00cc99;
  border: none;
  border-radius: 10px;
  font-size: 16px;
  color: white;
  font-weight: bold;
  cursor: pointer;
}

.feedback-button:hover {
  background-color: #00b386;
}


.contact-section {
      background-image: url('../images/servback.gif');
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  display: flex;
  flex-wrap: wrap;
  /* background: linear-gradient(to bottom, #ffffff 50%, #e6ecf8 50%); */
  padding: 100px 20px;
  gap: 40px;
  justify-content: center;
  align-items: flex-start;
  font-family: 'Caviar Dreams', sans-serif;
}

.contact-left, .contact-right {
  flex: 1 1 450px;
  max-width: 550px;
}

.contact-left h2 {
  color: #0c1c3f;
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.contact-left p {
  color: #0c1c3f;
  margin-bottom: 10px;
  line-height: 1.6;
}

.contact-left h4 {
  margin-top: 30px;
  font-weight: bold;
  color: #000;
}

.benefits {
  list-style: none;
  padding-left: 0;
  margin: 10px 0 30px;
}

.benefits li {
  color: #0c1c3f;
  margin-bottom: 8px;
  font-weight: 500;
}

.steps {
  list-style: decimal;
  margin-left: 20px;
  color: #000;
}

.social-links a {
  margin-right: 15px;
  color: white;
  font-size: 1.5rem;
}

.contact-right {
  background: white;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.contact-right h3 {
  text-align: center;
  margin-bottom: 25px;
  color: #1c1c1e;
}

form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.form-row {
  display: flex;
  gap: 15px;
}

.form-row input {
  flex: 1;
}

input, select, textarea {
  padding: 12px 15px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
  width: 100%;
  transition: border-color 0.3s ease;
}

input:focus, select:focus, textarea:focus {
  border-color: #6a38fb;
  outline: none;
}

textarea {
  resize: vertical;
  min-height: 100px;
}

button[type="submit"] {
  background: #6a38fb;
  color: white;
  border: none;
  padding: 12px 20px;
  font-weight: bold;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s ease;
}

button[type="submit"]:hover {
  background: #4b24c9;
}

