/* ============================================================
   ANHANGUERA EDUCACIONAL — Site MBA
   styles.css — CSS compartilhado para todas as páginas
   ============================================================ */

/* ---------- Google Fonts ---------- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&family=Sora:wght@600;700;800&display=swap');

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
img { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
ul, ol { list-style: none; }

/* ---------- Design tokens ---------- */
:root {
  --bg: #f7f8fd;
  --fg: #1a1f3c;
  --card: #ffffff;
  --primary: #1d3a8a;
  --primary-fg: #ffffff;
  --brand-deep: #0f2060;
  --brand-glow: #3b5fcc;
  --accent: #e8943a;
  --accent-fg: #1a1f3c;
  --secondary: #f0f2fa;
  --secondary-fg: #0f2060;
  --muted-fg: #6b7280;
  --border: #e2e4f0;
  --input: #e2e4f0;
  --ring: #3b5fcc;
  --whatsapp: #25d366;
  --whatsapp-fg: #ffffff;
  --radius: 0.875rem;
  --radius-xl: 1.25rem;
  --radius-2xl: 1.5rem;
  --radius-3xl: 1.875rem;
  --grad-hero: linear-gradient(135deg, #0f2060 0%, #1d3a8a 50%, #2d4db8 100%);
  --grad-accent: linear-gradient(135deg, #e8943a 0%, #d4782a 100%);
  --grad-tech: linear-gradient(135deg, #1d3a8a 0%, #3b5fcc 50%, #e8943a 100%);
  --shadow-soft: 0 4px 20px -8px rgba(29,58,138,.15);
  --shadow-card: 0 10px 40px -15px rgba(29,58,138,.2);
  --shadow-glow: 0 0 60px -10px rgba(59,95,204,.4);
  --font-sans: 'Inter', system-ui, sans-serif;
  --font-display: 'Sora', system-ui, sans-serif;
}

/* ---------- Base ---------- */
body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}
h1, h2, h3, h4 {
  font-family: var(--font-display);
  letter-spacing: -0.02em;
  line-height: 1.15;
}

/* ---------- Layout ---------- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}
@media (min-width: 640px)  { .container { padding: 0 1.5rem; } }
@media (min-width: 1024px) { .container { padding: 0 2rem; } }

/* ---------- Promo bar ---------- */
.promo-bar {
  background: #e8531a;
  color: #fff;
  font-size: .8125rem;
  padding: .5rem 1rem;
}
.promo-bar__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
}
@media (min-width: 640px) {
  .promo-bar__inner { flex-direction: row; gap: 1rem; }
}
.promo-bar__link {
  display: inline-flex;
  align-items: center;
  gap: .375rem;
  border-radius: 9999px;
  background: rgba(255,255,255,.15);
  padding: .25rem .75rem;
  font-weight: 600;
  font-size: .8125rem;
  transition: background .2s;
}
.promo-bar__link:hover { background: rgba(255,255,255,.25); }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(247,248,253,.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.site-header__inner {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 1rem;
  padding: .75rem 1rem;
}
@media (min-width: 640px)  { .site-header__inner { padding: .75rem 1.5rem; } }
@media (min-width: 1024px) { .site-header__inner { padding: 1rem 2rem; grid-template-columns: auto 1fr auto; gap: 1.5rem; } }

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}
.logo__img {
  height: 36px;
  width: auto;
  display: block;
}
@media (min-width: 640px) { .logo__img { height: 40px; } }

.desktop-nav {
  display: none;
  align-items: center;
  gap: .125rem;
}
@media (min-width: 1024px) { .desktop-nav { display: flex; } }
.desktop-nav a {
  padding: .5rem .75rem;
  font-size: .875rem;
  font-weight: 500;
  color: rgba(26,31,60,.8);
  border-radius: .5rem;
  transition: color .2s, background .2s;
}
.desktop-nav a:hover, .desktop-nav a.active { color: var(--primary); }

.header-actions { display: flex; align-items: center; gap: .5rem; }
.btn-whatsapp-sm {
  display: none;
  align-items: center;
  gap: .375rem;
  border-radius: 9999px;
  background: var(--whatsapp);
  color: var(--whatsapp-fg);
  padding: .5rem 1rem;
  font-size: .875rem;
  font-weight: 600;
  box-shadow: var(--shadow-soft);
  transition: opacity .2s;
  text-decoration: none;
}
.btn-whatsapp-sm:hover { opacity: .9; }
@media (min-width: 640px) { .btn-whatsapp-sm { display: inline-flex; } }

.hamburger {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: .5rem;
  border: 1px solid var(--border);
  display: grid;
  place-items: center;
}
@media (min-width: 1024px) { .hamburger { display: none; } }

/* Mobile nav */
.mobile-nav {
  display: none;
  border-top: 1px solid var(--border);
  background: var(--card);
}
.mobile-nav.open { display: block; }
.mobile-nav__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: .75rem 1rem;
  display: flex;
  flex-direction: column;
  gap: .125rem;
}
.mobile-nav a {
  padding: .625rem .5rem;
  font-size: .9375rem;
  font-weight: 500;
  border-radius: .5rem;
  display: block;
  transition: color .2s;
}
.mobile-nav a:hover { color: var(--primary); }
.mobile-nav .btn-wapp-mobile {
  margin-top: .5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .375rem;
  border-radius: 9999px;
  background: var(--whatsapp);
  color: var(--whatsapp-fg);
  padding: .75rem 1rem;
  font-weight: 600;
}

