/* =============================================
   Radio Loja - Estilos Principais
   Versao: 2.0 (SEO Otimizado)
   ============================================= */

/* --- Variaveis & Reset --- */
:root {
  --primary: #ff6b00;
  --secondary: #ff0080;
  --accent: #00d4ff;
  --dark: #0a0a1a;
  --darker: #060612;
  --text: #ffffff;
  --text-muted: rgba(255,255,255,0.7);
  --glow-primary: rgba(255,107,0,0.4);
  --glow-secondary: rgba(255,0,128,0.3);
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--dark);
  color: var(--text);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

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

/* --- Background Effects --- */
.bg-grid {
  position: fixed; inset: 0;
  background-image:
    linear-gradient(rgba(255,107,0,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,107,0,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  z-index: 0; pointer-events: none;
}

.bg-gradients {
  position: fixed; inset: 0; z-index: 0; pointer-events: none; overflow: hidden;
}

.bg-gradients .orb {
  position: absolute; border-radius: 50%; filter: blur(100px); opacity: 0.3;
  animation: floatOrb 20s ease-in-out infinite;
}

.bg-gradients .orb:nth-child(1) {
  width: 600px; height: 600px; background: var(--glow-primary);
  top: -200px; left: -200px;
}

.bg-gradients .orb:nth-child(2) {
  width: 500px; height: 500px; background: var(--glow-secondary);
  bottom: -200px; right: -200px; animation-delay: -7s;
}

.bg-gradients .orb:nth-child(3) {
  width: 400px; height: 400px; background: rgba(0,212,255,0.2);
  top: 50%; left: 50%; animation-delay: -14s;
}

@keyframes floatOrb {
  0%, 100% { transform: translate(0, 0) scale(1); }
  25% { transform: translate(100px, -80px) scale(1.1); }
  50% { transform: translate(-60px, 120px) scale(0.9); }
  75% { transform: translate(80px, 60px) scale(1.05); }
}

/* --- Container --- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; position: relative; z-index: 1; }

/* --- Navbar --- */
.navbar {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 100;
  padding: 16px 0; transition: all 0.4s ease; background: transparent;
}

.navbar.scrolled {
  background: rgba(10,10,26,0.95); backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,107,0,0.15); padding: 10px 0;
}

.navbar .container { display: flex; justify-content: space-between; align-items: center; }

.logo { display: flex; align-items: center; gap: 12px; }

.logo-icon {
  width: 48px; height: 48px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 12px; display: flex; align-items: center; justify-content: center;
  font-size: 24px; font-weight: 900; color: white;
  box-shadow: 0 0 30px var(--glow-primary);
}

.logo-text {
  font-size: 22px; font-weight: 900;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}

.logo-text span {
  font-weight: 300; -webkit-text-fill-color: var(--text-muted);
  font-size: 14px; display: block;
}

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

.nav-links a {
  color: var(--text-muted); font-size: 15px; font-weight: 500;
  transition: all 0.3s ease; position: relative;
}

.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  transition: width 0.3s ease;
}

.nav-links a:hover { color: var(--text); }
.nav-links a:hover::after { width: 100%; }

.menu-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; z-index: 101; }
.menu-toggle span {
  display: block; width: 24px; height: 2px; background: var(--text);
  margin: 5px 0; transition: all 0.3s ease; border-radius: 2px;
}
.menu-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* --- Botoes --- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 28px; border-radius: 50px; font-weight: 600;
  font-size: 15px; cursor: pointer; border: none;
  transition: all 0.3s ease; font-family: var(--font);
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: white; box-shadow: 0 4px 25px var(--glow-primary);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 40px var(--glow-primary); }

.btn-outline {
  background: transparent; color: var(--text); border: 1px solid rgba(255,255,255,0.2);
}
.btn-outline:hover { border-color: var(--primary); background: rgba(255,107,0,0.1); }

.btn-whatsapp {
  background: #25D366; color: white; box-shadow: 0 4px 25px rgba(37,211,102,0.3);
}
.btn-whatsapp:hover { transform: translateY(-2px); box-shadow: 0 8px 40px rgba(37,211,102,0.4); }

