/* ========================================
   WayTag Landing Page — Design System
   ======================================== */

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

/* --- Tokens --- */
:root {
  --orange-primary: #E8982A;
  --orange-hover: #D4881E;
  --orange-light: rgba(232, 152, 42, 0.15);
  --orange-glow: rgba(232, 152, 42, 0.3);
  --gray-brand: #6B6B6B;
  --bg-dark: #0A0A0F;
  --bg-section: #101018;
  --bg-card: #16161F;
  --bg-card-hover: #1C1C28;
  --bg-faq: #111119;
  --text-white: #FFFFFF;
  --text-light: #C5C5D0;
  --text-muted: #8A8A9A;
  --border-subtle: rgba(255, 255, 255, 0.06);
  --border-card: rgba(232, 152, 42, 0.12);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-glow: 0 0 40px rgba(232, 152, 42, 0.12);
  --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.3);
  --max-width: 1200px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 130px;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg-dark);
  color: var(--text-white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

button {
  cursor: pointer;
  border: none;
  font-family: inherit;
}

ul {
  list-style: none;
}

/* --- Utility --- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--orange-light);
  color: var(--orange-primary);
  padding: 8px 20px;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  border: 1px solid rgba(232, 152, 42, 0.25);
}

.section-badge::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--orange-primary);
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.5;
    transform: scale(0.7);
  }
}

/* --- CTA Button --- */
.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--orange-primary), #D4881E);
  color: var(--bg-dark);
  font-weight: 800;
  font-size: 1.05rem;
  padding: 18px 48px;
  border-radius: var(--radius-md);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(232, 152, 42, 0.35);
  position: relative;
  overflow: hidden;
}

.cta-btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 40%, rgba(255, 255, 255, 0.15) 50%, transparent 60%);
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}

.cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(232, 152, 42, 0.45);
}

.cta-btn:hover::after {
  transform: translateX(100%);
}

.cta-btn:active {
  transform: translateY(0);
}

/* Sticky Mobile CTA */
.mobile-sticky-cta {
  display: none;
}

/* ========================================
   1. HEADER
   ======================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(10, 10, 15, 0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-subtle);
  transition: var(--transition);
}

.header.scrolled {
  background: rgba(10, 10, 15, 0.95);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 120px;
}

.header-logo img {
  height: 200px;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.header-nav a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-light);
  transition: var(--transition);
  position: relative;
}

.header-nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--orange-primary);
  transition: width 0.3s ease;
}

.header-nav a:hover {
  color: var(--orange-primary);
}

.header-nav a:hover::after {
  width: 100%;
}

.header-cta {
  background: var(--orange-primary);
  color: var(--bg-dark);
  font-weight: 700;
  font-size: 0.85rem;
  padding: 10px 24px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.header-cta:hover {
  background: var(--orange-hover);
  transform: translateY(-1px);
}

/* Mobile menu */
.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  padding: 4px;
}

.mobile-toggle span {
  width: 24px;
  height: 2px;
  background: var(--text-white);
  border-radius: 2px;
  transition: var(--transition);
}

/* ========================================
   2. HERO
   ======================================== */
.hero {
  padding: 180px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(232, 152, 42, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero-badge {
  margin-bottom: 40px;
}

.hero h1 {
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 16px;
  letter-spacing: -1px;
}

.hero h1 .highlight {
  color: var(--orange-primary);
  position: relative;
}

.hero h1 .highlight::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--orange-primary);
  border-radius: 2px;
  opacity: 0.5;
}

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

.hero-sub strong {
  color: var(--text-white);
  font-weight: 700;
}

.hero-cta {
  margin-bottom: 32px;
}