/* ---------- Footer ---------- */
.site-footer {
  margin-top: 5rem;
  background: var(--brand-deep);
  color: #fff;
}
.site-footer__grid {
  display: grid;
  gap: 2.5rem;
  padding: 3.5rem 1rem;
}
@media (min-width: 640px)  { .site-footer__grid { padding: 3.5rem 1.5rem; } }
@media (min-width: 768px)  { .site-footer__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .site-footer__grid { grid-template-columns: repeat(4, 1fr); padding: 3.5rem 2rem; } }
.footer-brand__logo { display: flex; align-items: center; }
.footer-brand__logo img { height: 32px; width: auto; display: block; opacity: .95; }
.footer-brand__desc { margin-top: 1rem; font-size: .875rem; color: rgba(255,255,255,.7); line-height: 1.6; max-width: 20rem; }
.footer-col h4 { font-family: var(--font-display); font-weight: 600; font-size: .9375rem; margin-bottom: .75rem; }
.footer-col ul { display: flex; flex-direction: column; gap: .5rem; }
.footer-col a { font-size: .875rem; color: rgba(255,255,255,.75); transition: color .2s; }
.footer-col a:hover { color: var(--accent); }
.footer-col .contact-item { display: flex; align-items: center; gap: .5rem; font-size: .875rem; color: rgba(255,255,255,.75); }
.footer-col .contact-item svg { width: 1rem; height: 1rem; color: var(--accent); flex-shrink: 0; }
.site-footer__bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 1.25rem 1rem;
  text-align: center;
  font-size: .75rem;
  color: rgba(255,255,255,.5);
}

