/* Reset básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: Arial, sans-serif;
    background: url('fundo.png') no-repeat center center/cover;
    color: white;
    text-align: center;
  }
  
  /* Banner topo */
  .top-banner {
    background: red;
    padding: 12px;
    font-weight: bold;
    font-size: 18px;
    width: 100%;
  }
  
  /* Container central */
  .container {
    margin-top: 50px;
    background: rgba(0, 0, 0, 0.7);
    padding: 40px 20px;
    border-radius: 15px;
    display: inline-block;
  }
  
  .container h2 {
    font-size: 22px;
    margin-bottom: 10px;
  }
  
  .sub {
    font-size: 18px;
    margin-bottom: 20px;
  }
  
  .highlight {
    font-weight: bold;
    color: #FFD700;
  }
  
  .profile {
    width: 200px;
    border-radius: 10px;
    margin: 20px 0;
    border: 3px solid #fff;
  }
  
  /* Botão CTA */
  #cta {
    background: limegreen;
    border: none;
    padding: 15px 40px;
    font-size: 18px;
    font-weight: bold;
    color: white;
    border-radius: 50px;
    cursor: pointer;
    transition: 0.3s;
    box-shadow: 0 0 20px rgba(0,255,0,0.6);
  }
  
  #cta:hover {
    background: #00cc44;
    transform: scale(1.05);
  }
  
    /* Botão CTA Telegram*/
  #ctatelegram {
    background: blue;
    border: none;
    padding: 15px 40px;
    font-size: 18px;
    font-weight: bold;
    color: white;
    border-radius: 50px;
    cursor: pointer;
    transition: 0.3s;
    box-shadow: 0 0 20px rgba(0,255,0,0.6);
  }
  
  #ctatelegram:hover {
    background: #0052cc;
    transform: scale(1.05);
  }

  /* Texto de membros */
  .members {
    margin-top: 20px;
    font-size: 16px;
    font-weight: bold;
  }
  
  /* Rodapé */
  footer {
    margin-top: 40px;
    padding: 15px;
    font-size: 14px;
    background: black;
  }
  
  img.parceiros
  {
      max-width: 100%;
      min-width: 300px;
      height: auto;
  }

.section h2 {
    text-align: center;
    font-size: 28px;
    margin-bottom: 30px;
    color: #FFD700;);
    font-weight: 800;
}

  /* BENEFITS */
  .benefits-box {
    max-width: 100%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
}

.benefit {
    background: #020706;
    padding: 25px;
    border-radius: 14px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.06);
    text-align: center;
}

.benefit h3 {
    margin-bottom: 10px;
    font-size: 20px;
    color: #FFD700;;
}

.coupon-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  padding: 20px;
}

.coupon-card {
  background: #fff7f0;
  border: 2px solid #ff6a00;
  border-radius: 14px;
  padding: 16px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: 0.25s;
}

.coupon-card:hover {
  transform: scale(1.05);
}

.coupon-img {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 12px;
}

.coupon-title {
  font-size: 18px;
  font-weight: 800;
  color: #ff6a00;
}

.coupon-desc {
  margin-top: 6px;
  font-size: 15px;
  color: #333;
}

.coupon-btn {
  display: inline-block;
  margin-top: 12px;
  padding: 12px 20px;
  background: #ff6a00;
  color: white;
  font-weight: bold;
  border-radius: 8px;
  text-decoration: none;
  transition: 0.2s;
}

.coupon-btn:hover {
  background: #ff4500;
}

.carousel-container {
  width: 100%;
  height: 380px;
  overflow: hidden;
  border-radius: 12px;
  position: relative;
  margin-bottom: 12px;
}

.carousel {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform .5s ease;
}

.carousel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Botões */
.c-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,.55);
  color: white;
  border: none;
  padding: 12px 20px;
  cursor: pointer;
  font-size: 22px;
  border-radius: 6px;
}

.c-btn.left { left: 10px; }
.c-btn.right { right: 10px; }