.hero-pills {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.hero-pills span {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.hero-pills span::before {
  content: '✓';
  color: var(--orange-primary);
  font-weight: 700;
}

/* ========================================
   3. APP PREVIEW
   ======================================== */
.app-preview {
  padding: 0 0 80px;
  text-align: center;
}

.app-preview-wrapper {
  max-width: 700px;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-glow);
  position: relative;
}

.app-preview-wrapper img,
.app-preview-wrapper video {
  width: 100%;
  display: block;
}

.app-preview-placeholder {
  background: var(--bg-card);
  padding: 80px 40px;
  color: var(--text-muted);
  font-size: 1rem;
}

/* ========================================
   4. FEATURES
   ======================================== */
.features {
  padding: 100px 0;
  background: var(--bg-section);
}

.features-header {
  text-align: center;
  margin-bottom: 60px;
}

.features-header h2 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 800;
  margin-top: 20px;
}

.features-header h2 .highlight {
  color: var(--orange-primary);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--orange-primary), transparent);
  opacity: 0;
  transition: var(--transition);
}

.feature-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-card);
  transform: translateY(-4px);
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-icon {
  width: 52px;
  height: 52px;
  background: var(--orange-light);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 1.4rem;
  color: var(--orange-primary);
  border: 1px solid rgba(232, 152, 42, 0.15);
}

.feature-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.feature-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ========================================
   5. APP / PLATFORM
   ======================================== */
.platform {
  padding: 100px 0;
}

.platform-header {
  text-align: center;
  margin-bottom: 48px;
}

.platform-header h2 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 800;
  margin-top: 20px;
}

.platform-header h2 .highlight {
  color: var(--orange-primary);
}

.platform-header p {
  color: var(--text-light);
  max-width: 600px;
  margin: 16px auto 0;
  font-size: 1.05rem;
}

.platform-video {
  max-width: 400px;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-glow);
  aspect-ratio: 9/16;
  background: var(--bg-card);
}

.platform-video iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.platform-video-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  color: var(--text-muted);
  font-size: 1rem;
}

/* ========================================
   6. 3 PASSOS
   ======================================== */
.steps {
  padding: 100px 0;
  background: var(--bg-section);
}

.steps-header {
  text-align: center;
  margin-bottom: 64px;
}

.steps-header h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 900;
  margin-top: 20px;
}

.steps-header h2 .highlight {
  color: var(--orange-primary);
  border: 2px solid var(--orange-primary);
  padding: 2px 16px;
  border-radius: var(--radius-sm);
}

.steps-header p {
  color: var(--text-light);
  margin-top: 12px;
  font-size: 1.05rem;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 48px;
}

.step-card {
  text-align: center;
  position: relative;
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  background: var(--orange-primary);
  color: var(--bg-dark);
  font-weight: 900;
  font-size: 1.2rem;
  border-radius: var(--radius-sm);
  margin-bottom: 24px;
}

.step-image {
  width: 100%;
  max-width: 280px;
  height: 280px;
  margin: 0 auto 24px;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-subtle);
}

.step-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.step-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.step-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.5;
  max-width: 280px;
  margin: 0 auto;
}

.steps-cta {
  text-align: center;
}

/* ========================================
   7. USE CASES (ONDE USAR)
   ======================================== */
.use-cases {
  padding: 100px 0;
}

.use-cases-header {
  text-align: center;
  margin-bottom: 48px;
}

.use-cases-header h2 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 800;
  margin-top: 20px;
}

.use-cases-header h2 .highlight {
  color: var(--orange-primary);
}

.use-cases-header p {
  color: var(--text-light);
  font-size: 1rem;
  margin-top: 12px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.use-cases-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.use-case-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 28px 20px;
  text-align: center;
  transition: var(--transition);
}

.use-case-card:hover {
  border-color: var(--orange-primary);
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(255, 107, 0, 0.1);
}

.use-case-icon {
  font-size: 2.5rem;
  margin-bottom: 14px;
}

.use-case-card h4 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: white;
}

.use-case-card p {
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.5;
}

@media (max-width: 900px) {
  .use-cases-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 500px) {
  .use-cases-grid {
    grid-template-columns: 1fr;
  }
}

/* ========================================
   8. PRICING
   ======================================== */
.pricing {
  padding: 100px 0;
  background: var(--bg-section);
}

