/* =========================
   RESET & BASE
========================= */

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;
  background-color: #0e0e0e;
  color: #ffffff;
  line-height: 1.6;
}


/* =========================
   CONTAINER PADRÃO
========================= */

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding-left: 32px;
  padding-right: 32px;
}


/* =========================
   TIPOGRAFIA
========================= */

h1 {
  font-size: 52px;
  line-height: 1.1;
  font-weight: 700;
  margin-bottom: 24px;
}

h2 {
  font-size: 38px;
  line-height: 1.2;
  font-weight: 600;
  margin-bottom: 16px;
}

h3 {
  font-size: 26px;
  line-height: 1.3;
  font-weight: 600;
  margin-bottom: 12px;
}

p {
  font-size: 18px;
  color: #cccccc;
}

.subtitle {
  font-size: 20px;
  color: #bbbbbb;
  margin-top: 8px;
}


/* =========================
   HEADER
========================= */

.site-header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(10,10,10,0.7);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.site-header.scrolled {
  background: rgba(10,10,10,0.9);
  box-shadow: 0 6px 30px rgba(0,0,0,0.6);
}

.header-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.logo {
  font-size: 1.6rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.5px;
}

.logo span {
  color: #facc15;
}

.main-nav {
  display: flex;
  align-items: center;
  margin-left: auto;
  margin-right: 16px;
  gap: 28px;
}

.main-nav a {
  color: #cfcfcf;
  text-decoration: none;
  font-weight: 500;
  position: relative;
  padding: 4px 0;
  transition: color 0.2s ease;
}

.main-nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0%;
  height: 2px;
  background: #facc15;
  transition: width 0.3s ease;
}

.main-nav a:hover {
  color: #fff;
}

.main-nav a:hover::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
}

.header-cta {
  background: linear-gradient(135deg, #facc15, #fbbf24);
  color: #000;
  padding: 10px 20px;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(250, 204, 21, 0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.header-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(250, 204, 21, 0.45);
}

/* =========================
   BOTÕES
========================= */

.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 10px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
}

.btn-primary {
  background-color: #f7c600;
  color: #000000;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(247, 198, 0, 0.3);
}


/* =========================
   SEÇÕES
========================= */

.section {
  padding-top: 96px;
  padding-bottom: 96px;
}

.section.alt {
  background-color: #151515;
}

.section.cta {
  background-color: #f7c600;
  color: #000000;
  text-align: center;
}

.section.cta h2 {
  color: #000000;
}

.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-header .subtitle {
  margin-top: 12px;
  font-size: 18px;
  color: #cccccc;
}

.section-divider {
  width: 100%;
  height: 1px;
  margin: 24px 0;
  background: linear-gradient(
    to right,
    transparent 0%,
    rgba(247,198,0,0.15) 20%,
    rgba(247,198,0,0.6) 50%,
    rgba(247,198,0,0.15) 80%,
    transparent 100%
  );
  opacity: 0.7;
}


/* =========================
   WHATSAPP
========================= */

.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  background: #25D366;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.2);
  z-index: 999;
  animation: pulse 2.5s infinite;
  text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.05);
}

/* =========================
   HERO
========================= */

.hero-full {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  background: #0e0e0e;
}

.hero-background {
  position: absolute;
  inset: 0;
  background-image: url("https://images.unsplash.com/photo-1558611848-73f7eb4001a1");
  background-size: cover;
  background-position: right center;
  filter: grayscale(100%) brightness(0.4);
  z-index: 1;
}

.hero-background::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to left,
    rgba(14,14,14,0) 0%,
    rgba(14,14,14,0.4) 30%,
    rgba(14,14,14,0.8) 55%,
    rgba(14,14,14,1) 75%
  );
}

.hero-free {
  position: relative;
  z-index: 2;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-left: 120px;
}

.hero-text {
  max-width: 560px;
}

.hero-text h1 {
  font-size: 64px;
  line-height: 1.05;
  margin-bottom: 24px;
}

