/* ===== CSS Variables (Design System) ===== */
:root {
  /* Colors */
  --background: hsl(30, 30%, 98%);
  --foreground: hsl(200, 15%, 15%);
  --card: hsl(0, 0%, 100%);
  --card-foreground: hsl(200, 15%, 15%);
  
  --primary: hsl(180, 45%, 45%);
  --primary-foreground: hsl(0, 0%, 100%);
  --primary-light: hsl(180, 50%, 88%);
  --primary-dark: hsl(180, 50%, 35%);
  
  --secondary: hsl(15, 85%, 65%);
  --secondary-foreground: hsl(0, 0%, 100%);
  --secondary-light: hsl(15, 90%, 92%);
  
  --accent: hsl(260, 40%, 75%);
  --accent-foreground: hsl(260, 50%, 20%);
  --accent-light: hsl(260, 45%, 95%);
  
  --muted: hsl(30, 20%, 95%);
  --muted-foreground: hsl(200, 10%, 45%);
  
  --border: hsl(200, 15%, 88%);
  
  /* Fonts */
  --font-display: 'Cormorant Garamond', serif;
  --font-body: 'DM Sans', sans-serif;
  
  /* Spacing */
  --radius: 1rem;
  
  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1);
  --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1);
  --shadow-2xl: 0 25px 50px -12px rgb(0 0 0 / 0.25);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background-color: var(--background);
  color: var(--foreground);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

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

ul {
  list-style: none;
}

/* ===== Utilities ===== */
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 640px) {
  .container { padding: 0 1.5rem; }
}

@media (min-width: 1024px) {
  .container { padding: 0 2rem; }
}

.text-primary { color: var(--primary); }
.text-secondary { color: var(--secondary); }
.text-accent { color: var(--accent); }
.text-primary-dark { color: var(--primary-dark); }
.font-semibold { font-weight: 600; }
.w-full { width: 100%; }

.bg-primary-light { background-color: var(--primary-light); }
.bg-secondary-light { background-color: var(--secondary-light); }
.bg-accent-light { background-color: var(--accent-light); }

/* ===== Animations ===== */
@keyframes breathe {
  0%, 100% { transform: scale(1); opacity: 0.8; }
  50% { transform: scale(1.05); opacity: 1; }
}

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

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

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

.fade-in-up {
  opacity: 0;
  animation: fadeInUp 0.6s ease-out forwards;
}

.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }
.delay-5 { animation-delay: 0.5s; }
.delay-6 { animation-delay: 0.6s; }
.delay-7 { animation-delay: 0.35s; }
.delay-8 { animation-delay: 0.4s; }
.delay-9 { animation-delay: 0.45s; }
.delay-10 { animation-delay: 0.5s; }
.delay-11 { animation-delay: 0.55s; }
.delay-12 { animation-delay: 0.6s; }
.delay-13 { animation-delay: 0.65s; }
.delay-14 { animation-delay: 0.7s; }
.delay-15 { animation-delay: 0.75s; }

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-primary {
  background-color: var(--primary);
  color: var(--primary-foreground);
}

.btn-primary:hover {
  background-color: var(--primary-dark);
}

.btn-secondary {

  background-color: var(--secondary);
  color: var(--secondary-foreground);
  box-shadow: var(--shadow-lg);
}

.btn-secondary:hover {
  opacity: 0.9;
  box-shadow: var(--shadow-xl);
}

.btn-outline {
  background-color: transparent;
  border: 2px solid var(--border);
  color: var(--foreground);
}

.btn-outline:hover {
  background-color: var(--primary-light);
}

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

.btn-xl {
  padding: 1.25rem 2.5rem;
  font-size: 1.125rem;
}

/* ===== Header ===== */
#header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  transition: all 0.3s ease;
  background-color: transparent;
}

#header.scrolled {
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-md);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-img {
  width: 7.5rem;
  height: auto;
  object-fit: contain;
}

.logo-text-full {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  display: none;
}

.logo-text-short {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
}

@media (min-width: 640px) {
  .logo-text-full { display: block; }
  .logo-text-short { display: none; }
}

.nav-desktop {
  display: none;
  align-items: center;
  gap: 2rem;
}

@media (min-width: 768px) {
  .nav-desktop { display: flex; }
}

.nav-link {
  color: hsla(200, 15%, 15%, 0.8);
  font-weight: 500;
  transition: color 0.3s;
}

.nav-link:hover {
  color: var(--primary);
}

.mobile-menu-btn {
  display: flex;
  padding: 0.5rem;
  background: none;
  border: none;
  color: var(--foreground);
  cursor: pointer;
}

