/*
Theme Name: Pack Planos de Corte
Theme URI: https://exemplo.com
Description: Landing page de vendas - Pack Completo de Planos de Corte
Version: 1.0
Author: Pack Planos de Corte
Text Domain: pack-planos
*/

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Inter:wght@400;500;600;700&display=swap');

:root {
  --background: hsl(220, 15%, 10%);
  --foreground: hsl(40, 20%, 92%);
  --card: hsl(220, 12%, 14%);
  --card-foreground: hsl(40, 20%, 92%);
  --primary: hsl(38, 92%, 50%);
  --primary-foreground: hsl(220, 15%, 8%);
  --secondary: hsl(220, 10%, 18%);
  --secondary-foreground: hsl(40, 20%, 85%);
  --muted: hsl(220, 10%, 20%);
  --muted-foreground: hsl(220, 10%, 55%);
  --border: hsl(220, 10%, 22%);
  --ring: hsl(38, 92%, 50%);
  --radius: 0.5rem;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background-color: var(--background);
  color: var(--foreground);
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 0.02em;
  line-height: 1.1;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }

/* ── Utilities ── */
.text-gradient {
  background: linear-gradient(135deg, hsl(38, 92%, 50%), hsl(45, 100%, 65%));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1rem;
}

.container-sm { max-width: 720px; margin: 0 auto; padding: 0 1rem; }
.container-md { max-width: 900px; margin: 0 auto; padding: 0 1rem; }

.section { padding: 5rem 1rem; }
.section-alt { background: hsla(220, 12%, 14%, 0.5); }

.section-title {
  text-align: center;
  margin-bottom: 3rem;
}
.section-title h2 {
  font-size: clamp(2rem, 5vw, 3.2rem);
}
.section-title p {
  color: var(--muted-foreground);
  margin-top: 0.75rem;
  font-size: 1.125rem;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  padding: 1.5rem;
  box-shadow: 0 4px 24px -4px hsla(0, 0%, 0%, 0.3);
}

.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, hsl(38, 92%, 50%), hsl(30, 95%, 42%));
  color: var(--primary-foreground);
  font-weight: 700;
  font-size: 1.125rem;
  padding: 1.1rem 2.5rem;
  border-radius: 0.5rem;
  border: none;
  cursor: pointer;
  box-shadow: 0 8px 32px -8px hsla(38, 92%, 50%, 0.4);
  transition: transform 0.2s, box-shadow 0.2s;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  font-family: 'Inter', sans-serif;
}
.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px -8px hsla(38, 92%, 50%, 0.5);
}
.cta-button svg { width: 20px; height: 20px; }

.check-icon {
  width: 20px;
  height: 20px;
  color: var(--primary);
  flex-shrink: 0;
}

/* ── Hero ── */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: linear-gradient(180deg, hsl(220, 15%, 6%) 0%, hsl(220, 15%, 10%) 100%);
}
.hero-bg {
  position: absolute;
  inset: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--background), hsla(220, 15%, 10%, 0.8), hsla(220, 15%, 10%, 0.4));
}
.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 5rem 1rem;
  max-width: 900px;
}
.hero-content .tag {
  color: var(--primary);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.875rem;
  margin-bottom: 1rem;
}
.hero-content h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  margin-bottom: 1.5rem;
}
.hero-content .subtitle {
  font-size: clamp(1.125rem, 2.5vw, 1.5rem);
  color: var(--secondary-foreground);
  margin-bottom: 2.5rem;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}
.hero-content .note {
  color: var(--muted-foreground);
  font-size: 0.875rem;
  margin-top: 1rem;
}

/* ── Pain Section ── */
.pain-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .pain-grid { grid-template-columns: 1fr 1fr; }
}
.pain-card {
  display: flex;
  gap: 1rem;
}
.pain-icon {
  background: hsla(38, 92%, 50%, 0.1);
  border-radius: 0.5rem;
  padding: 0.75rem;
  height: fit-content;
  flex-shrink: 0;
}
.pain-icon svg { width: 24px; height: 24px; color: var(--primary); }
.pain-card h3 { font-size: 1.25rem; margin-bottom: 0.25rem; font-family: 'Inter', sans-serif; font-weight: 600; }
.pain-card p { color: var(--muted-foreground); line-height: 1.6; }

/* ── Solution ── */
.solution-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 3rem;
}
@media (min-width: 640px) {
  .solution-grid { grid-template-columns: repeat(3, 1fr); }
}
.solution-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.solution-icon {
  background: hsla(38, 92%, 50%, 0.1);
  border-radius: 50%;
  padding: 1.25rem;
  margin-bottom: 1rem;
}
.solution-icon svg { width: 32px; height: 32px; color: var(--primary); }
.solution-item h3 { font-size: 1.5rem; margin-bottom: 0.5rem; }
.solution-item p { color: var(--muted-foreground); }

