:root {
  /* Cores do design system (tailwind.config.js) - ATUALIZADAS */
  --brand-primary: #00796B; /* brand.primary */
  --brand-secondary: #0288D1; /* brand.secondary */
  --brand-accent: #FFC107; /* brand.accent */
  --brand-lightBg: #F5FAFF; /* brand.lightBg */
  --brand-darkText: #212529; /* brand.darkText */
  --brand-cardBg: #FFFFFF; /* brand.cardBg */
  --brand-textPrimary: #343A40; /* brand.textPrimary */
  --brand-textSecondary: #6C757D; /* brand.textSecondary */
  --brand-borderLight: #E9ECEF; /* brand.borderLight */
  --text-primary: var(--brand-textPrimary);
  --text-secondary: var(--brand-textSecondary);
  --text: var(--text-primary);
  --text-muted: var(--text-secondary);
  --bg: var(--brand-cardBg);
  --bg-soft: #f8fafc;
  --primary-700: #00574b; /* primary.700 */
  
  /* Cores adicionais para psychology triggers */
  --urgency-gradient: linear-gradient(90deg, #ff6b35, #f7931e);
  --success-green: #10b981;
  --warning-orange: #f59e0b;
  --social-proof-bg: rgba(16, 185, 129, 0.1);
  --modal-overlay: rgba(0, 0, 0, 0.5);
}

* { box-sizing: border-box; }
html, body { height: 100%; }
body {
  margin: 0;
  padding-top: 80px; /* Compensar header fixo */
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 16px;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: rgba(255,255,255,0.95);
  backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid #eef2f7;
  transition: all 0.3s ease;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
}

.nav { 
  display: flex; 
  gap: 24px; 
  align-items: center; 
  flex: 1;
  justify-content: center;
}

.nav a { 
  color: var(--text-muted); 
  font-weight: 600; 
  font-size: 15px; 
  text-decoration: none;
  transition: color 0.2s ease;
}

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

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 10px;
  font-weight: 700;
  transition: transform .15s ease, filter .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
  border: 2px solid transparent;
}
.btn-primary { background: var(--primary-700); color: #fff; }
.btn-primary:hover { filter: brightness(1.05); transform: translateY(-1px); }
.btn-accent { background: var(--brand-accent); color: #111827; }
.btn-accent.dark { color: #0b1020; }
.btn-accent:hover { transform: scale(1.03); }
.btn-outline { border-color: #cbd5e1; color: var(--text); background: #fff; }
.btn-outline:hover { border-color: var(--brand-accent); color: #111827; background: #fff8e1; }

.section { padding: 64px 0; }
.section-primary { background: var(--brand-primary); color: #fff; }
.section-inverse { background: var(--brand-primary); color: #fff; }
.section-soft { background: var(--bg-soft); }
.section .section-header h2 { margin: 0; font-size: 32px; line-height: 1.2; color: var(--brand-darkText); font-family: Poppins, Inter, system-ui, sans-serif; }
.section-inverse .section-header h2,
.section-primary .section-header h2 { color: #fff; }
.section .section-subtitle { margin-top: 8px; font-size: 16px; color: var(--text-muted); }
.section-inverse .section-subtitle,
.section-primary .section-subtitle { color: rgba(255,255,255,.85); }
.center { text-align: center; }
.mt-md { margin-top: 16px; }
.mt-lg { margin-top: 24px; }

/* Hero */
.hero { 
  background: var(--brand-lightBg); 
  padding: 100px 0 120px 0; 
}

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

.hero-title { 
  font-size: 40px; 
  line-height: 1.1; 
  margin: 0 0 24px 0; 
  color: var(--brand-primary); 
  font-family: Poppins, Inter, system-ui, sans-serif; 
  font-weight: 800; 
}

.hero-subtitle { 
  font-size: 18px; 
  color: var(--text-muted); 
  line-height: 1.6;
  margin: 0 0 40px 0;
}



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

.hero-guarantee {
  font-size: 14px;
  color: var(--text-muted);
  font-weight: 500;
  margin: 0;
}

.hero-figure { 
  background: none;
  transform: scale(1.1);
  transform-origin: center;
}

.hero-figure img {
  width: 100%;
  height: auto;
  display: block;
}

/* Split (plataforma) */
.split { display: grid; gap: 32px; grid-template-columns: 1fr; align-items: center; }
@media (min-width: 960px) { .split { grid-template-columns: 1fr 1fr; gap: 48px; } }

/* Platform section specific adjustments */
#plataforma .section-header { margin-bottom: 56px; }
#plataforma .split { align-items: flex-start; }
#plataforma .mt-lg { margin-top: 40px; }

.feature-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 16px; }
.feature-list li { display: grid; grid-template-columns: 32px 1fr; gap: 12px; align-items: start; background: rgba(255,255,255,.9); border: 1px solid rgba(2, 136, 209, 0.15); border-radius: 14px; padding: 12px; box-shadow: 0 4px 14px 0 rgba(2, 136, 209, 0.12); }
.section-inverse .feature-list li { background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.2); }
.check { display: inline-flex; width: 32px; height: 32px; align-items: center; justify-content: center; background: var(--brand-accent); color: #111827; border-radius: 8px; font-weight: 900; box-shadow: 0 4px 14px 0 rgba(255, 193, 7, 0.35); }

/* Simple feature list (bullet points) */
.simple-feature-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 20px; }
.simple-feature-list li { display: grid; grid-template-columns: 32px 1fr; gap: 12px; align-items: start; }
.simple-feature-list h3 { margin: 0 0 4px; font-size: 18px; color: white; font-weight: 600; }
.simple-feature-list p { margin: 0; color: rgba(255,255,255,0.85); font-size: 15px; line-height: 1.5; }
.check-simple { 
  display: inline-flex; 
  width: 32px; 
  height: 32px; 
  align-items: center; 
  justify-content: center; 
  background: var(--brand-accent); 
  color: #111827; 
  border-radius: 50%; 
  font-weight: 900; 
  font-size: 16px;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(255, 193, 7, 0.3);
}

.video-wrapper { position: relative; width: 100%; border-radius: 20px; overflow: hidden; background: #000; border: 2px solid rgba(255,255,255,.2); box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3); transform: perspective(1000px) rotateY(-5deg); transition: transform 0.3s ease; }
.video-wrapper:hover { transform: perspective(1000px) rotateY(0deg); }
.video-wrapper::before { content: ""; display: block; padding-top: 56.25%; }
.video-wrapper iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

/* Solutions */
.solutions { display: grid; gap: 32px; }
.solution { display: grid; gap: 24px; grid-template-columns: 1fr; align-items: center; }
@media (min-width: 960px) { .solution { grid-template-columns: 1fr 1fr; } }
.solution.reverse > .solution-figure { order: 2; }
.solution-figure { border-radius: 18px; overflow: hidden; border: 1px solid #e6ebf2; background: #fff; box-shadow: 0 10px 22px rgba(0, 121, 107, 0.15); }
.solution-content h3 { margin: 0 0 8px; font-size: 24px; color: var(--brand-darkText); font-family: Poppins, Inter, system-ui, sans-serif; }
.solution-content p { margin: 0; color: var(--text-muted); font-size: 17px; line-height: 1.6; }

.note { display: inline-block; background: #f8fafc; border: 1px solid #e2e8f0; border-radius: 16px; padding: 24px; }
.note h3 { margin: 0 0 8px; }
.note p { margin: 0; color: var(--text-muted); }

/* Benefits CTA Integrated */
.benefits-cta-integrated {
  background: linear-gradient(135deg, var(--brand-primary) 0%, #008b7a 100%);
  border-radius: 24px;
  padding: 48px 32px;
  margin: 48px 0;
  text-align: center;
  color: white;
}

.benefits-header {
  margin-bottom: 40px;
}

.benefits-header h3 {
  font-size: 28px;
  font-weight: 700;
  margin: 0 0 12px 0;
  color: white;
  font-family: Poppins, Inter, system-ui, sans-serif;
}

.benefits-header p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.benefits-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(2, 1fr);
  margin-bottom: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.benefit-card {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  padding: 24px;
  text-align: left;
  transition: all 0.3s ease;
}

.benefit-card:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
}

.benefit-card h4 {
  font-size: 18px;
  font-weight: 600;
  margin: 0 0 12px 0;
  color: white;
}

.benefit-card p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
  line-height: 1.5;
}

.benefits-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.cta-guarantee {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  margin: 0;
}

/* Methodology Note */
.methodology-note {
  margin-top: 48px;
}

.note-content {
  background: linear-gradient(135deg, #f8faff 0%, #f1f5f9 100%);
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  padding: 32px;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.note-content h3 {
  font-size: 22px;
  color: var(--brand-darkText);
  margin: 0 0 12px 0;
  font-family: Poppins, Inter, system-ui, sans-serif;
  font-weight: 700;
}

.note-content p {
  color: var(--text-muted);
  font-size: 16px;
  margin: 0;
  line-height: 1.6;
}

.note-content strong {
  color: var(--brand-primary);
  font-weight: 700;
}

/* Demo Section (Veja como funciona na prática) */
#demo { padding: 80px 0; }

#demo .section-header {
  margin-bottom: 48px;
}

.demo-tabs {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.demo-tab {
  background: #f8fafc;
  border: 2px solid #e2e8f0;
  border-radius: 12px;
  padding: 16px 24px;
  cursor: pointer;
  transition: all 0.3s ease;
  min-width: 180px;
  text-align: center;
}

.demo-tab:hover {
  border-color: var(--brand-primary);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 121, 107, 0.15);
}

.demo-tab.active {
  background: var(--brand-primary);
  border-color: var(--brand-primary);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 121, 107, 0.25);
}

.demo-tab h3 {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
}

.demo-benefits {
  margin-bottom: 24px;
  padding: 0 20px;
}

.demo-benefit {
  display: none;
  max-width: 900px;
  margin: 0 auto;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 1fr;
  gap: 16px 32px;
  align-items: start;
}

@media (min-width: 768px) {
  .benefit-grid {
    gap: 16px 48px;
  }
}

@media (min-width: 1024px) {
  .benefit-grid {
    gap: 16px 64px;
  }
}

.demo-benefit.active {
  display: block;
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 5px;
  padding: 2px 0;
  font-size: 10px;
  color: var(--text);
  line-height: 1.3;
  flex: 1;
  min-width: 0;
}

.benefit-item.benefit-empty {
  visibility: hidden;
}

.benefit-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 12px;
  height: 12px;
  background: var(--brand-primary);
  color: white;
  border-radius: 50%;
  font-size: 8px;
  font-weight: bold;
  flex-shrink: 0;
  margin-top: 1px;
}

.demo-video-container {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 32px;
  height: 450px; /* Altura fixa para evitar jump */
}

.demo-video-wrapper {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) perspective(1000px) rotateY(-2deg);
  width: 100%;
  max-width: 800px;
  border-radius: 20px;
  overflow: hidden;
  background: #000;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  transition: all 0.4s ease;
  opacity: 0;
  visibility: hidden;
}

.demo-video-wrapper.active {
  opacity: 1;
  visibility: visible;
}

.demo-video-wrapper:hover {
  transform: translate(-50%, -50%) perspective(1000px) rotateY(0deg);
}

.demo-video-wrapper::before {
  content: "";
  display: block;
  padding-top: 56.25%; /* 16:9 aspect ratio */
}

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

/* Loader sobre o vídeo até iniciar */
.demo-video-wrapper .video-loader {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background: linear-gradient(180deg, rgba(11,15,25,0.9), rgba(11,15,25,0.6));
  z-index: 2;
  transition: opacity .25s ease;
}
.demo-video-wrapper.ready .video-loader { opacity: 0; pointer-events: none; }

.video-loader .loader {
  width: 48px; height: 48px;
  border: 4px solid rgba(255,255,255,0.25);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin { to { transform: rotate(360deg); } }

/* Flags */
.flags { 
  display: grid; 
  gap: 32px; 
  grid-template-columns: 1fr; 
  align-items: center; 
}

@media (min-width: 880px) { 
  .flags { 
    grid-template-columns: 1fr 1fr; 
    align-items: flex-start;
  } 
}

.flags-text { 
  text-align: right; 
}

.flags-text .h3 { 
  font-size: 28px; 
  margin: 0; 
  color: var(--brand-primary); 
}

.muted { 
  color: var(--text-muted); 
}

.small { 
  font-size: 13px; 
}

.flags-grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
}

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

.flags-row img { 
  width: 56px; 
  height: 36px; 
  object-fit: cover; 
  border-radius: 6px; 
  border: 1px solid #e2e8f0; 
  background: #fff; 
  filter: grayscale(100%); 
  transition: filter .2s, transform .2s; 
}

.flags-row img:hover { 
  filter: grayscale(0%); 
  transform: scale(1.05); 
}

/* Marquee */
.marquee { position: relative; overflow: hidden; padding: 20px 0; }
.marquee.tall .marquee-track img.testimonial { 
  width: 260px; 
  height: 480px; 
  object-fit: contain; 
  background: transparent; 
  border-radius: 0; 
  border: none; 
  box-shadow: none; 
  filter: none;
  flex-shrink: 0;
}
.marquee-track { display: flex; gap: 32px; will-change: transform; animation: marquee 50s linear infinite; align-items: center; }
.marquee-set { display: flex; gap: 32px; align-items: center; }
.marquee:hover .marquee-track { animation-play-state: paused; }

/* Testimonials Section Specific */
.testimonials-section {
  background: #fafafa;
  padding: 80px 0;
}

.testimonials-section .section-header h2 {
  color: var(--brand-darkText);
  font-size: 28px;
  margin-bottom: 16px;
  line-height: 1.2;
}

.testimonials-section .section-subtitle {
  color: var(--text-muted);
  font-size: 16px;
}

/* Universities marquee specific styles */
#universidades .marquee { padding: 24px 0; }
#universidades .marquee-track { gap: 24px; }
#universidades .marquee-set { gap: 24px; }

#universidades .marquee-track img {
  height: 60px;
  width: auto;
  max-width: 120px;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.7;
  transition: all 0.3s ease;
  flex-shrink: 0;
  margin: 0 8px;
}

#universidades .marquee-track img:hover {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.1);
}
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.marquee-gradient.left,
.marquee-gradient.right { position: absolute; top: 0; width: 64px; height: 100%; pointer-events: none; }
.marquee-gradient.left { left: 0; background: linear-gradient(90deg, #ffffff, transparent); }
.marquee-gradient.right { right: 0; background: linear-gradient(-90deg, #ffffff, transparent); }
.section.section-soft .marquee-gradient.left { background: linear-gradient(90deg, var(--bg-soft), transparent); }
.section.section-soft .marquee-gradient.right { background: linear-gradient(-90deg, var(--bg-soft), transparent); }
.testimonials-section .marquee-gradient.left { background: linear-gradient(90deg, #fafafa, transparent); }
.testimonials-section .marquee-gradient.right { background: linear-gradient(-90deg, #fafafa, transparent); }

/* FAQ Modern Design */
.faq-container {
  max-width: 800px;
  margin: 0 auto;
  display: grid;
  gap: 16px;
}

.faq-item {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  transition: all 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  border-color: #cbd5e1;
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px;
  cursor: pointer;
  user-select: none;
  transition: all 0.2s ease;
}

.faq-question:hover {
  background: #f8fafc;
}

.faq-text {
  font-size: 18px;
  font-weight: 600;
  color: var(--brand-darkText);
  line-height: 1.4;
  flex: 1;
  margin-right: 16px;
}

.faq-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: #f1f5f9;
  border-radius: 8px;
  color: var(--brand-primary);
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.faq-item.active .faq-icon {
  background: var(--brand-primary);
  color: white;
  transform: rotate(45deg);
}

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

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 0 24px 24px 24px;
}

.faq-content {
  padding-top: 8px;
  border-top: 1px solid #f1f5f9;
}

.faq-content p {
  margin: 0 0 16px 0;
  color: var(--text-muted);
  line-height: 1.6;
  font-size: 16px;
}

.faq-content p:last-child {
  margin-bottom: 0;
}

/* Quote Section with Gradient */
.quote-section {
  margin-top: 64px;
  background: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-secondary) 100%);
  border-radius: 24px;
  padding: 48px 32px 56px;
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
}

.quote-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translate(-50%, -50%) rotate(0deg); }
  50% { transform: translate(-50%, -50%) rotate(180deg); }
}

.quote-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

.quote-icon {
  display: flex;
  justify-content: center;
  align-items: center;
}

.quote-box {
  max-width: 900px;
  margin: 0 auto;
}

.quote-title {
  font-size: 36px;
  font-weight: 800;
  margin: 0 0 20px 0;
  color: white;
  font-family: Poppins, Inter, system-ui, sans-serif;
  line-height: 1.2;
}

.quote-subtitle {
  font-size: 22px;
  font-weight: 500;
  margin: 0;
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.4;
}

.quote-cta {
  margin: 0;
}

.btn-large {
  padding: 18px 40px;
  font-size: 18px;
  font-weight: 700;
  min-width: 400px;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.btn-large:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 193, 7, 0.4);
}

.guarantee {
  color: rgba(255, 255, 255, 0.85);
  font-size: 15px;
  margin: 0;
  font-weight: 500;
}

/* ===== PAÍSES ATENDIDOS ===== */
.countries-header {
  text-align: center;
  padding: 1.5rem 0;
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  border-radius: 12px;
  margin: 1rem 0;
}

.countries-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--brand-primary);
  margin-bottom: 0.25rem;
  line-height: 1.1;
  letter-spacing: -0.025em;
  font-family: 'Poppins', sans-serif;
}

.countries-subtitle {
  font-size: 1rem;
  color: #64748b;
  margin-bottom: 1rem;
  font-weight: 400;
  line-height: 1.4;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.countries-flags {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 0.5rem;
}

.country-flag {
  width: 40px;
  height: 27px;
  object-fit: cover;
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(255, 255, 255, 0.8);
}

.country-flag:hover {
  transform: translateY(-4px) scale(1.08);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  border-color: var(--brand-primary);
}

/* Responsive para países */
@media (max-width: 959px) {
  .countries-header {
    padding: 1rem;
    margin: 0.5rem 0;
  }
  
  .countries-title {
    font-size: 1.75rem;
    line-height: 1.2;
  }
  
  .countries-subtitle {
    font-size: 0.875rem;
    margin-bottom: 0.75rem;
    padding: 0 1rem;
  }
  
  .countries-flags {
    gap: 0.75rem;
    justify-content: center;
    padding: 0 1rem;
    margin-top: 0.25rem;
  }
  
  .country-flag {
    width: 32px;
    height: 21px;
    border-radius: 4px;
  }
}

/* Footer */
.site-footer { 
  background: #ffffff; 
  color: #334155; 
  padding: 48px 0 32px;
  border-top: 1px solid #eef2f7;
}

.footer-content {
  display: grid;
  gap: 48px;
  grid-template-columns: 2fr 1fr 1fr;
  margin-bottom: 40px;
  padding-bottom: 32px;
  border-bottom: 1px solid #e2e8f0;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-description {
  color: #64748b;
  font-size: 16px;
  line-height: 1.6;
  margin: 0;
  max-width: 320px;
}

.footer-tagline {
  color: #94a3b8;
  font-size: 14px;
  margin: 0;
  font-style: italic;
}

.footer-section {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-title {
  color: #1e293b;
  font-size: 16px;
  font-weight: 600;
  margin: 0;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  color: #64748b;
  font-size: 14px;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: var(--brand-primary);
}

/* Footer Bottom */
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}

.footer-copyright p {
  margin: 0;
  color: #94a3b8;
  font-size: 14px;
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 16px;
}

.social-label {
  color: #64748b;
  font-size: 14px;
}

.social-links {
  display: flex;
  gap: 12px;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: #e2e8f0;
  border-radius: 8px;
  color: #64748b;
  transition: all 0.3s ease;
}

.social-link:hover {
  background: var(--brand-primary);
  color: white;
  transform: translateY(-2px);
}

.footer-company p {
  margin: 0;
  color: #94a3b8;
  font-size: 13px;
}

/* Psychology Triggers Styles */

/* Urgency Bar */
.urgency-bar {
  background: #dc2626;
  color: white;
  padding: 10px 0;
  text-align: center;
  font-weight: 500;
  font-size: 14px;
  position: sticky;
  top: 0;
  z-index: 40;
}

.urgency-bar .container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.urgency-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.urgency-text {
  font-weight: 700;
}

.countdown-number {
  font-size: 18px;
  font-weight: 700;
  color: #fbbf24; /* Amarelo */
  background: rgba(255, 255, 255, 0.15);
  padding: 2px 8px;
  border-radius: 4px;
  margin: 0 2px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.countdown-label {
  font-weight: 500;
}

@keyframes pulse-urgency {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.95; }
}

/* Exit Intent Modal */
.exit-intent-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.exit-intent-modal.show {
  opacity: 1;
  visibility: visible;
}

.exit-intent-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--modal-overlay);
  backdrop-filter: blur(4px);
}

.exit-intent-content {
  background: white;
  padding: 32px;
  border-radius: 16px;
  max-width: 480px;
  margin: 0 16px;
  text-align: center;
  position: relative;
  z-index: 1;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  animation: modal-appear 0.3s ease-out;
}

@keyframes modal-appear {
  from {
    transform: scale(0.9) translateY(-20px);
    opacity: 0;
  }
  to {
    transform: scale(1) translateY(0);
    opacity: 1;
  }
}

.exit-intent-content h3 {
  font-size: 24px;
  color: var(--brand-darkText);
  margin: 0 0 12px;
  font-family: Poppins, Inter, system-ui, sans-serif;
}

.exit-intent-content p {
  color: var(--text-muted);
  margin: 0 0 24px;
  font-size: 16px;
}

.exit-intent-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.exit-intent-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: var(--text-muted);
  padding: 4px;
}

/* Social Proof Toasts */
.social-proof-container {
  position: fixed;
  bottom: 20px;
  left: 20px;
  z-index: 1000;
  max-width: 320px;
}

.social-proof-toast {
  background: #ffffff;
  border: 1px solid var(--success-green);
  border-radius: 12px;
  padding: 12px 16px;
  margin-bottom: 8px;
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.2);
  animation: toast-slide-in 0.5s ease-out;
}

@keyframes toast-slide-in {
  from {
    transform: translateX(-100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

.toast-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-size: 13px;
  color: var(--brand-darkText);
}

.toast-message {
  flex: 1;
  font-weight: 500;
}

.toast-cta {
  background: var(--success-green);
  color: white;
  border: none;
  padding: 4px 8px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.2s;
}

.toast-cta:hover {
  background: #059669;
  transform: scale(1.05);
}

/* WhatsApp Float Button */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 999;
  opacity: 0;
  animation: whatsapp-appear 0.5s ease-out 2s forwards;
}

@keyframes whatsapp-appear {
  to { opacity: 1; }
}

.whatsapp-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: #25d366;
  border-radius: 50%;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
  transition: all 0.3s ease;
  position: relative;
  animation: whatsapp-pulse 2s infinite;
}

.whatsapp-button:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

@keyframes whatsapp-pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

.whatsapp-float-icon {
  width: 32px;
  height: 32px;
  fill: white;
}

.whatsapp-notification {
  position: absolute;
  top: -2px;
  right: -2px;
  background: #ff4444;
  color: white;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  font-size: 12px;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: notification-bounce 1s infinite;
}

@keyframes notification-bounce {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.2); }
}