.btn-pix {
  display: flex; align-items: center; justify-content: center; gap: 8px; width: 100%;
  padding: 14px; border-radius: 12px; font-weight: 700; font-size: 15px;
  cursor: pointer; border: none; font-family: var(--font);
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: white; box-shadow: 0 4px 20px var(--glow-primary); transition: all 0.3s ease;
}
.btn-pix:hover { transform: translateY(-2px); box-shadow: 0 8px 30px var(--glow-primary); }
.btn-pix:disabled { opacity: 0.5; cursor: not-allowed; transform: none; }

.btn-trial {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 16px 40px; border-radius: 50px; font-weight: 700; font-size: 17px;
  cursor: pointer; border: none; font-family: var(--font);
  background: linear-gradient(135deg, #00c853, #00e676); color: #fff;
  box-shadow: 0 4px 30px rgba(0,200,83,0.3); transition: all 0.3s ease;
}
.btn-trial:hover { transform: translateY(-2px); box-shadow: 0 8px 40px rgba(0,200,83,0.4); }
.btn-trial:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }

/* --- Hero --- */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  padding-top: 100px; position: relative; overflow: hidden;
}

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

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 18px; border-radius: 50px;
  background: rgba(255,107,0,0.1); border: 1px solid rgba(255,107,0,0.3);
  font-size: 13px; font-weight: 600; color: var(--primary); margin-bottom: 24px;
}

.hero-badge .dot {
  width: 8px; height: 8px; background: var(--primary);
  border-radius: 50%; animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

.hero h1 {
  font-size: 56px; font-weight: 900; line-height: 1.1; margin-bottom: 20px;
}

.hero h1 .highlight {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}

.hero h1 .highlight-accent {
  background: linear-gradient(135deg, var(--accent), var(--primary));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}

.hero p {
  font-size: 18px; color: var(--text-muted); line-height: 1.7;
  margin-bottom: 32px; max-width: 520px;
}

.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-stats { display: flex; gap: 40px; margin-top: 48px; }

.hero-stat h3 {
  font-size: 32px; font-weight: 900;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}

.hero-stat p { font-size: 14px; color: var(--text-muted); margin-bottom: 0; }

/* --- Hero Visual (Phone Mock) --- */
.hero-visual { position: relative; display: flex; justify-content: center; align-items: center; }

.hero-visual .phone-mock {
  width: 100%; max-width: 380px; aspect-ratio: 9/16;
  background: linear-gradient(145deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
  border: 1px solid rgba(255,255,255,0.1); border-radius: 32px; padding: 16px;
  backdrop-filter: blur(20px); position: relative; overflow: hidden;
  box-shadow: 0 0 60px var(--glow-primary), inset 0 0 60px rgba(255,107,0,0.05);
}

.phone-mock .screen {
  width: 100%; height: 100%; border-radius: 20px;
  background: rgba(0,0,0,0.4); padding: 20px; display: flex;
  flex-direction: column; gap: 12px;
}

.phone-mock .now-playing {
  font-size: 11px; text-transform: uppercase; letter-spacing: 2px;
  color: var(--primary); font-weight: 600;
}

.phone-mock .track { font-size: 18px; font-weight: 700; }
.phone-mock .artist { font-size: 13px; color: var(--text-muted); }

.phone-mock .waveform {
  display: flex; gap: 3px; align-items: center; height: 50px; margin: 8px 0;
}

.phone-mock .waveform span {
  width: 4px; background: linear-gradient(to top, var(--primary), var(--secondary));
  border-radius: 2px; animation: wave 1.2s ease-in-out infinite;
}
.phone-mock .waveform span:nth-child(1) { height: 20px; animation-delay: 0s; }
.phone-mock .waveform span:nth-child(2) { height: 35px; animation-delay: 0.1s; }
.phone-mock .waveform span:nth-child(3) { height: 25px; animation-delay: 0.2s; }
.phone-mock .waveform span:nth-child(4) { height: 45px; animation-delay: 0.3s; }
.phone-mock .waveform span:nth-child(5) { height: 30px; animation-delay: 0.4s; }
.phone-mock .waveform span:nth-child(6) { height: 40px; animation-delay: 0.5s; }
.phone-mock .waveform span:nth-child(7) { height: 22px; animation-delay: 0.6s; }
.phone-mock .waveform span:nth-child(8) { height: 38px; animation-delay: 0.7s; }
.phone-mock .waveform span:nth-child(9) { height: 28px; animation-delay: 0.8s; }
.phone-mock .waveform span:nth-child(10) { height: 42px; animation-delay: 0.9s; }
.phone-mock .waveform span:nth-child(11) { height: 18px; animation-delay: 0.10s; }
.phone-mock .waveform span:nth-child(12) { height: 36px; animation-delay: 0.11s; }

@keyframes wave {
  0%, 100% { transform: scaleY(0.5); }
  50% { transform: scaleY(1); }
}

.phone-mock .commercial {
  padding: 10px 14px;
  background: linear-gradient(135deg, rgba(255,107,0,0.15), rgba(255,0,128,0.1));
  border: 1px solid rgba(255,107,0,0.2); border-radius: 10px;
  font-size: 12px; color: var(--primary); font-weight: 600;
  text-align: center; margin-top: auto;
}

.phone-mock .commercial .live-tag { display: inline-flex; align-items: center; gap: 6px; }
.phone-mock .commercial .live-tag .live-dot {
  width: 6px; height: 6px; background: #ff0000;
  border-radius: 50%; animation: pulse 1.5s infinite;
}

.float-element {
  position: absolute; padding: 12px 18px; border-radius: 12px;
  background: rgba(255,255,255,0.05); backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.08); font-size: 13px; font-weight: 600;
  animation: float 6s ease-in-out infinite; white-space: nowrap;
}
.float-element:nth-child(2) { top: 5%; right: -20%; animation-delay: 0s; color: var(--accent); }
.float-element:nth-child(3) { bottom: 15%; left: -25%; animation-delay: -2s; color: var(--primary); }
.float-element:nth-child(4) { top: 50%; right: -18%; animation-delay: -4s; color: var(--secondary); }

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* --- Sections --- */
section { padding: 80px 0; position: relative; }

.section-tag {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 600; color: var(--primary);
  text-transform: uppercase; letter-spacing: 2px; margin-bottom: 16px;
}

.section-title {
  font-size: 42px; font-weight: 900; margin-bottom: 16px; line-height: 1.2;
}

.section-title .highlight {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}

.section-desc {
  font-size: 17px; color: var(--text-muted); line-height: 1.7;
  max-width: 600px; margin-bottom: 48px;
}

.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }

