body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #0f172a;
  color: #e5e7eb;
}

.zoom-logo {
  animation: zoomPulse 6s ease-in-out infinite;
  transform-origin: center;
}

@keyframes zoomPulse {
  0% {
    transform: scale(0.5);
  }
  50% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(0.5);
  }
}

header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem;
  background: #020617;
  position: sticky;
  top: 0;
  z-index: 50;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  text-decoration: none;
}

.logo {
  height: 40px;
  margin-right: 1rem;
}

nav a {
  color: #93c5fd;
  margin-right: 1rem;
  text-decoration: none;
}

.nav {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav a {
  margin-right: 0;
  padding: .5rem .25rem;
}

.header-cta {
  display: flex;
  align-items: center;
  gap: .75rem;
}

.btn--ghost {
  background: transparent;
  color: #e5e7eb;
  border: 1px solid rgba(255,255,255,.18);
}

.menu-toggle {
  display: none;
  background: transparent;
  border: 0;
  padding: .5rem;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: #e5e7eb;
  margin: 5px 0;
  border-radius: 2px;
}

.hero {
  text-align: center;
  padding: 4rem 2rem;
}

.hero .hero-actions {
  margin-top: 1.5rem;
  display: flex;
  gap: .75rem;
  justify-content: center;
  flex-wrap: wrap;
}

.hero .hero-note {
  margin-top: .75rem;
  font-size: .95rem;
  color: #cbd5f5;
}

.pill-row {
  margin-top: 1.25rem;
  display: flex;
  gap: .5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .45rem .75rem;
  border-radius: 999px;
  background: rgba(2,6,23,.75);
  border: 1px solid rgba(255,255,255,.08);
  color: #e5e7eb;
  font-size: .9rem;
}

.section-head {
  max-width: 920px;
  margin: 0 auto 1.5rem;
}

.section-head p {
  color: #cbd5f5;
}

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

.persona {
  background: rgba(2,6,23,0.9);
  border-radius: 18px;
  padding: 1.5rem;
  border: 1px solid rgba(255,255,255,0.05);
}

.persona a {
  color: #93c5fd;
  text-decoration: none;
  font-weight: 600;
}

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

.step {
  background: #020617;
  border-radius: 16px;
  padding: 1.5rem;
  border: 1px solid rgba(255,255,255,0.05);
}

.kicker {
  color: #93c5fd;
  font-weight: 700;
  letter-spacing: .02em;
  text-transform: uppercase;
  font-size: .85rem;
}

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

.plan {
  background: rgba(2,6,23,0.9);
  border-radius: 18px;
  padding: 1.75rem;
  border: 1px solid rgba(255,255,255,0.05);
}

.plan .price {
  font-size: 1.75rem;
  font-weight: 800;
  margin: .25rem 0 1rem;
}

.price__suffix {
  font-size: .95rem;
  font-weight: 600;
  color: #cbd5f5;
}

.plan ul {
  margin: 0;
  padding-left: 1.1rem;
  color: #cbd5f5;
}

.faq {
  max-width: 920px;
  margin: 0 auto;
}

.faq details {
  background: rgba(2,6,23,0.9);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 14px;
  padding: 1rem 1.25rem;
  margin: .75rem 0;
}

.faq summary {
  cursor: pointer;
  font-weight: 700;
}

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

.btn {
  background: #22c55e;
  color: #020617;
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
}

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

.card {
  background: #020617;
  padding: 2rem;
  border-radius: 16px;
  text-align: center;
}

.problema,
.funcionalidades,
.padrao,
.mascote,
.cta {
  padding: 3rem 2rem;
}

.mascote {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.mascote img {
  width: 200px;
}

.mascote__wrapper {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 720px;
}

.mascote__wrapper h2 {
  margin: 0;
}

.mascote__content {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.obs {
  margin-top: 1rem;
  font-size: 0.9rem;
  color: #cbd5f5;
}

.cta {
  text-align: center;
  background: #020617;
}
.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.feature-card {
  background: rgba(2,6,23,0.9);
  border-radius: 18px;
  padding: 2rem;
  cursor: pointer;
  transition: all .3s ease;
  border: 1px solid rgba(255,255,255,0.05);
}

.feature-card:hover {
  transform: translateY(-6px);
  border-color: rgba(34,197,94,0.5);
}

.feature-card h3 {
  margin-bottom: .5rem;
  color: #e5e7eb;
}

.feature-card p {
  color: #94a3b8;
  font-size: .95rem;
}

.preview {
  margin-top: 4rem;
  display: flex;
  justify-content: center;
}

.phone {
  width: 260px;
  padding: 14px;
  border-radius: 36px;
  background: linear-gradient(180deg, #020617, #020617);
  box-shadow: 0 30px 80px rgba(0,0,0,0.6);
  border: 2px solid rgba(255,255,255,0.08);
}

.phone img {
  width: 100%;
  border-radius: 24px;
  transition: opacity .3s ease, transform .3s ease;
}
img {
  max-width: 100%;
  height: auto;
}

section {
  padding: 3rem 1.5rem;
}
@media (max-width: 768px) {

  header {
    flex-wrap: wrap;
    gap: .75rem;
  }

  .menu-toggle {
    display: inline-block;
  }

  .nav {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: .25rem;
    padding: .75rem 0;
  }

  .nav.open {
    display: flex;
  }

  .header-cta {
    width: 100%;
    justify-content: flex-start;
  }

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

  .hero-logo {
    width: 150px;
  }

  .features {
    grid-template-columns: 1fr;
  }

  .preview {
    margin-top: 2rem;
    display: none;
  }

  .preview.preview--visible {
    display: flex;
  }

  .phone {
    width: 220px;
  }

  .sobri {
    flex-direction: column;
    text-align: center;
  }

  .sobri img {
    width: 180px;
  }

  .mascote__wrapper {
    align-items: center;
    text-align: center;
  }

  .mascote__content {
    flex-direction: column;
    align-items: center;
  }

  .mascote__content img {
    margin-bottom: 1.5rem;
  }

  .cta h2 {
    font-size: 1.5rem;
  }

  .btn {
    padding: 12px 26px;
  }
  
}


footer {
  text-align: center;
  padding: 1rem;
  background: #020617;
}


/* Plans: recommended badge */
.plan--recommended {
  border: 2px solid rgba(34,197,94,0.8);
  position: relative;
}

.plan--recommended .badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: #22c55e;
  color: #020617;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: .75rem;
  font-weight: 800;
}


/* === FIX: alinhar botões dos cards de planos (Planos) === */
.plans{
  align-items: stretch; /* garante mesma altura por linha */
}

.plans .plan{
  display: flex;
  flex-direction: column;
  height: 100%;
}

/* O botão está dentro de um <div style="margin-top:1rem;"> em planos.php */
.plans .plan > div[style*="margin-top"]{
  margin-top: auto !important; /* empurra para o rodapé e sobrescreve inline */
  padding-top: 1rem;
}

/* Texto extra do consultor não deve empurrar layout de forma estranha */
.plans .plan .obs{
  margin-top: 0.75rem;
  margin-bottom: 0;
}

/* Botões com altura/centralização consistentes */
.plans .plan a.btn{
  min-height: 44px;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}