/* ---------- WhatsApp float ---------- */
.wapp-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 50;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 9999px;
  background: var(--whatsapp);
  color: var(--whatsapp-fg);
  display: grid;
  place-items: center;
  box-shadow: 0 4px 20px rgba(37,211,102,.4);
  transition: transform .2s;
  text-decoration: none;
}
.wapp-float:hover { transform: scale(1.08); }
.wapp-float svg { width: 1.75rem; height: 1.75rem; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  border-radius: 9999px;
  padding: .75rem 1.5rem;
  font-weight: 600;
  font-size: .9375rem;
  transition: all .2s;
  text-decoration: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  white-space: nowrap;
}
.btn svg { width: 1rem; height: 1rem; flex-shrink: 0; }
.btn-primary { background: var(--primary); color: var(--primary-fg); }
.btn-primary:hover { opacity: .9; }
.btn-accent  { background: var(--accent); color: var(--accent-fg); box-shadow: var(--shadow-glow); }
.btn-accent:hover { transform: scale(1.02); }
.btn-ghost   { background: rgba(255,255,255,.1); color: #fff; border: 1px solid rgba(255,255,255,.2); backdrop-filter: blur(4px); }
.btn-ghost:hover { background: rgba(255,255,255,.2); }
.btn-outline { background: var(--card); color: var(--fg); border: 1px solid var(--border); }
.btn-outline:hover { border-color: var(--primary); }
.btn-whatsapp { background: var(--whatsapp); color: var(--whatsapp-fg); }
.btn-whatsapp:hover { opacity: .9; }
.btn-sm { padding: .5rem 1rem; font-size: .8125rem; }

/* ---------- Section spacing ---------- */
.section { padding: 4rem 0; }
@media (min-width: 1024px) { .section { padding: 6rem 0; } }
.section--bg { background: rgba(240,242,250,.45); }

/* ---------- Section header ---------- */
.section-head { max-width: 48rem; }
.section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--fg);
}
.section-head p { margin-top: .75rem; color: var(--muted-fg); font-size: 1.0625rem; }

/* ---------- Gradient text ---------- */
.text-tech {
  background-image: var(--grad-tech);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.text-accent-c { color: var(--accent); }

/* ---------- Cards ---------- */
.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-3xl);
  padding: 1.75rem;
  box-shadow: var(--shadow-soft);
  transition: box-shadow .25s;
}
.card:hover { box-shadow: var(--shadow-card); }
.card__icon {
  width: 3rem; height: 3rem;
  border-radius: var(--radius-xl);
  background-image: var(--grad-tech);
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: var(--shadow-glow);
  flex-shrink: 0;
}
.card__icon svg { width: 1.25rem; height: 1.25rem; }
.card__icon--accent { background-image: var(--grad-accent); }
.card h3 { margin-top: 1.25rem; font-family: var(--font-display); font-size: 1.0625rem; font-weight: 700; }
.card p  { margin-top: .5rem; font-size: .875rem; color: var(--muted-fg); line-height: 1.65; }

/* ---------- Grid layouts ---------- */
.grid-2 { display: grid; gap: 1.5rem; }
.grid-3 { display: grid; gap: 1.5rem; }
.grid-4 { display: grid; gap: 1.25rem; }
@media (min-width: 640px)  { .grid-2 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 640px)  { .grid-3 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .grid-3 { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 640px)  { .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .grid-4 { grid-template-columns: repeat(4, 1fr); } }

/* ---------- Hero section ---------- */
.hero {
  position: relative;
  overflow: hidden;
  background-image: url('assets/hero-professor.jpg');
  background-size: cover;
  background-position: center right;
  color: #fff;
}
.hero__radial {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(10,20,60,.88) 0%, rgba(10,20,60,.72) 55%, rgba(10,20,60,.35) 100%);
  pointer-events: none;
}
.hero__grid {
  display: grid;
  gap: 3rem;
  padding: 4rem 1rem;
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}
@media (min-width: 640px)  { .hero__grid { padding: 4rem 1.5rem; } }
@media (min-width: 1024px) { .hero__grid { padding: 6rem 2rem; max-width: 860px; } }
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  border-radius: 9999px;
  background: rgba(255,255,255,.1);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255,255,255,.15);
  padding: .375rem 1rem;
  font-size: .75rem;
  font-weight: 600;
}
.hero__badge svg { width: .875rem; height: .875rem; color: var(--accent); }
.hero__title {
  margin-top: 1.75rem;
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.75rem);
  font-weight: 700;
  line-height: 1.05;
  color: #fff;
}
.hero__desc {
  margin-top: 1.5rem;
  font-size: clamp(.9375rem, 2vw, 1.125rem);
  color: rgba(255,255,255,.8);
  max-width: 36rem;
  line-height: 1.65;
}
.hero__actions { margin-top: 1.75rem; display: flex; flex-wrap: wrap; gap: .75rem; }
.hero__badges {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: .625rem;
}
.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: .375rem;
  border-radius: 9999px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  padding: .375rem .75rem;
  font-size: .75rem;
  font-weight: 500;
}
.trust-badge svg { width: .875rem; height: .875rem; color: var(--accent); }
.hero__img-wrap {
  position: relative;
}
.hero__img-bg {
  position: absolute;
  inset: -1rem;
  background-image: var(--grad-tech);
  border-radius: 9999px;
  filter: blur(3rem);
  opacity: .4;
}
.hero__img {
  position: relative;
  width: 100%;
  border-radius: var(--radius-3xl);
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(255,255,255,.1);
  object-fit: cover;
  max-height: 480px;
}
/* Hero smaller (inner pages) */
.hero-sm { padding: 4rem 0; }
@media (min-width: 1024px) { .hero-sm { padding: 5rem 0; } }
.hero-sm h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 700;
  color: #fff;
  max-width: 48rem;
  line-height: 1.1;
}
.hero-sm p { margin-top: 1rem; color: rgba(255,255,255,.8); max-width: 36rem; font-size: 1.0625rem; }
.hero-sm__center { text-align: center; }
.hero-sm__center h1 { margin: 0 auto; }
.hero-sm__center p  { margin: 1rem auto 0; }

