body{
    font-family: 'Times New Roman', Times, serif;
    color:#FFD700;
    background-color: #121212;
    overflow-x: hidden
}

  /* Evita qualquer rolagem horizontal */
  html, body {
    overflow-x: hidden;
    width: 100%;
  }

  /* Garante que os elementos respeitem os limites da tela */
  * {
    box-sizing: border-box;
    font-family: 'Times New Roman', Times, serif;
  }

  /* Corrige possíveis quebras causadas por palavras grandes */
  h1, p, a {
    word-wrap: break-word;
    max-width: 100%;
  }

  /* Ajuste para imagens que ultrapassam o limite */
  img {
    max-width: 100%;
    height: auto;
    display: block;
  }

  .citacao {
    border-left: 5px solid #ffc107; /* Barra lateral dourada */
    padding-left: 20px;
    max-width: 400px;
    font-style: italic;
    color: #ddd;
    background-color: #1a1a1a;
    border-radius: 5px;
    box-shadow: 0 0 10px #00000055;
  }
  .citacao p {
    margin: 0;
  }
  .citacao footer {
    text-align: right;
    margin-top: 10px;
    font-size: 0.9em;
    color: #aaa;
  }
  

  .timeline-step {
    text-align: center;
    position: relative;
    padding: 1rem;
    border-left: 3px solid #ffc107;
  }

  .timeline-step::before {
    content: attr(data-step);
    position: absolute;
    top: 0;
    left: -1.6rem;
    background-color: #212529;
    color: #ffc107;
    border: 2px solid #ffc107;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
  }

  .timeline-container {
    border-left: 3px solid #ffc107;
    margin-left: 1rem;
    padding-left: 1.5rem;
  }

  @media (min-width: 768px) {
    .timeline-container {
      display: flex;
      gap: 2rem;
      border-left: none;
      padding-left: 0;
      margin-left: 0;
    }

    .timeline-step {
      border-left: none;
      border-top: 3px solid #ffc107;
      padding: 2rem 1rem 0 1rem;
      flex: 1;
    }

    .timeline-step::before {
      top: -1.5rem;
      left: 50%;
      transform: translateX(-50%);
    }
  }
  .timeline-section {
    background: linear-gradient(135deg, #1a1a1a, #2c2c2c);
    padding: 60px 20px;
    border-radius: 8px;
  }
  .object-fit-cover {
    object-fit: cover;
  }



  .slider {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
  }
  
  .slide {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    z-index: 1;
  }
  
  .slide.show {
    opacity: 1;
  }
  
  .texto-central {
    position: absolute;
    z-index: 2;
    width: 100%;
    height: 100%;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background-color: rgba(0, 0, 0, 0.3);
  }
  
  .texto-central h1 {
    font-size: 2.5rem;
    margin: 0;
  }
  
  .texto-central p {
    font-size: 1.2rem;
    margin-top: 10px;
  }
  
  .prev, .next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0,0,0,0.4);
    color: white;
    border: none;
    font-size: 2rem;
    padding: 10px;
    cursor: pointer;
    z-index: 3;
    user-select: none;
  }
  
  .prev:hover, .next:hover {
    background-color: rgba(0,0,0,0.7);
  }
  
  .prev {
    left: 10px;
  }
  
  .next {
    right: 10px;
  }
  

  .preco-antigo {
    text-decoration: line-through;
    color: #888;
    font-size: 1.2rem;
  }
  .preco-novo {
    color: #28a745;
    font-size: 2rem;
    font-weight: bold;
  }
  .timer {
    font-size: 1.5rem;
    font-weight: bold;
    color: #dc3545;
  }


  .faq-container {
    max-width: 700px;
    margin: 50px auto;
  }
  details {
    margin-bottom: 20px;
    background-color: #1c1c1c;
    padding: 15px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  details[open] summary::after {
    content: "▲";
    float: right;
  }
  summary {
    font-size: 1.1rem;
    font-weight: 600;
    list-style: none;
    color: #fff;
  }
  summary::after {
    content: "▼";
    float: right;
  }
  details p {
    margin-top: 10px;
    color: #ccc;
  }



  .icones-fixos {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px; /* espaço entre os ícones */
    z-index: 9999;
  }
  
  .icones-fixos img {
    width: 30px;
    height: 30px;
    cursor: pointer;
    transition: transform 0.3s ease-in-out;
  }
  
  .icones-fixos img:hover {
    transform: scale(1.1);
  }
  