@media (min-width: 768px) {
  .mobile-menu-btn { display: none; }
}

.mobile-menu-btn .close-icon {
  display: none;
}

.mobile-menu-btn.active .menu-icon {
  display: none;
}

.mobile-menu-btn.active .close-icon {
  display: block;
}

.nav-mobile {
  display: none;
  flex-direction: column;
  gap: 1rem;
  padding: 1rem;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border-radius: var(--radius);
  margin: 0 1rem;
  box-shadow: var(--shadow-lg);
  animation: fadeInUp 0.3s ease-out;
}

.nav-mobile.active {
  display: flex;
}

@media (min-width: 768px) {
  .nav-mobile { display: none !important; }
}

.nav-mobile .nav-link {
  padding: 0.5rem 0;
}

/* ===== Hero Section ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, var(--primary-light), var(--background), var(--accent-light));
}

.hero-bg-circle {
  position: absolute;
  width: 24rem;
  height: 24rem;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.7;
}

.hero-bg-1 {
  top: -5rem;
  right: -5rem;
  background-color: hsla(180, 45%, 45%, 0.1);
}

.hero-bg-2 {
  bottom: -6rem;
  left: -6rem;
  background-color: hsla(260, 40%, 75%, 0.12);
}

.hero-grid {
  display: grid;
  gap: 2.5rem;
  align-items: center;
  padding: 10rem 0 4rem;
}

@media (min-width: 1024px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  }
}

.hero-content {
  max-width: 36rem;
  position: relative;
  z-index: 10;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  background-color: var(--card);
  box-shadow: var(--shadow-sm);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--primary-dark);
  margin-bottom: 1rem;
}

.hero-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

@media (min-width: 640px) {
  .hero-title { font-size: 3rem; }
}

@media (min-width: 1024px) {
  .hero-title { font-size: 3.5rem; }
}

.hero-text {
  font-size: 1rem;
  margin-bottom: 2rem;
}

.hero-text p + p {
  margin-top: 0.75rem;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.hero-slider-container {
  position: relative;
  z-index: 10;
}

.hero-slider {
  position: relative;
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: var(--shadow-2xl);
}

.slider-image {
  display: none;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slider-image.active {
  display: block;
}

.hero-slider::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, hsla(180, 45%, 45%, 0.2), transparent);
}

.slider-dots {
  display: flex;
  gap: 0.5rem;
  margin-top: 1rem;
  justify-content: center;
}

.slider-dot {
  width: 0.6rem;
  height: 0.6rem;
  border-radius: 999px;
  border: 1px solid var(--primary);
  background-color: transparent;
  cursor: pointer;
  transition: all 0.2s ease;
}

.slider-dot.active {
  background-color: var(--primary);
  width: 1.5rem;
}

/* Hero decorations – bem suaves */
.hero-decoration {
  position: absolute;
  width: 4rem;
  height: 4rem;
  border-radius: 1rem;
  background: radial-gradient(
    circle at center,
    rgba(255, 255, 255, 0.04) 0%,
    rgba(255, 255, 255, 0.0) 70%
  );
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(28px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
  pointer-events: none;
  opacity: 0.9;
}

.hero-dec-1 { top: -1rem; right: -1rem; }
.hero-dec-2 { bottom: -1.5rem; left: -1.5rem; }

/* ===== Mission Card ===== */
.mission-card {
  margin-top: 3rem;
  padding: 1.5rem 1.75rem;
  border-radius: 1.25rem;
  background-color: var(--card);
  box-shadow: var(--shadow-lg);
}

.mission-card h3 {
  font-size: 1.375rem;
  margin-bottom: 0.5rem;
}

.mission-card p {
  color: hsla(200, 15%, 15%, 0.7);
}

.scroll-indicator {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
  animation: bounce 2s infinite;
  color: hsla(180, 45%, 45%, 0.5);
}

/* ===== Sections ===== */
.section {
  padding: 5rem 0;
}

.section-gradient {
  background: linear-gradient(135deg, var(--primary-light), var(--background), var(--accent-light));
}

.section-gradient-secondary {
  background: linear-gradient(135deg, hsla(15, 85%, 65%, 0.1), var(--background), var(--accent-light));
}

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

.section-header h2 {
  font-size: 2.4rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  margin: 0 auto 0.75rem;
}

@media (min-width: 640px) {
  .section-header h2 { font-size: 2.9rem; }
}

@media (min-width: 1024px) {
  .section-header h2 { font-size: 3.1rem; }
}

.section-header p {
  font-size: 1.125rem;
  color: hsla(200, 15%, 15%, 0.7);
  max-width: 42rem;
  margin: 0 auto;
}

/* subtítulo “Para famílias que desejam presença e conexão.” */
.section-header .subtitle {
  font-size: 1.5rem;
  font-family: var(--font-display);
  font-style: italic;
  letter-spacing: 0.03em;
  color: hsla(200, 15%, 15%, 0.6);
  max-width: 40rem;
  margin: 0.75rem auto 2.5rem;
}

.section-header .quote {
  font-size: 1.5rem;
  font-family: var(--font-display);
  font-style: italic;
  color: var(--primary);
  font-weight: 600;
}

@media (min-width: 640px) {
  .section-header .quote { font-size: 1.875rem; }
}

/* ===== Cards base ===== */
.card {
  background-color: var(--card);
  border: 2px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  transition: all 0.3s ease;
}

.card:hover {
  box-shadow: var(--shadow-xl);
  border-color: hsla(180, 45%, 45%, 0.2);
}

.card-icon {
  width: 4rem;
  height: 4rem;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  transition: transform 0.3s;
}

.card:hover .card-icon {
  transform: scale(1.1);
}

.card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.card p {
  color: hsla(200, 15%, 15%, 0.3);
}

/* ===== Challenges Grid ===== */
.challenges-grid {
  display: grid;
  gap: 1.5rem;
}

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

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

/* ===== Experts Section ===== */
.experts-grid {
  display: grid;
  gap: 2rem;
  margin-bottom: 3rem;
}

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

.expert-card {
  background-color: var(--card);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all 0.3s ease;
}

.expert-card:hover {
  box-shadow: var(--shadow-xl);
}

.expert-image {
  position: relative;
  height: 16rem;
  overflow: hidden;
}

.expert-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.expert-card:hover .expert-image img {
  transform: scale(1.1);
}

.expert-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
}