/* ---------- Course card ---------- */
.course-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-3xl);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  box-shadow: var(--shadow-soft);
  transition: box-shadow .25s, border-color .25s;
  text-decoration: none;
  color: inherit;
}
.course-card:hover { box-shadow: var(--shadow-card); border-color: var(--primary); }
.course-card__cat {
  display: inline-flex;
  align-items: center;
  gap: .375rem;
  font-size: .75rem;
  font-weight: 600;
  color: var(--brand-glow);
  background: rgba(59,95,204,.08);
  border-radius: 9999px;
  padding: .25rem .75rem;
}
.course-card__cat--mba {
  color: #c95d10;
  background: rgba(232,148,58,.15);
}
.course-card h3 {
  font-family: var(--font-display);
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--fg);
  line-height: 1.3;
}
.course-card p { font-size: .875rem; color: var(--muted-fg); line-height: 1.6; }
.course-card__badges { display: flex; flex-wrap: wrap; gap: .375rem; margin-top: auto; }
.badge {
  font-size: .6875rem;
  font-weight: 600;
  border-radius: 9999px;
  background: var(--secondary);
  color: var(--secondary-fg);
  padding: .25rem .625rem;
}
.badge--accent {
  background-image: var(--grad-accent);
  color: #fff;
}
.course-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .5rem;
  padding-top: .75rem;
  border-top: 1px solid var(--border);
  margin-top: auto;
}
.course-card__cta {
  display: inline-flex;
  align-items: center;
  gap: .375rem;
  font-size: .8125rem;
  font-weight: 600;
  color: var(--primary);
  transition: gap .2s;
}
.course-card__cta:hover { gap: .625rem; }
.course-card__cta svg { width: 1rem; height: 1rem; }

/* ---------- Course filter bar ---------- */
.filter-bar { display: grid; gap: 1rem; }
.search-wrap { position: relative; }
.search-wrap svg {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  width: 1.25rem;
  height: 1.25rem;
  color: var(--muted-fg);
  pointer-events: none;
}
.search-input {
  width: 100%;
  border-radius: 9999px;
  border: 1px solid var(--input);
  background: var(--card);
  padding: .875rem 1rem .875rem 3rem;
  font-size: .875rem;
  font-family: inherit;
  outline: none;
  transition: border-color .2s, box-shadow .2s;
  box-shadow: var(--shadow-soft);
}
.search-input:focus { border-color: var(--ring); box-shadow: 0 0 0 3px rgba(59,95,204,.15); }
.filter-pills { display: flex; flex-wrap: wrap; gap: .5rem; }
.filter-label { font-size: .75rem; text-transform: uppercase; letter-spacing: .05em; color: var(--muted-fg); align-self: center; }
.pill-btn {
  border-radius: 9999px;
  padding: .5rem 1rem;
  font-size: .875rem;
  font-weight: 500;
  border: 1px solid var(--border);
  background: var(--card);
  color: rgba(26,31,60,.8);
  transition: all .2s;
  font-family: inherit;
  cursor: pointer;
}
.pill-btn:hover, .pill-btn.active {
  background: var(--primary);
  color: var(--primary-fg);
  border-color: var(--primary);
}
.pill-btn--goal {
  font-size: .75rem;
  background: var(--secondary);
  border-color: transparent;
  color: var(--secondary-fg);
}
.pill-btn--goal:hover, .pill-btn--goal.active {
  background-image: var(--grad-accent);
  background-color: transparent;
  color: var(--accent-fg);
  border-color: transparent;
}
.no-results { text-align: center; padding: 2.5rem 1rem; color: var(--muted-fg); grid-column: 1 / -1; }