.pricing-wrapper {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  align-items: start;
}

.pricing-list-header {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 28px;
}

.pricing-list-header h2 {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--orange-primary);
}

.pricing-list-header span {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-light);
}

.pricing-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  margin-bottom: 10px;
  transition: var(--transition);
}

.pricing-item:hover {
  border-color: var(--border-card);
}

.pricing-item-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.pricing-check {
  width: 28px;
  height: 28px;
  background: var(--orange-primary);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  flex-shrink: 0;
}

.pricing-item-name {
  font-weight: 600;
  font-size: 0.95rem;
}

.pricing-item-price {
  color: #E05555;
  font-weight: 700;
  text-decoration: line-through;
  font-size: 0.95rem;
}

.pricing-item-included {
  color: var(--text-muted);
  font-weight: 600;
  font-size: 0.9rem;
}

.pricing-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  background: linear-gradient(135deg, rgba(232, 152, 42, 0.15), rgba(232, 152, 42, 0.05));
  border: 1px solid var(--orange-primary);
  border-radius: var(--radius-sm);
  margin-top: 16px;
}

.pricing-total-label {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--orange-primary);
}

.pricing-total-value {
  display: flex;
  align-items: center;
  gap: 12px;
}

.pricing-total-x {
  color: #E05555;
  font-size: 1.5rem;
  font-weight: 800;
}

.pricing-total-amount {
  color: #E05555;
  font-size: 1.3rem;
  font-weight: 800;
  text-decoration: line-through;
}

/* Offer card */
.pricing-offer {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  text-align: center;
}

.offer-badge {
  display: inline-block;
  background: var(--orange-primary);
  color: var(--bg-dark);
  font-weight: 800;
  font-size: 0.8rem;
  padding: 8px 24px;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.offer-from {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 8px;
}

.offer-from s {
  color: var(--text-muted);
}

.offer-today {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.offer-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
  margin-bottom: 8px;
}

.offer-price .currency {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-white);
}

.offer-price .amount {
  font-size: 4.5rem;
  font-weight: 900;
  line-height: 1;
  color: var(--text-white);
}

.offer-price .cents {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text-white);
}

.offer-installments {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 4px;
}

.offer-installments-detail {
  color: var(--text-muted);
  font-size: 0.8rem;
  margin-bottom: 28px;
}

.pricing-offer .cta-btn {
  width: 100%;
  font-size: 1rem;
}

.payment-methods {
  margin-top: 24px;
  text-align: center;
}

.payment-methods-title {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.payment-icons {
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 8px;
}

.payment-icon {
  background: var(--bg-card-hover);
  padding: 8px 16px;
  border-radius: 6px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-light);
  border: 1px solid var(--border-subtle);
}

.payment-brands {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 16px;
}

.payment-brands span {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: 0.5px;
}

.payment-secure {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.payment-secure span {
  color: var(--orange-primary);
}

/* ========================================
   9. SIZE
   ======================================== */
.size-section {
  padding: 100px 0;
}

.size-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.size-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-subtle);
}

.size-image img {
  width: 100%;
}

.size-content .section-badge {
  margin-bottom: 16px;
}

.size-content h2 {
  font-size: clamp(1.8rem, 3vw, 2.2rem);
  font-weight: 800;
  margin-bottom: 20px;
}

.size-content p {
  color: var(--text-light);
  line-height: 1.8;
  font-size: 1.05rem;
}

.size-content strong {
  color: var(--text-white);
}

/* ========================================
   10. GUARANTEE
   ======================================== */
.guarantee {
  padding: 80px 0;
  background: var(--bg-section);
}

.guarantee-wrapper {
  display: flex;
  align-items: center;
  gap: 40px;
  max-width: 800px;
  margin: 0 auto;
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  padding: 48px;
}

