/*
Theme Name: Método Y Fade
Theme URI: https://metodoyonline.lovable.app
Author: Método Y Fade
Author URI: https://www.instagram.com/yanrenatto
Description: Landing page premium para o curso Método Y Fade - Curso Online de Fade Profissional por Yan Renatto.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: metodo-y-fade
*/

/* ===== CSS RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #0A0A0A;
  --fg: #FFFFFF;
  --card-bg: #1F2937;
  --muted: #9CA3AF;
  --primary: #338FFF;
  --primary-light: #5BA3FF;
  --primary-dark: #1E7AE5;
  --border: #2D3B4E;
  --dark-blue: #0F172A;
  --radius: 0.75rem;
  --container: 1200px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--bg);
  color: var(--fg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1rem;
}

/* ===== UTILITIES ===== */
.text-gradient {
  background: linear-gradient(to right, var(--primary), var(--primary-light), var(--primary));
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradient-shift 3s ease infinite;
}

.text-muted { color: var(--muted); }
.text-white { color: #fff; }
.text-primary { color: var(--primary); }
.text-center { text-align: center; }
.font-black { font-weight: 900; }
.font-bold { font-weight: 700; }
.font-semibold { font-weight: 600; }
.font-medium { font-weight: 500; }

/* ===== ANIMATIONS ===== */
@keyframes gradient-shift {
  0%, 100% { background-position: 0% center; }
  50% { background-position: 200% center; }
}

@keyframes glow-pulse {
  0%, 100% {
    box-shadow: 0 0 20px rgba(51,143,255,0.4), 0 0 40px rgba(51,143,255,0.2), 0 0 60px rgba(51,143,255,0.1);
  }
  50% {
    box-shadow: 0 0 30px rgba(51,143,255,0.6), 0 0 60px rgba(51,143,255,0.3), 0 0 90px rgba(51,143,255,0.15);
  }
}

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

@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(-40px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(40px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.9); }
  to { opacity: 1; transform: scale(1); }
}

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

.animate-fade-in-up { animation: fadeInUp 0.6s ease forwards; }
.animate-fade-in-left { animation: fadeInLeft 0.6s ease forwards; }
.animate-fade-in-right { animation: fadeInRight 0.6s ease forwards; }
.animate-scale-in { animation: scaleIn 0.5s ease forwards; }
.animate-glow { animation: glow-pulse 2s ease-in-out infinite; }

/* Stagger delays */
.delay-1 { animation-delay: 0.1s; opacity: 0; }
.delay-2 { animation-delay: 0.2s; opacity: 0; }
.delay-3 { animation-delay: 0.3s; opacity: 0; }
.delay-4 { animation-delay: 0.4s; opacity: 0; }
.delay-5 { animation-delay: 0.5s; opacity: 0; }
.delay-6 { animation-delay: 0.6s; opacity: 0; }

/* ===== SCROLL PROGRESS BAR ===== */
#scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 4px;
  background: var(--primary);
  z-index: 200;
  transform-origin: left;
  transform: scaleX(0);
  width: 100%;
  transition: transform 0.1s linear;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-weight: 700;
  border-radius: 0.75rem;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  white-space: nowrap;
  text-decoration: none;
  font-size: 0.875rem;
}

.btn-xl {
  height: 3.5rem;
  padding: 0 2.5rem;
  font-size: 1.125rem;
  border-radius: 0.75rem;
}

.btn-lg {
  height: 3rem;
  padding: 0 2rem;
  font-size: 1rem;
}

.btn-default {
  height: 2.75rem;
  padding: 0 1.25rem;
}

.btn-white {
  background: #fff;
  color: #0A0A0A;
  font-weight: 700;
}
.btn-white:hover {
  background: rgba(255,255,255,0.9);
  transform: scale(1.02);
  box-shadow: 0 10px 25px rgba(255,255,255,0.2);
}

