@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');
    :root {
      --gold: #fbd295;
      --black: #000;
      --dark: #0a0a0a;
      --gray: #141313;
      --white: #fff;
      font-family: 'Poppins', sans-serif;
    }
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }
    body {
      background-color: var(--black);
      color: var(--white);
    }
    header {
      display: flex;
      justify-content: space-around;
      align-items: center;
      padding: 10px 20px;
      top: 0;
      z-index: 10;
      background: var(--black);
    }
    header h1 {
      font-weight: 800;
      font-size: 1.5rem;
    }
    header a{
        font-size: 1.4rem;
    }
    nav {
      display: flex;
      gap: 20px;
    }
    nav a {
      color: var(--white);
      text-decoration: none;
      font-weight: 500;
    }
    nav a.icon {
      color: var(--gold);
    }
    a svg {
  width: 32px;
  height: 32px;
  fill: white;
  margin-right: 10px;
  transition: transform 0.3s ease;
}
a svg:hover {
  transform: scale(1.3);
}

    .hero {
      display: flex;
      flex-wrap: wrap;
      padding: 60px 20px;
      background: var(--dark);
      justify-content: center;
      align-items: center;
      gap: 40px;
    }
    .hero-text {
      max-width: 500px;
    }
    .hero-text h1 {
      font-size: 2.5rem;
      font-weight: 800;
      margin-bottom: 20px;
      line-height: 1.3;
    }
    .hero-text p {
      opacity: 0.85;
      margin-bottom: 30px;
    }
    .hero-text a,
    button {
      padding: 14px 32px;
      border-radius: 999px;
      background: var(--gold);
      color: var(--black);
      text-decoration: none;
      font-weight: bold;
      cursor: pointer;
      border: none;
    }
    .hero-image img {
      border-radius: 32px;
      width: 100%;
      max-width: 500px;
      object-fit: cover;
    }

    .subtitulo-raylson {
      color: #fbd295;
      font-weight: 600;
      letter-spacing: 1px;
      margin-bottom: 10px;
    }
    
    /* Centraliza em telas menores que 768px */
    @media screen and (max-width: 768px) {
      .subtitulo-raylson {
        text-align: center;
        font-size: 1rem;
        display: block;
        margin: 0 auto 10px auto;
      }
    }
    
    @media (max-width: 768px) {
      .hero-text {
        text-align: center;
        align-items: center;
        justify-content: center;
        font-size: 1rem;
        padding-left: 20px;
      }
      .hero h1 {
        font-size: 1.5rem;        
        padding: 20px 20px;
        
      }
      .hero-text p {
        font-size: 1.5rem;
      }
    
      .hero-text a {
        padding: 10px 24px;
        font-size: 0.9rem;
        display: inline-flex;
        justify-content: center;
        align-items: center;
        margin: 0 auto;
      }      
      
    }
    
    .cta-btn {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 16px 40px;
      background-color: #fbd295;
      color: #000;
      border-radius: 999px;
      font-weight: bold;
      text-decoration: none;
      transition: 0.3s ease;
    }
    
    .cta-icon {
      width: 20px;
      height: 20px;
      fill: #000;
      margin-right: 5px;
    }
    
    @media (max-width: 768px) {
      .cta-btn {
        padding: 10px 24px;
        font-size: 0.9rem;
      }
    
      .cta-icon {
        width: 16px;
        height: 16px;
      }
    }
    
    
    

    .seta {
        display: inline-block;
        text-align: center;
        animation: bounce 2s infinite;
        color: #fbd295;
        font-size: 2rem; 
        text-decoration: none;
        background-color: None;
    }


    @media (min-width: 1024px) {
      .seta {
        display: block;
        margin-top: 40px;
      }
    }
    
    @keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(8px); }
    60% { transform: translateY(4px); }
  }
    .about-section {
      display: flex;
      flex-wrap: wrap;
      gap: 40px;
      padding: 80px 20px;
      justify-content: center;
      align-items: center;
    }
    .about-image img {
      width: 100%;
      max-width: 400px;
      border-radius: 12px;
    }
    .about-content {
      max-width: 700px;
    }
    .about-content p{
        font-size: 1.5rem;
    }
    .about-content strong {
      color: var(--gold);
    }

    @media screen and (max-width: 768px) {
      .about-section {
        flex-direction: column;
        align-items: center;
        padding: 40px 20px;
      }
      .about-image img {
        width: 100%;
        max-width: 300px;
      }
      .about-content h2{
        font-size: 1rem;
        margin-bottom: 20px;
        text-align: center;
      }
      .about-content p {
        text-align: center;
        font-size: 0.8rem;
        padding-left: 20px;
        padding-right: 20px;

      }
      
    }


    .indicacoes-bloco {
      flex: 1;
      min-width: 280px;
      padding: 20px;
    }
    
    .indicacoes-linha {
      width: 40px;
      border: 2px solid var(--gold);
      margin-bottom: 20px;
    }
    
    .indicacoes-titulo {
      color: var(--gold);
      font-size: 1.8rem;
      margin-bottom: 20px;
    }
    
    .indicacoes-lista {
      list-style: none;
      padding-left: 0;
      line-height: 1.8;
      font-size: 1.5rem;
      color: #fff;
    }
    
    .indicacoes-lista li::before {
      content: "→";
      margin-right: 10px;
      color: var(--gold);
    }

    @media screen and (max-width: 768px) {
      .indicacoes-bloco {
        padding: 0 20px;
        text-align: center;
      }
    
      .indicacoes-lista {
        font-size: 0.8rem;
        padding-left: 20px;
        padding-right: 20px;
        text-align: center;
      }
    }
    
    
    .imagem-central {      
      min-width: 280px;
      display: flex;
      margin: 0 auto;
    }
    
    .imagem-central img {
      width: 100%;
      max-width: 450px;
      border-radius: 24px;
      box-shadow: 0 8px 24px rgba(0,0,0,0.3);
      object-fit: cover;
    }
    @media screen and (max-width: 768px) {
      .imagem-central {
        justify-content: center;
        padding: 20px 0;
      }
    
      .imagem-central img {
        max-width: 90%;
        height: auto;
      }
    }
    
    
    #resultados {
      background: #111;
      padding: 20px 20px;
      text-align: center;
    }
    .carousel-wrapper {
      position: relative;
      max-width: 100%;
      min-height: 300px;
      margin: auto;
      overflow: hidden;
      /* border-radius: 24px; */
    }
    .slides {
      display: flex;
      transition: transform 0.5s ease;
    }
    .slide {
      min-width: 100%;
      display: flex;
      justify-content: center;
      gap: 30px;
    }
    .slide img {
      width: 35%;
      height: auto;
      border-radius: 12px;
    }
    .carousel-controls {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
}