.guarantee-seal {
  flex-shrink: 0;
  width: 120px;
  height: 120px;
  background: linear-gradient(135deg, var(--orange-primary), #D4881E);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--bg-dark);
  text-align: center;
}

.guarantee-seal .seal-icon {
  font-size: 2.2rem;
}

.guarantee-seal .seal-text {
  font-size: 0.65rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 4px;
}

.guarantee-content h3 {
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 12px;
}

.guarantee-content h3 .highlight {
  color: var(--orange-primary);
}

.guarantee-content p {
  color: var(--text-light);
  line-height: 1.7;
  font-size: 0.95rem;
}

/* ========================================
   11. STATS
   ======================================== */
.stats {
  padding: 80px 0;
}

.stats-intro {
  text-align: center;
  font-size: 1.1rem;
  color: var(--text-light);
  margin-bottom: 48px;
}

.stats-intro strong {
  color: var(--text-white);
  font-weight: 700;
}

.stats-intro .highlight {
  color: var(--orange-primary);
  font-weight: 700;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.stat-card {
  text-align: center;
  padding: 40px 24px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  transition: var(--transition);
}

.stat-card:hover {
  border-color: var(--border-card);
  transform: translateY(-4px);
}

.stat-number {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 900;
  color: var(--orange-primary);
  margin-bottom: 8px;
}

.stat-label {
  font-size: 1rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* ========================================
   12. FAQ
   ======================================== */
.faq {
  padding: 100px 0;
  background: var(--bg-section);
}

.faq-header {
  text-align: center;
  margin-bottom: 48px;
}

.faq-header h2 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 800;
}

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

.faq-item {
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  margin-bottom: 8px;
  overflow: hidden;
  transition: var(--transition);
}

.faq-item:hover {
  border-color: var(--border-card);
}

.faq-item.active {
  border-color: var(--orange-primary);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 20px 24px;
  background: var(--bg-card);
  color: var(--text-white);
  font-size: 1rem;
  font-weight: 600;
  text-align: left;
  transition: var(--transition);
}

.faq-question:hover {
  background: var(--bg-card-hover);
}

.faq-item.active .faq-question {
  color: var(--orange-primary);
}

.faq-toggle {
  color: var(--orange-primary);
  font-size: 1.3rem;
  font-weight: 700;
  flex-shrink: 0;
  transition: var(--transition);
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 300px;
}

.faq-answer-inner {
  padding: 0 24px 20px;
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ========================================
   13. FOOTER
   ======================================== */
.footer {
  padding: 48px 0;
  border-top: 1px solid var(--border-subtle);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}

.footer-logo img {
  height: 160px;
}

.footer-text {
  color: var(--text-muted);
  font-size: 0.85rem;
}

.footer-links {
  display: flex;
  gap: 20px;
}

.footer-links a {
  color: var(--text-muted);
  font-size: 0.85rem;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--orange-primary);
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .steps-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }

  .pricing-wrapper {
    grid-template-columns: 1fr;
  }

  .size-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .header-nav {
    display: none;
  }

  .header-cta.desktop {
    display: none;
  }

  .mobile-toggle {
    display: flex;
  }

  .mobile-sticky-cta {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 16px 20px;
    background: rgba(10, 10, 15, 0.95);
    backdrop-filter: blur(15px);
    border-top: 1px solid rgba(232, 152, 42, 0.2);
    z-index: 999;
    animation: slideUp 0.5s ease forwards;
  }

  .mobile-sticky-cta .cta-btn {
    width: 100%;
    padding: 16px;
    font-size: 1.1rem;
    box-shadow: 0 0 20px rgba(232, 152, 42, 0.4);
  }

  body {
    padding-bottom: 80px;
    /* Space for sticky cta */
  }

  @keyframes slideUp {
    from {
      transform: translateY(100%);
    }

    to {
      transform: translateY(0);
    }
  }

  /* Mobile nav */
  .header-nav.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: rgba(10, 10, 15, 0.98);
    backdrop-filter: blur(20px);
    padding: 24px;
    gap: 20px;
    border-bottom: 1px solid var(--border-subtle);
  }

  .hero {
    padding: 120px 0 60px;
  }

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

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

  .steps-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .step-image {
    max-width: 220px;
  }

  .pricing-wrapper {
    grid-template-columns: 1fr;
  }

  .size-wrapper {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .guarantee-wrapper {
    flex-direction: column;
    text-align: center;
    padding: 32px 24px;
  }

  .stats-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

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

  .cta-btn {
    width: 100%;
    padding: 16px 32px;
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .hero-pills {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }
}

/* ========================================
   ANIMATIONS
   ======================================== */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ========================================
   11. CHECKOUT MODAL
   ======================================== */
.checkout-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(10px);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  overflow-y: auto;
}

.checkout-modal.active {
  display: flex;
}

.checkout-modal-content {
  background: var(--bg-card);
  width: 100%;
  max-width: 900px;
  border-radius: var(--radius-lg);
  position: relative;
  padding: 40px;
  border: 1px solid var(--border-card);
  box-shadow: 0 20px 80px rgba(0, 0, 0, 0.5);
}

.checkout-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
}

