/* ===========================================
   SitePizzaria - Main Stylesheet
   Paleta: Vermelho #C0392B | Laranja #E67E22 | Amarelo #F1C40F
   Fundo escuro: #1A1A1A | Texto: #FFFFFF / #CCCCCC
=========================================== */

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Poppins', sans-serif;
  background-color: #0f0f0f;
  color: #e0e0e0;
  line-height: 1.7;
  overflow-x: hidden;
}

/* Variaveis CSS */
:root {
  --red: #C0392B;
  --red-dark: #962d22;
  --orange: #E67E22;
  --yellow: #F1C40F;
  --dark: #1A1A1A;
  --darker: #0f0f0f;
  --card-bg: #1e1e1e;
  --card-border: #2e2e2e;
  --text: #e0e0e0;
  --text-muted: #a0a0a0;
  --white: #ffffff;
  --gradient: linear-gradient(135deg, #C0392B, #E67E22);
  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 4px 24px rgba(0,0,0,0.4);
  --shadow-lg: 0 8px 48px rgba(0,0,0,0.6);
  --transition: 0.3s ease;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Tipografia */
h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  line-height: 1.2;
  color: #ffffff;
}

h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); }

p { color: #e0e0e0; }
a { text-decoration: none; color: inherit; }
strong { color: #ffffff; }

.highlight {
  background: linear-gradient(135deg, #C0392B, #E67E22);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-center { text-align: center; }
.mt-3 { margin-top: 3rem; }

/* Botoes */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 50px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: none;
  transition: all 0.3s ease;
  white-space: nowrap;
  text-decoration: none;
}

.btn-primary {
  background: linear-gradient(135deg, #C0392B, #E67E22);
  color: #ffffff;
  box-shadow: 0 4px 20px rgba(192, 57, 43, 0.4);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(192, 57, 43, 0.6);
  filter: brightness(1.1);
}

.btn-ghost {
  background: transparent;
  color: #ffffff;
  border: 2px solid rgba(255,255,255,0.3);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.6);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: #E67E22;
  border: 2px solid #E67E22;
}
.btn-outline:hover {
  background: #E67E22;
  color: #ffffff;
  transform: translateY(-2px);
}

.btn-whatsapp {
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: #ffffff;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
  justify-content: center;
  width: 100%;
  max-width: 420px;
}
.btn-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(37, 211, 102, 0.5);
}

.btn-nav {
  background: linear-gradient(135deg, #C0392B, #E67E22);
  color: #ffffff;
  padding: 10px 22px;
  font-size: 0.85rem;
}

.btn-lg {
  padding: 18px 36px;
  font-size: 1rem;
}

.btn-block {
  width: 100%;
  justify-content: center;
  max-width: 100%;
}

/* NAVBAR */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: transparent;
  transition: background 0.3s ease, box-shadow 0.3s ease;
  padding: 16px 0;
}

.navbar.scrolled {
  background: rgba(15,15,15,0.97);
  box-shadow: 0 2px 20px rgba(0,0,0,0.5);
  padding: 10px 0;
  backdrop-filter: blur(10px);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Poppins', sans-serif;
  font-size: 1.3rem;
  color: #ffffff;
}
.logo i { color: #E67E22; font-size: 1.5rem; }
.logo strong { color: #E67E22; }

.nav-links {
  display: flex;
  list-style: none;
  gap: 32px;
}
.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: #e0e0e0;
  transition: color 0.3s ease;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(135deg, #C0392B, #E67E22);
  transition: width 0.3s ease;
}
.nav-links a:hover { color: #ffffff; }
.nav-links a:hover::after { width: 100%; }
.nav-links a.active { color: #E67E22; }
.nav-links a.active::after { width: 100%; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #ffffff;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.mobile-menu {
  display: none;
  background: rgba(15,15,15,0.98);
  padding: 20px;
  border-top: 1px solid #2e2e2e;
}
.mobile-menu.open { display: block; }
.mobile-menu ul { list-style: none; display: flex; flex-direction: column; gap: 16px; }
.mobile-link { color: #e0e0e0; font-weight: 500; font-size: 1rem; }
.mobile-link:hover { color: #E67E22; }

/* SECOES COMUNS */
.section {
  padding: 100px 0;
  position: relative;
}

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

.section-tag {
  display: inline-block;
  background: rgba(230, 126, 34, 0.15);
  border: 1px solid rgba(230, 126, 34, 0.3);
  color: #E67E22;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 16px;
}
.section-tag.light {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.2);
  color: #ffffff;
}

.section-sub {
  max-width: 700px;
  margin: 16px auto 0;
  font-size: 1.05rem;
  color: #a0a0a0;
  line-height: 1.8;
}

/* HERO */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #0d0d0d;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(192,57,43,0.18) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(230,126,34,0.12) 0%, transparent 55%),
    radial-gradient(ellipse at 60% 80%, rgba(241,196,15,0.06) 0%, transparent 50%);
  pointer-events: none;
}

.hero-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.hero-particles::before,
.hero-particles::after {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(192,57,43,0.06) 0%, transparent 70%);
  animation: floatParticle 12s infinite ease-in-out;
}
.hero-particles::before {
  top: 10%;
  right: 5%;
  animation-delay: 0s;
}
.hero-particles::after {
  bottom: 15%;
  left: 3%;
  animation-delay: -5s;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(230,126,34,0.06) 0%, transparent 70%);
}

@keyframes floatParticle {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  33% { transform: translateY(-30px) rotate(10deg); }
  66% { transform: translateY(15px) rotate(-8deg); }
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 140px 20px 80px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(241,196,15,0.12);
  border: 1px solid rgba(241,196,15,0.3);
  color: #F1C40F;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 8px 20px;
  border-radius: 50px;
  margin-bottom: 28px;
}
.hero-badge i { color: #E67E22; }

.hero h1 {
  margin-bottom: 24px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: #b0b0b0;
  max-width: 680px;
  margin: 0 auto 40px;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.hero-trust {
  display: flex;
  gap: 28px;
  justify-content: center;
  flex-wrap: wrap;
}
.hero-trust span {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  color: #a0a0a0;
}
.hero-trust i { color: #E67E22; }

.hero-scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: #a0a0a0;
  font-size: 0.75rem;
  z-index: 2;
}
.hero-scroll-indicator i { font-size: 1rem; }

/* Animacoes */
@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(32px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(8px); }
}

.animate-fade-down { animation: fadeDown 0.7s ease both; }
.animate-fade-up { animation: fadeUp 0.7s ease both; }
.delay-1 { animation-delay: 0.15s; }
.delay-2 { animation-delay: 0.3s; }
.delay-3 { animation-delay: 0.45s; }
.bounce { animation: bounce 1.8s infinite; }

.animate-on-scroll {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* SECAO PROBLEMA */
.section-problema {
  background: #0f0f0f;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
}

.problem-card {
  background: #1e1e1e;
  border: 1px solid #2e2e2e;
  border-radius: 12px;
  padding: 32px 28px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.problem-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(135deg, #C0392B, #E67E22);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.problem-card:hover {
  border-color: rgba(192, 57, 43, 0.4);
  transform: translateY(-4px);
  box-shadow: 0 4px 24px rgba(0,0,0,0.4);
}
.problem-card:hover::before { opacity: 1; }

.problem-icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: rgba(192, 57, 43, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 1.4rem;
  color: #C0392B;
}

.problem-card h3 { margin-bottom: 10px; font-size: 1.1rem; }
.problem-card p  { font-size: 0.9rem; color: #a0a0a0; line-height: 1.7; }

/* SECAO SOLUCAO */
.section-solucao {
  background: linear-gradient(180deg, #111 0%, #1A1A1A 100%);
}

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

.solucao-text .section-tag { margin-bottom: 16px; }
.solucao-text h2 { margin-bottom: 20px; }
.solucao-text p { color: #a0a0a0; margin-bottom: 16px; line-height: 1.8; }

.solucao-quote {
  border-left: 3px solid #E67E22;
  padding-left: 16px;
  color: #e0e0e0 !important;
  font-style: italic;
  margin: 24px 0 !important;
}

/* Mockup Browser */
.mockup-browser {
  background: #1a1a1a;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 48px rgba(0,0,0,0.6);
  border: 1px solid #2e2e2e;
}

.browser-bar {
  background: #252525;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid #2e2e2e;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}
.dot.red    { background: #FF5F57; }
.dot.yellow { background: #FEBC2E; }
.dot.green  { background: #28C840; }

.browser-url {
  flex: 1;
  background: #1a1a1a;
  border-radius: 6px;
  padding: 4px 12px;
  font-size: 0.75rem;
  color: #666;
  display: flex;
  align-items: center;
  gap: 6px;
  margin-left: 8px;
}
.browser-url i { color: #28C840; font-size: 0.7rem; }

.mockup-hero-bg {
  background: linear-gradient(135deg, #1a0a0a 0%, #2d1008 50%, #1a0a0a 100%);
  padding: 32px 24px;
  display: flex;
  gap: 20px;
  align-items: center;
}

.mockup-pizza-icon {
  font-size: 3rem;
  opacity: 0.7;
  color: #E67E22;
  flex-shrink: 0;
}

.mockup-text-lines {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.mock-line {
  height: 10px;
  border-radius: 5px;
  background: rgba(255,255,255,0.15);
}
.mock-line.wide   { width: 90%; }
.mock-line.medium { width: 65%; }
.mock-line.short  { width: 70%; margin-top: 6px; }

.mock-btn {
  display: inline-block;
  background: linear-gradient(135deg, #C0392B, #E67E22);
  color: white;
  font-size: 0.7rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 20px;
  width: fit-content;
  margin-top: 4px;
}

.mockup-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  padding: 16px;
  background: #151515;
}

.mock-card {
  background: #1e1e1e;
  border-radius: 8px;
  padding: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  font-size: 1.1rem;
  border: 1px solid #2a2a2a;
}
.mock-card i { color: #E67E22; }

.solucao-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(241,196,15,0.08);
  border: 1px solid rgba(241,196,15,0.2);
  border-radius: 12px;
  padding: 14px 20px;
  margin-top: 20px;
  font-size: 0.9rem;
  color: #F1C40F;
  font-weight: 600;
}
.solucao-badge i { font-size: 1.3rem; color: #E67E22; }

/* SECAO BENEFICIOS */
.section-beneficios {
  background: #0f0f0f;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.benefit-card {
  background: #1e1e1e;
  border: 1px solid #2e2e2e;
  border-radius: 12px;
  padding: 32px 28px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.benefit-card:hover {
  border-color: rgba(192, 57, 43, 0.4);
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(192, 57, 43, 0.15);
}

.benefit-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #C0392B, #E67E22);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: #ffffff;
  margin-bottom: 20px;
  box-shadow: 0 4px 16px rgba(192,57,43,0.3);
}

.benefit-card h3 { margin-bottom: 10px; font-size: 1.05rem; }
.benefit-card p  { font-size: 0.88rem; color: #a0a0a0; line-height: 1.7; }

/* SECAO COMO FUNCIONA */
.section-como-funciona {
  background: linear-gradient(180deg, #1A1A1A 0%, #111 100%);
}

.timeline {
  display: flex;
  flex-direction: column;
  max-width: 900px;
  margin: 0 auto;
}

.timeline-item {
  display: grid;
  grid-template-columns: 80px 1fr;
  align-items: stretch;
}

.timeline-step {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.step-number {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, #C0392B, #E67E22);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: #ffffff;
  box-shadow: 0 4px 20px rgba(192,57,43,0.4);
  flex-shrink: 0;
  z-index: 1;
  margin-top: 32px;
}

.step-line {
  flex: 1;
  width: 2px;
  background: linear-gradient(180deg, rgba(230,126,34,0.6), rgba(230,126,34,0.1));
  margin: 0 auto;
  min-height: 40px;
}

.timeline-card {
  background: #1e1e1e;
  border: 1px solid #2e2e2e;
  border-radius: 12px;
  padding: 28px 32px;
  margin: 20px 0 20px 24px;
  transition: all 0.3s ease;
}
.timeline-card:hover {
  border-color: rgba(230,126,34,0.4);
  box-shadow: 0 4px 24px rgba(0,0,0,0.4);
}

.timeline-icon {
  font-size: 1.8rem;
  color: #E67E22;
  margin-bottom: 12px;
}

.timeline-card h3 { margin-bottom: 8px; font-size: 1.15rem; }
.timeline-card p  { color: #a0a0a0; font-size: 0.9rem; line-height: 1.7; margin-bottom: 14px; }

.timeline-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(230,126,34,0.1);
  border: 1px solid rgba(230,126,34,0.2);
  color: #E67E22;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 50px;
}

/* SECAO DEPOIMENTOS */
.section-depoimentos {
  background: #0f0f0f;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
  align-items: stretch;
}

.testimonial-card {
  background: #1e1e1e;
  border: 1px solid #2e2e2e;
  border-radius: 20px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: all 0.3s ease;
  position: relative;
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 24px rgba(0,0,0,0.4);
  border-color: rgba(192,57,43,0.3);
}

.testimonial-card.featured {
  border-color: #E67E22;
  background: linear-gradient(145deg, #1e1e1e, #251510);
  box-shadow: 0 4px 32px rgba(230,126,34,0.15);
}

.featured-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, #C0392B, #E67E22);
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 50px;
  width: fit-content;
}

.testimonial-stars { color: #F1C40F; font-size: 0.9rem; }
.testimonial-stars i { margin-right: 2px; }

.testimonial-card blockquote {
  font-size: 0.95rem;
  color: #e0e0e0;
  line-height: 1.8;
  flex: 1;
  font-style: italic;
  position: relative;
  padding-left: 20px;
}
.testimonial-card blockquote::before {
  content: '\201C';
  position: absolute;
  left: 0;
  top: -8px;
  font-size: 2.5rem;
  color: #E67E22;
  font-family: 'Playfair Display', serif;
  line-height: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, #C0392B, #E67E22);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  color: #ffffff;
  flex-shrink: 0;
}

.author-info strong { display: block; font-size: 0.95rem; color: #ffffff; }
.author-info span   { font-size: 0.8rem; color: #a0a0a0; }

.testimonial-result {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(230,126,34,0.08);
  border: 1px solid rgba(230,126,34,0.15);
  border-radius: 8px;
  padding: 8px 14px;
  font-size: 0.82rem;
  color: #E67E22;
  font-weight: 600;
}

/* SECAO PRECOS */
.section-precos {
  background: linear-gradient(180deg, #111 0%, #1A1A1A 100%);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
  align-items: stretch;
  margin-bottom: 48px;
}

.pricing-card {
  background: #1e1e1e;
  border: 1px solid #2e2e2e;
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
  position: relative;
}
.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 48px rgba(0,0,0,0.6);
}

.pricing-card.featured {
  border-color: #E67E22;
  box-shadow: 0 8px 40px rgba(230,126,34,0.2);
  transform: scale(1.03);
}
.pricing-card.featured:hover {
  transform: scale(1.03) translateY(-6px);
}

.popular-badge {
  background: linear-gradient(135deg, #C0392B, #E67E22);
  color: #ffffff;
  text-align: center;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 8px;
  letter-spacing: 0.5px;
}

.pricing-header {
  padding: 32px 28px 24px;
  text-align: center;
  border-bottom: 1px solid #2e2e2e;
}

.plan-medal {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(192,57,43,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: #a0a0a0;
  margin: 0 auto 16px;
}
.plan-medal.gold    { background: rgba(241,196,15,0.15); color: #F1C40F; }
.plan-medal.diamond { background: rgba(74,144,226,0.15); color: #74b9ff; }

.pricing-header h3 { margin-bottom: 16px; font-size: 1.2rem; }

.price {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 4px;
}
.price-currency {
  font-size: 1.2rem;
  font-weight: 700;
  color: #E67E22;
  margin-bottom: 6px;
}
.price-value {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 900;
  color: #ffffff;
  line-height: 1;
}
.price-period {
  font-size: 0.75rem;
  color: #a0a0a0;
  margin-bottom: 6px;
}

.pricing-features {
  list-style: none;
  padding: 24px 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  color: #e0e0e0;
  line-height: 1.5;
}
.pricing-features i {
  color: #2ecc71;
  font-size: 0.8rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.plan-ideal {
  font-size: 0.8rem;
  color: #a0a0a0;
  font-style: italic;
  padding: 0 28px;
  margin-bottom: 8px;
}

.pricing-card .btn {
  margin: 16px 28px 28px;
  justify-content: center;
}

/* Urgência */
.urgency-bar {
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(241, 196, 15, 0.07);
  border: 1px solid rgba(241, 196, 15, 0.25);
  border-radius: 12px;
  padding: 16px 28px;
  max-width: 800px;
  margin: 0 auto 32px;
  font-size: 0.9rem;
  color: #e0e0e0;
  line-height: 1.6;
}
.urgency-bar i {
  color: #F1C40F;
  font-size: 1.3rem;
  flex-shrink: 0;
}
.urgency-bar strong { color: #F1C40F; }

/* Garantia */
.guarantee-box {
  display: flex;
  align-items: center;
  gap: 24px;
  background: rgba(39, 174, 96, 0.08);
  border: 1px solid rgba(39, 174, 96, 0.25);
  border-radius: 20px;
  padding: 32px 40px;
  max-width: 700px;
  margin: 0 auto;
}

.guarantee-icon {
  font-size: 3rem;
  color: #2ecc71;
  flex-shrink: 0;
}

.guarantee-text h3 { color: #2ecc71; margin-bottom: 6px; font-size: 1.2rem; }
.guarantee-text p  { color: #a0a0a0; font-size: 0.9rem; line-height: 1.6; }

/* SECAO FAQ */
.section-faq {
  background: #0f0f0f;
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: #1e1e1e;
  border: 1px solid #2e2e2e;
  border-radius: 12px;
  overflow: hidden;
  transition: border-color 0.3s ease;
}
.faq-item.open { border-color: rgba(230,126,34,0.4); }

.faq-question {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  text-align: left;
  color: #ffffff;
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  transition: background 0.3s ease;
}
.faq-question:hover { background: rgba(255,255,255,0.03); }
.faq-question span { display: flex; align-items: center; gap: 10px; }
.faq-question span i { color: #E67E22; font-size: 1rem; }

.faq-chevron {
  color: #E67E22;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}
.faq-item.open .faq-chevron { transform: rotate(180deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.faq-item.open .faq-answer { max-height: 300px; }

.faq-answer p {
  padding: 0 24px 20px;
  color: #a0a0a0;
  font-size: 0.9rem;
  line-height: 1.8;
}

/* CTA FINAL */
.section-cta-final {
  background: linear-gradient(160deg, #1a0500 0%, #2d0d00 40%, #1a0500 100%);
  position: relative;
  overflow: hidden;
}

.cta-bg-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(192,57,43,0.25) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 100%, rgba(230,126,34,0.12) 0%, transparent 50%);
  pointer-events: none;
}

.cta-inner { position: relative; z-index: 1; }

.cta-content {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.cta-content h2 { margin: 16px 0 24px; }
.cta-content > p { color: #a0a0a0; margin-bottom: 16px; line-height: 1.8; }

.cta-urgency {
  color: #F1C40F !important;
  font-size: 1.05rem;
  margin: 24px 0 12px !important;
}

.cta-social-proof {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #a0a0a0 !important;
  font-size: 0.9rem;
  margin: 0 0 28px !important;
}
.cta-social-proof i { color: #E67E22; }
.cta-social-proof strong { color: #ffffff; }

.cta-form {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px;
  padding: 36px 32px;
  margin-bottom: 24px;
  text-align: left;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 0.82rem;
  font-weight: 600;
  color: #e0e0e0;
  display: flex;
  align-items: center;
  gap: 6px;
}
.form-group label i { color: #E67E22; }

.form-group input,
.form-group select {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 8px;
  padding: 12px 16px;
  color: #ffffff;
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  transition: border-color 0.3s ease;
  outline: none;
}
.form-group input::placeholder { color: #555; }
.form-group input:focus,
.form-group select:focus {
  border-color: #E67E22;
  box-shadow: 0 0 0 3px rgba(230,126,34,0.15);
}
.form-group select option { background: #1a1a1a; color: #ffffff; }

.cta-divider {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 20px 0;
  color: #a0a0a0;
  font-size: 0.85rem;
}
.cta-divider::before,
.cta-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(255,255,255,0.1);
}

.btn-whatsapp { margin: 0 auto; }

.cta-trust {
  display: flex;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
  margin-top: 24px;
}
.cta-trust span {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  color: #a0a0a0;
}
.cta-trust i { color: #2ecc71; }

/* FOOTER */
.footer {
  background: #080808;
  border-top: 1px solid #1e1e1e;
  padding: 60px 0 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-logo .logo { margin-bottom: 12px; }
.footer-logo p {
  font-size: 0.88rem;
  color: #a0a0a0;
  max-width: 260px;
  line-height: 1.7;
}

.footer-info p {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  color: #a0a0a0;
  margin-bottom: 10px;
}
.footer-info i { color: #E67E22; width: 16px; }

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-links a {
  font-size: 0.88rem;
  color: #a0a0a0;
  transition: color 0.3s ease;
}
.footer-links a:hover { color: #E67E22; }

.footer-bottom {
  border-top: 1px solid #1e1e1e;
  padding: 20px 0;
  text-align: center;
}
.footer-bottom p  { font-size: 0.82rem; color: #555; }
.footer-bottom .fa-heart { color: #C0392B; }
.footer-bottom .fa-pizza-slice { color: #E67E22; }

/* BOTAO FLUTUANTE WHATSAPP */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  z-index: 999;
  transition: all 0.3s ease;
  animation: pulseWpp 2.5s infinite;
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 32px rgba(37,211,102,0.6);
}

@keyframes pulseWpp {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.4); }
  50%       { box-shadow: 0 4px 32px rgba(37,211,102,0.7), 0 0 0 10px rgba(37,211,102,0.05); }
}

/* BACK TO TOP */
.back-to-top {
  position: fixed;
  bottom: 100px;
  right: 28px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  cursor: pointer;
  z-index: 998;
  transition: all 0.3s ease;
  opacity: 0;
  pointer-events: none;
}
.back-to-top.visible {
  opacity: 1;
  pointer-events: all;
}
.back-to-top:hover {
  background: linear-gradient(135deg, #C0392B, #E67E22);
  border-color: transparent;
  transform: translateY(-2px);
}

/* FORM SUCCESS */
.form-success {
  display: none;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
  padding: 32px 20px;
  animation: fadeUp 0.5s ease both;
}
.form-success.show {
  display: flex;
}
.form-success i {
  font-size: 3rem;
  color: #2ecc71;
}
.form-success h3 {
  font-size: 1.3rem;
  color: #ffffff;
  margin: 0;
}
.form-success p {
  color: #a0a0a0;
  font-size: 0.95rem;
  line-height: 1.7;
  max-width: 400px;
}

/* SCROLLBAR */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #0f0f0f; }
::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #C0392B, #E67E22);
  border-radius: 3px;
}

/* RESPONSIVO */
@media (max-width: 1024px) {
  .solucao-inner { grid-template-columns: 1fr; gap: 40px; }
  .footer-inner  { grid-template-columns: 1fr 1fr; }
  .footer-logo   { grid-column: 1 / -1; }
  .pricing-card.featured { transform: scale(1); }
  .pricing-card.featured:hover { transform: translateY(-6px); }
}

@media (max-width: 768px) {
  .section { padding: 72px 0; }
  .nav-links, .btn-nav { display: none; }
  .hamburger { display: flex; }
  .hero-actions { flex-direction: column; align-items: center; }
  .hero-actions .btn { width: 100%; max-width: 360px; justify-content: center; }
  .hero-trust { flex-direction: column; align-items: center; gap: 12px; }
  .timeline-item { grid-template-columns: 60px 1fr; }
  .step-number { width: 44px; height: 44px; font-size: 1.1rem; }
  .timeline-card { padding: 20px; margin-left: 12px; }
  .pricing-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .guarantee-box { flex-direction: column; text-align: center; padding: 24px; }
}

@media (max-width: 480px) {
  .cards-grid, .benefits-grid, .testimonials-grid { grid-template-columns: 1fr; }
  .cta-form { padding: 24px 20px; }
  .hero-badge { font-size: 0.75rem; padding: 6px 14px; }
  .section-header { margin-bottom: 40px; }
  .guarantee-box { padding: 20px 16px; }
  .whatsapp-float { width: 52px; height: 52px; font-size: 1.5rem; bottom: 20px; right: 20px; }
  .back-to-top { bottom: 82px; right: 20px; }
}