/* ---------- Steps / timeline ---------- */
.step-card {
  position: relative;
  border-radius: var(--radius-3xl);
  border: 1px solid var(--border);
  background: var(--card);
  padding: 1.75rem;
  box-shadow: var(--shadow-soft);
}
.step-card__num {
  position: absolute;
  top: -1rem;
  left: 1.75rem;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  border-radius: 9999px;
  background-image: var(--grad-accent);
  padding: .25rem .75rem;
  font-size: .75rem;
  font-weight: 700;
  color: var(--accent-fg);
  box-shadow: var(--shadow-soft);
}
.step-card__icon {
  margin-top: .5rem;
  width: 3rem; height: 3rem;
  border-radius: var(--radius-xl);
  background: var(--primary);
  color: #fff;
  display: grid;
  place-items: center;
}
.step-card__icon svg { width: 1.25rem; height: 1.25rem; }
.step-card h3 { margin-top: 1rem; font-family: var(--font-display); font-size: 1.0625rem; font-weight: 700; }
.step-card p  { margin-top: .375rem; font-size: .875rem; color: var(--muted-fg); }

/* ---------- Testimonials ---------- */
.testimonial {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-3xl);
  padding: 1.75rem;
  box-shadow: var(--shadow-soft);
}
.testimonial__quote { font-size: 2rem; line-height: 1; font-family: var(--font-display); color: var(--accent); }
.testimonial blockquote { margin-top: .5rem; font-size: .875rem; line-height: 1.7; }
.testimonial figcaption { margin-top: 1.25rem; display: flex; align-items: center; gap: .75rem; }
.testimonial__avatar {
  width: 2.5rem; height: 2.5rem;
  border-radius: 9999px;
  background-image: var(--grad-tech);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: .875rem;
  flex-shrink: 0;
}
.testimonial__name { font-weight: 600; font-size: .875rem; }
.testimonial__role { font-size: .75rem; color: var(--muted-fg); }

/* ---------- Teacher cards ---------- */
.teacher-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-3xl);
  padding: 1.5rem;
  box-shadow: var(--shadow-soft);
  transition: box-shadow .25s;
}
.teacher-card:hover { box-shadow: var(--shadow-card); }
.teacher-card__avatar {
  width: 5rem; height: 5rem;
  border-radius: var(--radius-xl);
  background-image: var(--grad-tech);
  color: #fff;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  box-shadow: var(--shadow-glow);
}
.teacher-card h2, .teacher-card h3 { margin-top: 1.25rem; font-family: var(--font-display); font-weight: 700; font-size: 1.0625rem; }
.teacher-card .title { font-size: .75rem; font-weight: 600; color: var(--primary); margin-top: .125rem; }
.teacher-card .bio { margin-top: .75rem; font-size: .875rem; color: var(--muted-fg); line-height: 1.6; }
.disciplines { margin-top: 1rem; display: flex; flex-wrap: wrap; gap: .375rem; }
.tag { font-size: .6875rem; font-weight: 500; border-radius: 9999px; background: var(--secondary); color: var(--secondary-fg); padding: .25rem .625rem; }