.btn-primary {
  background: var(--primary);
  color: #fff;
}
.btn-primary:hover {
  background: var(--primary-dark);
  transform: scale(1.02);
  box-shadow: 0 10px 25px rgba(51,143,255,0.25);
}

.btn-outline {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(51,143,255,0.5);
}
.btn-outline:hover {
  background: rgba(51,143,255,0.1);
  border-color: var(--primary);
  transform: scale(1.02);
}

.btn:active { transform: scale(0.98); }

.btn svg {
  width: 1.25rem;
  height: 1.25rem;
  transition: transform 0.3s ease;
}

.btn:hover svg.arrow-right { transform: translateX(4px); }

/* ===== HEADER ===== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: #0A0A0A;
  border-bottom: 1px solid rgba(45,59,78,0.3);
}

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

.header-logo img {
  height: 3rem;
  width: auto;
  filter: invert(1);
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.header-nav a {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--muted);
  transition: color 0.3s ease;
}

.header-nav a:hover { color: #fff; }

.header-cta {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.header-cta .social-link {
  color: var(--muted);
  transition: color 0.3s ease;
}
.header-cta .social-link:hover { color: var(--primary); }

.mobile-menu-btn {
  display: none;
  padding: 0.5rem;
  color: #fff;
  background: none;
  border: none;
  cursor: pointer;
}

.mobile-menu {
  display: none;
  background: var(--dark-blue);
  border-bottom: 1px solid rgba(45,59,78,0.5);
  padding: 1.5rem 1rem;
}

.mobile-menu.active { display: block; }

.mobile-menu nav {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.mobile-menu nav a {
  font-size: 1rem;
  font-weight: 600;
  color: var(--muted);
  padding: 0.5rem 0;
  transition: color 0.3s;
}
.mobile-menu nav a:hover { color: #fff; }

.mobile-menu .mobile-cta {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-top: 1rem;
  margin-top: 1rem;
  border-top: 1px solid rgba(45,59,78,0.5);
}

@media (max-width: 768px) {
  .header-nav, .header-cta { display: none; }
  .mobile-menu-btn { display: block; }
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 5rem;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, var(--dark-blue), var(--bg), var(--bg));
}

.hero-blobs {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(48px);
}
.hero-blob-1 { top: 25%; left: 25%; width: 24rem; height: 24rem; background: rgba(51,143,255,0.05); }
.hero-blob-2 { bottom: 25%; right: 25%; width: 24rem; height: 24rem; background: rgba(51,143,255,0.1); }

.hero-fade-img {
  position: absolute;
  border-radius: 1rem;
  overflow: hidden;
  opacity: 0;
  animation: scaleIn 1s ease forwards;
}
.hero-fade-img img { width: 100%; height: 100%; object-fit: cover; }
.hero-fade-1 { top: 5rem; right: 2.5rem; width: 16rem; height: 20rem; animation-delay: 0.5s; }
.hero-fade-2 { bottom: 8rem; left: 2.5rem; width: 14rem; height: 18rem; animation-delay: 0.7s; }
.hero-fade-3 { top: 50%; right: 25%; width: 9rem; height: 12rem; animation-delay: 0.9s; }
.hero-fade-1 img, .hero-fade-2 img, .hero-fade-3 img { opacity: 0.15; }

@media (max-width: 1024px) {
  .hero-fade-img { display: none; }
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 56rem;
  margin: 0 auto;
  text-align: center;
  padding: 0 1rem;
}

.hero-badge {
  display: inline-block;
  padding: 0.625rem 1.25rem;
  margin-bottom: 1.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  background: rgba(51,143,255,0.1);
  color: var(--primary);
  border-radius: 9999px;
  border: 1px solid rgba(51,143,255,0.3);
}

.hero h1 {
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 900;
  margin-bottom: 1.5rem;
  line-height: 0.95;
  letter-spacing: -0.025em;
  color: #fff;
}

.hero-desc {
  font-size: 1.125rem;
  color: var(--muted);
  margin-bottom: 2.5rem;
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.hero-video {
  margin-top: 3rem;
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
}

.hero-video-inner {
  position: relative;
  aspect-ratio: 16/9;
  border-radius: 1rem;
  overflow: hidden;
  border: 2px solid rgba(45,59,78,0.5);
  box-shadow: 0 25px 50px rgba(51,143,255,0.2);
  background: var(--card-bg);
}

.hero-video iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.hero-stats {
  margin-top: 4rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

@media (min-width: 768px) {
  .hero-stats { grid-template-columns: repeat(4, 1fr); }
}

.hero-stat-value {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  color: #fff;
}

.hero-stat-label {
  font-size: 0.875rem;
  color: var(--muted);
  margin-top: 0.5rem;
  font-weight: 500;
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
}

.scroll-dot-container {
  width: 1.5rem;
  height: 2.5rem;
  border-radius: 9999px;
  border: 2px solid rgba(156,163,175,0.3);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 0.5rem;
}

.scroll-dot {
  width: 0.375rem;
  height: 0.375rem;
  border-radius: 50%;
  background: var(--primary);
  animation: scrollBounce 2s infinite;
}

/* ===== SECTION COMMON ===== */
.section { padding: 5rem 0; }
@media (min-width: 768px) { .section { padding: 8rem 0; } }

