:root {
    --light:   #fca91e; /* claro */
    --orange:  #FFF; /* hero, newsletter */
    --red:     #cc3d11; /* sobre, discover */
    --white:   #ffffff; /* features */
    --dark:    #2c3e50; /* texto escuro */
    --gold:    #f1c40f; /* destaque / underline */
    --green:   #27ae60; /* botão primário */
  }
  
  /* RESET BÁSICO */
  *,
  *::before,
  *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  html {
    scroll-behavior: smooth;
  }
  body {
    font-family: 'Arial', sans-serif;
    background: var(--light);
    color: var(--white);
    line-height: 1.5;
  }
  
  /* UTILS */
  .container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  /* BOTÕES */
  .btn {
    display: inline-block;
    text-decoration: none;
    font-family: 'Bangers', sans-serif;
    font-size: 1rem;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    transition: opacity 0.2s;
  }
  .btn:hover {
    opacity: 0.8;
  }
  .btn--primary {
    background: var(--green);
    color: var(--white);
  }
  .btn--secondary {
    background: #a70501;
    color: #fff;
  }
  
  /* NAV ATUALIZADO */
  .header {
    background: rgba(44, 62, 80, 0.85);
    position: fixed;
    width: 100%;
    z-index: 10;
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
  }
  .nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 0;
  }
  .nav__links {
    list-style: none;
    display: flex;
    gap: 2rem;
  }
  .nav__links a {
    font-family: 'Arial', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #ecf0f1;
    text-decoration: none;
    padding: 0.25rem 0;
    position: relative;
    transition: color 0.3s;
  }
  .nav__links a::after {
    content: '';
    position: absolute;
    left: 0; bottom: -4px;
    width: 0; height: 2px;
    background: var(--gold);
    transition: width 0.3s ease;
  }
  .nav__links a:hover,
  .nav__links a:focus {
    color: var(--gold);
  }
  .nav__links a:hover::after,
  .nav__links a:focus::after,
  .nav__links .active a::after {
    width: 100%;
  }
  .nav__logo img {
    height: 100px;
  }
  
  /* SEÇÕES */
  .hero       { background: var(--orange); color: var(--dark);  padding-top:80px; }
  .kluk-sale  { background: #a70501;    color: var(--white); text-align:center; padding:3rem 0; }
  .features   { background: var(--white);  color: var(--dark);  padding:4rem 0; }
  .discover   { background: #a70501;    color: var(--white); padding:4rem 0; text-align:center; }
  .partners   { background: var(--light);  color: var(--dark);  padding:2rem 0; }
  .newsletter { background: var(--orange); color: var(--white); padding:4rem 0; text-align:center; }
  .footer     { background: var(--light);  color: var(--dark);  padding:1.5rem 0; text-align:center; }
  
  /* Conteúdo interno de cada seção (exemplo para hero) */
  .hero__content { display:flex; align-items:center; justify-content:space-between; flex-wrap:wrap; padding:4rem 0; }
  .hero__text h1 { font-size:2.5rem; font-family:'Bangers',sans-serif; margin-bottom:1rem; }
  .hero__text p  { margin-bottom:1.5rem; color:var(--dark); }
  .hero__image img { width:300px; }
  
/* HERO (continuação, se precisar de ajustes finos) */
.hero__text,
.hero__image {
  flex: 1 1 300px;
}

/* KLUK SALE */
.kluk-sale h2 {
  font-family: 'Bangers', sans-serif;
  font-size: 2rem;
  margin-bottom: 0.5rem;
}
.kluk-sale p {
  max-width: 600px;
  margin: 0 auto;
  color: var(--white);
}

/* VIDEO */
.video {
    background: #fff;
    padding: 3rem 0;
}
.video__wrapper {
  position: relative;
  max-width: 600px;
  margin: 0 auto;
}
.video__thumb {
  width: 100%;
  display: block;
  border-radius: 12px;
}
.financing-btn {
  text-align: center;
  margin-top: 1.5rem;
}

/* FEATURES */
.features__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px,1fr));
  gap: 2rem;
}
.card {
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  padding: 2rem;
  text-align: center;
  color: var(--dark);
}
.card h3 {
  margin-bottom: 0.5rem;
}
.card p {
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

/* DISCOVER */
.discover h2 {
  font-family: 'Bangers', sans-serif;
  font-size: 2rem;
  margin-bottom: 0.5rem;
}
.discover p {
  margin-bottom: 2rem;
}
.discover__cards {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}
.discover__cards img {
  width: 100px;
}

/* PARTNERS */
.partners__logos {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
}
.partners__logos img {
  max-height: 40px;
  opacity: 0.8;
}

/* NEWSLETTER */
.newsletter__content h2 {
  font-family: 'Bangers', sans-serif;
  font-size: 2rem;
  margin-bottom: 0.5rem;
}
.newsletter__content p {
  margin-bottom: 1.5rem;
  color: var(--dark);
}
.newsletter__form {
  display: inline-flex;
  gap: 0.5rem;
}

.newsletter__form input[type="email"] {
    padding: 0.75rem 1rem;
    border: 2px solid #333;
    border-radius: 4px;
    min-width: 250px;
}

/* FOOTER */
.footer__social {
  margin-bottom: 1rem;
}
.footer__social a {
  margin: 0 0.5rem;
}
.footer__copy {
  font-size: 0.85rem;
  color: var(--dark);
}

/* CONTACT LIST */
.contact-list {
  list-style: none;
  margin: 2rem 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}
.contact-list li {
  background: rgba(255,255,255,0.1);
  border-radius: 8px;
  transition: background 0.3s, transform 0.3s;
}
.contact-list li:hover {
  background: rgba(255,255,255,0.2);
  transform: translateY(-2px);
}
.contact-list a {
  display: flex;
  flex-direction: column;
  padding: 1rem;
  text-decoration: none;
  color: var(--white);
}
.contact-list a strong {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}
.contact-list a span {
  font-size: 0.9rem;
  opacity: 0.9;
}

/* RESPONSIVIDADE */
@media (min-width: 768px) {
  .hero__content {
    flex-direction: row;
  }
  .contact-list {
    gap: 1.5rem;
  }
}


.video__play {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    font-size: 3rem;
    color: #fff;
    text-decoration: none;
    opacity: 0.8;
  }