/* ---------- FAQ accordion ---------- */
.faq-item {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: border-color .2s;
}
.faq-item:hover { border-color: var(--primary); }
.faq-item.open { border-color: var(--primary); }
.faq-btn {
  width: 100%;
  text-align: left;
  padding: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-weight: 600;
  font-size: .9375rem;
  font-family: inherit;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--fg);
}
.faq-icon {
  width: 1.75rem; height: 1.75rem;
  border-radius: 9999px;
  background-image: var(--grad-tech);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: .875rem;
  font-weight: 700;
  flex-shrink: 0;
  transition: transform .3s;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer {
  display: none;
  padding: 0 1.25rem 1.25rem;
  font-size: .875rem;
  color: var(--muted-fg);
  line-height: 1.7;
}
.faq-item.open .faq-answer { display: block; }

/* ---------- Lead form ---------- */
.lead-form {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-3xl);
  padding: 1.5rem;
  box-shadow: var(--shadow-card);
  display: grid;
  gap: .75rem;
}
.lead-form h3 { font-family: var(--font-display); font-size: 1.25rem; font-weight: 700; }
.lead-form .desc { font-size: .875rem; color: var(--muted-fg); margin-top: -.25rem; }
.form-input {
  width: 100%;
  border: 1px solid var(--input);
  border-radius: var(--radius);
  background: var(--bg);
  padding: .625rem 1rem;
  font-size: .875rem;
  font-family: inherit;
  outline: none;
  transition: border-color .2s, box-shadow .2s;
}
.form-input:focus { border-color: var(--ring); box-shadow: 0 0 0 3px rgba(59,95,204,.12); }