/* ── Benefits ── */
.benefit-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 0.5rem;
  padding: 1rem 1.5rem;
  box-shadow: 0 4px 24px -4px hsla(0, 0%, 0%, 0.3);
  margin-bottom: 1rem;
}
.benefit-item span { font-size: 1.125rem; }

/* ── Included ── */
.included-box {
  background: var(--card);
  border: 1px solid hsla(38, 92%, 50%, 0.2);
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 4px 24px -4px hsla(0, 0%, 0%, 0.3);
}
.included-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}
.included-item span { font-size: 1.125rem; }
.included-item svg { margin-top: 0.125rem; }

.bonuses-title {
  color: var(--primary);
  font-weight: 600;
  font-size: 1.125rem;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 2rem;
  margin-bottom: 1rem;
}
.bonus-card {
  background: hsla(38, 92%, 50%, 0.05);
  border: 1px solid hsla(38, 92%, 50%, 0.3);
  border-radius: 0.75rem;
  padding: 1.25rem;
  margin-bottom: 1rem;
}
.bonus-card h4 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
  font-family: 'Inter', sans-serif;
}
.bonus-card p { color: var(--muted-foreground); line-height: 1.6; }

/* ── Credibility ── */
.stats-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 640px) {
  .stats-grid { grid-template-columns: repeat(3, 1fr); }
}
.stat-card { text-align: center; padding: 1.5rem; }
.stat-card .value { font-size: 2.5rem; font-weight: 700; }
.stat-card .label { color: var(--muted-foreground); margin-top: 0.25rem; }

/* ── Objections ── */
.objection-card { margin-bottom: 1rem; }
.objection-card h3 {
  font-size: 1.25rem;
  color: var(--primary);
  margin-bottom: 0.5rem;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
}
.objection-card p { color: var(--muted-foreground); line-height: 1.6; }

/* ── Offer ── */
.offer-box {
  background: var(--card);
  border: 2px solid hsla(38, 92%, 50%, 0.4);
  border-radius: 1rem;
  padding: 2.5rem;
  text-align: center;
  box-shadow: 0 4px 24px -4px hsla(0, 0%, 0%, 0.3);
}
.offer-box .old-price {
  color: var(--muted-foreground);
  text-decoration: line-through;
  font-size: 1.25rem;
  margin-bottom: 0.25rem;
}
.offer-box .price {
  font-size: 3.75rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.offer-box .payment-info {
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 1.5rem;
}
.offer-list {
  text-align: left;
  max-width: 380px;
  margin: 0 auto 2rem;
}
.offer-list-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}
.offer-guarantee {
  color: var(--muted-foreground);
  font-size: 0.875rem;
  margin-top: 1rem;
}
.offer-guarantee svg { display: inline; width: 16px; height: 16px; margin-right: 0.25rem; vertical-align: -2px; }

/* ── FAQ ── */
.faq-item {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  padding: 1.25rem;
  margin-bottom: 0.75rem;
  cursor: pointer;
  transition: border-color 0.2s;
}
.faq-item:hover { border-color: hsla(38, 92%, 50%, 0.3); }
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 500;
  font-size: 1.125rem;
}
.faq-question svg {
  width: 20px;
  height: 20px;
  color: var(--primary);
  flex-shrink: 0;
  margin-left: 1rem;
  transition: transform 0.3s;
}
.faq-item.open .faq-question svg { transform: rotate(180deg); }
.faq-answer {
  color: var(--muted-foreground);
  margin-top: 0.75rem;
  line-height: 1.6;
  display: none;
}
.faq-item.open .faq-answer { display: block; }

/* ── Final CTA ── */
.final-cta {
  padding: 6rem 1rem;
  text-align: center;
}
.final-cta h2 { font-size: clamp(2rem, 5vw, 3.2rem); margin-bottom: 1rem; }
.final-cta p { color: var(--muted-foreground); font-size: 1.125rem; margin-bottom: 2rem; }

/* ── Footer ── */
.site-footer {
  padding: 2rem;
  text-align: center;
  color: var(--muted-foreground);
  font-size: 0.875rem;
  border-top: 1px solid var(--border);
}

/* ── SVG Icons inline ── */
.icon-sm { width: 20px; height: 20px; }
.icon-md { width: 24px; height: 24px; }
.icon-lg { width: 32px; height: 32px; }