.carousel-arrow {
  background-color: var(--gold);
  border: none;
  border-radius: 50%;
  padding: 12px;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, background-color 0.3s ease;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.carousel-arrow:hover {
  transform: scale(1.1);
  background-color: #ffe4b5;
}

.carousel-arrow svg {
  stroke: black;
  width: 20px;
  height: 20px;
}
@media screen and (max-width: 768px) {
  .slide {
    flex-direction: column;
    align-items: center;
  }
  .slide img {
    width: 85%;
    height: auto;
    gap: 10px;
  }
  .carousel-arrow {
    width: 40px;
    height: 40px;
    padding: 8px;
  }
  
  .carousel-arrow svg {
    width: 12px;
    
  }
  .marca-bottom {
    flex: 1;
    min-width: 200px;
    text-align: center;
  }
}
    .carousel-indicators {
      display: flex;
      justify-content: center;
      gap: 10px;
      margin-top: 10px;
    }
    .indicator {
      width: 12px;
      height: 12px;
      background-color: var(--gold);
      border-radius: 50%;
      cursor: pointer;
      transition: transform 0.3s ease, background-color 0.3s ease;
    }
    .indicator.active {
      transform: scale(1.2);
      background-color: #ffe4b5;
    }
    


#contato {
      padding: 80px 20px;
      background: var(--black);
    }
    .contato-wrapper {
      display: flex;
      flex-wrap: wrap;
      max-width: 1200px;
      margin: auto;
      gap: 40px;
    }
    form {
      background: var(--dark);
      padding: 30px;
      border-radius: 24px;
      flex: 1;
      min-width: 300px;
    }
    input, textarea {
      width: 100%;
      background: var(--gray);
      color: var(--white);
      border: 1px solid #333;
      border-radius: 10px;
      padding: 10px;
      margin-bottom: 16px;
    }
    @media (max-width: 768px) {
      nav {
        display: none;
        flex-direction: column;
        position: absolute;
        background: var(--black);
        top: 70px;
        right: 0;
        left: 0;
        padding: 20px;
        text-align: center;
      }
      nav.active { display: flex; }
      #menuBtn { display: block; background: none; border: none; color: var(--gold); font-size: 1.5rem; }
    }
    #menuBtn { display: none; }
  