/* RESET BÁSICO */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Montserrat", system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  background: #050509;
  color: #ffffff;
}

/* Quando o menu está aberto, impede a rolagem da página */
body.menu-open {
  overflow: hidden;
}

/* CONTAINER PADRÃO */
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 16px;
}

/* ============================
   TOPO + MENU OVERLAY
============================ */

.top-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(5, 5, 10, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  z-index: 1000;
}

.top-bar-inner {
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center; /* Título no centro */
  position: relative;
}

.logo-text {
  font-size: 0.95rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #f5f5f5;
  text-align: center;
  font-weight: 600;
  text-decoration: none;
}

/* BOTÃO MENU (HAMBÚRGUER) */
.menu-toggle {
  position: fixed; /* para ficar sempre no topo da página */
  top: 16px;
  left: 16px;
  background: transparent;
  border: none;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4px;
  padding: 4px;
  z-index: 3000; /* acima do overlay */
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: #ffffff;
  transition: 0.3s ease;
}

/* Animação para X */
.menu-toggle.open span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}
.menu-toggle.open span:nth-child(2) {
  opacity: 0;
}
.menu-toggle.open span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

/* ============================
   MENU OVERLAY (NOVA VERSÃO)
============================ */

/* Overlay cobrindo toda a tela */
.menu-overlay {
  position: fixed;
  inset: 0;             /* cobre TODA a tela */
  background: #000000;  /* preto sólido */
  display: none;        /* escondido inicialmente */
  align-items: center;
  justify-content: center;
  z-index: 2000;        /* acima de qualquer conteúdo */
}

.menu-overlay.open {
  display: flex;
}

.menu-overlay ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 22px;
  align-items: center;
}

.menu-overlay a {
  text-decoration: none;
  color: #e5e5e5;
  font-size: 1.35rem;
  font-weight: 400;
}

.menu-overlay a:hover {
  color: #ffffff;
}

.menu-overlay a[href*="#contato"] {
  margin-top: 10px;
  padding: 12px 26px;
  border-radius: 999px;
  border: 1px solid #ffffff;
  font-size: 1rem;
}

/* ============================
   HERO SECTION
============================ */

.hero {
  min-height: 100vh;
  padding-top: 90px;
  padding-bottom: 40px;
  background: radial-gradient(circle at top left, #272744 0, #050509 45%, #000 100%);
  display: flex;
  align-items: center;
}

.hero-inner {
  display: flex;
  flex-direction: row;
  gap: 40px;
  align-items: center;
}

/* IMAGEM */
.hero-left {
  flex: 1;
  display: flex;
  justify-content: center;
}

.brand-image-wrapper {
  max-width: 420px;
  width: 100%;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: #000;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.8);
}

.brand-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* TEXTO */
.hero-right {
  flex: 1.2;
  display: flex;
  align-items: center;
}

.hero-content {
  max-width: 480px;
}

.hello {
  font-size: 1rem;
  color: #dddddd;
  margin-bottom: 6px;
}

.name {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 18px;
}

.qualifications {
  list-style: none;
  margin-bottom: 26px;
  line-height: 1.6;
  color: #e5e5e5;
}

/* BOTÕES */
.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}

.btn {
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-decoration: none;
  cursor: pointer;
  transition: 0.2s;
  text-align: center;
}

.btn.primary {
  background: #ffffff;
  color: #000000;
}

.btn.light {
  background: #14141b;
  color: #ffffff;
  border: 1px solid #303043;
}

.btn.dark {
  background: #000000;
  color: #ffffff;
  border: 1px solid #444;
}

/* ÍCONE SOCIAL */
.social {
  display: flex;
  gap: 10px;
}

.social a {
  width: 30px;
  height: 30px;
  border-radius: 999px;
  border: 1px solid #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
}

/* ============================
   SEÇÕES
============================ */

.section {
  padding: 60px 0;
}

.section-alt {
  background: #090912;
}

.section h2 {
  font-size: 1.7rem;
  margin-bottom: 12px;
}

.section p {
  font-size: 0.95rem;
  color: #dcdcdc;
  line-height: 1.7;
}

