:root {
  --primary: #ff4b2b;
  --secondary: #ff416c;
  --text-dark: #222;
  --bg-light: #fefefe;
  --bg-dark: #1e1e1e;
  --white: #fff;
}

body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background: var(--bg-light);
  color: var(--text-dark);
  scroll-behavior: smooth;
}

/* Hero com fundo gradiente */
.hero {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  height: 60vh;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
}

.hero .overlay {
  padding: 2rem;
  animation: fadeIn 1.2s ease;
}

.hero .logo {
  max-width: 140px;
  margin-bottom: 1rem;
}

.hero h1 {
  font-size: 2.5rem;
  margin: 0;
}

.hero p {
  font-size: 1.1rem;
  margin-top: 8px;
  opacity: 0.9;
}

/* Hotlinks */
.hotlinks {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 16px;
  padding: 40px 20px;
  background: var(--white);
}

.card {
  background: linear-gradient(145deg, #fff, #f1f1f1);
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
  text-align: center;
  padding: 18px;
  transition: transform 0.2s ease-in-out;
}

.card:hover {
  transform: translateY(-5px);
}

.card a {
  text-decoration: none;
  font-weight: bold;
  color: var(--primary);
  font-size: 1rem;
}

/* Botões */
.buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 30px 20px;
  background: #fff;
}

.buttons button {
  background: var(--secondary);
  border: none;
  padding: 12px 24px;
  color: white;
  font-size: 1rem;
  border-radius: 25px;
  cursor: pointer;
  transition: background 0.3s ease;
  width: 100%;
  max-width: 300px;
}

.buttons button:hover {
  background: var(--primary);
}

/* Cupom */
.coupon {
  background: linear-gradient(135deg, #ffe53b, #ff2525);
  color: white;
  text-align: center;
  padding: 40px 20px;
}

.coupon h2 {
  margin-bottom: 15px;
}

.coupon input {
  padding: 10px;
  width: 220px;
  border: none;
  border-radius: 8px;
  margin-top: 10px;
}

.coupon button {
  margin-left: 10px;
  padding: 10px 20px;
  border: none;
  border-radius: 8px;
  background: #222;
  color: white;
  cursor: pointer;
}

/* Contato */
.contact {
  padding: 40px 20px;
  background: var(--bg-dark);
  color: white;
  text-align: center;
}

.contact h2 {
  margin-bottom: 20px;
}

.contact form {
  max-width: 500px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact input,
.contact textarea {
  padding: 12px;
  border-radius: 8px;
  border: none;
  width: 100%;
  font-family: 'Poppins', sans-serif;
}

.contact button {
  padding: 12px;
  background: var(--primary);
  color: white;
  border: none;
  border-radius: 8px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s ease;
}

.contact button:hover {
  background: var(--secondary);
}

.social {
  background: #fff;
  padding: 40px 20px;
  text-align: center;
}

.social h2 {
  color: var(--primary);
  margin-bottom: 20px;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.social-icons a {
  text-decoration: none;
  color: white;
  padding: 12px 24px;
  border-radius: 30px;
  font-weight: bold;
  transition: 0.3s ease;
  font-size: 0.95rem;
}

.social-icons .whatsapp {
  background-color: #25d366;
}

.social-icons .instagram {
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
}

.social-icons .tiktok {
  background-color: #010101;
}

.social-icons a:hover {
  opacity: 0.85;
}

.footer {
  background: var(--bg-dark);
  color: white;
  padding: 40px 20px 20px;
  font-size: 0.95rem;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
  max-width: 1100px;
  margin: auto;
}

.footer-column {
  flex: 1;
  min-width: 250px;
}

.footer-column h3 {
  color: var(--primary);
  margin-bottom: 15px;
  font-size: 1.2rem;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column ul li {
  margin-bottom: 10px;
}

.footer-column ul li a {
  color: #ddd;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-column ul li a:hover {
  color: var(--primary);
}

.footer-column p {
  margin: 8px 0;
  line-height: 1.5;
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 30px;
  font-size: 0.85rem;
  color: #bbb;
}

/* Responsivo */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-column {
    min-width: 100%;
  }
}


/* Responsivo */
@media (max-width: 600px) {
  .social-icons {
    flex-direction: column;
    align-items: center;
  }

  .social-icons a {
    width: 80%;
    text-align: center;
  }
}


/* Animação de entrada */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Responsivo */
@media (max-width: 768px) {
  .hero {
    height: 50vh;
    padding-top: 40px;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .buttons button,
  .coupon input,
  .coupon button {
    width: 90%;
    margin: 10px auto;
    display: block;
  }

  .coupon input {
    margin-bottom: 10px;
  }

  .hotlinks {
    grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  }

  .card {
    padding: 14px;
  }
}
