body {
      margin: 0;
      font-family: 'Segoe UI', sans-serif;
      background-color: #000000;
      color: white;
    }
    img{
      border-radius:10px;
    }
    header, section {
      padding: 20px 20px;
      max-width: 1200px;
      margin: auto;
    }

    header{
        max-width: none !important;
    }

    p{font-size: 1.2rem !important;}

  .logo img {
  height: 80px; /* controla o tamanho no menu */
  width: auto;  /* mantém a proporção original */
  max-width: 100%; /* evita quebrar o layout em telas pequenas */
}


@media (max-width: 768px) {
  .logo img {
    height: 80px;
  }
}




/* Estilo base */
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 25px;
  background-color: #000;
  position: relative;
}

nav a {
  color: white;
  margin: 0 10px;
  text-decoration: none;
  font-weight: 500;
}

.nav-links {
  display: flex;
  gap: 15px;
  align-items: center;
}

.menu-toggle {
  display: none;
  font-size: 28px;
  color: white;
  cursor: pointer;
}

/* MOBILE */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

   .nav-links {
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: #111;
    display: none;
    text-align: center;
    padding: 20px 0;
    z-index: 1000; /* <-- Aqui está o segredo */
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links a {
    margin: 10px 0;
    font-size: 18px;
  }
}
.hero {
  background: url('../img/detalhamento-automotivo-porto-alegre-2.jpg') no-repeat center/cover;
  text-align: left;
  padding: 20px 20px 50px;
  position: relative;
  color: white;
}

.hero::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.3);
  z-index: 1;
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: none;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
  gap: 20px;
}

.hero-content {
  max-width: 600px;
  flex: 1;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 20px;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 30px;
}

.btn {
  display: inline-block;
  padding: 12px 24px;
  background-color: #d4af37;
  color: white;
  text-decoration: none;
  border-radius: 5px;
}

.hero-image {
  flex: 1;
  max-width: 500px;
}

.hero-image img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}