.expert-content {
  padding: 1.5rem;
}

.quote-icon {
  color: hsla(180, 45%, 45%, 0.3);
  margin-bottom: 1rem;
}

.expert-quote {
  color: hsla(200, 15%, 15%, 0.8);
  font-style: italic;
  margin-bottom: 1rem;
}

.expert-info {
  border-top: 1px solid var(--border);
  padding-top: 1rem;
}

.expert-info h4 {
  font-size: 1.25rem;
  font-weight: 600;
}

.expert-info span {
  font-size: 0.875rem;
  color: hsla(200, 15%, 15%, 0.6);
}

.experts-footer {
  max-width: 48rem;
  margin: 0 auto;
  text-align: center;
}

.experts-footer p {
  font-size: 1.125rem;
  color: hsla(200, 15%, 15%, 0.8);
}

/* ===== Program Section ===== */
.program-intro {
  max-width: 48rem;
  margin: 0 auto;
  text-align: center;
}

.program-intro p {
  margin-bottom: 1rem;
  color: hsla(200, 15%, 15%, 0.8);
}

.program-intro .highlight {
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--primary);
}

.program-section {
  margin-bottom: 5rem;
}

/* Título "Como Funciona o Germinar" */
.program-section > h3 {
  font-size: 2.6rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-align: center;
  margin: 0 auto 0.75rem;
}

/* Subtítulo logo abaixo */
.program-subtitle {
  font-size: 1.125rem;
  color: hsla(200, 15%, 15%, 0.75);
  text-align: center;
  max-width: 50rem;
  margin: 0 auto 3rem;
}

/* GRID dos passos */
.program-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 768px) {
  .program-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: stretch;
  }
}

/* CARD de cada passo – estilo do print */
.program-card {
  background-color: var(--card);
  border-radius: 1.5rem;
  border: 1px solid var(--border);
  padding: 2rem 2rem 1.75rem;
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.program-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
  border-color: hsla(180, 45%, 45%, 0.25);
}

/* cabeçalho ícone + textos */
.program-card-header {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.program-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--primary-light);
  color: var(--primary);
  flex-shrink: 0;
}

/* “Passo 1” */
.step-label {
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: none;
  letter-spacing: 0.04em;
  color: var(--primary);
  margin-bottom: 0.2rem;
}

/* título do passo */
.program-card-header h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  margin: 0;
}

/* texto intro do passo */
.program-card p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: hsla(200, 15%, 15%, 0.8);
}

/* lista dos bullets */
.program-card ul {
  margin-top: 0.75rem;
  display: grid;
  gap: 0.4rem;
  padding-left: 0;
}

/* Itens da lista dentro dos passos */
.program-card ul li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.95rem;
  line-height: 1.6;
  color: hsla(200, 15%, 15%, 0.8);
}