.whatsapp-tooltip {
  position: absolute;
  right: 70px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--brand-darkText);
  color: white;
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 13px;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.whatsapp-button:hover .whatsapp-tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateY(-50%) translateX(-8px);
}

.whatsapp-tooltip::after {
  content: '';
  position: absolute;
  left: 100%;
  top: 50%;
  transform: translateY(-50%);
  border: 6px solid transparent;
  border-left-color: var(--brand-darkText);
}

/* Scroll Animations */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.animate-on-scroll.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.animate-fade-in {
  opacity: 0;
  transition: opacity 0.8s ease;
}

.animate-fade-in.visible {
  opacity: 1;
}

/* Enhanced Carousel Controls */
.carousel-indicators {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
}

.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(0, 121, 107, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
}

.carousel-dot.active {
  background: var(--brand-primary);
  transform: scale(1.2);
}

/* Language Selector */
.language-selector {
  position: relative;
  display: inline-block;
}

.language-toggle {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  background: transparent;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  color: var(--text-muted);
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.2s ease;
  position: relative;
}

.language-toggle:hover {
  border-color: var(--brand-primary);
  color: var(--brand-primary);
  background: rgba(0, 121, 107, 0.05);
}

.language-toggle:active {
  transform: scale(0.98);
}

.language-flag {
  font-size: 16px;
  display: block;
}