/* --- Benefits Grid --- */
.benefits-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

.benefit-card {
  padding: 36px 28px; border-radius: 20px;
  background: linear-gradient(145deg, rgba(255,255,255,0.04), rgba(255,255,255,0.01));
  border: 1px solid rgba(255,255,255,0.06);
  transition: all 0.4s ease; position: relative; overflow: hidden;
}

.benefit-card::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,107,0,0.05), rgba(255,0,128,0.03));
  opacity: 0; transition: opacity 0.4s ease;
}

.benefit-card:hover { transform: translateY(-4px); border-color: rgba(255,107,0,0.2); box-shadow: 0 20px 60px rgba(255,107,0,0.1); }
.benefit-card:hover::before { opacity: 1; }
.benefit-card > * { position: relative; z-index: 1; }

.benefit-icon {
  width: 56px; height: 56px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 24px; margin-bottom: 20px;
}

.benefit-card h3 { font-size: 20px; font-weight: 700; margin-bottom: 12px; }
.benefit-card p { font-size: 15px; color: var(--text-muted); line-height: 1.6; }

/* --- Steps --- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; position: relative; }

.steps::before {
  content: ''; position: absolute; top: 60px; left: 15%; width: 70%; height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--secondary), var(--accent));
  opacity: 0.3;
}

.step { text-align: center; padding: 40px 24px; }

.step-number {
  width: 64px; height: 64px; margin: 0 auto 20px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 24px; font-weight: 900;
  background: linear-gradient(135deg, rgba(255,107,0,0.15), rgba(255,0,128,0.1));
  border: 1px solid rgba(255,107,0,0.2); color: var(--primary);
  transition: all 0.3s ease;
}

.step:hover .step-number { box-shadow: 0 0 40px var(--glow-primary); transform: scale(1.05); }
.step h3 { font-size: 20px; font-weight: 700; margin-bottom: 12px; }
.step p { font-size: 15px; color: var(--text-muted); line-height: 1.6; }

/* --- YouTube Section --- */
.youtube-section {
  background: linear-gradient(135deg, rgba(255,0,0,0.05), rgba(255,0,0,0.01));
  border: 1px solid rgba(255,0,0,0.1); border-radius: 24px;
  padding: 60px; display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center;
}