.hero-text p {
  font-size: 20px;
  color: #cccccc;
  margin-bottom: 40px;
}

/* =========================
   SESSÃO DE CONTRASTE
========================= */

.contrast {
  background: radial-gradient(circle at top, #141414 0%, #0e0e0e 60%);
  text-align: center;
}

.contrast-header {
  max-width: 760px;
  margin: 0 auto 64px;
}

.contrast-quote {
  margin-top: 24px;
  font-size: 20px;
  font-weight: 500;
  color: #f7c600;
}

.contrast-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

.contrast-card {
  background: #1a1a1a;
  padding: 40px 32px;
  border-radius: 20px;
  text-align: left;
}

.contrast-card h3 {
  margin-bottom: 20px;
}

.contrast-card ul {
  list-style: none;
  padding: 0;
}

.contrast-card li {
  margin-bottom: 12px;
  color: #cccccc;
  padding-left: 24px;
  position: relative;
}

.contrast-card.negative li::before {
  content: "✕";
  color: #ff4d4d;
  position: absolute;
  left: 0;
}

.contrast-card.positive li::before {
  content: "✓";
  color: #f7c600;
  position: absolute;
  left: 0;
}

/* =========================
   BENEFICIOS
========================= */

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.benefit-card {
  background: #1a1a1a;
  padding: 32px;
  border-radius: 20px;
  transition: transform 0.3s ease;
  text-align: left;
}

.benefit-card:hover {
  transform: translateY(-6px);
}

.benefit-card {
  text-align: center;
}

.benefit-card i {
  font-size: 40px;
  color: #f7c600;
  margin-bottom: 16px;
}

.benefit-card h3 {
  margin-top: 8px;
  margin-bottom: 12px;
}

/* =========================
   PRICE COMPACT HIGHLIGHT
========================= */

.price-highlight {
  padding: 80px 0;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 20%, rgba(247,198,0,0.12), transparent 55%),
    radial-gradient(circle at 80% 80%, rgba(255,255,255,0.04), transparent 60%),
    linear-gradient(180deg, #0a0a0a 0%, #0d0d0d 40%, #0a0a0a 100%);
}

/* Vinheta nas bordas */
.price-highlight::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at center,
    transparent 60%,
    rgba(0,0,0,0.65) 100%);
}

.price-box {
  background: radial-gradient(circle at center, rgba(247,198,0,0.12), transparent 70%);
  border-radius: 20px;
  padding: 48px 32px;
  text-align: center;
  max-width: 720px;
  margin: 0 auto;

  box-shadow:
    0 40px 100px rgba(0,0,0,0.7),
    0 0 80px rgba(247,198,0,0.15);
  backdrop-filter: blur(2px);
}

.price-eyebrow {
  color: #f7c600;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 13px;
  margin-bottom: 18px;
}

.price-title {
  font-size: 38px;
  font-weight: 600;
  color: #ffffff;
}

.price-pulse {
  display: inline-block;
  margin-left: 10px;
  font-size: 56px;
  font-weight: 700;
  color: #f7c600;
  animation: pulsePrice 2.4s ease-in-out infinite;
}

/* Pulsar elegante */
@keyframes pulsePrice {
  0% {
    transform: scale(1);
    text-shadow: 0 0 0 rgba(247,198,0,0.0);
  }
  50% {
    transform: scale(1.08);
    text-shadow: 0 0 25px rgba(247,198,0,0.6);
  }
  100% {
    transform: scale(1);
    text-shadow: 0 0 0 rgba(247,198,0,0.0);
  }
}

.price-highlight .btn {
  margin-top: 28px;
}


/* =========================
   COMO FUNCIONA — PROCESSO
========================= */

