/* =================================================
   RESET + BASE
================================================= */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Inter", Arial, sans-serif;
}

body {
  background: #0f172a;
  color: #e5e7eb;
  line-height: 1.6;
}

.container {
  max-width: 1100px;
  margin: auto;
  padding: 20px 20px;
}

h1, h2, h3 {
  color: #ffffff;
}

img {
  display: flex;
  margin: -70px auto;
  
  height: 300px;
}


/* =================================================
   ANIMAÇÕES
================================================= */

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(35px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate {
  opacity: 0;
  animation: fadeUp 0.9s ease forwards;
}

/* =================================================
   BOTÕES
================================================= */

.btn {
  background: #2563eb;
  color: #ffffff;
  padding: 14px 28px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 700;
  display: inline-block;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 35px rgba(37, 99, 235, 0.45);
}

.btn.secundario {
  background: #334155;
}

/* =================================================
   HERO
================================================= */

.hero {
  background: linear-gradient(135deg, #020617, #0f172a);
  text-align: center;
}

.hero h1 {
  font-size: 2.9rem;
  margin-bottom: 22px;
}

.hero p {
  font-size: 1.1rem;
  color: #cbd5f5;
  margin-bottom: 34px;
}

.customizado{
  text-align: center;
  padding: 20px 20px;
}

/* =================================================
   SEÇÃO DOR
================================================= */

ul{
  text-align: center;
}

.container h2{
  text-align: center;
}
.dor ul {
  list-style: none;
  margin: 35px 0;
}

.dor li {
  font-size: 1.1rem;
  margin-bottom: 14px;
}

.destaque {
  margin-top: 25px;
  font-weight: 700;
  color: #60a5fa;
  text-align: center;

}

/* =================================================
   SOLUÇÃO / CARDS
================================================= */

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-top: 45px;
}

.card {
  background: #020617;
  padding: 28px;
  border-radius: 16px;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  text-align: center;
}

.card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 25px 45px rgba(37, 99, 235, 0.3);
}

/* =================================================
   PLANOS
================================================= */

.planos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.plano {
  background: #020617;
  padding: 34px 30px;
  border-radius: 18px;
  text-align: center;

  display: flex;
  flex-direction: column;

  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.plano .btn {
  margin-top: auto;       /* empurra o botão pra baixo */
  margin-bottom: 6px;     /* respiro da borda inferior */
}


.plano:hover {
  transform: translateY(-12px);
  box-shadow: 0 28px 55px rgba(96, 165, 250, 0.28);
}

.plano.destaque {
  margin-top: 0px;
  position: relative;
  border: 2px solid #2563eb;
}

.plano.destaque::before {
  content: "MAIS VENDIDO";
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: #2563eb;
  color: #fff;
  padding: 6px 16px;
  border-radius: 999px;
  font-size: 0.75rem;
  letter-spacing: 1px;
}

.preco {
  display: block;
  margin: 18px 0;
  font-size: 1.7rem;
  color: #60a5fa;
}

.plano ul {
  list-style: none;
  margin: 25px 0;
  padding-bottom: 30px;
}

.plano li {
  margin-bottom: 10px;
}

.planos h2{
  text-align: center;
}

/* =================================================
   CTA FINAL
================================================= */

.cta {
  background: #020617;
  text-align: center;
}

.cta h2 {
  font-size: 2.2rem;
  margin-bottom: 15px;
}

.cta p {
  margin-bottom: 30px;
  color: #cbd5f5;
}

/* =================================================
   FOOTER
================================================= */

footer {
  background: #020617;
  text-align: center;
  padding: 25px;
  font-size: 0.9rem;
  color: #94a3b8;
}

/* =================================================
   RESPONSIVO
================================================= */

@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.2rem;
  }

  .container {
    padding: 55px 20px;
  }
}

/* =================================================
   FORMULÁRIO DE CAPTURA
================================================= */

.formulario {
  max-width: 500px;
  margin: 40px auto 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.formulario input,
.formulario select,
.formulario textarea {
  padding: 14px 16px;
  border-radius: 10px;
  border: none;
  background: #020617;
  color: #e5e7eb;
  font-size: 0.95rem;
}

.formulario textarea {
  resize: vertical;
  min-height: 100px;
}

.formulario input::placeholder,
.formulario textarea::placeholder {
  color: #94a3b8;
}

.formulario select {
  color: #94a3b8;
}

.formulario button {
  margin-top: 10px;
}

/* =================================================
   SCROLL SUAVE GLOBAL
================================================= */

html {
  scroll-behavior: smooth;
}

/* =================================================
   FEEDBACK VISUAL AO CLICAR
================================================= */

.scroll-btn:active {
  transform: scale(0.96);
}

/* Destaque visual do formulário quando chega */
#contato:target {
  animation: highlight 1.2s ease;
}

@keyframes highlight {
  0% {
    box-shadow: 0 0 0 rgba(37, 99, 235, 0);
  }
  50% {
    box-shadow: 0 0 0 6px rgba(37, 99, 235, 0.35);
  }
  100% {
    box-shadow: 0 0 0 rgba(37, 99, 235, 0);
  }
}