/* Ícone de check na lista dos passos (se tiver SVG no HTML) */
.program-card ul li svg {
  flex-shrink: 0;
  margin-top: 0.1rem;
  color: var(--primary);
}

/* Cria o marcador de check nos itens (independente do HTML) */
.program-card ul li::before {
  content: "✓";
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--primary);
  margin-top: 0.15rem;
}

/* último parágrafo “Grupo/Individual” mais discreto */
.program-card p:last-of-type {
  margin-top: 1rem;
  font-size: 0.85rem;
  color: hsla(200, 15%, 15%, 0.6);
}

/* ===== Learnings Section ===== */
.learnings-section {
  background: linear-gradient(135deg, var(--primary-light), var(--accent-light));
  border-radius: 1.5rem;
  padding: 2rem;
}

@media (min-width: 640px) {
  .learnings-section { padding: 3rem; }
}

.learnings-section h3 {
  font-size: 1.875rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 3rem;
}

.learnings-grid {
  display: grid;
  gap: 1.5rem;
  max-width: 64rem;
  margin: 0 auto;
}

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

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

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

.learning-item svg {
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.learning-item span {
  color: hsla(200, 15%, 15%, 0.8);
}

/* ===== Instructors Section ===== */
.instructors-grid {
  display: grid;
  gap: 2rem;
  max-width: 72rem;
  margin: 0 auto;
}

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

.instructor-card {
  background-color: var(--card);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transition: all 0.3s ease;
}

.instructor-card:hover {
  box-shadow: var(--shadow-2xl);
}

.instructor-image {
  position: relative;
  height: 20rem;
  overflow: hidden;
}

.instructor-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.instructor-card:hover .instructor-image img {
  transform: scale(1.1);
}

.instructor-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
}

.instructor-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
  color: white;
}

.instructor-badge svg {
  color: white;
}

.instructor-badge span {
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.instructor-overlay h3 {
  font-size: 1.875rem;
  font-weight: 700;
  color: white;
}

.instructor-bio {
  padding: 2rem;
}

.instructor-bio p {
  color: hsla(200, 15%, 15%, 0.7);
  font-size: 0.875rem;
  line-height: 1.7;
}

/* ===== Challenge 21 Days ===== */
.challenge-card {
  max-width: 48rem;
  margin: 0 auto;
  background-color: var(--card);
  border: 2px solid hsla(15, 85%, 65%, 0.3);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-2xl);
}

.challenge-header {
  background: linear-gradient(
    to right,
    var(--secondary),
    hsla(15, 85%, 65%, 0.8)
  );
  padding: 1.5rem 2rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--secondary-foreground);
}

.challenge-header svg {
  flex-shrink: 0;
}

.challenge-header h2 {
  font-size: 1.5rem;
  font-weight: 700;
}

@media (min-width: 640px) {
  .challenge-header h2 { font-size: 1.875rem; }
}

/* subtítulo do desafio, logo abaixo do título laranja */
.challenge-card > p:first-of-type {
  padding: 0 2rem 1.75rem;
  font-size: 1.125rem;
  background: linear-gradient(
    to right,
    var(--secondary),
    hsla(15, 85%, 65%, 0.8)
  );
  color: var(--secondary-foreground);
}

.challenge-price {
  text-align: center;
  padding: 1.5rem;
}

.challenge-price span {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
}

@media (min-width: 640px) {
  .challenge-price span { font-size: 3rem; }
}

.challenge-bonus {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  background-color: var(--primary-light);
  padding: 1rem;
  margin: 0 1.5rem 1.5rem;
  border-radius: 0.75rem;
}

.challenge-bonus span {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--primary);
}

/* ===== Pricing Section ===== */
.pricing-grid {
  display: grid;
  gap: 2rem;
  max-width: 64rem;
  margin: 0 auto 3rem;
}

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

.pricing-card {
  position: relative;
  background-color: var(--card);
  border: 2px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  transition: all 0.3s ease;
}

.pricing-card:hover {
  box-shadow: var(--shadow-xl);
  border-color: hsla(180, 45%, 45%, 0.3);
}

.pricing-card-featured {
  border-color: var(--secondary);
  box-shadow: var(--shadow-2xl);
  transform: scale(1.05);
}

@media (min-width: 768px) {
  .pricing-card-featured { transform: scale(1.1); }
}

.popular-badge {
  position: absolute;
  top: -2px;
  right: -2px;
  background-color: var(--secondary);
  color: var(--secondary-foreground);
  padding: 0.35rem 1.35rem;
  font-size: 0.875rem;
  font-weight: 600;
  /* arredonda toda a lateral direita da tag */
  border-radius: 0 var(--radius) 0 var(--radius);
  box-shadow: var(--shadow-md);
}