.language-arrow {
  font-size: 10px;
  opacity: 0.6;
  transition: transform 0.2s ease;
}

.language-toggle:hover .language-arrow {
  transform: translateY(-1px);
}

/* Loading States */
.loading-skeleton {
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: loading-shimmer 1.5s infinite;
}

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

.video-loading {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 14px;
}

/* Responsive tweaks */
@media (max-width: 959px) {
  .hero { 
    padding: 80px 0 100px 0; 
  }
  
  .hero-grid { 
    grid-template-columns: 1fr; 
    gap: 40px;
  }
  
  .hero-figure {
    display: none;
  }
  .nav { display: none; }
  .section .section-header h2 { font-size: 28px; }
  .hero-title { 
    font-size: 34px; 
    margin-bottom: 20px;
    text-align: center;
  }
  
  .hero-subtitle {
    text-align: center;
    margin-bottom: 32px;
  }
  

  
  .hero-actions {
    justify-content: center;
    margin-bottom: 20px;
  }
  
  .hero-guarantee {
    text-align: center;
    font-size: 13px;
  }
  
  .header-actions {
    gap: 8px;
  }
  
  .language-toggle {
    padding: 6px 8px;
    font-size: 13px;
    gap: 4px;
  }
  
  .language-flag {
    font-size: 14px;
  }
  
  .language-arrow {
    font-size: 9px;
  }
  
  .btn {
    padding: 8px 12px;
    font-size: 14px;
  }
  

  
  /* Platform section mobile */
  .split { gap: 24px; }
  .video-wrapper { 
    transform: none; 
    border-radius: 16px;
    margin-top: 24px;
  }
  .video-wrapper:hover { transform: none; }
  
  /* Simple feature list mobile */
  .simple-feature-list { gap: 16px; }
  .simple-feature-list h3 { font-size: 16px; }
  .simple-feature-list p { font-size: 14px; }
  .check-simple { width: 28px; height: 28px; font-size: 14px; }
  
  #plataforma .section-header { margin-bottom: 40px; }
  #plataforma .mt-lg { margin-top: 32px; }
  
  /* Universities marquee mobile */
  #universidades .marquee-track img {
    height: 50px;
    max-width: 100px;
  }
  
  .exit-intent-content {
    padding: 24px;
    margin: 0 16px;
  }
  
  .social-proof-container {
    left: 16px;
    right: 16px;
    max-width: none;
  }
  
  .whatsapp-float {
    bottom: 16px;
    right: 16px;
  }
  
  .whatsapp-button {
    width: 56px;
    height: 56px;
  }
  
  .whatsapp-float-icon {
    width: 28px;
    height: 28px;
  }
  
  .whatsapp-tooltip {
    display: none;
  }
  
  /* Demo section mobile */
  #demo .section-header {
    margin-bottom: 32px;
  }
  
  .demo-tabs {
    gap: 8px;
    margin-bottom: 24px;
  }
  
  .demo-tab {
    min-width: 140px;
    padding: 12px 16px;
  }
  
  .demo-tab h3 {
    font-size: 14px;
  }
  
  .demo-benefits {
    padding: 0 16px;
    margin-bottom: 20px;
  }
  
  .demo-benefit {
    max-width: 100%;
  }
  
  .benefit-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 8px;
  }
  
  .benefit-item {
    font-size: 11px;
    padding: 3px 0;
    gap: 5px;
  }
  
  .benefit-check {
    width: 14px;
    height: 14px;
    font-size: 9px;
  }
  
  .demo-video-container {
    margin-top: 24px;
    height: 250px; /* Altura menor para mobile */
  }
  
  .demo-video-wrapper {
    transform: translate(-50%, -50%);
    border-radius: 16px;
  }
  
  .demo-video-wrapper:hover {
    transform: translate(-50%, -50%);
  }
  
  /* Testimonials mobile */
  .testimonials-section {
    padding: 60px 0;
  }
  
  .testimonials-section .section-header h2 {
    font-size: 28px;
  }
  
  .testimonials-section .section-subtitle {
    font-size: 16px;
  }
  
  .marquee.tall .marquee-track img.testimonial { 
    width: 220px; 
    height: 400px; 
  }
  
  .marquee-track { gap: 20px; }
  .marquee-set { gap: 20px; }
  
  /* Flags mobile */
  .flags {
    gap: 24px;
    grid-template-columns: 1fr;
  }
  
  .flags-text {
    text-align: center;
  }
  
  .flags-text .h3 {
    font-size: 24px;
  }
  
  .flags-grid {
    align-items: center;
  }
  
  .flags-row {
    gap: 8px;
  }
  
  .flags-row img {
    width: 48px;
    height: 30px;
  }
  
  /* FAQ Mobile */
  .faq-container {
    max-width: 100%;
  }
  
  .faq-question {
    padding: 20px 16px;
  }
  
  .faq-text {
    font-size: 16px;
    margin-right: 12px;
  }
  
  .faq-icon {
    width: 28px;
    height: 28px;
  }
  
  .faq-item.active .faq-answer {
    padding: 0 16px 20px 16px;
  }
  
  /* Quote Section Mobile */
  .quote-section {
    margin-top: 48px;
    padding: 40px 20px 48px;
    border-radius: 20px;
  }
  
  .quote-content {
    gap: 24px;
  }
  
  .quote-title {
    font-size: 26px;
    margin-bottom: 16px;
  }
  
  .quote-subtitle {
    font-size: 18px;
  }
  
  .btn-large {
    min-width: 300px;
    font-size: 16px;
    padding: 16px 28px;
  }
  
  .guarantee {
    font-size: 14px;
  }
  
  /* Benefits CTA Integrated Mobile */
  .benefits-cta-integrated {
    padding: 32px 20px;
    margin: 32px 0;
  }
  
  .benefits-header h3 {
    font-size: 24px;
  }
  
  .benefits-header p {
    font-size: 16px;
  }
  
  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 32px;
  }
  
  .benefit-card {
    padding: 20px;
    text-align: center;
  }
  
  .benefit-card h4 {
    font-size: 16px;
  }
  
  .benefit-card p {
    font-size: 13px;
  }
  
  /* Methodology Note Mobile */
  .methodology-note {
    margin-top: 40px;
  }
  
  .note-content {
    padding: 24px 20px;
  }
  
  .note-content h3 {
    font-size: 18px;
  }
  
  .note-content p {
    font-size: 14px;
  }
  
  /* Footer Mobile */
  .site-footer {
    padding: 32px 0 24px;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: 32px;
    margin-bottom: 32px;
    padding-bottom: 24px;
  }
  
  .footer-description {
    max-width: 100%;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 16px;
  }
  
  .footer-social {
    order: -1;
  }
  
  .footer-company {
    order: 1;
  }
}

