/* Estilos gerais para ativarkplay.online */

/* Variáveis de cores */
:root {
  /* Cores temáticas para recargayoucine.store
     Inspiradas no logotipo amarelo/dourado com detalhes em azul.
     Tons escuros no fundo fornecem contraste adequado para textos claros. */
  --primary-color: #ffb800; /* amarelo dourado – cor principal para botões e links */
  --secondary-color: #cc8400; /* laranja queimado para estados de hover e destaques */
  --background-light: #1f2940; /* azul‑marinho escuro para cartões e seções */
  --background-dark: #131b2c; /* cor de fundo predominante (quase preta) */
  --text-color: #e0e0e0; /* texto padrão em fundos escuros */
  --heading-color: #ffffff; /* cabeçalhos brancos para alto contraste */
  --border-color: #22304c; /* bordas sutis em azul escuro */
}

/* Reset básico */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background-color: var(--background-dark);
  color: var(--text-color);
  line-height: 1.6;
}

a {
  color: var(--primary-color);
  text-decoration: none;
}

a:hover {
  color: var(--secondary-color);
}

/* Layout utilitário */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Navegação */
.navbar {
  background-color: var(--background-dark);
  border-bottom: 1px solid var(--border-color);
  width: 100%;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1rem;
}

.nav-menu {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}

.nav-menu li a {
  font-weight: 500;
  color: var(--text-color);
  transition: color 0.2s ease;
}

.nav-menu li a:hover {
  color: var(--primary-color);
}

.logo {
  height: 40px;
  width: auto;
}

/* Hero */
.hero {
  /* hero com imagem de fundo e sobreposição escura */
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('assets/hero.png');
  background-size: cover;
  background-position: center;
  padding: 4rem 0;
  text-align: center;
  color: var(--heading-color);
}

.hero h1 {
  font-size: 2.25rem;
  color: var(--heading-color);
  margin-bottom: 1rem;
}

.hero p {
  max-width: 750px;
  margin: 0 auto 1.75rem;
  font-size: 1.125rem;
  color: #b0b0b0;
}

