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

:root {
  --primary: #F04438; /* Vibrant warm red */
  --primary-dark: #D92D20;
  --secondary: #FEF3F2; /* Very light warm tint */
  --bg-cream: #FAF6F0; /* Warm beige */
  --text-main: #2E1B15; /* Dark brown/black */
  --text-light: #5C433D;
  --accent-yellow: #FEF08A;
  --white: #FFFFFF;
  
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
  --font-fun: 'Fredoka', sans-serif;
  
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-pill: 100px;
  
  --shadow-sm: 0 4px 6px rgba(0,0,0,0.05);
  --shadow-md: 0 10px 20px rgba(0,0,0,0.08);
  --shadow-float: 0 20px 40px rgba(240, 68, 56, 0.2);
  
  --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-cream);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  line-height: 1.2;
}

/* ===== UTILS ===== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.text-center { text-align: center; }
.section-padding { padding: 100px 0; }

.btn {
  display: inline-block;
  font-family: var(--font-heading);
  font-weight: 700;
  padding: 16px 40px;
  border-radius: var(--radius-pill);
  text-decoration: none;
  cursor: pointer;
  transition: var(--transition);
  font-size: 1.1rem;
  border: none;
}

.btn-primary {
  background-color: var(--primary);
  color: var(--white);
  box-shadow: var(--shadow-md);
}

.btn-primary:hover {
  background-color: var(--text-main);
  transform: translateY(-4px);
  box-shadow: 0 14px 28px rgba(46, 27, 21, 0.25);
}

.btn-white {
  background-color: var(--white);
  color: var(--primary);
  box-shadow: var(--shadow-md);
}

.btn-white:hover {
  background-color: var(--text-main);
  color: var(--white);
  transform: translateY(-4px);
  box-shadow: 0 14px 28px rgba(46, 27, 21, 0.25);
}

/* ===== HERO SECTION ===== */
.hero {
  position: relative;
  background-color: var(--primary);
  color: var(--white);
  padding: 80px 0 120px;
  border-bottom-left-radius: 40px;
  border-bottom-right-radius: 40px;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50px;
  left: -50px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(255,255,255,0.2) 0%, rgba(255,255,255,0) 70%);
  border-radius: 50%;
}

.hero-content {
  display: flex;
  align-items: center;
  gap: 60px;
  position: relative;
  z-index: 2;
}

.hero-text {
  flex: 1.2;
}

.hero-badge {
  display: inline-block;
  background-color: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(4px);
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 24px;
}

.hero h1 {
  font-size: 4rem;
  font-weight: 900;
  margin-bottom: 24px;
  letter-spacing: -1px;
}

.hero h1 span {
  color: var(--accent-yellow);
}

.hero p {
  font-size: 1.25rem;
  opacity: 0.9;
  margin-bottom: 40px;
  max-width: 500px;
}

.hero-image-wrapper {
  flex: 1;
  position: relative;
}

.hero-image {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-float);
  transform: rotate(2deg);
  transition: var(--transition);
  border: 8px solid var(--white);
}

.hero-image:hover {
  transform: rotate(0deg) scale(1.02);
}

/* Floating Elements for aesthetics */
.doodle {
  position: absolute;
  opacity: 0.2;
  pointer-events: none;
}
.doodle-1 { top: 10%; right: 5%; font-size: 4rem; transform: rotate(15deg); }
.doodle-2 { bottom: 15%; left: 45%; font-size: 3rem; transform: rotate(-20deg); }
.doodle-3 { top: 30%; left: 2%; font-size: 3.5rem; transform: rotate(-10deg); }


/* ===== SECTION TITLE ===== */
.section-title {
  font-size: 2.5rem;
  margin-bottom: 50px;
  font-weight: 800;
}
.section-title span {
  color: var(--primary);
}

/* ===== PARA QUEM É ===== */
.audience-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.audience-card {
  background: var(--white);
  padding: 32px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.audience-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-bottom: 4px solid var(--primary);
}

.audience-icon {
  background: var(--secondary);
  color: var(--primary);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.audience-card h3 {
  font-size: 1.25rem;
  margin-top: 10px;
}

/* ===== O QUE VAI APRENDER ===== */
.learn-section {
  background-color: var(--white);
  position: relative;
}

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

.learn-list {
  list-style: none;
}

.learn-list li {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: 20px;
  padding: 16px;
  background: var(--secondary);
  border-radius: var(--radius-md);
  transition: var(--transition);
}

.learn-list li:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateX(10px);
}

.learn-list li .check {
  background: var(--white);
  color: var(--primary);
  border-radius: 50%;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}

/* ===== MÓDULOS ===== */
.modules-section {
  background-color: var(--primary);
  color: var(--white);
  border-radius: 40px;
  margin: 100px 24px;
  padding: 80px 0;
}

.modules-section .section-title {
  color: var(--white);
}

.modules-section .section-title span {
  color: var(--accent-yellow);
}

.module-timeline {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

.module-card {
  background: var(--white);
  color: var(--text-main);
  padding: 30px;
  border-radius: var(--radius-md);
  margin-bottom: 24px;
  box-shadow: var(--shadow-sm);
  position: relative;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 24px;
}

.module-card:hover {
  transform: scale(1.02);
}

.module-num {
  font-size: 3rem;
  font-family: var(--font-fun);
  color: var(--primary);
  opacity: 0.2;
  font-weight: 900;
  width: 60px;
  line-height: 1;
}

.module-content h3 {
  font-size: 1.5rem;
  margin-bottom: 8px;
}

/* ===== BENEFÍCIOS ===== */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  text-align: center;
}

