/* ------------------------------------------------------------------
   Multicursos DF - v3 (mescla v2 + conteudo Canva)
   CSS puro, mobile-first, sem dependencias externas
------------------------------------------------------------------- */

:root {
  --brand: #e86a10;
  --brand-dark: #b24f08;
  --brand-light: #ff8b3a;
  --brand-soft: #fff4eb;
  --accent: #0b5394;
  --accent-dark: #073869;
  --accent-soft: #e8f2ff;
  --success: #25D366;
  --ink: #1a1f2a;
  --ink-soft: #4a5161;
  --muted: #7b8394;
  --line: #e7e9ef;
  --bg: #ffffff;
  --bg-alt: #f7f8fb;
  --radius: 14px;
  --radius-sm: 8px;
  --shadow-sm: 0 1px 2px rgba(16, 24, 40, .06), 0 1px 3px rgba(16, 24, 40, .1);
  --shadow-md: 0 4px 8px -2px rgba(16, 24, 40, .1), 0 2px 4px -2px rgba(16, 24, 40, .06);
  --shadow-lg: 0 12px 24px -6px rgba(16, 24, 40, .12), 0 4px 8px -2px rgba(16, 24, 40, .05);
  --max: 1200px;
  --header-h: 72px;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: var(--header-h); }

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

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

a { color: var(--brand); text-decoration: none; transition: color .15s ease; }
a:hover { color: var(--brand-dark); }

h1, h2, h3, h4 { font-family: inherit; line-height: 1.2; color: var(--ink); margin: 0 0 .5em; }
h1 { font-size: clamp(2rem, 4.5vw, 3.25rem); font-weight: 800; letter-spacing: -.02em; }
h2 { font-size: clamp(1.6rem, 3vw, 2.25rem); font-weight: 700; letter-spacing: -.015em; }
h3 { font-size: 1.15rem; font-weight: 600; }
p  { margin: 0 0 1em; color: var(--ink-soft); }

.container { max-width: var(--max); margin: 0 auto; padding: 0 clamp(1rem, 3vw, 2rem); }

/* ------------ Buttons ------------ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  padding: .85rem 1.4rem; font-weight: 600; font-size: .95rem;
  border-radius: var(--radius-sm); border: 1.5px solid transparent;
  cursor: pointer; transition: all .15s ease; text-decoration: none; line-height: 1;
}
.btn-primary { background: var(--brand); color: #fff; }
.btn-primary:hover { background: var(--brand-dark); color: #fff; transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--brand); color: var(--brand); }
.btn-block { width: 100%; padding: 1rem; font-size: 1rem; }

/* ------------ Header ------------ */
.header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255, 255, 255, .9);
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.header.scrolled { border-bottom-color: var(--line); box-shadow: var(--shadow-sm); }

.header-inner {
  min-height: var(--header-h);
  display: flex; align-items: center; justify-content: space-between; gap: 2rem;
}

.brand { display: flex; align-items: center; gap: .6rem; color: var(--ink); }
.brand:hover { color: var(--ink); }
.brand-logo { width: 40px; height: 40px; object-fit: contain; }
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-text strong { font-weight: 800; font-size: 1.05rem; letter-spacing: -.01em; }
.brand-text em { font-style: normal; font-size: .72rem; color: var(--muted); text-transform: uppercase; letter-spacing: .08em; }

.nav { display: flex; align-items: center; gap: 2rem; }
.nav a { color: var(--ink-soft); font-weight: 500; font-size: .95rem; }
.nav a:hover { color: var(--brand); }
.nav .nav-cta {
  background: var(--brand); color: #fff !important;
  padding: .6rem 1.1rem; border-radius: var(--radius-sm); font-weight: 600;
  font-size: .95rem; line-height: 1;
}
.nav .nav-cta:hover { background: var(--brand-dark); }

.nav .nav-admin {
  background: #1a1f2a; color: #fff !important;
  padding: .6rem 1.1rem; border-radius: var(--radius-sm); font-weight: 600;
  font-size: .95rem; line-height: 1;
  transition: background .15s ease;
}
.nav .nav-admin:hover { background: #c92a2a; color: #fff !important; }

.nav-toggle {
  display: none; background: transparent; border: 0; padding: .5rem; cursor: pointer;
  flex-direction: column; gap: 5px; width: 40px; height: 40px; justify-content: center; align-items: center;
}
.nav-toggle span {
  display: block; width: 22px; height: 2px; background: var(--ink); border-radius: 2px;
  transition: transform .2s ease, opacity .2s ease;
}
.nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 900px) {
  .nav-toggle { display: flex; }
  .nav {
    position: absolute; top: var(--header-h); left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: #fff; border-top: 1px solid var(--line);
    padding: .5rem 1rem 1rem;
    transform: translateY(-10px); opacity: 0; pointer-events: none;
    transition: transform .2s ease, opacity .2s ease;
    box-shadow: var(--shadow-md);
  }
  .nav.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .nav a { padding: .85rem .5rem; border-bottom: 1px solid var(--line); }
  .nav a:last-child { border-bottom: 0; }
  .nav .nav-cta { text-align: center; margin-top: .5rem; }
}

/* ------------ Hero ------------ */
.hero {
  position: relative;
  padding: clamp(3rem, 8vw, 6rem) 0;
  background:
    radial-gradient(ellipse at top right, rgba(232, 106, 16, .12), transparent 60%),
    radial-gradient(ellipse at bottom left, rgba(232, 106, 16, .08), transparent 50%),
    var(--bg);
  overflow: hidden;
}