/* ===== SOCIAL PROOF TOAST ===== */
.social-proof-toast {
  position: fixed;
  bottom: 24px;
  left: 24px;
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  color: #1e293b;
  padding: 20px 24px;
  border-radius: 16px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15), 0 4px 16px rgba(0, 0, 0, 0.08);
  z-index: 1000;
  max-width: 380px;
  transform: translateX(-100%);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  border-left: 5px solid var(--brand-primary);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.8);
  font-family: 'Inter', sans-serif;
}

.social-proof-toast.show {
  transform: translateX(0);
}

.toast-content {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.toast-info {
  flex: 1;
  min-width: 0;
}

.toast-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-secondary) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 600;
  font-size: 16px;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(0, 121, 107, 0.3);
}

.toast-message {
  font-size: 14px;
  line-height: 1.5;
  font-weight: 500;
  color: #334155;
  margin: 0;
  letter-spacing: -0.01em;
}

.toast-time {
  font-size: 12px;
  color: #64748b;
  margin-top: 4px;
  font-weight: 400;
}

/* Responsivo para Social Proof */
@media (max-width: 959px) {
  .social-proof-toast {
    bottom: 20px;
    left: 16px;
    right: 16px;
    max-width: none;
    padding: 16px 20px;
    border-radius: 12px;
  }
  
  .toast-avatar {
    width: 36px;
    height: 36px;
    font-size: 14px;
  }
  
  .toast-message {
    font-size: 13px;
    line-height: 1.4;
  }
  
  .toast-time {
    font-size: 11px;
  }
}