.benefit-item {
  padding: 40px 20px;
  background: var(--white);
  border-radius: var(--radius-lg);
  transition: var(--transition);
}

.benefit-item:hover {
  background: var(--primary);
  color: var(--white);
  box-shadow: var(--shadow-md);
}

.benefit-icon {
  font-size: 3rem;
  margin-bottom: 20px;
}

/* ===== INSTRUTOR ===== */
.instructor-section {
  background: var(--white);
}

.instructor-content {
  display: flex;
  align-items: center;
  gap: 60px;
  background: var(--bg-cream);
  border-radius: var(--radius-lg);
  padding: 60px;
}

.instructor-img {
  width: 400px;
  height: 400px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: -20px 20px 0 var(--primary);
}

.instructor-info h2 {
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.instructor-info p {
  font-size: 1.1rem;
  margin-bottom: 24px;
  color: var(--text-light);
}

.instructor-stats {
  display: flex;
  gap: 24px;
}

.stat {
  background: var(--white);
  padding: 16px 24px;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: 1.1rem;
  box-shadow: var(--shadow-sm);
  border-left: 4px solid var(--primary);
}

/* ===== DEPOIMENTOS ===== */
.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.testimonial-card {
  background: var(--primary);
  color: var(--white);
  padding: 40px;
  border-radius: var(--radius-lg);
  position: relative;
  transition: var(--transition);
}

.testimonial-card:nth-child(even) {
  background: var(--text-main);
  transform: translateY(30px);
}

.testimonial-card:hover {
  transform: translateY(-10px) rotate(-1deg);
  box-shadow: var(--shadow-float);
}

.quote-icon {
  font-family: var(--font-fun);
  font-size: 5rem;
  line-height: 0;
  opacity: 0.2;
  position: absolute;
  top: 40px;
  left: 20px;
}

.testimonial-card p {
  font-size: 1.25rem;
  font-weight: 500;
  margin-top: 20px;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}

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

.author-avatar {
  width: 50px;
  height: 50px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-weight: bold;
  font-size: 1.2rem;
}

/* ===== COMO FUNCIONA & BÔNUS ===== */
.process-steps {
  display: flex;
  justify-content: space-between;
  text-align: center;
  position: relative;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 10%;
  right: 10%;
  height: 2px;
  background-color: rgba(0,0,0,0.1);
  z-index: 1;
}

.step {
  position: relative;
  z-index: 2;
  flex: 1;
}

.step-num {
  width: 80px;
  height: 80px;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 800;
  margin: 0 auto 20px;
  border: 8px solid var(--bg-cream);
  box-shadow: var(--shadow-md);
}

.step h3 { font-size: 1.2rem; }

/* ===== PREÇO & CTA FINAL ===== */
.pricing-section {
  background: var(--white);
}

.pricing-card {
  max-width: 600px;
  margin: 0 auto;
  background: var(--bg-cream);
  padding: 60px;
  border-radius: var(--radius-lg);
  border: 2px solid rgba(0,0,0,0.05);
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}

.pricing-card::before {
  content: 'Oferta Especial';
  position: absolute;
  top: 30px;
  right: -40px;
  background: var(--primary);
  color: var(--white);
  padding: 8px 40px;
  transform: rotate(45deg);
  font-weight: 800;
  font-size: 0.9rem;
}

.price-old {
  font-size: 1.5rem;
  color: var(--text-light);
  text-decoration: line-through;
  margin-bottom: 10px;
}

.price-new {
  font-size: 5rem;
  font-weight: 900;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 24px;
}

.guarantee-box {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 30px;
  padding: 20px;
  background: rgba(255,255,255,0.5);
  border-radius: var(--radius-md);
  font-weight: 600;
}

.guarantee-box span { font-size: 2rem; }

/* ===== FAQ ===== */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--white);
  margin-bottom: 16px;
  border-radius: var(--radius-md);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  transition: var(--transition);
}

.faq-item:hover {
  box-shadow: var(--shadow-md);
}

.faq-q {
  font-size: 1.2rem;
  font-weight: 700;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-q::after {
  content: '+';
  font-size: 1.5rem;
  color: var(--primary);
}

/* ===== FOOTER ===== */
footer {
  background: var(--text-main);
  color: rgba(255,255,255,0.7);
  padding: 60px 0 20px;
  text-align: center;
}

footer .logo {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--white);
  margin-bottom: 20px;
  display: inline-block;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .hero-content {
    flex-direction: column;
    text-align: center;
  }
  .hero h1 { font-size: 3rem; }
  .hero p { margin: 0 auto 40px; }
  .learn-grid { grid-template-columns: 1fr; }
  .instructor-content { flex-direction: column; text-align: center; padding: 40px;}
  .instructor-stats { justify-content: center; flex-wrap: wrap;}
  .testimonials-grid { grid-template-columns: 1fr; }
  .testimonial-card:nth-child(even) { transform: none; }
  .process-steps { flex-direction: column; gap: 40px;}
  .process-steps::before { display: none; }
}
