/* ===================================================
   PLAYBOOK MALOKA — CSS específico
   Complementa lp-vendas.css sem sobrescrever variáveis
   =================================================== */

/* ========== HERO PLAYBOOK ========== */
#hero-playbook {
  padding: 5rem 0 5rem;
  border-bottom: 1px solid var(--ui-border);
  position: relative;
}

.hero-pb-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

/* Left Column */
.hero-pb-left {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.hero-pb-left h1 {
  font-size: clamp(2rem, 3.8vw, 3.2rem);
  font-weight: 800;
  background: linear-gradient(to right, var(--color-brand-white), #b3b3b3);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 0;
}

.hero-pb-left h1 span {
  background: linear-gradient(to right, var(--color-brand-orange), #ff9d5c);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-pb-left .hero-subtitle {
  margin-bottom: 0;
}

/* Forms */
.pb-form-card {
  background: var(--surface-1);
  border: 1px solid var(--ui-border);
  border-radius: var(--radius-large);
  padding: 2rem;
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}

.pb-form-label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--muted-text);
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.pb-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 1.2rem;
}

.pb-field label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-brand-white);
  font-family: "Montserrat", sans-serif;
}

.pb-field input {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--ui-border);
  border-radius: 10px;
  padding: 0.85rem 1rem;
  color: var(--color-brand-white);
  font-family: "Roboto", sans-serif;
  font-size: 0.95rem;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
  outline: none;
  width: 100%;
}

.pb-field input::placeholder {
  color: rgba(252, 252, 252, 0.35);
}

.pb-field input:focus {
  border-color: var(--color-brand-orange);
  box-shadow: 0 0 0 3px rgba(255, 115, 14, 0.15);
}

.pb-submit {
  width: 100%;
  justify-content: center;
  margin-top: 0.5rem;
  font-size: 1rem;
  border: none;
  cursor: pointer;
}

.pb-privacy {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 0.8rem;
  color: rgba(252, 252, 252, 0.4);
  margin: 0.75rem 0 0;
}

.pb-privacy svg {
  width: 13px;
  height: 13px;
}


/* ========== PLAYBOOK COVER ========== */
.hero-pb-right {
  display: flex;
  justify-content: center;
  align-items: center;
}

.pb-cover-wrapper {
  position: relative;
  width: 100%;
  max-width: 420px;
}

.pb-cover-img {
  width: 100%;
  border-radius: var(--radius-large);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
  display: block;
}


.pb-cover-inner {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 2.5rem 2rem 2rem 2.5rem;
  position: relative;
  z-index: 1;
}

.pb-cover-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--color-brand-orange);
}

.pb-cover-logo img {
  width: 36px;
  height: auto;
}

.pb-cover-title {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  color: var(--color-brand-white);
  line-height: 1.2;
}

.pb-cover-sub {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-brand-orange);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-top: auto;
  padding-top: 1.5rem;
}

.pb-cover-deco {
  width: 60px;
  height: 4px;
  background: linear-gradient(to right, var(--color-brand-orange), transparent);
  border-radius: 2px;
  margin-top: 1rem;
}

/* Sombra flutuante atrás da capa */
.pb-cover-wrapper::after {
  content: '';
  position: absolute;
  top: 10%;
  left: -5%;
  width: 110%;
  height: 80%;
  background: var(--color-brand-blue);
  filter: blur(80px);
  opacity: 0.15;
  z-index: -1;
  border-radius: 50%;
}


/* ========== STATS SECTION ========== */
#stats-section {
  padding: 5rem 0;
  border-bottom: 1px solid var(--ui-border);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.stat-card {
  background: var(--surface-1);
  border: 1px solid var(--ui-border);
  border-radius: var(--radius-large);
  padding: 2.5rem 2rem;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.stat-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 115, 14, 0.4);
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.stat-icon {
  width: 52px;
  height: 52px;
  background: rgba(255, 115, 14, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-brand-orange);
  margin: 0 auto 1.5rem;
}

.stat-number {
  display: block;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 800;
  color: var(--color-brand-white);
  margin-bottom: 0.75rem;
  line-height: 1;
}

.stat-placeholder {
  color: var(--color-brand-orange);
}