/* =============================================================================
   CONTACT PAGE STYLES
   ============================================================================= */

.contact-page { 
  max-width: 840px; 
  margin: 0 auto;
}

.contact-title { 
  font-family: Poppins, sans-serif; 
  font-size: 2.25rem; 
  font-weight: 700; 
  color: var(--brand-darkText); 
  text-align: center; 
  margin-bottom: 0.5rem; 
}

.contact-lead { 
  text-align: center; 
  color: var(--brand-textSecondary); 
  max-width: 720px; 
  margin: 0 auto 2rem; 
  font-size: 1.1rem;
  line-height: 1.6;
}

.contact-subtitle { 
  font-family: Poppins, sans-serif; 
  font-size: 1.5rem; 
  font-weight: 600;
  color: var(--brand-darkText); 
  margin: 2rem 0 1rem; 
  text-align: center;
}

/* Contact Grid Layout */
.contact-grid { 
  display: grid; 
  grid-template-columns: repeat(2, 1fr); 
  gap: 1.5rem; 
  margin: 2rem 0;
}

.contact-card { 
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 2rem 1.5rem; 
  border: 1px solid var(--brand-borderLight); 
  border-radius: 12px; 
  background: var(--brand-cardBg); 
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06); 
  transition: transform .2s, box-shadow .2s; 
  color: inherit; 
  text-decoration: none; 
}