.section-dark { background: rgba(15,23,42,0.5); }

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 1.25rem;
  margin-bottom: 1rem;
  font-size: 0.875rem;
  font-weight: 600;
  background: rgba(51,143,255,0.1);
  color: var(--primary);
  border-radius: 9999px;
  border: 1px solid rgba(51,143,255,0.3);
}

.section-title {
  font-size: clamp(2rem, 5vw, 3.75rem);
  font-weight: 900;
  margin-bottom: 1.5rem;
  color: #fff;
  letter-spacing: -0.025em;
}

.section-desc {
  font-size: 1.125rem;
  color: var(--muted);
  max-width: 42rem;
  margin: 0 auto;
  line-height: 1.7;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

/* ===== BENEFITS ===== */
.benefits-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) { .benefits-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .benefits-grid { grid-template-columns: repeat(3, 1fr); } }

.benefit-card {
  background: var(--card-bg);
  border: 1px solid rgba(45,59,78,0.3);
  border-radius: var(--radius);
  padding: 2rem;
  transition: all 0.5s ease;
  height: 100%;
}

.benefit-card:hover {
  border-color: rgba(51,143,255,0.5);
  box-shadow: 0 20px 40px rgba(51,143,255,0.1);
  transform: translateY(-4px);
}

.benefit-icon {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 0.75rem;
  background: rgba(51,143,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  color: var(--primary);
}

.benefit-icon svg { width: 1.75rem; height: 1.75rem; }

.benefit-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.75rem;
}

.benefit-desc {
  color: var(--muted);
  line-height: 1.7;
}