.pricing-icon {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.pricing-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.pricing-subtitle {
  color: hsla(200, 15%, 15%, 0.6);
  margin-bottom: 1.5rem;
}

.pricing-value {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.price {
  font-size: 2rem;
  font-weight: 700;
}

.price-note {
  color: hsla(200, 15%, 15%, 0.6);
}

.installments {
  color: hsla(200, 15%, 15%, 0.6);
  margin-bottom: 1.5rem;
}

.pricing-features {
  margin-bottom: 1.5rem;
}

.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  font-size: 0.875rem;
  color: hsla(200, 15%, 15%, 0.8);
}

.pricing-features li svg {
  flex-shrink: 0;
  margin-top: 0.125rem;
}

/* ===== Bonus Card ===== */
.bonus-card {
  max-width: 64rem;
  margin: 0 auto 3rem;
  background-color: hsla(260, 45%, 95%, 0.5);
  border: 2px solid var(--accent);
  border-radius: var(--radius);
  padding: 2rem;
}

.bonus-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.bonus-header h3 {
  font-size: 1.5rem;
  font-weight: 700;
}

.bonus-card ul li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  color: hsla(200, 15%, 15%, 0.8);
}

.bonus-card ul li svg {
  flex-shrink: 0;
  margin-top: 0.25rem;
}

/* ===== Guarantee Card ===== */
.guarantee-card {
  max-width: 48rem;
  margin: 0 auto;
  background-color: var(--card);
  border: 2px solid hsla(180, 45%, 45%, 0.2);
  border-radius: 1rem;
  padding: 2rem;
  text-align: center;
  box-shadow: var(--shadow-lg);
}

.guarantee-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.guarantee-card p {
  color: hsla(200, 15%, 15%, 0.8);
}

.guarantee-highlight {
  color: var(--primary);
  font-weight: 600;
  font-size: 1.125rem;
  margin-top: 1rem;
}

/* ===== FAQ Section ===== */
.faq-container {
  max-width: 64rem;
  margin: 0 auto;
}

.faq-item {
  border: 2px solid var(--border);
  border-radius: 0.75rem;
  margin-bottom: 1rem;
  overflow: hidden;
  transition: border-color 0.3s;
}

.faq-item:hover {
  border-color: hsla(180, 45%, 45%, 0.3);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--foreground);
}

.faq-question svg {
  flex-shrink: 0;
  transition: transform 0.3s;
  color: var(--primary);
}

.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: 500px;
  padding: 0 1.5rem 1.5rem;
}

.faq-answer p {
  color: hsla(200, 15%, 15%, 0.7);
  line-height: 1.7;
}

/* ===== CTA Section ===== */
.cta-section {
  position: relative;
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark), var(--primary-light));
  overflow: hidden;
}

.cta-bg-1, .cta-bg-2 {
  position: absolute;
  width: 24rem;
  height: 24rem;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  filter: blur(60px);
}

.cta-bg-1 { top: 0; right: 0; }
.cta-bg-2 { bottom: 0; left: 0; }

.cta-content {
  position: relative;
  z-index: 10;
  max-width: 64rem;
  margin: 0 auto;
  text-align: center;
}

.cta-content h2 {
  font-size: 2rem;
  font-weight: 700;
  color: white;
  margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
  .cta-content h2 { font-size: 2.5rem; }
}

@media (min-width: 1024px) {
  .cta-content h2 { font-size: 3.5rem; }
}

.cta-content > p {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
}

@media (min-width: 640px) {
  .cta-content > p { font-size: 1.5rem; }
}

.cta-content .btn {
  box-shadow: var(--shadow-2xl);
}

.cta-content .btn:hover {
  transform: scale(1.05);
}

/* ===== Footer ===== */
.footer {
  background-color: hsla(200, 15%, 15%, 0.05);
  border-top: 1px solid var(--border);
  padding: 2rem 0;
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
}

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

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: hsla(200, 15%, 15%, 0.6);
}

.footer-logo img {
  width: 2rem;
  height: 2rem;
  object-fit: contain;
}

.footer-logo span {
  font-family: var(--font-display);
  font-weight: 600;
}

.footer-contact {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: hsla(200, 15%, 15%, 0.6);
}

.footer-copyright {
  font-size: 0.875rem;
  color: hsla(200, 15%, 15%, 0.6);
}

/* ===== WhatsApp Button ===== */
.whatsapp-btn {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  width: 3.5rem;
  height: 3.5rem;
  background-color: #25D366;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-xl);
  z-index: 40;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp-btn:hover {
  transform: scale(1.1);
  box-shadow: var(--shadow-2xl);
}