.hero-inner {
  display: grid; grid-template-columns: 1.1fr 1fr; gap: 4rem; align-items: center;
}
@media (max-width: 900px) { .hero-inner { grid-template-columns: 1fr; gap: 3rem; } }

.badge {
  display: inline-block; padding: .35rem .75rem; font-size: .78rem; font-weight: 600;
  background: var(--brand-soft); color: var(--brand-dark);
  border-radius: 999px; margin-bottom: 1rem; letter-spacing: .02em;
}

.hero h1 span { color: var(--brand); }
.hero .lead { font-size: clamp(1rem, 1.4vw, 1.15rem); max-width: 48ch; margin-bottom: 2rem; }

.hero-ctas { display: flex; flex-wrap: wrap; gap: .75rem; margin-bottom: 3rem; }

.hero-stats {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem;
  padding: 0; margin: 0; list-style: none;
  border-top: 1px solid var(--line); padding-top: 1.5rem;
}
.hero-stats li { display: flex; flex-direction: column; }
.hero-stats strong { font-size: 1.5rem; font-weight: 800; color: var(--brand); letter-spacing: -.01em; }
.hero-stats span { font-size: .8rem; color: var(--muted); }

.hero-art {
  position: relative; min-height: 400px;
}
.hero-card {
  position: absolute; display: flex; flex-direction: column; gap: .5rem;
  padding: 1.25rem; background: #fff; border-radius: var(--radius);
  box-shadow: var(--shadow-lg); border: 1px solid var(--line);
  width: 180px;
}
.hero-card svg { width: 36px; height: 36px; color: var(--brand); }
.hero-card span { font-weight: 600; font-size: .95rem; color: var(--ink); }
.hero-card-1 { top: 0; left: 10%; animation: float 6s ease-in-out infinite; }
.hero-card-2 { top: 40%; right: 5%; animation: float 6s ease-in-out infinite 2s; }
.hero-card-3 { bottom: 0; left: 30%; animation: float 6s ease-in-out infinite 4s; }

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-10px); }
}
@media (prefers-reduced-motion: reduce) { .hero-card { animation: none; } }
@media (max-width: 900px) { .hero-art { display: none; } }

/* ------------ Section ------------ */
.section { padding: clamp(3rem, 7vw, 5.5rem) 0; }
.section-alt { background: var(--bg-alt); }

.section-head { max-width: 680px; margin: 0 auto 3rem; text-align: center; }
.section-head .eyebrow,
.eyebrow {
  display: inline-block; font-size: .78rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .1em; color: var(--brand); margin-bottom: .5rem;
}

/* ------------ Cursos grid ------------ */
.cursos-grid {
  display: grid; gap: 1.25rem;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
}
.curso-card {
  display: flex; flex-direction: column; gap: .5rem;
  padding: 1.5rem; background: #fff;
  border: 1px solid var(--line); border-radius: var(--radius);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.curso-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--brand); }

.curso-icon {
  width: 44px; height: 44px; border-radius: var(--radius-sm);
  background: var(--brand-soft); color: var(--brand);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: .5rem;
}
.curso-icon svg { width: 22px; height: 22px; }

.curso-card h3 { margin: 0; }
.curso-card p { color: var(--ink-soft); font-size: .92rem; margin: 0; flex-grow: 1; }

.curso-meta { display: flex; gap: .5rem; margin: .75rem 0 0; padding: 0; font-size: .8rem; }
.curso-meta dt { font-weight: 600; color: var(--muted); text-transform: uppercase; letter-spacing: .05em; font-size: .72rem; }
.curso-meta dd { margin: 0; color: var(--ink); font-weight: 500; }

.curso-link { margin-top: 1rem; font-weight: 600; font-size: .9rem; color: var(--brand); }

/* ------------ Sobre ------------ */
.sobre-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center;
}
@media (max-width: 900px) { .sobre-grid { grid-template-columns: 1fr; } }

.sobre-list { list-style: none; padding: 0; margin: 1.5rem 0 0; display: grid; gap: .5rem; }
.sobre-list li { display: flex; align-items: center; gap: .6rem; font-weight: 500; }
.sobre-list span {
  display: inline-flex; align-items: center; justify-content: center;
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--brand-soft); color: var(--brand); font-size: .75rem; font-weight: 800;
}

.sobre-media img {
  border-radius: var(--radius); box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3; object-fit: cover; width: 100%;
}

/* ------------ Agenda CTA ------------ */
.agenda-cta { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; }

/* ------------ Localizacao ------------ */
.loc-grid {
  display: grid; grid-template-columns: 1fr 1.3fr; gap: 3rem; align-items: stretch;
}
@media (max-width: 900px) { .loc-grid { grid-template-columns: 1fr; } }

.loc-info address { font-style: normal; line-height: 1.8; margin: 1rem 0 1.5rem; color: var(--ink-soft); }

.loc-contacts { list-style: none; padding: 0; margin: 0; display: grid; gap: .75rem; }
.loc-contacts li { display: flex; align-items: center; gap: .75rem; }
.loc-contacts svg { width: 20px; height: 20px; color: var(--brand); flex-shrink: 0; }
.loc-contacts a { color: var(--ink); font-weight: 500; }
.loc-contacts a:hover { color: var(--brand); }