.stat-desc {
  font-size: 0.9rem;
  color: var(--muted-text);
  margin: 0;
  line-height: 1.5;
}

.stat-source {
  display: block;
  margin-top: 0.75rem;
  font-size: 0.72rem;
  color: rgba(252, 252, 252, 0.3);
  font-style: italic;
  letter-spacing: 0.3px;
}

/* Citação de destaque */
.stats-quote {
  background: var(--surface-1);
  border-left: 4px solid var(--color-brand-orange);
  border-radius: 0 var(--radius-medium) var(--radius-medium) 0;
  padding: 1.75rem 2rem;
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  max-width: 860px;
  margin: 3rem auto 0;
}

.stats-quote svg {
  color: var(--color-brand-orange);
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  margin-top: 2px;
}

.stats-quote p {
  font-size: 1rem;
  color: var(--muted-text);
  margin: 0;
  line-height: 1.7;
  font-style: italic;
}


/* ========== CONTENT SECTION -> 6 PASSOS ========== */
#passos-section {
  padding: 5rem 0;
  border-bottom: 1px solid var(--ui-border);
}

.passos-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 5rem;
  align-items: start;
}

.passos-copy {
  position: sticky;
  top: 100px;
}

.passos-copy h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  margin: 0.75rem 0 1.25rem;
}

.passos-copy p {
  font-size: 0.975rem;
  color: var(--muted-text);
  line-height: 1.75;
}

.passos-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.passo-card {
  background: var(--surface-1);
  border: 1px solid var(--ui-border);
  border-radius: var(--radius-medium);
  padding: 1.5rem;
  transition: border-color 0.3s ease, transform 0.3s ease;
  position: relative;
  overflow: hidden;
}

.passo-card:hover {
  border-color: rgba(255, 115, 14, 0.35);
  transform: translateY(-3px);
}

.passo-num {
  display: block;
  font-family: "Montserrat", sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--color-brand-orange);
  line-height: 1;
  margin-bottom: 0.6rem;
  transition: color 0.3s ease;
}

.passo-card:hover .passo-num {
  color: rgba(255, 115, 14, 0.6);
}

.passo-card h4 {
  font-family: "Montserrat", sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--color-brand-white);
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.passo-card p {
  font-size: 0.82rem;
  color: var(--muted-text);
  margin: 0;
  line-height: 1.6;
}

@media (max-width: 1024px) {
  .passos-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .passos-copy {
    position: static;
  }
}

@media (max-width: 520px) {
  .passos-cards {
    grid-template-columns: 1fr;
  }
}


/* ========== FINAL CTA ========== */
#cta-playbook-final {
  padding: 5rem 0 6rem;
}

.cta-pb-box {
  background: radial-gradient(circle at 30% 50%, rgba(0, 119, 182, 0.15), transparent 60%),
              var(--surface-1);
  border: 1px solid rgba(0, 119, 182, 0.25);
  border-radius: 24px;
  padding: 4rem 3rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.cta-pb-box::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(to right, transparent, var(--color-brand-orange), transparent);
}

.cta-pb-copy h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  margin-bottom: 1rem;
}

.cta-pb-copy > p {
  font-size: 1.05rem;
  color: var(--muted-text);
  margin-bottom: 2rem;
}

.cta-pb-checklist {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.cta-pb-checklist li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  color: var(--color-brand-white);
}

.cta-pb-checklist i {
  color: var(--color-brand-orange);
  flex-shrink: 0;
}


/* ========== RESPONSIVIDADE ========== */
@media (max-width: 1024px) {
  .hero-pb-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .hero-pb-right {
    order: -1;
  }

  .pb-cover-wrapper {
    max-width: 320px;
    margin: 0 auto;
  }

  .stats-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto 2rem;
  }

  .cta-pb-box {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

@media (max-width: 768px) {
  #hero-playbook {
    padding: 3.5rem 0 4rem;
  }

  .pb-form-card {
    padding: 1.5rem;
  }

  .cta-pb-box {
    padding: 2.5rem 1.5rem;
  }

  .pb-cover-wrapper {
    max-width: 260px;
  }
}

@media (max-width: 520px) {
  .stats-grid {
    max-width: 100%;
  }

  .pb-submit {
    font-size: 0.92rem;
    padding: 0.9rem 1.5rem;
  }
}