.inline-link {
  color: #ffffff;
  border-bottom: 1px solid #777;
  text-decoration: none;
}

/* ============================
   CONTATO
============================ */

.contato-section {
  padding: 70px 0 80px;
  background: radial-gradient(circle at bottom, #151528 0, #050509 55%);
}

.contato-section h2 {
  font-size: 1.9rem;
  margin-bottom: 12px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  margin-bottom: 16px;
}

.form-group label {
  font-size: 0.9rem;
  color: #eee;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #2b2b3c;
  background: #0b0b13;
  color: white;
}

/* ============================
   PÁGINAS INTERNAS
============================ */

.page-main {
  padding-top: 100px;
}

.page-hero {
  padding: 40px 16px 10px;
}

.page-hero h1 {
  font-size: 2.1rem;
}

.section-lead {
  color: #dddddd;
  max-width: 620px;
  line-height: 1.7;
}

/* ===== Planos ===== */

.pricing {
  padding: 30px 16px 80px;
  max-width: 1100px;
  margin: 0 auto;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.pricing-card {
  background: #14141d;
  border-radius: 16px;
  padding: 22px 20px;
  border: 1px solid #262639;
}

.destaque {
  border-color: white;
}

.badge {
  position: absolute;
  top: 16px;
  right: 16px;
  border: 1px solid white;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.7rem;
}

/* ===== Blog ===== */

.blog-list {
  max-width: 900px;
  margin: 0 auto;
  padding: 30px 16px 80px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.blog-card {
  background: #14141d;
  border-radius: 16px;
  padding: 20px;
  border: 1px solid #262639;
}

.blog-meta {
  display: flex;
  gap: 10px;
  font-size: 0.8rem;
  color: #aaaaaa;
}

.blog-tag {
  border: 1px solid #444;
  padding: 2px 10px;
  border-radius: 999px;
}
/* Botão "Ler artigo completo" */
.blog-btn {
  display: inline-block;
  margin-top: 12px;
  padding: 10px 20px;
  background: #ffffff;
  color: #000000;
  border-radius: 999px;
  text-decoration: none;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  font-weight: 600;
  transition: 0.2s ease-in-out;
}

.blog-btn:hover {
  background: #e6e6e6;
  transform: translateY(-2px);
}
.blog-back {
  display: inline-block;
  margin-top: 24px;
  padding: 10px 22px;
  background: #ffffff;
  color: #000;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.05em;
}

.blog-back:hover {
  background: #e6e6e6;
}

/* ===== Equipe ===== */

.team-section {
  max-width: 1100px;
  margin: 0 auto;
  padding: 30px 16px 80px;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.team-card {
  background: #14141d;
  border-radius: 16px;
  padding: 22px 20px;
  border: 1px solid #262639;
}

.team-photo {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 1px solid white;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 12px;
}

/* ============================
   FOOTER
============================ */

.site-footer {
  text-align: center;
  padding: 32px 16px;
  font-size: 0.8rem;
  color: #aaaaaa;
  background: #050509;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}

/* ============================
   RESPONSIVIDADE
============================ */

@media (max-width: 900px) {
  .hero-inner {
    flex-direction: column;
  }
  .pricing-grid,
  .team-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .top-bar-inner {
    height: 56px;
  }

  .logo-text {
    font-size: 0.8rem;
  }

  .hero {
    padding-top: 90px;
  }

  .name {
    font-size: 2.2rem;
  }

  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }
}
/* ============================
   AJUSTES ESPECÍFICOS – PLANOS
============================ */

.pricing-card {
  position: relative;
  display: flex;
  flex-direction: column;
}

.pricing-card h2 {
  margin-bottom: 8px;
}

.pricing-tagline {
  font-size: 0.9rem;
  color: #cfcfcf;
  margin-bottom: 10px;
}

.pricing-list {
  list-style: none;
  font-size: 0.9rem;
  color: #dddddd;
  margin-bottom: 10px;
}

.pricing-list li {
  margin-bottom: 4px;
}

.pricing-price-main {
  font-size: 1.6rem;
  font-weight: 700;
  color: #c8ff4b; /* tom esverdeado, estilo promoção */
  margin: 16px 0 4px;
}

.pricing-price-old {
  font-size: 0.9rem;
  color: #ffb3b3;
  text-decoration: line-through;
}

.pricing-desconto {
  font-size: 0.9rem;
  color: #ffdf91;
}

/* Botão alinhado abaixo dos preços, sem ocupar 100% da largura */
.pricing-btn {
  margin-top: 10px;
  align-self: flex-start;
  width: auto;
}

/* Selo PROMOÇÃO */
.badge-promo {
  display: inline-block;
  margin-left: 8px;
  padding: 2px 8px;
  font-size: 0.65rem;
  background: #e10600;
  color: #ffffff;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
/* ============================
   ANIMAÇÃO SUAVE DOS CARDS
============================ */

/* efeito geral nos cards */
.pricing-card {
  position: relative;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease,
              border-color 0.25s ease, background 0.25s ease;
  transform: translateY(0);
}

/* animação de entrada (fade + subir levemente) */
@keyframes cardFadeUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* aplica a animação a todos os cards */
.pricing-card {
  animation: cardFadeUp 0.6s ease both;
}

/* atraso suave em cada card para efeito em cascata */
.pricing-card:nth-child(1) { animation-delay: 0.05s; }
.pricing-card:nth-child(2) { animation-delay: 0.10s; }
.pricing-card:nth-child(3) { animation-delay: 0.15s; }
.pricing-card:nth-child(4) { animation-delay: 0.20s; }
.pricing-card:nth-child(5) { animation-delay: 0.25s; }
.pricing-card:nth-child(6) { animation-delay: 0.30s; }
.pricing-card:nth-child(7) { animation-delay: 0.35s; }
.pricing-card:nth-child(8) { animation-delay: 0.40s; }

/* hover suave */
.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.6);
}

/* ============================
   DESTAQUE ESPECIAL – PRODUÇÃO
============================ */

.pricing-card.producao {
  background: radial-gradient(circle at top, #29284a 0, #151425 40%, #0a0a12 100%);
  border-color: #c8ff4b;
  box-shadow: 0 14px 36px rgba(200, 255, 75, 0.15);
}

.pricing-card.producao h2 {
  color: #ffffff;
}

.pricing-card.producao .pricing-price-main {
  color: #c8ff4b;
}

/* botão nos cards de produção um pouco mais chamativo */
.pricing-card.producao .pricing-btn {
  border: 1px solid #c8ff4b;
}

/* em telas pequenas, reduzir um pouco o efeito de hover */
@media (max-width: 600px) {
  .pricing-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.6);
  }
}
/* ============================
   CONTATO – BOTÕES DIRETOS
============================ */

.contato-direto {
  margin-top: 40px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px;
}

.contato-direto h3 {
  font-size: 1.3rem;
  margin-bottom: 8px;
  color: #ffffff;
}

.contato-direto p {
  color: #cccccc;
  margin-bottom: 16px;
}

.contato-botoes {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.contato-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: #ffffff;
  transition: 0.2s ease;
}

/* Ícone circular */
.contato-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.contato-icon svg {
  width: 20px;
  height: 20px;
}

/* WhatsApp */
.contato-btn.whatsapp {
  background: #25D366;
}

.contato-btn.whatsapp:hover {
  background: #1eb85a;
}

/* Telegram */
.contato-btn.telegram {
  background: #0088cc;
}

.contato-btn.telegram:hover {
  background: #0077b3;
}

/* Cores dos círculos dos ícones (preenchimento) */
.contato-btn.whatsapp .contato-icon svg circle {
  fill: #ffffff22;
}
.contato-btn.whatsapp .contato-icon svg path {
  fill: #ffffff;
}

.contato-btn.telegram .contato-icon svg circle {
  fill: #ffffff22;
}
.contato-btn.telegram .contato-icon svg path {
  fill: #ffffff;
}

/* MOBILE */
@media (max-width: 600px) {
  .contato-botoes {
    flex-direction: column;
  }
}