@media (max-width: 768px) {
  .checkout-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

.checkout-summary {
  background: var(--bg-alt);
  padding: 24px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-card);
}

.checkout-summary h3 {
  font-size: 1.2rem;
  margin-bottom: 24px;
  color: var(--text-white);
}

.summary-item.main-product {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border-card);
  margin-bottom: 20px;
}

.summary-item img {
  width: 60px;
  height: 60px;
  object-fit: contain;
  border-radius: var(--radius-sm);
  background: var(--bg-body);
}

.summary-item h4 {
  font-size: 1rem;
  color: var(--text-white);
  margin-bottom: 4px;
}

.summary-item p {
  font-size: 0.8rem;
  color: var(--primary-color);
  font-weight: 600;
}

.summary-item>span {
  margin-left: auto;
  font-weight: 600;
  color: var(--text-white);
}

.summary-benefits {
  list-style: none;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--border-card);
  padding-bottom: 20px;
}

.summary-benefits li {
  display: flex;
  gap: 8px;
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 8px;
}

.summary-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.2rem;
  margin-bottom: 24px;
  color: var(--text-muted);
}

.summary-total strong {
  color: var(--primary-color);
  font-size: 1.5rem;
}

.secure-checkout-badge {
  text-align: center;
  font-size: 0.8rem;
  color: var(--text-muted);
  background: rgba(0, 0, 0, 0.2);
  padding: 12px;
  border-radius: var(--radius-sm);
}

.secure-checkout-badge strong {
  color: #009ee3;
}

/* ========================================
   11b. CUSTOM PAYMENT TABS & PIX BOX
   ======================================== */
.payment-method-selector {
  display: flex;
  gap: 12px;
  margin-bottom: 24px;
}

.pay-method-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--bg-body);
  border: 1px solid var(--border-card);
  padding: 14px;
  border-radius: var(--radius-sm);
  color: var(--text-light);
  cursor: pointer;
  font-weight: 600;
  transition: all 0.2s ease;
}

.pay-method-btn input {
  display: none;
}

.pay-method-btn.active {
  border-color: #00c897;
  background: rgba(0, 200, 151, 0.05);
  color: white;
}

.custom-pix-box {
  background: #1e242a;
  border: 1px solid #00c897;
  border-radius: var(--radius-md);
  padding: 24px;
  position: relative;
  margin-bottom: 24px;
}

.btn-pix {
  background: #00c897;
  color: #000;
  width: 100%;
  font-weight: 700;
  font-size: 1.05rem;
  cursor: pointer;
  border: none;
  padding: 18px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.btn-pix:hover {
  background: #00e0a9;
  transform: translateY(-2px);
}

/* ========================================
   11c. CHECKOUT FORM STYLES
   ======================================== */
#customerForm .form-row {
  margin-bottom: 14px;
}

#customerForm .form-row-2 {
  display: flex;
  gap: 12px;
}

#customerForm .form-group {
  flex: 1;
  display: flex;
  flex-direction: column;
}