.loc-map {
  border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-md); border: 1px solid var(--line);
  min-height: 400px;
}
.loc-map iframe { width: 100%; height: 100%; min-height: 400px; border: 0; display: block; }

/* ------------ Form ------------ */
.form-contato {
  max-width: 720px; margin: 0 auto;
  display: grid; gap: 1rem;
  padding: 2rem; background: #fff;
  border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }

.form-contato label { display: flex; flex-direction: column; gap: .4rem; font-weight: 500; font-size: .9rem; color: var(--ink); }

.form-contato input,
.form-contato textarea {
  width: 100%; padding: .75rem .9rem;
  font: inherit; color: var(--ink);
  background: var(--bg-alt); border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  transition: border-color .15s ease, background .15s ease;
}
.form-contato input:focus,
.form-contato textarea:focus {
  outline: none; border-color: var(--brand); background: #fff;
}
.form-contato textarea { resize: vertical; min-height: 120px; }

/* ------------ Footer ------------ */
.footer {
  background: #1a1f2a; color: #c7cdd9;
  padding: 3.5rem 0 1.5rem; margin-top: 2rem;
}
.footer-inner {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 2.5rem;
  margin-bottom: 2.5rem;
}
@media (max-width: 900px) { .footer-inner { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .footer-inner { grid-template-columns: 1fr; gap: 2rem; } }

.footer .brand-footer { margin-bottom: 1rem; }
.footer .brand-footer .brand-text strong { color: #fff; }
.footer .brand-footer .brand-text em { color: #8b92a3; }
.footer p { color: #8b92a3; font-size: .9rem; }

.footer h4 { color: #fff; font-size: .9rem; text-transform: uppercase; letter-spacing: .08em; margin-bottom: 1rem; }
.footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: .6rem; }
.footer ul a { color: #c7cdd9; font-size: .9rem; }
.footer ul a:hover { color: var(--brand-light); }

.social { display: flex; gap: .6rem; margin-bottom: 1.2rem !important; }
.social a {
  display: inline-flex; align-items: center; justify-content: center;
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255, 255, 255, .08);
  color: #c7cdd9;
  transition: background .15s ease, color .15s ease, transform .15s ease;
}
.social a:hover { background: var(--brand); color: #fff; transform: translateY(-2px); }
.social svg { width: 18px; height: 18px; }

.footer-email a { color: #c7cdd9; font-size: .9rem; }
.footer-email a:hover { color: var(--brand-light); }

.footer-bottom {
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, .08);
  color: #8b92a3; font-size: .85rem;
}

/* ------------ Contatos flutuantes fixos ------------ */
.float-contacts {
  position: fixed;
  right: clamp(1rem, 2vw, 1.5rem);
  bottom: clamp(1rem, 2vw, 1.5rem);
  display: flex; flex-direction: column; gap: .75rem;
  z-index: 90;
}
.float-btn {
  display: inline-flex; align-items: center; gap: .6rem;
  width: 56px; height: 56px;
  border-radius: 999px;
  color: #fff !important;
  box-shadow: 0 6px 18px rgba(0, 0, 0, .22);
  overflow: hidden;
  transition: width .25s ease, transform .2s ease, box-shadow .2s ease;
  padding-left: 16px;
}
.float-btn svg { width: 26px; height: 26px; flex-shrink: 0; }
.float-btn .float-label {
  font-weight: 700; font-size: .9rem;
  white-space: nowrap;
  opacity: 0;
  transition: opacity .15s ease .1s;
  padding-right: 18px;
}
.float-btn:hover {
  width: 170px;
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, .28);
}
.float-btn:hover .float-label { opacity: 1; }

.float-wa { background: #25D366; }
.float-wa:hover { background: #1DA851; }

.float-ig {
  background: linear-gradient(135deg, #f58529, #dd2a7b 50%, #8134af 85%, #515bd4);
}
.float-ig:hover { filter: brightness(1.08); }

/* Em telas pequenas, mantem so icone mesmo no hover */
@media (max-width: 600px) {
  .float-btn:hover { width: 56px; }
  .float-btn .float-label { display: none; }
}
@media (prefers-reduced-motion: reduce) {
  .float-btn, .float-btn .float-label { transition: none; }
}

/* ------------ Pagina interna (cursos/institucional) ------------ */
.page-hero {
  padding: clamp(2.5rem, 6vw, 4.5rem) 0 clamp(2rem, 5vw, 3rem);
  background:
    radial-gradient(ellipse at top right, rgba(232, 106, 16, .10), transparent 60%),
    var(--bg);
}
.page-hero .breadcrumb {
  display: flex; gap: .4rem; flex-wrap: wrap;
  font-size: .85rem; color: var(--muted); margin-bottom: 1rem;
}
.page-hero .breadcrumb a { color: var(--muted); }
.page-hero .breadcrumb a:hover { color: var(--brand); }
.page-hero .breadcrumb span { color: var(--ink); font-weight: 500; }

.page-hero h1 {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  margin-bottom: .5rem;
}
.page-hero .page-lead {
  font-size: clamp(1rem, 1.3vw, 1.1rem);
  max-width: 65ch;
}

.page-body {
  padding: 0 0 clamp(3rem, 7vw, 5rem);
}

/* Detalhes do curso (Objetivo, Carga, Publico, Conteudo, Instrucoes) */
.curso-detail {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1rem;
  margin: 2rem 0;
}
@media (max-width: 700px) { .curso-detail { grid-template-columns: 1fr; } }
.curso-detail .full { grid-column: 1 / -1; }

.curso-bloco {
  padding: 1.25rem 1.5rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: border-color .15s ease;
}
.curso-bloco:hover { border-color: var(--brand); }
.curso-bloco dt {
  font-size: .75rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .1em; color: var(--brand);
  margin-bottom: .4rem;
}
.curso-bloco dd { margin: 0; color: var(--ink-soft); font-size: .95rem; line-height: 1.6; }

/* Agenda ao estilo de chips */
.curso-agenda { margin-top: 3rem; }
.curso-agenda h3 {
  font-size: 1.3rem; margin-bottom: 1.5rem;
  padding-bottom: .5rem; border-bottom: 2px solid var(--brand-soft);
}
.agenda-empty {
  padding: 1.5rem; text-align: center;
  background: var(--bg-alt); border-radius: var(--radius);
  color: var(--ink-soft);
}
.agenda-mes { margin-bottom: 1.5rem; }
.agenda-mes h4 {
  font-size: 1rem; color: var(--brand); margin-bottom: .5rem;
  text-transform: uppercase; letter-spacing: .05em;
}
.agenda-mes ul { list-style: none; padding: 0; margin: 0; display: grid; gap: .5rem; }
.agenda-mes li {
  display: flex; flex-wrap: wrap; gap: .6rem 1rem;
  padding: .8rem 1rem;
  background: #fff;
  border: 1px solid var(--line); border-radius: var(--radius-sm);
  font-size: .88rem;
}
.agenda-mes li span { display: inline-flex; align-items: center; gap: .3rem; }
.agenda-periodo { font-weight: 600; color: var(--ink); }
.agenda-turno   { color: var(--muted); text-transform: capitalize; }
.agenda-horario { color: var(--ink-soft); font-variant-numeric: tabular-nums; }
.agenda-tipo {
  padding: .15rem .6rem; border-radius: 999px;
  font-size: .75rem; font-weight: 600;
}
.agenda-tipo.reg { background: #e8f2ff; color: #0b5394; }
.agenda-tipo.fds { background: #fff4eb; color: var(--brand-dark); }

/* Galeria de fotos (substitui lightbox antigo) */
.gallery {
  display: grid; gap: 1rem;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
}
.gallery a {
  display: block; overflow: hidden;
  border-radius: var(--radius-sm);
  aspect-ratio: 4/3;
  box-shadow: var(--shadow-sm);
  transition: transform .2s ease, box-shadow .2s ease;
}
.gallery a:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s ease; }
.gallery a:hover img { transform: scale(1.05); }

.gallery-group { margin-bottom: 3rem; }
.gallery-group h3 { font-size: 1.2rem; margin-bottom: 1rem; }

/* Lightbox CSS-only (usa :target) */
.lightbox {
  position: fixed; inset: 0;
  background: rgba(0, 0, 0, .9);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity .2s ease;
  z-index: 100;
}
.lightbox:target { opacity: 1; pointer-events: auto; }
.lightbox img { max-width: 95vw; max-height: 90vh; }
.lightbox .lb-close {
  position: absolute; top: 1rem; right: 1rem;
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(255, 255, 255, .15); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; text-decoration: none;
}
.lightbox .lb-close:hover { background: rgba(255, 255, 255, .25); color: #fff; }

/* Parceiros */
.parceiros-grid {
  display: grid; gap: 1.5rem;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  align-items: center;
}
.parceiros-grid img {
  max-width: 100%; max-height: 100px;
  margin: 0 auto; filter: grayscale(1); opacity: .7;
  transition: filter .2s ease, opacity .2s ease;
}
.parceiros-grid img:hover { filter: none; opacity: 1; }

/* Dicas (cards densos) */
.dicas-grid {
  display: grid; gap: 1rem;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
}
.dica-card {
  padding: 1.5rem; background: #fff;
  border: 1px solid var(--line); border-radius: var(--radius);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.dica-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); border-color: var(--brand); }
.dica-card h3 { font-size: 1rem; margin-bottom: .5rem; color: var(--brand); }
.dica-card p { font-size: .92rem; color: var(--ink-soft); margin: 0; }
.dica-card .btn-link { margin-top: 1rem; display: inline-block; font-weight: 600; font-size: .85rem; color: var(--brand); }

/* Dicas - details nativo */
.dicas-list { display: grid; gap: .75rem; max-width: 900px; margin: 0 auto; }
.dica-detail {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.dica-detail:hover { border-color: var(--brand); }
.dica-detail[open] { box-shadow: var(--shadow-sm); border-color: var(--brand); }
.dica-detail summary {
  padding: 1.1rem 1.5rem;
  cursor: pointer;
  list-style: none;
  display: flex; flex-direction: column; gap: .25rem;
  position: relative;
  padding-right: 3rem;
}
.dica-detail summary::-webkit-details-marker { display: none; }
.dica-detail summary::after {
  content: "+";
  position: absolute;
  right: 1.3rem; top: 50%;
  transform: translateY(-50%);
  width: 28px; height: 28px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: var(--brand-soft); color: var(--brand);
  font-weight: 800; font-size: 1.2rem;
  transition: transform .2s ease;
}
.dica-detail[open] summary::after { content: "−"; transform: translateY(-50%) rotate(180deg); }
.dica-titulo { font-weight: 700; font-size: 1.05rem; color: var(--ink); }
.dica-resumo { font-size: .88rem; color: var(--muted); }
.dica-corpo {
  padding: 0 1.5rem 1.5rem;
  border-top: 1px solid var(--line);
  padding-top: 1.25rem;
  color: var(--ink-soft);
  font-size: .95rem;
  line-height: 1.7;
}
.dica-corpo h4 {
  color: var(--brand);
  font-size: .95rem;
  margin: 1.25rem 0 .5rem;
  text-transform: uppercase;
  letter-spacing: .05em;
}
.dica-corpo h4:first-child { margin-top: 0; }
.dica-corpo ul, .dica-corpo ol { padding-left: 1.25rem; margin: .5rem 0; }
.dica-corpo li { margin-bottom: .35rem; }

/* =====================================================================
   v3 - Seções adicionais (conteúdo mesclado do Canva)
   ===================================================================== */

/* Hero v3 - com foto real de bombeiro combatendo fogo */
.hero-v3 {
  position: relative;
  padding: clamp(4rem, 9vw, 7rem) 0;
  color: #fff;
  overflow: hidden;
  background-color: #1a1f2a;
  min-height: 560px;
  display: flex;
  align-items: center;
}
.hero-bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  pointer-events: none;
  background: #1a1f2a url("../fotos/Cursos/foto7.jpg") center / cover no-repeat;
}
.hero-v3::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(135deg, rgba(26, 31, 42, .80) 0%, rgba(26, 31, 42, .45) 55%, rgba(232, 106, 16, .55) 100%);
  pointer-events: none;
}
.hero-v3::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: radial-gradient(ellipse at center, transparent 40%, rgba(0,0,0,.4) 100%);
  pointer-events: none;
}
@media (prefers-reduced-motion: reduce) {
  .hero-bg-video { display: none; }
}
.hero-v3 .hero-inner { position: relative; z-index: 2; }
.hero-v3 h1 { color: #fff; text-shadow: 0 2px 16px rgba(0,0,0,.4); }
.hero-v3 h1 span { color: var(--brand-light); }
.hero-v3 .lead { color: rgba(255,255,255,.92); font-size: clamp(1rem, 1.5vw, 1.2rem); }
.hero-v3 .badge {
  background: rgba(255,255,255,.15);
  color: #fff;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.25);
}
.hero-v3 .hero-stats { border-top-color: rgba(255,255,255,.18); }
.hero-v3 .hero-stats strong { color: var(--brand-light); }
.hero-v3 .hero-stats span { color: rgba(255,255,255,.75); }
.hero-v3 .btn-ghost {
  background: rgba(255,255,255,.1);
  color: #fff;
  border-color: rgba(255,255,255,.3);
  backdrop-filter: blur(8px);
}
.hero-v3 .btn-ghost:hover {
  background: rgba(255,255,255,.2);
  border-color: #fff;
  color: #fff;
}
.hero-v3 .hero-art { display: none; } /* hero art removido - agora temos foto real */
@media (max-width: 900px) {
  .hero-v3 { min-height: 480px; padding: 3rem 0; }
  .hero-v3 .hero-inner { grid-template-columns: 1fr; }
}

/* Stats em destaque */
.stats-strip {
  background: linear-gradient(135deg, var(--ink) 0%, #0f1520 100%);
  color: #fff;
  padding: clamp(2rem, 5vw, 3rem) 0;
}
.stats-strip .container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  text-align: center;
}
.stats-strip .stat strong {
  display: block;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  color: var(--brand-light);
  letter-spacing: -.02em;
}
.stats-strip .stat span {
  display: block;
  font-size: .85rem;
  color: #c7cdd9;
  margin-top: .25rem;
  letter-spacing: .02em;
}

/* Por que Multicursos - cards com check */
.porque-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.25rem;
}
.porque-card {
  padding: 1.75rem 1.5rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
  display: flex;
  flex-direction: column;
  gap: .75rem;
}
.porque-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--brand);
}
.porque-card .porque-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--brand), var(--brand-light));
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 10px rgba(232, 106, 16, .3);
}
.porque-card .porque-icon svg { width: 24px; height: 24px; }
.porque-card h3 { font-size: 1.05rem; margin: 0; }
.porque-card p { margin: 0; color: var(--ink-soft); font-size: .92rem; line-height: 1.55; }

/* Áreas de atuação (eventos esportivos/musicais/políticos) */
.areas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem;
}
.area-card {
  position: relative;
  padding: 2rem 1.75rem;
  color: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  transition: transform .2s ease, box-shadow .2s ease;
  box-shadow: var(--shadow-md);
}
.area-card::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.1) 0%, rgba(0,0,0,.7) 100%);
  z-index: 1;
}
.area-card > * { position: relative; z-index: 2; }
.area-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.area-card h3 { font-size: 1.25rem; color: #fff; margin-bottom: .4rem; }
.area-card p { color: rgba(255,255,255,.88); font-size: .9rem; margin: 0; }

.area-esportivos { background: linear-gradient(135deg, #0b5394, #1a73c4); }
.area-musicais   { background: linear-gradient(135deg, #8e2de2, #4a00e0); }
.area-politicos  { background: linear-gradient(135deg, #e86a10, #b24f08); }
.area-empresas   { background: linear-gradient(135deg, #14b8a6, #0f766e); }

/* Depoimentos */
.depoimentos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.5rem;
}
.depoimento-card {
  padding: 2rem;
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  position: relative;
}
.depoimento-card::before {
  content: """;
  position: absolute;
  top: .5rem; left: 1rem;
  font-size: 4rem;
  color: var(--brand-soft);
  font-family: Georgia, serif;
  line-height: 1;
  font-weight: 700;
}
.depoimento-card blockquote {
  margin: 0;
  font-size: .98rem;
  line-height: 1.65;
  color: var(--ink-soft);
  font-style: italic;
  padding-left: 1rem;
  position: relative;
}
.depoimento-card cite {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin-top: 1.25rem;
  font-style: normal;
  font-weight: 600;
  color: var(--ink);
}
.depoimento-card cite::before {
  content: "";
  width: 40px; height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand), var(--brand-dark));
  display: inline-block;
  flex-shrink: 0;
}

/* CTA WhatsApp grande */
.cta-whatsapp {
  background: linear-gradient(135deg, #128C7E 0%, #25D366 100%);
  color: #fff;
  padding: clamp(2.5rem, 6vw, 4rem) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-whatsapp::before,
.cta-whatsapp::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  pointer-events: none;
}
.cta-whatsapp::before { width: 300px; height: 300px; top: -100px; left: -100px; }
.cta-whatsapp::after  { width: 200px; height: 200px; bottom: -80px; right: -80px; }
.cta-whatsapp .container { position: relative; z-index: 2; }
.cta-whatsapp h2 { color: #fff; font-size: clamp(1.5rem, 3vw, 2.1rem); margin-bottom: .5rem; }
.cta-whatsapp p { color: rgba(255,255,255,.92); max-width: 48ch; margin: 0 auto 1.5rem; }
.cta-whatsapp .btn-wa-big {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  padding: 1rem 2rem;
  background: #fff;
  color: #128C7E !important;
  font-weight: 700;
  font-size: 1rem;
  border-radius: 999px;
  box-shadow: 0 6px 18px rgba(0,0,0,.2);
  transition: transform .15s ease, box-shadow .15s ease;
}
.btn-wa-big:hover { transform: translateY(-2px); box-shadow: 0 10px 24px rgba(0,0,0,.25); }
.btn-wa-big svg { width: 22px; height: 22px; }

/* Matrícula / desconto banner */
.banner-matricula {
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-dark) 100%);
  color: #fff;
  padding: clamp(2rem, 5vw, 3rem) 0;
}
.banner-matricula .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
}
.banner-matricula h3 { color: #fff; font-size: clamp(1.2rem, 2.5vw, 1.6rem); margin: 0 0 .25rem; }
.banner-matricula p { color: rgba(255,255,255,.9); margin: 0; }
.banner-matricula .btn {
  background: #fff;
  color: var(--brand) !important;
  font-weight: 700;
}
.banner-matricula .btn:hover { background: var(--ink); color: #fff !important; }

/* Clientes - grid de logos/placeholders */
.clientes-note {
  text-align: center;
  color: var(--muted);
  font-size: .85rem;
  margin-top: 1.5rem;
}
.clientes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 1rem;
}
.cliente-placeholder {
  aspect-ratio: 3/2;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-weight: 600;
  font-size: .85rem;
  text-align: center;
  padding: .5rem;
  transition: border-color .15s ease, transform .15s ease;
}
.cliente-placeholder:hover { border-color: var(--brand); transform: scale(1.03); }

/* =====================================================================
   v3 refinamentos - fotos reais, galeria, avatar, video embed
   ===================================================================== */

/* Cards de curso com foto no topo */
.curso-card-v3 {
  display: flex;
  flex-direction: column;
  padding: 0;
  overflow: hidden;
}
.curso-card-v3 .curso-foto {
  aspect-ratio: 16/10;
  width: 100%;
  object-fit: cover;
  display: block;
  transition: transform .4s ease;
}
.curso-card-v3:hover .curso-foto { transform: scale(1.04); }
.curso-card-v3 .curso-body {
  padding: 1.25rem 1.5rem 1.5rem;
  display: flex; flex-direction: column; gap: .5rem;
  flex-grow: 1;
}
.curso-card-v3 .curso-body h3 { margin: 0; }
.curso-card-v3 .curso-body p { flex-grow: 1; }

/* Galeria momentos reais - mosaico masonry */
.momentos-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: 140px;
  gap: .75rem;
}
.momento {
  overflow: hidden;
  border-radius: var(--radius);
  position: relative;
  box-shadow: var(--shadow-sm);
  transition: transform .25s ease, box-shadow .25s ease;
}
.momento:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.momento img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.momento:hover img { transform: scale(1.06); }
.momento::after {
  content: attr(data-label);
  position: absolute;
  left: .75rem; bottom: .5rem; right: .75rem;
  color: #fff;
  font-size: .8rem;
  font-weight: 600;
  text-shadow: 0 1px 4px rgba(0,0,0,.6);
  opacity: 0;
  transition: opacity .2s ease;
}
.momento:hover::after { opacity: 1; }
.momento-1 { grid-column: span 4; grid-row: span 2; }
.momento-2 { grid-column: span 2; grid-row: span 1; }
.momento-3 { grid-column: span 2; grid-row: span 1; }
.momento-4 { grid-column: span 3; grid-row: span 2; }
.momento-5 { grid-column: span 3; grid-row: span 2; }
.momento-6 { grid-column: span 2; grid-row: span 1; }
.momento-7 { grid-column: span 2; grid-row: span 1; }
.momento-8 { grid-column: span 2; grid-row: span 1; }
@media (max-width: 700px) {
  .momentos-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 150px; }
  .momento { grid-column: span 1 !important; grid-row: span 1 !important; }
  .momento-1 { grid-column: span 2 !important; grid-row: span 2 !important; }
}

/* Depoimentos - avatar com iniciais */
.depoimento-card cite {
  display: flex;
  align-items: center;
  gap: .85rem;
  margin-top: 1.5rem;
}
.depoimento-card cite::before { content: none !important; }
.avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand), var(--brand-dark));
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: .92rem;
  flex-shrink: 0;
  letter-spacing: .02em;
}
.avatar-blue { background: linear-gradient(135deg, #0b5394, #073869); }
.avatar-green { background: linear-gradient(135deg, #14b8a6, #0f766e); }
.depoimento-meta {
  display: flex;
  flex-direction: column;
  gap: .15rem;
  line-height: 1.3;
}
.depoimento-meta .nome { font-weight: 700; color: var(--ink); font-style: normal; font-size: .95rem; }
.depoimento-meta .cargo { font-weight: 500; color: var(--muted); font-size: .82rem; font-style: normal; }

/* Grid de clientes com logos reais */
.clientes-grid-v3 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 1rem;
}
.cliente-logo-card {
  aspect-ratio: 5/3;
  background: #fff;
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  padding: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
  overflow: hidden;
  position: relative;
  text-decoration: none;
}
.cliente-logo-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--brand);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s ease;
}
.cliente-logo-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--brand);
}
.cliente-logo-card:hover::before { transform: scaleX(1); }
.cliente-logo-card img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: saturate(.9);
  transition: filter .2s ease;
}
.cliente-logo-card:hover img { filter: saturate(1.1); }

/* Cards estilizados (fallback/legacy) */
.clientes-grid-v3-text {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
  gap: 1rem;
}
.cliente-card {
  aspect-ratio: 3/2;
  background: #fff;
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
  text-decoration: none;
  color: var(--ink);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cliente-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--brand);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s ease;
}
.cliente-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--brand);
  color: var(--ink);
}
.cliente-card:hover::before { transform: scaleX(1); }
.cliente-card .cliente-mark {
  width: 48px; height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 800;
  font-size: 1.3rem;
  letter-spacing: -.02em;
  margin-bottom: .15rem;
  flex-shrink: 0;
}
.cliente-card .cliente-nome {
  font-size: .95rem;
  font-weight: 700;
  line-height: 1.2;
  color: var(--ink);
}
.cliente-card .cliente-tipo {
  font-size: .72rem;
  color: var(--muted);
  font-weight: 500;
  letter-spacing: .03em;
  text-transform: uppercase;
}

/* Cores diferenciadas para cada mark */
.mark-blue   { background: linear-gradient(135deg, #0b5394, #1a73c4); }
.mark-purple { background: linear-gradient(135deg, #8e2de2, #4a00e0); }
.mark-teal   { background: linear-gradient(135deg, #14b8a6, #0f766e); }
.mark-orange { background: linear-gradient(135deg, var(--brand), var(--brand-dark)); }
.mark-red    { background: linear-gradient(135deg, #dc2626, #991b1b); }
.mark-green  { background: linear-gradient(135deg, #059669, #047857); }
.mark-indigo { background: linear-gradient(135deg, #4f46e5, #3730a3); }
.mark-pink   { background: linear-gradient(135deg, #db2777, #9d174d); }

.cliente-cta-card {
  background: var(--brand-soft);
  border: 2px dashed var(--brand);
  color: var(--brand-dark);
}
.cliente-cta-card .cliente-mark {
  background: transparent;
  color: var(--brand);
  font-size: 2rem;
}
.cliente-cta-card .cliente-nome { color: var(--brand-dark); }

/* Clientes - com logos reais */
.clientes-grid-real {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
  align-items: center;
}
.cliente-logo {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.5rem;
  aspect-ratio: 3/2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
  text-decoration: none;
  color: var(--ink);
}
.cliente-logo:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--brand);
}
.cliente-logo img {
  max-width: 100%;
  max-height: 60px;
  object-fit: contain;
  filter: grayscale(.2);
  transition: filter .2s ease;
}
.cliente-logo:hover img { filter: grayscale(0); }
.cliente-logo span { font-size: .78rem; color: var(--muted); text-align: center; font-weight: 500; }

/* Video embed real */
.video-wrap {
  position: relative;
  aspect-ratio: 16/9;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.video-wrap iframe, .video-wrap video {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  border: 0;
  display: block;
}
.video-intro-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 3rem;
  align-items: center;
}
@media (max-width: 900px) { .video-intro-grid { grid-template-columns: 1fr; } }

/* Sobre com foto lateral grande */
.sobre-v3 .sobre-media img {
  aspect-ratio: 4/5;
  object-fit: cover;
}

/* =====================================================================
   v3 Canva-faithful - layout modernizado seguindo estrutura Canva
   ===================================================================== */

/* Oferta principal "Em 1 mês" - destaque máximo */
.oferta-main {
  position: relative;
  padding: clamp(3rem, 7vw, 5rem) 0;
  background:
    linear-gradient(135deg, var(--brand) 0%, var(--brand-dark) 100%);
  color: #fff;
  overflow: hidden;
}
.oferta-main::before, .oferta-main::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,.06);
  pointer-events: none;
}
.oferta-main::before { width: 400px; height: 400px; top: -150px; right: -100px; }
.oferta-main::after  { width: 250px; height: 250px; bottom: -80px; left: -60px; }

.oferta-grid {
  position: relative; z-index: 2;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 3rem;
  align-items: center;
}
@media (max-width: 900px) { .oferta-grid { grid-template-columns: 1fr; } }

.oferta-text .eyebrow-light {
  display: inline-block;
  background: rgba(255,255,255,.15);
  color: #fff;
  padding: .4rem .9rem;
  border-radius: 999px;
  font-size: .78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: 1rem;
  backdrop-filter: blur(6px);
}
.oferta-text h2 {
  color: #fff;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  line-height: 1.15;
  margin-bottom: 1rem;
}
.oferta-text h2 .destaque {
  display: inline-block;
  background: #fff;
  color: var(--brand);
  padding: .05em .35em;
  border-radius: .15em;
  font-weight: 900;
}
.oferta-text .lead-oferta {
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  color: rgba(255,255,255,.95);
  max-width: 48ch;
  margin-bottom: 1.5rem;
}
.beneficios-list {
  list-style: none; padding: 0; margin: 0 0 1.75rem;
  display: grid; gap: .6rem;
}
.beneficios-list li {
  display: flex;
  gap: .65rem;
  align-items: flex-start;
  color: #fff;
  font-weight: 500;
  line-height: 1.5;
}
.beneficios-list li::before {
  content: "";
  width: 22px; height: 22px;
  border-radius: 50%;
  background: #fff;
  flex-shrink: 0;
  margin-top: 1px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23e86a10' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-size: 14px;
  background-position: center;
  background-repeat: no-repeat;
}
.oferta-badge-presencial {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .75rem 1.25rem;
  background: #fff;
  color: var(--brand);
  border-radius: 999px;
  font-weight: 700;
  margin-bottom: 1.5rem;
}
.oferta-badge-presencial svg { width: 16px; height: 16px; }

.oferta-ctas { display: flex; gap: .75rem; flex-wrap: wrap; }
.oferta-ctas .btn-white {
  background: #fff;
  color: var(--brand) !important;
  padding: 1rem 1.75rem;
  border-radius: 999px;
  font-weight: 800;
  font-size: 1.02rem;
}
.oferta-ctas .btn-white:hover { background: var(--ink); color: #fff !important; }
.oferta-ctas .btn-outline-white {
  border: 2px solid rgba(255,255,255,.5);
  color: #fff !important;
  padding: 1rem 1.75rem;
  border-radius: 999px;
  font-weight: 700;
  background: transparent;
}
.oferta-ctas .btn-outline-white:hover { border-color: #fff; background: rgba(255,255,255,.1); }

.oferta-media {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: 0 20px 50px -10px rgba(0,0,0,.4);
}
.oferta-media img { width: 100%; height: 100%; object-fit: cover; }
.oferta-media::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,.3) 100%);
}
.oferta-media .media-badge {
  position: absolute;
  bottom: 1rem; left: 1rem;
  background: rgba(0,0,0,.7);
  color: #fff;
  padding: .5rem .9rem;
  border-radius: 999px;
  font-size: .82rem;
  font-weight: 600;
  backdrop-filter: blur(8px);
  z-index: 2;
}

/* Faixa salarial destacada */
.salario-banner {
  background: linear-gradient(135deg, var(--ink) 0%, #0f1520 100%);
  color: #fff;
  text-align: center;
  padding: clamp(2.5rem, 6vw, 4rem) 0;
}
.salario-banner h2 {
  color: #fff;
  font-size: clamp(1.5rem, 3vw, 2.3rem);
  margin-bottom: .5rem;
}
.salario-banner .destaque-grande {
  color: var(--brand-light);
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 900;
  letter-spacing: -.02em;
  line-height: 1;
  display: block;
  margin: 1rem 0;
}
.salario-banner p { color: rgba(255,255,255,.85); max-width: 52ch; margin: 0 auto; }

/* CTA "Clique e veja" - section separadora */
.clique-cta {
  padding: clamp(3rem, 7vw, 5rem) 0;
  background: var(--bg);
  text-align: center;
}
.clique-cta h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  margin-bottom: 1.5rem;
}
.clique-cta h2 .strong-orange { color: var(--brand); }

/* Video section (slots pra YouTube quando o cliente enviar) */
.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.25rem;
}
.video-placeholder {
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, #1a1f2a, #2d3648);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #c7cdd9;
  font-size: .9rem;
  text-align: center;
  padding: 1rem;
  position: relative;
  overflow: hidden;
}
.video-placeholder::before {
  content: "";
  position: absolute;
  width: 60px; height: 60px;
  border-radius: 50%;
  background: rgba(255,255,255,.15);
  display: flex;
  align-items: center;
  justify-content: center;
}
.video-placeholder::after {
  content: "";
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-40%, -50%);
  border-left: 16px solid #fff;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
}
.video-caption {
  position: absolute;
  bottom: .75rem; left: 1rem; right: 1rem;
  font-size: .82rem;
  color: rgba(255,255,255,.8);
  text-align: left;
  z-index: 2;
}