.process {
  background: radial-gradient(circle at top, #161616 0%, #0e0e0e 60%);
}

.process-header {
  text-align: center;
  margin-bottom: 56px;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  position: relative;
}

.process-step {
  background: #1a1a1a;
  padding: 40px 32px;
  border-radius: 20px;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.process-step:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.step-number {
  display: inline-block;
  font-size: 48px;
  font-weight: 700;
  color: rgba(247, 198, 0, 0.2);
  margin-bottom: 12px;
}

.process-step h3 {
  margin-bottom: 12px;
}

.process-step p {
  font-size: 16px;
  color: #cccccc;
}

/* =========================
   PROVA SOCIAL
========================= */

.social-proof {
  background: radial-gradient(circle at top, #161616 0%, #0e0e0e 60%);
}

.social-header {
  text-align: center;
  margin-bottom: 48px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.testimonial-card {
  background: #1a1a1a;
  padding: 32px;
  border-radius: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}

.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.testimonial-card.featured {
  border: 2px solid #f7c600;
}

.testimonial-text {
  font-size: 18px;
  color: #eeeeee;
  line-height: 1.5;
  margin-bottom: 24px;
}

.testimonial-author strong {
  display: block;
  font-size: 15px;
  color: #ffffff;
}

.testimonial-author span {
  font-size: 13px;
  color: #aaaaaa;
}

/* =========================
   GRIDS & CARDS
========================= */

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.card,
.step,
.testimonial {
  background-color: #1c1c1c;
  padding: 32px;
  border-radius: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover,
.step:hover,
.testimonial:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4);
}

.card i {
  font-size: 34px;
  color: #f7c600;
  margin-bottom: 16px;
}

.cta-intermediate {
  background: linear-gradient(135deg, #f7c600 0%, #ffd84d 100%);
  color: #000000;
}

.cta-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  align-items: center;
  gap: 48px;
}

.cta-text h2 {
  color: #000000;
  margin-bottom: 12px;
}

.cta-text p {
  color: #222222;
  font-size: 18px;
  max-width: 520px;
}

.cta-action {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.btn-large {
  padding: 18px 36px;
  font-size: 16px;
  border-radius: 12px;
}

.btn-cta-contrast {
  background-color: #000000;
  color: #f7c600;
  border: 2px solid #000000;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.35);
  transition: all 0.3s ease;
}

.btn-cta-contrast:hover {
  background-color: transparent;
  color: #000000;
  border-color: #000000;
  transform: translateY(-3px);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.4);
}

.cta-note {
  margin-top: 12px;
  font-size: 13px;
  color: #333333;
}

/* =========================
   FORMULÁRIO
========================= */

.form-block {
  max-width: 720px; /* largura mais próxima do container */
  margin: 0 auto;
  text-align: center;
}

.form-subtitle {
  font-size: 16px;
  color: #bbbbbb;
  margin-bottom: 32px;
}

.lead-form {
  padding: 0;
  background: none;
  box-shadow: none;
  border-radius: 0;
  text-align: left;
}

.input-group {
  margin-bottom: 20px;
}

.input-group input {
  width: 100%;
  padding: 16px 18px;
  border-radius: 10px;
  border: 1px solid #2a2a2a;
  background: #0e0e0e;
  color: #ffffff;
  font-size: 16px;
}

.input-group input:focus {
  outline: none;
  border-color: #f7c600;
  box-shadow: 0 0 0 3px rgba(247, 198, 0, 0.15);
}

.btn-full {
  width: 100%;
  padding: 16px;
  margin-top: 8px;
}

.form-disclaimer {
  margin-top: 14px;
  font-size: 12px;
  color: #777777;
  text-align: center;
}

.input-group select {
  width: 100%;
  padding: 16px 48px 16px 18px; /* espaço extra à direita */
  border-radius: 10px;
  border: 1px solid #2a2a2a;
  background: #0e0e0e;
  color: #ffffff;
  font-size: 16px;

  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;

  background-image: url("data:image/svg+xml;utf8,<svg fill='%23f7c600' height='20' viewBox='0 0 24 24' width='20' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/></svg>");
  background-repeat: no-repeat;
  background-position: right 18px center;
  background-size: 18px;
}

.input-group select:focus {
  outline: none;
  border-color: #f7c600;
  box-shadow: 0 0 0 3px rgba(247, 198, 0, 0.15);
}


/* =========================
   FOOTER
========================= */

.footer {
  background-color: #000000;
  padding-top: 64px;
  color: #cccccc;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid #1f1f1f;
}

.footer-col h4 {
  font-size: 16px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 16px;
}

.footer-col p,
.footer-col a {
  font-size: 14px;
  color: #bbbbbb;
  text-decoration: none;
  margin-bottom: 8px;
  display: block;
}

.footer-col a:hover {
  color: #f7c600;
}

.footer-logo {
  font-size: 24px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 12px;
}

.footer-logo span {
  color: #f7c600;
}

.footer-socials {
  display: flex;
  gap: 12px;
  margin-top: 8px;
}

.footer-socials a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #1c1c1c;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  transition: all 0.3s ease;
}

.footer-socials a:hover {
  background: #f7c600;
  color: #000000;
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  padding: 24px 0;
  font-size: 13px;
  color: #777777;
  text-align: center;
}

.footer-bottom strong {
  color: #f7c600;
}

.footer-col .curriculo {
  color: #f7c600;
}

.footer-col .curriculo i {
  color: #f7c600;
}

/* =========================
   MICRO-INTERAÇÕES PREMIUM
========================= */

/* Efeito premium nos cards */
.benefit-card,
.process-step,
.testimonial-card,
.contrast-card {
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
              box-shadow 0.35s ease;
  will-change: transform;
}

.benefit-card:hover,
.process-step:hover,
.testimonial-card:hover,
.contrast-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}

/* Micro brilho nos botões */
.btn,
.header-cta {
  position: relative;
  overflow: hidden;
}

.btn::after,
.header-cta::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    transparent 20%,
    rgba(255,255,255,0.25),
    transparent 80%
  );
  opacity: 0;
  transition: opacity 0.3s ease;
}