#customerForm label {
  font-size: 0.8rem;
  color: var(--text-light);
  margin-bottom: 4px;
  font-weight: 600;
}

#customerForm input,
#customerForm select {
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-card);
  background: var(--bg-body);
  color: white;
  font-size: 0.95rem;
  transition: border-color 0.2s ease;
}

#customerForm input:focus,
#customerForm select:focus {
  outline: none;
  border-color: #00c897;
}

#customerForm input::placeholder {
  color: var(--text-muted);
}

.btn-next-step {
  width: 100%;
  padding: 16px;
  margin-top: 8px;
  background: #00c897;
  color: #000;
  border: none;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 1.05rem;
  cursor: pointer;
  transition: var(--transition);
}

.btn-next-step:hover {
  background: #00e0a9;
  transform: translateY(-2px);
}

.btn-back-step {
  background: none;
  border: none;
  color: var(--text-light);
  cursor: pointer;
  font-size: 0.9rem;
  margin-bottom: 16px;
  padding: 0;
  transition: color 0.2s ease;
}

.btn-back-step:hover {
  color: #00c897;
}

/* ========================================
   12. PIX SUCCESS SCREEN
   ======================================== */
.pix-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  height: 100%;
  animation: fadeUp 0.6s ease;
}

.pix-success h3 {
  color: var(--primary-color);
  font-size: 1.5rem;
  margin-bottom: 16px;
}

.pix-success p {
  color: var(--text-light);
  font-size: 0.95rem;
  margin-bottom: 24px;
}

.pix-qr {
  background: white;
  padding: 16px;
  border-radius: var(--radius-md);
  margin-bottom: 24px;
}

.pix-qr img {
  width: 200px;
  height: 200px;
  display: block;
}

.pix-copypaste {
  width: 100%;
  position: relative;
}

.pix-copypaste input {
  width: 100%;
  padding: 12px 16px;
  background: var(--bg-body);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-sm);
  color: var(--text-white);
  font-family: monospace;
  font-size: 0.85rem;
  padding-right: 100px;
}

.pix-copy-btn {
  position: absolute;
  right: 4px;
  top: 4px;
  bottom: 4px;
  background: var(--primary-color);
  color: white;
  border: none;
  padding: 0 16px;
  border-radius: 4px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.pix-copy-btn:hover {
  background: var(--primary-hover);
}

.checkout-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  color: var(--text-muted);
  font-size: 2rem;
  line-height: 1;
  padding: 4px;
  transition: var(--transition);
}

.checkout-close:hover {
  color: var(--text-white);
}

#paymentBrick_container {
  min-height: 400px;
}

/* ========================================
   SUCCESS / CONGRATULATIONS PAGE
   ======================================== */
.success-page {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 32px;
  min-height: 400px;
  animation: successFadeIn 0.6s ease-out;
}

@keyframes successFadeIn {
  from {
    opacity: 0;
    transform: scale(0.9) translateY(20px);
  }

  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.success-icon {
  font-size: 5rem;
  margin-bottom: 20px;
  animation: successBounce 0.8s ease-out 0.3s both;
}

@keyframes successBounce {
  0% {
    transform: scale(0);
  }

  50% {
    transform: scale(1.3);
  }

  70% {
    transform: scale(0.9);
  }

  100% {
    transform: scale(1);
  }
}

.success-page h2 {
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--text-white);
  margin-bottom: 8px;
}

.success-main {
  font-size: 1.1rem;
  color: var(--text-light);
  margin-bottom: 32px;
}

.success-whatsapp-box {
  background: rgba(37, 211, 102, 0.08);
  border: 1px solid rgba(37, 211, 102, 0.25);
  border-radius: var(--radius-md);
  padding: 24px 28px;
  max-width: 420px;
  margin-bottom: 24px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  text-align: left;
}

.success-whatsapp-icon {
  font-size: 2rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.success-whatsapp-box p {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.6;
}

.success-whatsapp-box strong {
  color: #25D366;
}

.success-sub {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 32px;
}

.success-close-btn {
  min-width: 200px;
}