/* Estilo básico */
body {
  font-family: Arial, sans-serif;
  background-color: #f4f4f4;
  color: #333;
}

/* Topbar (confiança) */
.topbar {
  background: #111;
  color: #fff;
  font-size: 0.95rem;
  padding: 10px 0;
}

.topbar .topbar-link {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
}

.topbar .topbar-link:hover {
  text-decoration: underline;
}

header h1 {
  font-size: 2.5rem;
  color: #2c3e50;
}

header p {
  font-size: 1.2rem;
  color: #7f8c8d;
}

header {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

header .logo {
  max-width: 120px; /* Ajuste o tamanho máximo do logo */
  margin-right: 20px;
}

header .text-center {
  text-align: left;
}

/* Hero */
.hero .hero-inner {
  background: #ffffff;
  border: 1px solid #e9e9e9;
  border-radius: 14px;
  padding: 24px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.05);
}

.hero-title {
  font-size: 1.8rem;
  color: #2c3e50;
  margin-bottom: 8px;
}

.hero-subtitle {
  color: #6c757d;
  font-size: 1.05rem;
}

.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.trust-badge {
  background: #f7f7f7;
  border: 1px solid #ececec;
  border-radius: 999px;
  padding: 8px 12px;
  font-weight: 700;
  color: #2c3e50;
  display: inline-flex;
  align-items: center;
}

.hero-box {
  background: #0b0b0b;
  color: #fff;
  border-radius: 14px;
  padding: 18px;
}

.hero-box-title {
  font-size: 1.25rem;
  margin-bottom: 8px;
}

.hero-box-text {
  color: rgba(255, 255, 255, 0.85);
}

.hero-mini {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 12px;
}

.hero-mini-item {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 6px;
}

.hero-mini-item a {
  color: #fff;
  text-decoration: underline;
  font-weight: 700;
}

/* Cards das lojas */
.stores .card {
  border: 1px solid #ddd;
  border-radius: 10px;
  transition: transform 0.3s ease-in-out;

  /* mantém os 3 botões com a mesma altura */
  height: 170px;
  display: flex;
}

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

.stores .card-body {
  padding: 20px;
  width: 100%;
  height: 100%;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.stores .card-title {
  font-size: 1.5rem;
  font-weight: bold;
}

.stores .store-subtitle {
  color: #6c757d;
  font-size: 0.95rem;
}

.stores .store-pill {
  display: inline-flex;
  align-items: center;
  font-weight: 800;
  font-size: 0.85rem;
  border-radius: 999px;
  padding: 6px 10px;
  margin-bottom: 10px;
  background: rgba(37, 211, 102, 0.12);
  border: 1px solid rgba(37, 211, 102, 0.25);
  color: #1aa154;
}

/* Logos das lojas */
.stores .store-logo {
  max-height: 60px;
  width: auto;
  margin-bottom: 10px;
  object-fit: contain;
}

/* Destaque do card do WhatsApp */
.store-whatsapp {
  border: 1px solid rgba(37, 211, 102, 0.35) !important;
}

.store-whatsapp .card-title {
  color: #1aa154;
}

/* Como comprar */
.howto-card {
  background: #ffffff;
  border: 1px solid #e9e9e9;
  border-radius: 14px;
  padding: 18px;
  height: 100%;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.04);
}

.howto-number {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #111;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  margin-bottom: 10px;
}

/* Seção "Trabalhamos com" */
.brands .brand-card {
  background: #ffffff;
  border: 1px solid #e6e6e6;
  border-radius: 12px;
  padding: 14px;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.brands .brand-logo-link {
  width: 100%;
  min-height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.brands .brand-logo-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.06);
}

.brands .brand-logo {
  max-height: 70px;
  width: 100%;
  object-fit: contain;
}

.brands .brand-products {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.brands .brand-product {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  background: #f7f7f7;
  border: 1px solid #ececec;
  border-radius: 10px;
  padding: 9px 10px;
  font-weight: 800;
  color: #2c3e50;
  text-decoration: none;
}

.brands .brand-product:hover {
  background: #efefef;
  text-decoration: none;
}



/* Links das marcas agora ficam no .brand-logo-link e nos itens .brand-product */

/* Loja física (contato e horário) */
.store-physical .store-info a {
  color: #2c3e50;
  font-weight: 600;
  text-decoration: none;
}

.store-physical .store-info a:hover {
  text-decoration: underline;
}

/* Botão do WhatsApp */
.whatsapp-button {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #25d366;
  border-radius: 50%;
  padding: 15px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  z-index: 100;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none !important; /* Remove underline por padrão */
}

/* Barra de ação (mobile) */
.mobile-actionbar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: #ffffff;
  border-top: 1px solid #eaeaea;
  display: none;
  z-index: 120;
}

.mobile-actionbar .action-item {
  flex: 1;
  padding: 10px 8px;
  text-decoration: none;
  color: #111;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.85rem;
}

.mobile-actionbar .action-item i {
  font-size: 1.25rem;
  margin-bottom: 4px;
}

.mobile-actionbar .action-item:hover {
  background: #f7f7f7;
}

/* FAQ */
.faq .card {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #e9e9e9;
}

.faq .card + .card {
  margin-top: 10px;
}

.faq .card-header {
  background: #ffffff;
}

.faq .btn-link {
  font-weight: 800;
  color: #2c3e50;
  text-decoration: none;
}

.faq .btn-link:hover {
  text-decoration: none;
}

.whatsapp-button i {
  font-size: 2rem; /* Ajuste o tamanho do ícone */
}

/* Rodapé */
footer h3 {
  font-size: 1.8rem;
  margin-bottom: 20px;
}

footer .social-link {
  color: #ffffff;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

footer .social-link:hover {
  text-decoration: none;
}

footer .social-text {
  color: #ffffff;
}

footer .social-icon.instagram {
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285aeb 90%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-fill-color: transparent;
}

footer .social-icon.youtube {
  color: #ff0000;
}

footer .social-icon.facebook {
  color: #1877f2;
}

/* Responsividade */
@media (max-width: 768px) {
  body {
    padding-bottom: 74px; /* espaço para a barra mobile */
  }

  .topbar {
    font-size: 0.9rem;
  }

  .hero .hero-inner {
    padding: 18px;
  }

  .hero-title {
    font-size: 1.5rem;
  }

  .mobile-actionbar {
    display: flex;
  }

  .whatsapp-button {
    padding: 12px;
    bottom: 86px; /* acima da barra mobile */
  }

  .whatsapp-button i {
    font-size: 1.8rem; /* Reduz o tamanho do ícone em telas menores */
  }

  header {
    flex-direction: column;
    text-align: center;
  }

  header .logo {
    margin-bottom: 15px;
  }

  footer h3 {
    font-size: 1.5rem;
  }

  .stores .card-title {
    font-size: 1.3rem;
  }

  .brands .brand-logo {
    max-height: 62px;
  }

  .brands .brand-logo-link {
    min-height: 78px;
  }
}