/* ---------- CTA box ---------- */
.cta-box {
  border-radius: 2rem;
  background-image: var(--grad-hero);
  color: #fff;
  padding: 2.5rem 2rem;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.cta-box::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 70% 30%, rgba(232,148,58,.4), transparent 60%);
  opacity: .35;
  pointer-events: none;
}
.cta-box__inner { position: relative; max-width: 48rem; margin: 0 auto; }
.cta-box h2 { font-family: var(--font-display); font-size: clamp(1.5rem, 3.5vw, 2.5rem); font-weight: 700; color: #fff; line-height: 1.15; }
.cta-box p { margin-top: .75rem; color: rgba(255,255,255,.85); font-size: 1rem; }
.cta-box svg.icon-grad { width: 3rem; height: 3rem; color: var(--accent); margin: 0 auto 1rem; }
.cta-box__actions { margin-top: 2rem; display: flex; flex-wrap: wrap; justify-content: center; gap: .75rem; }

/* ---------- Info box (hero gradient section) ---------- */
.info-box {
  border-radius: 2rem;
  background-image: var(--grad-hero);
  color: #fff;
  padding: 2rem 2.5rem;
  position: relative;
  overflow: hidden;
}
.info-box::after {
  content: '';
  position: absolute;
  top: -5rem; right: -5rem;
  width: 20rem; height: 20rem;
  border-radius: 9999px;
  background-image: var(--grad-accent);
  opacity: .3;
  filter: blur(3rem);
}
.info-box__inner { position: relative; max-width: 48rem; }
.info-box__badge {
  display: inline-flex;
  align-items: center;
  gap: .375rem;
  border-radius: 9999px;
  background: rgba(255,255,255,.1);
  backdrop-filter: blur(4px);
  padding: .25rem .75rem;
  font-size: .75rem;
  font-weight: 600;
}
.info-box h2 { margin-top: 1.25rem; font-family: var(--font-display); font-size: clamp(1.75rem, 4vw, 3rem); font-weight: 700; color: #fff; }
.info-box p  { margin-top: 1.25rem; color: rgba(255,255,255,.85); line-height: 1.65; font-size: clamp(.9375rem, 2vw, 1.125rem); max-width: 40rem; }
.info-box__actions { margin-top: 1.75rem; display: flex; flex-wrap: wrap; gap: .75rem; }

/* ---------- Stats box ---------- */
.stats-box { border-radius: var(--radius-3xl); background-image: var(--grad-tech); padding: 3px; box-shadow: var(--shadow-card); }
.stats-box__inner { background: var(--card); border-radius: calc(var(--radius-3xl) - 3px); padding: 2rem; }
.stat-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: .75rem;
  border-bottom: 1px solid var(--border);
}
.stat-row:last-child { border-bottom: none; padding-bottom: 0; }
.stat-label { font-size: .875rem; color: var(--muted-fg); }
.stat-value { font-family: var(--font-display); font-size: 1.5rem; font-weight: 700; background-image: var(--grad-tech); -webkit-background-clip: text; background-clip: text; color: transparent; }

/* ---------- Contact card ---------- */
.contact-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  border-radius: var(--radius-3xl);
  padding: 1.5rem;
  text-decoration: none;
  color: inherit;
  transition: all .2s;
}
.contact-card--wapp { background: var(--whatsapp); color: var(--whatsapp-fg); box-shadow: var(--shadow-card); }
.contact-card--wapp:hover { transform: scale(1.01); }
.contact-card--default { background: var(--card); border: 1px solid var(--border); box-shadow: var(--shadow-soft); }
.contact-card--default:hover { border-color: var(--primary); }
.contact-card__icon {
  width: 3.5rem; height: 3.5rem;
  border-radius: var(--radius-xl);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.contact-card__icon svg { width: 1.75rem; height: 1.75rem; }
.contact-card--wapp .contact-card__icon { background: rgba(255,255,255,.2); }
.contact-card--wapp .contact-card__icon svg { color: #fff; }
.contact-card--email .contact-card__icon { background-image: var(--grad-tech); }
.contact-card--email .contact-card__icon svg { color: #fff; }
.contact-card--phone .contact-card__icon { background-image: var(--grad-accent); }
.contact-card--phone .contact-card__icon svg { color: #fff; }
.contact-card--site .contact-card__icon { background: var(--secondary); }
.contact-card--site .contact-card__icon svg { color: var(--primary); }
.contact-card h3 { font-family: var(--font-display); font-size: 1.0625rem; font-weight: 700; }
.contact-card span { font-size: .875rem; opacity: .85; }
.contact-card--default span { color: var(--muted-fg); }

/* ---------- Course detail ---------- */
.module-item {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  background: var(--card);
  padding: 1rem;
}
.module-item svg { width: 1.25rem; height: 1.25rem; color: var(--accent); flex-shrink: 0; margin-top: .1rem; }
.module-item span { font-size: .875rem; font-weight: 500; }
.diff-item { border-radius: var(--radius-xl); background-image: var(--grad-tech); padding: 2px; }
.diff-item__inner { background: var(--card); border-radius: calc(var(--radius-xl) - 2px); padding: 1rem 1.25rem; font-weight: 600; font-size: .875rem; }

/* ---------- Breadcrumb ---------- */
.breadcrumb { display: inline-flex; align-items: center; gap: .375rem; font-size: .875rem; color: rgba(255,255,255,.8); text-decoration: none; }
.breadcrumb:hover { color: var(--accent); }
.breadcrumb svg { width: 1rem; height: 1rem; }

/* ---------- Company hero grid ---------- */
.company-hero { display: grid; gap: 3rem; }
@media (min-width: 1024px) { .company-hero { grid-template-columns: 1fr 420px; align-items: center; } }

/* ---------- Utility ---------- */
.mt-2  { margin-top: .5rem; }
.mt-3  { margin-top: .75rem; }
.mt-4  { margin-top: 1rem; }
.mt-5  { margin-top: 1.25rem; }
.mt-6  { margin-top: 1.5rem; }
.mt-7  { margin-top: 1.75rem; }
.mt-8  { margin-top: 2rem; }
.mt-10 { margin-top: 2.5rem; }
.mt-12 { margin-top: 3rem; }
.text-center { text-align: center; }
.text-muted   { color: var(--muted-fg); }
.font-bold    { font-weight: 700; }

/* ---------- Print / perf ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition: none !important; animation: none !important; }
}