.contact-card:hover { 
  transform: translateY(-2px); 
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.09); 
}

.contact-icon { 
  width: 56px; 
  height: 56px; 
  display: flex; 
  align-items: center;
  justify-content: center;
  border-radius: 12px; 
  margin-bottom: 1rem;
}

.email-icon { background: #e6f4f1; color: #0f766e; }
.clock-icon { background: #eef2ff; color: #3730a3; }
.whatsapp-icon { background: #e6f8ef; color: #15803d; }
.social-icon { background: #fef3c7; color: #b45309; }

.contact-card-title { 
  font-family: Poppins, sans-serif;
  font-weight: 600; 
  font-size: 1.1rem;
  color: var(--brand-darkText); 
  margin-bottom: 0.5rem;
}

.contact-card-link { 
  color: var(--brand-secondary); 
  font-weight: 600; 
  margin-bottom: 0.25rem;
  font-size: 1rem;
}

/* Inline social links with icons */
.contact-card-link .social-inline { 
  display: inline-flex; 
  align-items: center; 
  gap: 8px; 
  text-decoration: none; 
  color: var(--brand-secondary); 
  transition: color .2s ease, transform .2s ease; 
}
.contact-card-link .social-inline:hover { 
  color: #005f55; 
  transform: translateY(-1px); 
}
.contact-card-link .inline-icon { opacity: .85; }
.contact-card-link .social-inline.whatsapp:hover { color: #128C7E; }
.contact-card-link .social-inline.facebook:hover { color: #1877F2; }
.contact-card-link .social-inline.instagram:hover { color: #C13584; }

.contact-card-meta { 
  color: var(--brand-textSecondary); 
  font-size: 0.9rem; 
}

/* Contact CTA Section */
.contact-cta-section { 
  margin-top: 3rem; 
  border: 1px solid var(--brand-borderLight); 
  background: var(--brand-lightBg); 
  border-radius: 12px; 
  padding: 2rem; 
  text-align: center; 
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06); 
}

.contact-cta-title { 
  margin: 0 0 0.5rem; 
  font-family: Poppins, sans-serif; 
  font-size: 1.5rem; 
  font-weight: 700;
  color: var(--brand-darkText); 
}

.contact-cta-subtitle { 
  margin: 0 0 1.5rem; 
  color: var(--brand-textSecondary); 
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  font-size: 1rem;
  line-height: 1.6;
}

.btn-cta-primary { 
  display: inline-block; 
  background: var(--brand-primary); 
  color: white; 
  padding: 1rem 2rem; 
  border-radius: 8px; 
  font-weight: 600; 
  font-size: 1rem;
  transition: all 0.2s ease;
  text-decoration: none;
}

.btn-cta-primary:hover { 
  background: #00695c; 
  transform: translateY(-1px);
  color: white;
}

/* Responsive Design for Contact Page */
@media (max-width: 767px) {
  .contact-grid { 
    grid-template-columns: 1fr; 
    gap: 1rem; 
  }
  
  .contact-card { 
    padding: 1.5rem 1rem; 
  }
  
  .contact-cta-section {
    padding: 1.5rem;
    margin-top: 2rem;
  }
  
  .contact-cta-title {
    font-size: 1.25rem;
  }
  
  .contact-title {
    font-size: 1.8rem;
  }
}

@media (min-width: 768px) {
  .contact-title { 
    font-size: 2.5rem; 
  }
}

/* Page Content Styles for Auxiliary Pages */
.section-padding {
  padding: 2rem 0;
}

.page-content {
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.7;
}

.page-content h1 {
  font-family: Poppins, sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--brand-darkText);
  text-align: center;
  margin-bottom: 2rem;
}

.page-content h2 {
  font-family: Poppins, sans-serif;
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--brand-darkText);
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.page-content h3 {
  font-family: Poppins, sans-serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--brand-darkText);
  margin-top: 1.5rem;
  margin-bottom: 0.8rem;
}

.page-content p {
  margin-bottom: 1rem;
  color: var(--brand-textPrimary);
}

.page-content ul, .page-content ol {
  margin-bottom: 1rem;
  padding-left: 2rem;
}

.page-content li {
  margin-bottom: 0.5rem;
  color: var(--brand-textPrimary);
}

@media (max-width: 767px) {
  .page-content h1 {
    font-size: 2rem;
  }
  
  .page-content h2 {
    font-size: 1.5rem;
  }
  
  .page-content h3 {
    font-size: 1.25rem;
  }
}