.btn:hover::after,
.header-cta:hover::after {
  opacity: 1;
}


/* =========================
   RESPONSIVO
========================= */

@media (max-width: 768px) {

  h1 {
    font-size: 34px;
  }

  h2 {
    font-size: 30px;
  }

  .main-nav {
    display: none;
  }

  .header-container {
    justify-content: space-between;
    padding: 14px 20px;
  }

  .logo {
    font-size: 1.4rem;
  }

  .header-cta {
    padding: 8px 16px;
    font-size: 13px;
  }

  .hero-free {
    justify-content: center;
    padding-left: 0;
    text-align: center;
  }

  .hero-text h1 {
    font-size: 42px;
  }

  .hero-layout {
    grid-template-columns: 1fr;
  }

  .hero-panel {
    padding: 140px 32px 80px;
    text-align: center;
  }

  .hero-panel h1 {
    font-size: 42px;
  }

  .hero-content {
    justify-content: center;
    padding-right: 0;
    text-align: center;
  }

  .hero-text h1 {
    font-size: 42px;
  }

  .hero-text h1 {
    font-size: 38px;
  }

  .hero-grid,
  .grid-3 {
    grid-template-columns: 1fr;
  }

  .contrast-grid {
    grid-template-columns: 1fr;
  }

  .nav {
    display: none;
  }

  .container {
    padding-left: 24px;
    padding-right: 24px;
  }

  .section {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .benefit-card {
  background: #1a1a1a;
  padding: 32px;
  border-radius: 20px;
  text-align: center;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .price-big {
  font-size: 42px;
  }

  .price-big span {
    font-size: 72px;
  }

  .price-title {
  font-size: 28px;
  }

  .price-pulse {
  font-size: 40px;
  }

  .process-steps {
    grid-template-columns: 1fr;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .cta-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .cta-action {
    align-items: center;
  }

  .cta-text p {
    margin: 0 auto;
  }

  .form-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

}