/* Responsivo */
@media (max-width: 768px) {
  .hero-inner {
    flex-direction: column;
    text-align: center;
  }

  .hero-content, .hero-image {
    max-width: 100%;
  }
}
    .btn {
      background-color: #d4af37;
      color: rgb(0, 0, 0);
      padding: 15px 30px;
      border: none;
      border-radius: 5px;
      text-decoration: none;
      font-weight: bold;
    }
    .stats {
      display: flex;
      justify-content: space-around;
      text-align: center;
      margin-top: 40px;
    }
    .stats div {
      flex: 1;
    }
    .how-it-works {
      text-align: center;
    }
    .steps {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      margin-top: 40px;
    }
    .step {
      flex: 1;
      margin: 10px;
      background-color: #1a1a1a;
      padding: 20px;
      border-radius: 10px;
    }
    .step img {
      max-width: 100%;
      border-radius: 5px;
    }
    .step h3 {
      margin-top: 15px; font-size: 1.2rem !important;
    }



    
  .dt-testimonials {
    padding: 60px 20px;
    background: #000000;
    color: #f1f1f1;
    text-align: center;
  }

  h2{
    font-size: 1.8rem;
    color: #d4af37 !important;
    margin-bottom: 40px;
  }

  .testimonials-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
  }

  .testimonial {
    background: #1c1c1c;
    padding: 20px;
    border-radius: 12px;
    border-left: 4px solid #d4af37;
    box-shadow: 0 0 8px rgba(212, 175, 55, 0.1);
    text-align: left;
    position: relative;
  }

  .testimonial .stars {
    color: #ffd700;
    font-size: 1rem;
    display: block;
    margin-bottom: 10px;
  }

  .testimonial p {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: #ccc;
  }

  .testimonial .author {
    font-weight: bold;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .testimonial .avatar {
    background: #d4af37;
    color: #000;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
  }

  .pagination {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
  }

  .pagination button {
    background: #d4af37;
    border: none;
    padding: 6px 14px;
    font-size: 1.2rem;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.3s;
  }

  .pagination button:hover {
    background: #c19e2f;
  }

  .pagination span {
    color: #fff;
    font-weight: bold;
  }

  @media (min-width: 768px) {
    .testimonials-container {
      grid-template-columns: repeat(3, 1fr);
    }
  }

  
  .faq-container {
    text-align: left;
  }

  .faq-item {
    margin-bottom: 15px;
    background-color: #1a1a1a;
    border-radius: 8px;
    overflow: hidden;
  }

  .faq-question {
    width: 100%;
    padding: 20px;
    background: none;
    border: none;
    text-align: left;
    font-size: 1.2rem;
    color: white;
    font-weight: bold;
    cursor: pointer;
    position: relative;
  }

  .faq-question::after {
    content: '▾';
    position: absolute;
    right: 20px;
    font-size: 1.2rem;
    transition: transform 0.3s ease;
  }

  .faq-question.active::after {
    transform: rotate(180deg);
  }

  .faq-answer {
    padding: 0 20px 20px 20px;
    display: none;
    font-size: 1.2rem;
    color: #ccc;
    animation: fadeIn 0.3s ease;
  }

  @keyframes fadeIn {
    from {opacity: 0;}
    to {opacity: 1;}
  }

  
  .dt-wrapper {
    max-width: 1200px;
    margin: 20px auto;
    background: #111;
    color: #fff;
    padding: 20px;
    border-radius: 20px;
    font-family: 'Segoe UI', sans-serif;
  }

  .dt-header {
    text-align: center;
    margin-bottom: 40px;
  }

  .dt-header h2 {
    font-size: 2rem;
    margin-bottom: 10px;
    color: #d4af37;
  }

  .dt-header p {
    font-size: 1rem;
    color: #ccc;
  }

  .dt-incluso {
    margin-bottom: 30px;
    background: #1b1b1b;
    padding: 20px;
    border-radius: 12px;
  }

  .dt-incluso h3 {
    margin-bottom: 10px;
    color: #eee;
  }

  .dt-incluso ul {
    padding-left: 20px;
    list-style: none;
  }



  .dt-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
    margin-top: 20px;
  }

  .dt-card {
    background: #222;
    padding: 14px;
    border-radius: 12px;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .dt-card img {
    width: 100%;
    height: 140px;
    object-fit: cover;
    border-radius: 8px;
  }

  .dt-card .dt-title {
    font-size: 1.2rem;
    color: #ddd;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .dt-card .dt-info {
    font-size: 1.1rem;
    color: #d4af37;
    cursor: pointer;
    margin-left: 8px;
    font-weight: bold;
  }

  .dt-card input[type="checkbox"] {
    transform: scale(1.2);
    accent-color: #d4af37;
    margin-top: 8px;
  }

  .dt-total-box {
    margin-top: 40px;
    text-align: right;
  }

  .dt-total-box p {
    font-size: 1.5rem;
    font-weight: bold;
    color: #fff;
  }

  .dt-footer-note {
    font-size: 1.3rem;
    color: #fff;
    text-align: right;
  }

  /* Popup */
  .dt-modal {
    position: fixed;
    top: 0; left: 0;
    width: 100vw; height: 100vh;
    background: rgba(0, 0, 0, 0.8);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
  }

  .dt-modal-content {
    background: #1e1e1e;
    padding: 20px 30px;
    border-radius: 12px;
    max-width: 400px;
    color: #fff;
    text-align: center;
    position: relative;
  }

  .dt-modal-content h4 {
    margin-top: 0;
    color: #d4af37;
  }

  .dt-modal-content p {
    font-size: 1.2rem;
  }

  .dt-modal-close {
    position: absolute;
    top: 10px;
    right: 14px;
    font-size: 1.2rem;
    color: #fff;
    cursor: pointer;
  }

.dt-alert {
  margin-top: 12px;
  background: #3a2f15;
  border-left: 4px solid #d4af37;
  color: #fce8b2;
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 1.15rem;
  line-height: 1.4;
}


  .dt-contato {
    background: #1c1c1c;
    padding: 20px 20px;
    border-radius: 12px;
    max-width: 500px;
    margin-bottom: 150px;
    text-align: center;
    box-shadow: 0 0 15px rgba(218,165,32, 0.2);
    color: #f9f9f9;
  }

  .dt-contato h2 {
    font-size: 1.6rem;
    color: #d4af37;
    margin-bottom: 10px;
  }

  .dt-contato p {
    font-size: 1.2rem;
    color: #ffffff;
    margin-bottom: 25px;
  }

  .dt-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }

  .dt-form input {
    padding: 12px;
    font-size: 1rem;
    border-radius: 8px;
    border: 1px solid #555;
    background: #ffffff;
    color: #000000;
    transition: border-color 0.3s;
  }

  .dt-form input::placeholder {
  color: #000000;       /* cor do texto */
  font-weight: bolder;
  font-size: 14px;   /* tamanho da fonte */
  opacity: 1;        /* controla a transparência (1 = sem transparência) */
}

  .dt-form input:focus {
    border-color: #d4af37;
    outline: none;
  }

  .dt-form button {
    background: #d4af37;
    color: #000;
    border: none;
    padding: 12px;
    font-size: 1rem;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.3s;
  }

  .dt-form button:hover {
    background: #c19e2f;
  }

  .dt-card {
    background: #222;
    padding: 14px;
    border-radius: 12px;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 10px;
    transition: background-color 0.3s ease, box-shadow 0.3s ease, transform 0.2s;
    cursor: pointer;
    border: 1px solid #333;
  }

  .dt-card:hover {
    background: #2c2c2c;
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.2);
    transform: translateY(-2px);
  }

  .dt-card.selected {
    background: #3a2f1b;
    box-shadow: 0 0 15px 4px rgba(212, 175, 55, 0.5);
    border: 1px solid #d4af37;
  }

  .dt-card input[type="checkbox"] {
    transform: scale(1.2);
    accent-color: #d4af37;
    margin-top: 6px;
    cursor: pointer;
  }

  .dt-info {
    position: absolute;
    top: 8px;
    right: 8px;
    background: #d4af37;
    color: #000;
    border-radius: 50%;
    width: 22px;
    height: 22px;
    font-weight: bold;
    font-size: 14px;
    text-align: center;
    line-height: 22px;
    cursor: pointer;
    transition: background 0.2s;
  }

  .dt-info:hover {
    background: #b9972c;
  }

  .dt-popup {
    display: none;
    position: absolute;
    top: 30px;
    right: 0;
    background: #111;
    color: #fff;
    padding: 10px;
    border-radius: 8px;
    width: 220px;
    font-size: 0.85rem;
    z-index: 999;
    box-shadow: 0 2px 10px rgba(0,0,0,0.5);
  }

  .dt-card.show-popup .dt-popup {
    display: block;
  }

  .dt-incluso {
    background: #1c1c1c;
    border-left: 4px solid #d4af37;
    padding: 24px;
    border-radius: 12px;
    margin-bottom: 30px;
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.1);
    color: #eaeaea;
  }

  .dt-incluso-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px dashed #444;
    margin-bottom: 10px;
    padding-bottom: 5px;
  }

  .dt-incluso-header h3 {
    font-size: 1.2rem;
    margin: 0;
    color: #d4af37;
  }

  .dt-incluso-preco {
    font-size: 1.3rem;
    font-weight: bold;
    background: #d4af37;
    padding: 4px 12px;
    border-radius: 8px;
    color: #000;
  }

  .dt-incluso-sub {
    margin-bottom: 15px;
    font-size: 1.2rem;
    color: #ccc;
  }

  .dt-incluso-lista {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 10px;
  }

  .dt-incluso-lista li {
    font-size: 1.2rem;
    padding-left: 28px;
    position: relative;
    line-height: 1.5;
  }

  .dt-incluso-lista li span {
    position: absolute;
    left: 0;
    top: 0;
    color: #d4af37;
    font-weight: bold;
  }

  .dt-incluso-preco {
  font-size: 1.5rem;
  margin-top: 10px;
}