/* ===== ABOUT ===== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .about-grid { grid-template-columns: 1fr 1fr; gap: 5rem; }
}

.about-image {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid rgba(45,59,78,0.3);
  background: linear-gradient(to bottom right, rgba(51,143,255,0.2), rgba(51,143,255,0.05));
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.about-image-badge {
  position: absolute;
  background: rgba(31,41,55,0.95);
  backdrop-filter: blur(8px);
  border-radius: 0.75rem;
  padding: 1rem;
  border: 1px solid rgba(45,59,78,0.5);
  box-shadow: 0 10px 25px rgba(0,0,0,0.3);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.about-image-badge.top-right { top: 1rem; right: 1rem; }
.about-image-badge.bottom-left { bottom: 1rem; left: 1rem; }

.about-image-badge svg { width: 1.5rem; height: 1.5rem; color: var(--primary); }
.about-image-badge span { font-weight: 700; color: #fff; }

.about-desc {
  font-size: 1.125rem;
  color: var(--muted);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.about-desc-small {
  color: var(--muted);
  margin-bottom: 2rem;
  line-height: 1.7;
}

.achievements-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

.achievement-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.achievement-icon {
  flex-shrink: 0;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  background: rgba(51,143,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.125rem;
}

.achievement-icon svg { width: 1rem; height: 1rem; color: var(--primary); }
.achievement-text { color: #fff; font-weight: 500; }

.mentors-section h4 {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--muted);
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.mentors-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.mentor-badge {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  background: var(--card-bg);
  border-radius: 9999px;
  color: #fff;
  font-weight: 500;
  border: 1px solid rgba(45,59,78,0.5);
  transition: all 0.3s ease;
}

.mentor-badge:hover { border-color: rgba(51,143,255,0.5); }

/* ===== GALLERY ===== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

@media (min-width: 768px) { .gallery-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .gallery-grid { grid-template-columns: repeat(5, 1fr); } }

.gallery-item {
  position: relative;
  aspect-ratio: 3/4;
  border-radius: 0.75rem;
  overflow: hidden;
  border: 1px solid rgba(45,59,78,0.3);
  cursor: pointer;
  transition: all 0.5s ease;
}

.gallery-item:hover { border-color: rgba(51,143,255,0.5); }
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.1); }

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7), transparent, transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }

/* ===== CURRICULUM ===== */
.features-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3.5rem;
}

.feature-pill {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1.25rem;
  background: var(--card-bg);
  border-radius: 9999px;
  border: 1px solid rgba(45,59,78,0.5);
  transition: all 0.3s ease;
}

.feature-pill:hover { border-color: rgba(51,143,255,0.5); }
.feature-pill svg { width: 1.25rem; height: 1.25rem; color: var(--primary); }
.feature-pill span { font-size: 0.875rem; font-weight: 600; color: #fff; }

.modules-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  max-width: 56rem;
  margin: 0 auto;
}

@media (min-width: 768px) { .modules-grid { grid-template-columns: repeat(2, 1fr); } }

.module-card {
  background: var(--card-bg);
  border: 1px solid rgba(45,59,78,0.3);
  border-radius: var(--radius);
  padding: 0;
  transition: all 0.5s ease;
  overflow: hidden;
}

.module-card:hover {
  border-color: rgba(51,143,255,0.5);
  box-shadow: 0 20px 40px rgba(51,143,255,0.1);
  transform: translateY(-4px);
}

.module-card.bonus {
  border-color: rgba(51,143,255,0.4);
  background: linear-gradient(to bottom right, rgba(51,143,255,0.15), rgba(51,143,255,0.05));
}

@media (min-width: 768px) {
  .module-card.bonus { grid-column: span 2; }
}

.module-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem 1.5rem 1rem;
}

.module-number {
  font-size: 3rem;
  font-weight: 900;
  color: rgba(51,143,255,0.3);
}

.module-card.bonus .module-number { color: var(--primary); }

.module-title-wrap { flex: 1; }

.module-exclusive {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.module-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
}

.module-topics {
  padding: 0 1.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.module-card.bonus .module-topics {
  display: grid;
  gap: 0.75rem;
}

@media (min-width: 768px) {
  .module-card.bonus .module-topics {
    grid-template-columns: 1fr 1fr;
    column-gap: 1.5rem;
  }
}

.module-topic {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.module-topic svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--primary);
  margin-top: 0.125rem;
  flex-shrink: 0;
}

.module-topic span { color: var(--muted); }

/* ===== TARGET AUDIENCE ===== */
.target-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 56rem;
  margin: 0 auto;
}

@media (min-width: 768px) { .target-grid { grid-template-columns: 1fr 1fr; } }

.target-card {
  background: var(--card-bg);
  border-radius: 1rem;
  padding: 2rem;
  border: 1px solid rgba(45,59,78,0.3);
  transition: all 0.5s ease;
}

.target-card.for-who:hover { border-color: rgba(34,197,94,0.3); }
.target-card.not-for-who:hover { border-color: rgba(239,68,68,0.3); }

.target-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: #fff;
}

