/* Import da fonte Cal Sans */
@import url('https://fonts.googleapis.com/css2?family=Cal+Sans:wght@400&display=swap');

/* Classe para usar Cal Sans */
.cal-sans-regular {
  font-family: "Cal Sans", sans-serif;
  font-weight: 400;
  font-style: normal;
}

/* Fundo preto em todo o site e texto branco */
html, body {
  margin: 0;
  padding: 0;
  background-color: #000;
  color: #fff;
  font-family: 'Inter', sans-serif;
}

/* Estilo dos blocos de chamada (CTA) */
.cta-box {
  background: #111;
  border: 2px solid #ff6600;
  border-radius: 14px;
  padding: 2rem;
  width: 300px;
  color: #fff;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
  text-align: center;
  font-size: 1.1rem;
}
.cta-box:hover {
  transform: scale(1.05);
  box-shadow: 0 0 14px #ff6600;
}
.cta-icon {
  font-size: 2.4rem;
  margin-bottom: 0.6rem;
}
.cta-box h3 {
  font-size: 1.6rem;
  margin: 0.5rem 0;
  color: #ff6600;
}
.cta-box p {
  font-size: 1rem;
  color: #ccc;
}

/* Header */
.site-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem;
  background: #ff6600;
  width: 100%;
}

/* Logo */
.logo {
  width: 40px;
  height: 40px;
}

/* Título do site usando Cal Sans */
.site-title {
  margin: 0;
  font-size: 2rem;
  color: #fff;
}

/* Banners laterais */
.banner.side {
  position: fixed;
  top: 40%;
  transform: translateY(-50%);
  z-index: 1000;
}
.banner.side.left { left: 0; }
.banner.side.right { right: 0; }
.banner.side img {
  display: block;
  width: 200px;
  height: auto;
  max-width: 100%;
}

/* Esconde banners em telas menores */
@media (max-width: 1200px) {
  .banner.side {
    display: none;
  }
}

@media (min-width: 1201px) {
  body {
    padding-left: 220px;
    padding-right: 220px;
  }
  .site-header {
    padding-left: calc(1rem + 220px);
    padding-right: calc(1rem + 220px);
    margin-left: -220px;
    margin-right: -220px;
  }
}

/* Seção de vídeo */
.video-section {
  text-align: center;
  margin: 2rem auto;
}
.video-section iframe {
  width: 100%;
  max-width: 560px;
  height: 315px;
  border: none;
}

.container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
  padding: 2rem;
  max-width: 1200px;
  margin: auto;
}

.loja {
  padding: 1.4rem;
  border-radius: 14px;
  background: #111;
  border: 2px solid #fff;
  font-weight: bold;
  font-size: 1.2rem;
  color: inherit;
  text-align: center;
  transition: all 0.2s ease-in-out;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
}
.loja:hover {
  transform: scale(1.04);
  box-shadow: 0 0 10px currentColor;
}

.overlay {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.7);
  z-index: 998;
}

.popup {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
  color: #000;
  border: 4px solid #ff6600;
  padding: 2.5rem;
  border-radius: 20px;
  z-index: 999;
  width: 95%;
  max-width: 500px;
  max-height: 85vh;
  overflow-y: auto;
  box-shadow: 0 12px 30px rgba(0,0,0,0.7);
}

.popup-header {
  position: relative;
  text-align: center;
  margin-bottom: 1.8rem;
}

.popup-header h2 {
  margin: 0;
  color: #ff6600;
  font-size: 2rem;
}

.close-icon {
  position: absolute;
  top: -10px;
  right: -10px;
  background: #ff6600;
  color: white;
  border: none;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  font-size: 1.4rem;
  cursor: pointer;
  box-shadow: 0 4px 8px rgba(0,0,0,0.3);
}