.cta-group {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

.btn {
  display: inline-block;
  padding: 0.8rem 1.6rem;
  border-radius: 4px;
  font-size: 1rem;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}

.btn.primary {
  background-color: var(--primary-color);
  color: #ffffff;
}

.btn.primary:hover {
  background-color: var(--secondary-color);
}

.btn.secondary {
  background-color: transparent;
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
}

.btn.secondary:hover {
  background-color: var(--primary-color);
  color: #ffffff;
}

.btn.tertiary {
  background-color: transparent;
  border: 1px solid var(--primary-color);
  color: var(--primary-color);
}

.btn.tertiary:hover {
  background-color: var(--primary-color);
  color: #ffffff;
}

/* Seção de benefícios */
.features {
  padding: 3rem 0;
  background-color: var(--background-dark);
}

.features h2 {
  text-align: center;
  margin-bottom: 2rem;
  color: var(--heading-color);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.feature-item {
  background-color: var(--background-light);
  padding: 1.5rem;
  border: 1px solid var(--border-color);
  border-radius: 6px;
  text-align: center;
  color: var(--text-color);
}

.feature-item h3 {
  margin-bottom: 0.5rem;
  font-size: 1.25rem;
  color: var(--primary-color);
}

.feature-item p {
  font-size: 0.95rem;
  color: #b0b0b0;
}

/* Seção de aplicativos */
.products {
  padding: 3rem 0;
}

.products h2 {
  text-align: center;
  margin-bottom: 2rem;
  color: var(--heading-color);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.product-card {
  background-color: var(--background-light);
  border: 1px solid var(--border-color);
  border-radius: 6px;
  padding: 1.5rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.25);
}

.product-card h3 {
  margin-bottom: 0.5rem;
  color: var(--primary-color);
}

.product-card p {
  font-size: 0.95rem;
  margin-bottom: 1rem;
  color: #b0b0b0;
}

/* CTA final */
.cta-section {
  background: linear-gradient(135deg, #0f1724, #192b3a);
  padding: 3rem 0;
  text-align: center;
}

.cta-section h2 {
  margin-bottom: 1rem;
  color: var(--heading-color);
}

.cta-section p {
  margin-bottom: 1.5rem;
  color: #b0b0b0;
}

/* Footer */
footer {
  background-color: var(--background-dark);
  padding: 2rem 0;
  border-top: 1px solid var(--border-color);
}

.footer-content p {
  font-size: 0.85rem;
  color: #888888;
  margin-bottom: 0.5rem;
}

/* Seção de planos na página inicial */
.pricing-home {
  padding: 3rem 0;
  background-color: var(--background-dark);
}

.pricing-home h2 {
  text-align: center;
  margin-bottom: 2rem;
  color: var(--heading-color);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.pricing-card {
  background-color: var(--background-light);
  border: 1px solid var(--border-color);
  border-radius: 6px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  padding: 1.5rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.pricing-card h3 {
  margin-bottom: 0.5rem;
  color: var(--primary-color);
}

.pricing-card .price {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--heading-color);
}

.pricing-card ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 1rem;
  color: #b0b0b0;
}

.pricing-card ul li {
  margin-bottom: 0.5rem;
}

.pricing-card .btn {
  margin-top: auto;
}

/* Nota informativa abaixo dos cards de planos na página de planos */
.plan-note {
  margin-top: 1rem;
  font-size: 0.9rem;
  color: #888888;
  text-align: center;
}

/* Botão flutuante do WhatsApp */
.whatsapp-button {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
}

.whatsapp-button a {
  background-color: #25d366;
  color: #ffffff;
  padding: 0.75rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
  font-size: 1.5rem;
}

.whatsapp-button a:hover {
  background-color: #1ebd5b;
}

/* Seção de dispositivos */
.devices {
  padding: 3rem 0;
  background-color: var(--background-dark);
  text-align: center;
}

.devices h2 {
  margin-bottom: 1rem;
  color: var(--heading-color);
}

.devices p.subtitle {
  margin-bottom: 2rem;
  color: #b0b0b0;
  font-size: 1rem;
}

.device-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.device-card {
  background-color: var(--background-light);
  border: 1px solid var(--border-color);
  border-radius: 6px;
  padding: 1.5rem;
  text-align: center;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.25);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: var(--text-color);
}

.device-card i {
  font-size: 2rem;
  margin-bottom: 0.75rem;
  color: var(--primary-color);
}

.device-card h3 {
  margin-bottom: 0.5rem;
  color: var(--primary-color);
}

.device-card p {
  font-size: 0.9rem;
  color: #b0b0b0;
  margin-bottom: 1rem;
}

.device-card a {
  font-size: 0.9rem;
  color: var(--primary-color);
  font-weight: 600;
}

.device-card a:hover {
  color: var(--secondary-color);
}

/* Seção de links de download (downloads-links) reutiliza layout dos dispositivos */
.downloads-links {
  padding: 3rem 0;
  background-color: var(--background-dark);
  text-align: center;
}

.downloads-links h2 {
  margin-bottom: 1rem;
  color: var(--heading-color);
}

/* Seção de teste gratuito */
.trial {
  background-color: var(--background-dark);
  padding: 3rem 0;
  text-align: center;
}

.trial h2 {
  margin-bottom: 1rem;
  color: var(--heading-color);
}

.trial p {
  margin-bottom: 1.5rem;
  color: #b0b0b0;
}

/* Responsividade básica */
@media (max-width: 768px) {
  .nav-menu {
    gap: 0.75rem;
  }
  .hero h1 {
    font-size: 1.5rem;
  }
  .cta-group {
    flex-direction: column;
    gap: 0.75rem;
  }

  /* navegação responsiva */
  .nav-toggle {
    display: flex;
    flex-direction: column;
    cursor: pointer;
  }
  .nav-toggle span {
    height: 2px;
    width: 25px;
    background: var(--primary-color);
    margin-bottom: 4px;
    border-radius: 2px;
  }
  .nav-menu {
    position: absolute;
    top: 60px;
    right: 1rem;
    background-color: var(--background-light);
    flex-direction: column;
    width: 200px;
    padding: 1rem;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    display: none;
    z-index: 999;
  }
  .nav-menu.active {
    display: flex;
  }
}

/* Por padrão, o botão de menu é visível; ocultamos apenas em telas maiores */
@media (min-width: 769px) {
  .nav-toggle {
    display: none;
  }
}