.youtube-section .yt-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 14px; background: #ff0000; border-radius: 6px;
  font-size: 13px; font-weight: 700; color: white; margin-bottom: 16px;
}

.youtube-section h2 { font-size: 36px; font-weight: 900; margin-bottom: 16px; }
.youtube-section p { font-size: 16px; color: var(--text-muted); line-height: 1.7; margin-bottom: 24px; }

.yt-channel-link {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 14px 28px; background: #ff0000; color: white;
  text-decoration: none; border-radius: 50px; font-weight: 700; transition: all 0.3s ease;
}
.yt-channel-link:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(255,0,0,0.4); }

.yt-embed { width: 100%; aspect-ratio: 16/9; border-radius: 16px; overflow: hidden; box-shadow: 0 20px 60px rgba(255,0,0,0.2); }
.yt-embed iframe { width: 100%; height: 100%; border: none; }

/* --- Testimonials --- */
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

.testimonial-card {
  padding: 32px; border-radius: 20px;
  background: linear-gradient(145deg, rgba(255,255,255,0.04), rgba(255,255,255,0.01));
  border: 1px solid rgba(255,255,255,0.06);
}

.testimonial-card .stars { color: #ffc107; font-size: 16px; margin-bottom: 12px; }
.testimonial-card blockquote {
  font-size: 15px; line-height: 1.7; color: var(--text-muted);
  margin-bottom: 16px; font-style: italic;
}

.testimonial-card .author { display: flex; align-items: center; gap: 12px; }
.testimonial-card .author-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 16px;
}
.testimonial-card .author-info h4 { font-size: 14px; font-weight: 600; }
.testimonial-card .author-info span { font-size: 12px; color: var(--text-muted); }

/* --- Pricing --- */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

.pricing-card {
  padding: 40px 32px; border-radius: 20px;
  background: linear-gradient(145deg, rgba(255,255,255,0.04), rgba(255,255,255,0.01));
  border: 1px solid rgba(255,255,255,0.06);
  transition: all 0.4s ease; position: relative;
}

.pricing-card.featured {
  border-color: rgba(255,107,0,0.3);
  background: linear-gradient(145deg, rgba(255,107,0,0.08), rgba(255,0,128,0.04));
  transform: scale(1.05);
}

.pricing-card.featured .popular-tag {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  padding: 6px 20px; background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 50px; font-size: 13px; font-weight: 700; color: white; white-space: nowrap;
}

.pricing-card h3 { font-size: 18px; font-weight: 600; color: var(--text-muted); margin-bottom: 12px; }
.pricing-card .price { font-size: 42px; font-weight: 900; margin-bottom: 4px; }
.pricing-card .price span { font-size: 16px; font-weight: 400; color: var(--text-muted); }
.pricing-card .period { font-size: 14px; color: var(--text-muted); margin-bottom: 24px; }
.pricing-card ul { list-style: none; margin-bottom: 32px; }
.pricing-card ul li {
  padding: 8px 0; font-size: 15px; color: var(--text-muted);
  display: flex; align-items: center; gap: 10px;
}
.pricing-card ul li::before { content: '✓'; color: var(--primary); font-weight: 700; }