.cupom-btn {
  width: 100%;
  padding: 1rem;
  margin-bottom: 1rem;
  border: none;
  border-radius: 10px;
  background: linear-gradient(90deg, #ff6600, #ff4500);
  color: white;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s;
  font-size: 1rem;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.cupom-btn:hover {
  transform: scale(1.02);
  background: linear-gradient(90deg, #e65500, #cc3e00);
}

.close-btn {
  display: block;
  margin: 1.5rem auto 0;
  background: #ff6600;
  color: #fff;
  border: none;
  padding: 0.8rem 2rem;
  border-radius: 30px;
  cursor: pointer;
  font-size: 1rem;
  transition: background 0.3s;
}

.close-btn:hover {
  background: #e65500;
}

.overlay {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.8);
  z-index: 998;
}


.bottom-banner {
  text-align: center;
  margin: 2rem auto;
  cursor: pointer;
}
.bottom-banner img {
  width: 100%;
  max-width: 1200px;
  height: auto;
  display: block;
  margin: auto;
}
.banner.side {
  cursor: pointer;
}

.menu-nav {
  background-color: #000;
  padding: 1rem 0;
  text-align: center;
  box-shadow: 0 4px 6px rgba(0,0,0,0.3);
}

.menu-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.menu-nav a {
  background-color: #000;
  color: #fff;
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: bold;
  padding: 0.5rem 1rem;
  margin: 0 0.4rem;
  border-radius: 6px;
  transition: background-color 0.3s, color 0.3s;
}

.menu-nav a:hover {
  background-color: #ff6600;
  color: #000;
}

.busca-topo {
  background-color: #000;
  padding: 1rem;
  text-align: center;
}
.busca-topo input[type="text"] {
  padding: 0.5rem;
  width: 60%;
  max-width: 400px;
  border-radius: 8px;
  border: 1px solid #ccc;
  margin-right: 0.5rem;
  font-size: 1rem;
}
.busca-topo button {
  padding: 0.5rem 1rem;
  background-color: #ff6600;
  border: none;
  border-radius: 8px;
  color: white;
  font-weight: bold;
  cursor: pointer;
}
.busca-topo button:hover {
  background-color: #e65500;
}

.conteudo-site {
  max-width: 1200px;
  margin: 2rem auto;
  padding: 0 1rem;
}

.video-wrapper {
  text-align: center;
  margin-bottom: 2rem;
}

.video-wrapper iframe {
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(255, 102, 0, 0.3);
  width: 100%;
  max-width: 600px;
  height: 330px;
}

.botoes-lojas {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

.site-header {
  background: linear-gradient(to right, #ff6600, #ff4500);
  box-shadow: 0 2px 6px rgba(0,0,0,0.3);
}

.menu-nav {
  background: #111;
  position: sticky;
  top: 0;
  z-index: 999;
  box-shadow: 0 4px 6px rgba(0,0,0,0.2);
}

.site-footer {
  background-color: #111;
  color: #aaa;
  padding: 2rem 1rem;
  text-align: center;
  font-size: 0.9rem;
  border-top: 2px solid #ff6600;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
}

.footer-links {
  margin-top: 0.8rem;
}

.footer-links a {
  color: #ff6600;
  margin: 0 0.5rem;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: #fff;
}

/* Responsividade para telas menores que 768px */
@media (max-width: 768px) {
  .site-title {
    font-size: 1.4rem;
  }

  .logo {
    width: 30px;
    height: 30px;
  }

  .menu-nav ul {
    gap: 1rem;
    flex-wrap: wrap;
  }

  .menu-nav a {
    font-size: 1rem;
    padding: 0.4rem 0.8rem;
  }

  .container {
    grid-template-columns: 1fr;
    padding: 1rem;
  }

  .cta-box {
    width: 100%;
    padding: 1.2rem;
    font-size: 1rem;
  }

  .popup {
    padding: 1.2rem;
    max-width: 90%;
  }

  .popup-header h2 {
    font-size: 1.4rem;
  }

  .video-wrapper iframe {
    width: 100%;
    height: auto;
  }

  .chat-container {
    width: 95%;
    padding: 1rem;
  }

  .chat-input input {
    font-size: 1rem;
  }

  .chat-input button {
    font-size: 1rem;
  }

  .bottom-banner img {
    max-width: 100%;
  }

  .busca-topo input[type="text"] {
    width: 90%;
    margin-bottom: 0.5rem;
  }

  .busca-topo button {
    width: 90%;
  }
  
}