.target-icon-circle {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.target-icon-circle.green { background: rgba(34,197,94,0.2); }
.target-icon-circle.red { background: rgba(239,68,68,0.2); }

.target-icon-circle svg { width: 1.25rem; height: 1.25rem; }
.target-icon-circle.green svg { color: #4ade80; }
.target-icon-circle.red svg { color: #f87171; }

.target-list { display: flex; flex-direction: column; gap: 1rem; }

.target-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.target-item svg {
  width: 1.25rem;
  height: 1.25rem;
  margin-top: 0.125rem;
  flex-shrink: 0;
}

.target-item.green svg { color: #4ade80; }
.target-item.red svg { color: #f87171; }
.target-item span { color: var(--muted); }

/* ===== CTA SECTION ===== */
.cta-section {
  position: relative;
  overflow: hidden;
}

.cta-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, var(--dark-blue), var(--bg), var(--bg));
}

.cta-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 62.5rem;
  height: 62.5rem;
  background: rgba(51,143,255,0.05);
  border-radius: 50%;
  filter: blur(48px);
}

.urgency-banner {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1.5rem;
  background: rgba(239,68,68,0.1);
  border: 1px solid rgba(239,68,68,0.3);
  border-radius: 9999px;
  margin-bottom: 2rem;
}

.urgency-banner svg { width: 1.25rem; height: 1.25rem; color: #f87171; }
.urgency-banner span { font-weight: 700; color: #f87171; }

.countdown {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.countdown-label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}

.countdown-label svg { width: 1.25rem; height: 1.25rem; color: var(--primary); }
.countdown-label span { font-size: 0.875rem; font-weight: 500; color: var(--muted); }

.countdown-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: var(--card-bg);
  border: 1px solid rgba(45,59,78,0.5);
  border-radius: 0.75rem;
  padding: 0.75rem 1.25rem;
  min-width: 5rem;
}

.countdown-value {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 900;
  color: #fff;
}

.countdown-unit {
  font-size: 0.75rem;
  color: var(--muted);
  font-weight: 500;
  margin-top: 0.25rem;
}

/* Pricing Card */
.pricing-card {
  max-width: 32rem;
  margin: 0 auto 3rem;
  background: var(--card-bg);
  border: 2px solid rgba(51,143,255,0.3);
  border-radius: var(--radius);
  position: relative;
  overflow: hidden;
  transition: all 0.5s ease;
}

.pricing-card:hover {
  border-color: var(--primary);
  box-shadow: 0 25px 50px rgba(51,143,255,0.2);
}

.pricing-glow {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(51,143,255,0.1), transparent, transparent);
  pointer-events: none;
}

.pricing-header {
  text-align: center;
  padding: 2rem 2rem 1.5rem;
  position: relative;
}

.pricing-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.5rem;
}

.pricing-subtitle {
  color: var(--muted);
  margin-bottom: 1.5rem;
}

.pricing-original {
  color: var(--muted);
  margin-bottom: 0.5rem;
}

.pricing-original .strikethrough {
  text-decoration: line-through;
  color: #f87171;
}

.pricing-amount {
  display: flex;
  align-items: baseline;
  justify-content: center;
}

.pricing-value {
  font-size: clamp(2.5rem, 5vw, 3.75rem);
  font-weight: 900;
  color: #fff;
}

.pricing-cents {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
}

.pricing-installments {
  font-size: 0.875rem;
  color: var(--muted);
  margin-top: 0.75rem;
}

.pricing-content {
  padding: 1rem 2rem 2rem;
  position: relative;
}

.pricing-features {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

.pricing-feature {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.pricing-feature-icon {
  flex-shrink: 0;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  background: rgba(51,143,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
}

.pricing-feature-icon svg { width: 1rem; height: 1rem; color: var(--primary); }
.pricing-feature span { color: #fff; font-weight: 500; }

/* Guarantees */
.guarantees {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.guarantee-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1.25rem;
  background: var(--card-bg);
  border-radius: 9999px;
  border: 1px solid rgba(45,59,78,0.5);
  transition: all 0.3s ease;
}

.guarantee-item:hover { border-color: rgba(51,143,255,0.5); }
.guarantee-item svg { width: 1.25rem; height: 1.25rem; color: var(--primary); }
.guarantee-item span { font-size: 0.875rem; font-weight: 500; color: #fff; }

/* ===== TESTIMONIALS ===== */
.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) { .testimonials-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .testimonials-grid { grid-template-columns: repeat(3, 1fr); } }

.testimonial-card {
  background: var(--card-bg);
  border: 1px solid rgba(45,59,78,0.3);
  border-radius: var(--radius);
  padding: 2rem;
  transition: all 0.5s ease;
  height: 100%;
}

.testimonial-card:hover {
  border-color: rgba(51,143,255,0.5);
  box-shadow: 0 20px 40px rgba(51,143,255,0.1);
  transform: translateY(-4px);
}

.testimonial-quote {
  width: 2.5rem;
  height: 2.5rem;
  color: rgba(51,143,255,0.2);
  margin-bottom: 1rem;
}

.testimonial-stars {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 1rem;
}

.testimonial-stars svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--primary);
  fill: var(--primary);
}

.testimonial-text {
  color: var(--muted);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testimonial-avatar {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: rgba(51,143,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--primary);
  font-size: 0.875rem;
}

.testimonial-name { font-weight: 700; color: #fff; }
.testimonial-role { font-size: 0.875rem; color: var(--muted); }

/* ===== FAQ ===== */
.faq-section { position: relative; overflow: hidden; }

.faq-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(48px);
  background: rgba(51,143,255,0.05);
}

.faq-blob-1 { top: 50%; left: 0; width: 24rem; height: 24rem; transform: translateY(-50%); }
.faq-blob-2 { bottom: 0; right: 0; width: 20rem; height: 20rem; }

.faq-list {
  max-width: 48rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: var(--card-bg);
  border: 1px solid rgba(45,59,78,0.3);
  border-radius: 0.75rem;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover { border-color: rgba(51,143,255,0.5); }

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem;
  background: none;
  border: none;
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  text-align: left;
  cursor: pointer;
  transition: color 0.3s;
}

.faq-question:hover { color: var(--primary); }

.faq-question svg {
  width: 1.25rem;
  height: 1.25rem;
  transition: transform 0.3s ease;
  flex-shrink: 0;
  margin-left: 1rem;
}

.faq-item.active .faq-question svg { transform: rotate(180deg); }

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

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

.faq-answer-inner {
  padding: 0 1.5rem 1.5rem;
  color: var(--muted);
  line-height: 1.7;
}

/* ===== FOOTER ===== */
.site-footer {
  padding: 3rem 0;
  border-top: 1px solid rgba(45,59,78,0.3);
  background: #0A0A0A;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .footer-inner {
    flex-direction: row;
    justify-content: space-between;
  }
}

.footer-brand a {
  font-size: 1.25rem;
  font-weight: 900;
  color: #fff;
}

.footer-brand p {
  font-size: 0.875rem;
  color: var(--muted);
  margin-top: 0.25rem;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
}

.footer-nav a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--muted);
  transition: color 0.3s;
}

.footer-nav a:hover { color: #fff; }

.footer-social {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.social-circle {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  background: var(--card-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  border: 1px solid rgba(45,59,78,0.3);
  transition: all 0.3s ease;
}

.social-circle:hover {
  color: var(--primary);
  background: rgba(51,143,255,0.15);
  border-color: rgba(51,143,255,0.5);
}

.social-circle svg { width: 1.25rem; height: 1.25rem; }

.footer-copyright {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(45,59,78,0.3);
  text-align: center;
}

.footer-copyright p {
  font-size: 0.875rem;
  color: var(--muted);
}

/* ===== INTERSECTION OBSERVER ANIMATION ===== */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.reveal-scale.visible {
  opacity: 1;
  transform: scale(1);
}