/* --- Trial Section --- */
.trial-section {
  background: linear-gradient(135deg, rgba(0,212,255,0.08), rgba(0,200,83,0.05));
  border: 1px solid rgba(0,212,255,0.15); border-radius: 24px;
  padding: 56px; text-align: center;
}
.trial-section h2 { font-size: 36px; font-weight: 900; margin-bottom: 12px; }
.trial-section p { font-size: 16px; color: var(--text-muted); max-width: 540px; margin: 0 auto 24px; }
.trial-section .trial-benefits { display: flex; gap: 24px; justify-content: center; flex-wrap: wrap; margin-bottom: 28px; }
.trial-section .trial-benefits span { font-size: 14px; color: var(--text-muted); display: flex; align-items: center; gap: 6px; }
.trial-section .trial-benefits span::before { content: '✓'; color: #00c853; font-weight: 700; }

/* --- CTA Section --- */
.cta-section {
  background: linear-gradient(135deg, rgba(255,107,0,0.08), rgba(255,0,128,0.05));
  border: 1px solid rgba(255,107,0,0.15); border-radius: 24px;
  padding: 72px; text-align: center;
}
.cta-section h2 { font-size: 42px; font-weight: 900; margin-bottom: 16px; }
.cta-section p { font-size: 18px; color: var(--text-muted); max-width: 600px; margin: 0 auto 32px; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* --- Contact --- */
.contact-section { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.contact-info h2 { font-size: 36px; font-weight: 900; margin-bottom: 16px; }
.contact-info > p { font-size: 16px; color: var(--text-muted); line-height: 1.7; margin-bottom: 32px; }

.contact-detail { display: flex; gap: 16px; margin-bottom: 20px; align-items: flex-start; }
.contact-detail .icon {
  width: 44px; height: 44px; min-width: 44px; border-radius: 12px;
  background: rgba(255,107,0,0.1); display: flex; align-items: center; justify-content: center; font-size: 18px;
}
.contact-detail h4 { font-size: 15px; font-weight: 600; margin-bottom: 4px; }
.contact-detail p, .contact-detail a { font-size: 14px; color: var(--text-muted); }
.contact-detail a:hover { color: var(--primary); }

.contact-form {
  padding: 40px; border-radius: 20px;
  background: linear-gradient(145deg, rgba(255,255,255,0.04), rgba(255,255,255,0.01));
  border: 1px solid rgba(255,255,255,0.06);
}

.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 14px; font-weight: 600; margin-bottom: 6px; color: var(--text-muted); }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 14px 16px; border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.1); background: rgba(255,255,255,0.04);
  color: var(--text); font-size: 15px; font-family: var(--font);
  transition: all 0.3s ease; outline: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--primary); box-shadow: 0 0 20px var(--glow-primary);
  background: rgba(255,255,255,0.06);
}
.form-group select { appearance: none; cursor: pointer; }
.form-group select option { background: var(--dark); color: var(--text); }
.form-group textarea { min-height: 120px; resize: vertical; }
.form-group .btn { width: 100%; justify-content: center; padding: 16px; font-size: 16px; }

.form-success { display: none; padding: 40px; text-align: center; }
.form-success .check {
  width: 64px; height: 64px; margin: 0 auto 16px;
  background: linear-gradient(135deg, #00c853, #00e676); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; font-size: 32px;
  box-shadow: 0 0 40px rgba(0,200,83,0.3);
}
.form-success h3 { font-size: 24px; margin-bottom: 8px; }
.form-success p { color: var(--text-muted); }

/* --- Blog / Articles --- */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.blog-card {
  padding: 28px; border-radius: 20px;
  background: linear-gradient(145deg, rgba(255,255,255,0.04), rgba(255,255,255,0.01));
  border: 1px solid rgba(255,255,255,0.06);
  transition: all 0.4s ease;
}
.blog-card:hover { transform: translateY(-4px); border-color: rgba(255,107,0,0.2); }
.blog-card .blog-date { font-size: 12px; color: var(--text-muted); margin-bottom: 8px; }
.blog-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 12px; }
.blog-card p { font-size: 14px; color: var(--text-muted); line-height: 1.6; margin-bottom: 16px; }
.blog-card .blog-link {
  color: var(--primary); font-weight: 600; font-size: 14px;
  display: inline-flex; align-items: center; gap: 4px;
}
.blog-card .blog-link:hover { color: var(--secondary); }
.blog-card .blog-img {
  width: 100%; height: 180px; object-fit: cover; border-radius: 12px; margin-bottom: 16px;
  background: linear-gradient(135deg, rgba(255,107,0,0.1), rgba(255,0,128,0.05));
}

/* --- Footer --- */
.footer { padding: 60px 0 30px; border-top: 1px solid rgba(255,255,255,0.06); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 40px; }
.footer-brand p { font-size: 14px; color: var(--text-muted); line-height: 1.7; margin-top: 16px; max-width: 300px; }
.footer-col h4 {
  font-size: 14px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 1px; margin-bottom: 16px; color: var(--text);
}
.footer-col a { display: block; font-size: 14px; color: var(--text-muted); padding: 4px 0; transition: color 0.3s ease; }
.footer-col a:hover { color: var(--primary); }
.footer-bottom { padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.06); display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; }
.footer-bottom p { font-size: 13px; color: var(--text-muted); }
.footer-social { display: flex; gap: 12px; }
.footer-social a {
  width: 40px; height: 40px; border-radius: 10px;
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.06);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; color: var(--text-muted); transition: all 0.3s ease;
}
.footer-social a:hover { background: rgba(255,107,0,0.1); border-color: var(--primary); color: var(--primary); transform: translateY(-2px); }