.preco-antigo {
  text-decoration: line-through;
  color: #ccc;
  margin-right: 15px;
  font-weight: normal;
}

.preco-promocional {
  color: #ffd700; /* dourado chamativo */
  font-weight: bold;
  font-size: 2rem;
}

.preco-antigo{
  text-decoration: line-through; color:#000; font-size:1.2rem; font-weight:bolder
}
.preco-promocional{color:#c00; font-weight:bold; font-size:1.6rem;}



    body { font-family: 'Segoe UI', sans-serif; margin: 0; background: #000; color: #fff; }
    section { max-width: 1200px; margin: 0 auto; padding: 40px 20px; }
    h2, h3 { color: #d4af37; }

    /* GRID principal */
    .contato-grid {
      display: grid;
      grid-template-columns: 2fr 1fr;
      gap: 40px;
      margin-top: 30px;
    }

    .dt-contato{
        max-width:800px;
    }

    /* Formulário */
    .dt-form { display: flex; flex-direction: column; gap: 15px; }
    .dt-form input, .dt-form textarea, .dt-form button {
      padding: 12px;
      border: none;
      border-radius: 6px;
      font-size: 16px;
    }
    .dt-form textarea { resize: vertical; }
    .dt-form button {
      background: #d4af37;
      color: #000;
      font-weight: bold;
      cursor: pointer;
      transition: 0.3s;
    }
    .dt-form button:hover { background: #b9972c; }

    /* Caixa lateral (atendimento) */
    .contato-box {
      background: #111;
      padding: 20px;
      border-radius: 8px;
      line-height: 1.8;
    }
    .contato-box a { color: #d4af37; text-decoration: none; }

    /* Diferenciais */
    .contato-diferenciais {
      background: #111;
      padding: 30px;
      margin-top: 50px;
      border-radius: 8px;
    }
    .contato-diferenciais ul {
      margin: 15px 0 0;
      padding-left: 20px;
      line-height: 1.8;
    }

    /* Responsivo */
    @media (max-width: 900px) {
      .contato-grid { grid-template-columns: 1fr; }
    }


    .dt-plans-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin: 20px 0 40px;
}

.dt-plan-card {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  position: relative;
  transition: transform 0.3s, box-shadow 0.3s;
}

.dt-plan-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.dt-plan-card h3 {
  margin-bottom: 10px;
  font-size: 1.5rem;
  color: #111;
}

.dt-plan-card .plan-price {
  font-size: 1.5rem;
  font-weight: bold;
  color: #c00;
  margin-bottom: 15px;
}

.dt-plan-card ul {
  list-style: none;
  padding: 0;
  margin-bottom: 15px;
  text-align: left;
}

.dt-plan-card ul li::before {
  content: "✔";
  color: #0a0;
  margin-right: 8px;
}

.dt-plan-card button.btn-select-plan {
  background: #c00;
  color: #fff;
  border: none;
  padding: 10px 15px;
  border-radius: 5px;
  cursor: pointer;
  font-weight: bold;
}

.dt-plan-card button.btn-select-plan:hover {
  background: #a00;
}

.dt-plan-card.popular {
  border: 2px solid #c00;
}

.dt-plan-card .badge-plan {
  position: absolute;
  top: -10px;
  right: -10px;
  background: #c00;
  color: #fff;
  padding: 5px 10px;
  border-radius: 5px;
  font-size: 0.8rem;
}