/* --- PIX Modal --- */
.modal-overlay {
  display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.8);
  z-index: 200; justify-content: center; align-items: center; padding: 20px;
}
.modal-overlay.active { display: flex; }
.modal {
  background: linear-gradient(145deg, #1a1a2e, #0f0f1a);
  border: 1px solid rgba(255,107,0,0.2); border-radius: 20px;
  padding: 40px; max-width: 420px; width: 100%; text-align: center; position: relative;
}
.modal-close { position: absolute; top: 12px; right: 16px; background: none; border: none; color: var(--text-muted); font-size: 24px; cursor: pointer; }
.modal-close:hover { color: var(--text); }
.modal h3 { font-size: 22px; margin-bottom: 8px; }
.modal p { color: var(--text-muted); font-size: 14px; margin-bottom: 20px; }
.modal .qrcode-box { width: 240px; height: 240px; margin: 0 auto 20px; background: #fff; border-radius: 12px; display: flex; align-items: center; justify-content: center; padding: 16px; }
.modal .qrcode-box img { max-width: 100%; max-height: 100%; }
.modal .qrcode-box .placeholder-qr { color: #999; font-size: 14px; text-align: center; }
.modal .form-input {
  width: 100%; padding: 12px 14px; border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.1); background: rgba(255,255,255,0.04);
  color: #fff; font-size: 15px; font-family: var(--font); outline: none;
  transition: all 0.3s ease; box-sizing: border-box;
}
.modal .form-input:focus { border-color: var(--primary); box-shadow: 0 0 20px var(--glow-primary); }
.modal .form-label { display: block; text-align: left; font-size: 14px; font-weight: 600; margin-bottom: 6px; color: var(--text-muted); }
.modal .pix-key { padding: 12px 16px; background: rgba(255,255,255,0.05); border: 1px dashed rgba(255,107,0,0.3); border-radius: 10px; font-size: 14px; color: var(--accent); word-break: break-all; margin-bottom: 16px; }
.modal .pix-status { font-size: 13px; color: var(--text-muted); }
.modal .pix-status .dot { width: 8px; height: 8px; background: #00c853; border-radius: 50%; display: inline-block; animation: pulse 1.5s infinite; }

/* --- Page Specific (Planos, Blog) --- */
.page-hero { padding: 160px 0 80px; text-align: center; }
.page-hero h1 { font-size: 48px; font-weight: 900; margin-bottom: 16px; }
.page-hero p { font-size: 18px; color: var(--text-muted); max-width: 600px; margin: 0 auto; }

.breadcrumb { font-size: 13px; color: var(--text-muted); margin-bottom: 24px; }
.breadcrumb a { color: var(--primary); }
.breadcrumb a:hover { text-decoration: underline; }

/* --- Animations --- */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.animate { opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease, transform 0.6s ease; }
.animate.visible { opacity: 1; transform: translateY(0); }

/* --- Lazy Loading --- */
.lazy { opacity: 0; transition: opacity 0.3s ease; }
.lazy.loaded { opacity: 1; }

/* --- Schema.org structured data (hidden) --- */
.schema-hidden { display: none; }

/* --- Responsive --- */
@media (max-width: 968px) {
  .hero .container { grid-template-columns: 1fr; text-align: center; }
  .hero p { margin: 0 auto 32px; }
  .hero-actions { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-visual { display: none; }
  .hero h1 { font-size: 40px; }
  .benefits-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .steps::before { display: none; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  .pricing-card.featured { transform: none; }
  .contact-section { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .youtube-section { grid-template-columns: 1fr; padding: 32px; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .section-title { font-size: 32px; }
  .cta-section { padding: 40px 24px; }
  .cta-section h2 { font-size: 32px; }
}

@media (max-width: 600px) {
  .nav-links { display: none; }
  .menu-toggle { display: block; }
  .nav-links.mobile-open {
    display: flex; flex-direction: column; position: fixed;
    inset: 0; background: rgba(10,10,26,0.98);
    backdrop-filter: blur(20px); justify-content: center;
    align-items: center; gap: 32px;
  }
  .nav-links.mobile-open a { font-size: 20px; }
  .hero h1 { font-size: 32px; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-stats { flex-direction: column; gap: 20px; }
  .contact-form { padding: 24px; }
}
