/* ============================================================
   PROJETA CURSOS LAPA – Saúde e Beleza
   CSS Premium | Alta Conversão | Totalmente Responsivo
   ============================================================ */

/* ── RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Poppins', sans-serif;
  color: #1F2937;
  background: #fff;
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a   { text-decoration: none; color: inherit; transition: color .2s; }
ul  { list-style: none; }

/* ── CSS VARIABLES ── */
:root {
  --red:       #E53935;
  --red-dark:  #C62828;
  --red-light: #FFEBEE;
  --orange:    #FF6F00;
  --grad:      linear-gradient(135deg, #FF6F00 0%, #E53935 100%);
  --bg-light:  #F9FAFB;
  --dark:      #111827;
  --text:      #1F2937;
  --text-sec:  #6B7280;
  --text-muted:#9CA3AF;
  --white:     #FFFFFF;
  --shadow-xs: 0 2px 8px rgba(0,0,0,.05);
  --shadow-sm: 0 4px 16px rgba(0,0,0,.08);
  --shadow-md: 0 10px 30px rgba(0,0,0,.10);
  --shadow-lg: 0 20px 50px rgba(0,0,0,.14);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 999px;
  --ease: .3s ease;
}

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

/* ── SELECTION ── */
::selection { background: rgba(229,57,53,.15); color: var(--red-dark); }

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #f1f1f1; }
::-webkit-scrollbar-thumb { background: var(--red); border-radius: 3px; }

/* ── FOCUS ── */
:focus-visible { outline: 2px solid var(--red); outline-offset: 3px; border-radius: 4px; }

/* ─────────────────────────────
   BUTTONS
───────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: .9rem;
  border: none;
  cursor: pointer;
  border-radius: var(--radius-full);
  transition: all var(--ease);
  white-space: nowrap;
  text-decoration: none;
}
.btn:disabled { opacity: .65; cursor: not-allowed; transform: none !important; }

/* Primary – vermelho */
.btn-primary {
  background: var(--red);
  color: var(--white);
  padding: 12px 28px;
}
.btn-primary:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(229,57,53,.35);
  color: var(--white);
}

/* Large */
.btn-lg { padding: 14px 36px; font-size: 1rem; }

/* Full width */
.btn-full { width: 100%; padding: 14px; }

/* Curso card btn */
.btn-curso {
  background: var(--red);
  color: var(--white);
  width: 100%;
  padding: 14px;
  font-size: .92rem;
  font-weight: 700;
  border-radius: var(--radius-full);
}
.btn-curso:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(229,57,53,.35);
  color: var(--white);
}

/* Outline white */
.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
  padding: 12px 28px;
}
.btn-outline-white:hover { background: rgba(255,255,255,.15); color: var(--white); }

/* White + red text */
.btn-white-red {
  background: var(--white);
  color: var(--red);
  padding: 14px 36px;
  font-weight: 700;
  font-size: 1rem;
}
.btn-white-red:hover {
  background: #f5f5f5;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0,0,0,.2);
}

/* WhatsApp hero */
.btn-whatsapp-hero {
  background: #25D366;
  color: var(--white);
}
.btn-whatsapp-hero:hover {
  background: #1ebe59;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(37,211,102,.4);
  color: var(--white);
}

/* ─────────────────────────────
   SECTION UTILITIES
───────────────────────────── */
.section { padding: 80px 0; }

.section-header { text-align: center; margin-bottom: 56px; }
.section-header.light { color: var(--white); }

.section-tag {
  display: inline-block;
  background: var(--red-light);
  color: var(--red);
  font-size: .78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  padding: 6px 18px;
  border-radius: var(--radius-full);
  margin-bottom: 14px;
}
.tag-white { background: rgba(255,255,255,.2); color: var(--white); }

.section-title {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.2;
  margin-bottom: 14px;
}
.section-header.light .section-title { color: var(--white); }

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-sec);
  max-width: 560px;
  margin: 0 auto;
}

/* ─────────────────────────────
   ANIMATIONS
───────────────────────────── */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(32px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes pulse-ring {
  0%   { transform: scale(.9); opacity: .8; }
  70%  { transform: scale(1.55); opacity: 0; }
  100% { transform: scale(1.55); opacity: 0; }
}

.animate-in { animation: fadeInUp .55s ease forwards; }

/* ═══════════════════════════════
   HEADER
═══════════════════════════════ */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: 80px;
  background: var(--white);
  box-shadow: var(--shadow-xs);
  transition: box-shadow var(--ease);
}
.header.scrolled { box-shadow: 0 4px 20px rgba(0,0,0,.12); }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  gap: 24px;
}

/* Logo */
.logo-link { flex-shrink: 0; line-height: 0; }

.header-logo {
  height: 60px;
  max-width: 220px;
  width: auto;
  object-fit: contain;
  object-position: left center;
}

/* Nav */
.nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav-link {
  font-size: .88rem;
  font-weight: 500;
  color: var(--text);
  position: relative;
  padding: 4px 0;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 2px;
  background: var(--red);
  transition: width var(--ease);
}
.nav-link:hover,
.nav-link.active { color: var(--red); }
.nav-link:hover::after,
.nav-link.active::after { width: 100%; }

/* Header actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

/* Hamburger */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.menu-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all .3s;
}
.menu-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.menu-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ═══════════════════════════════
   HERO
═══════════════════════════════ */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 680px;
  margin-top: 80px;
  /* Garante que a coluna direita tenha altura suficiente para imagem 16:9 */
}

/* Left side */
.hero-left {
  background: linear-gradient(145deg, #0f0c29 0%, #1a1435 40%, #0f3460 100%);
  position: relative;
  overflow: hidden;
}
.hero-left::before {
  content: '';
  position: absolute;
  top: -120px; left: -120px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(229,57,53,.18) 0%, transparent 70%);
  pointer-events: none;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  padding: 80px 56px 80px 48px;
}

.hero-content { max-width: 520px; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(229,57,53,.22);
  border: 1px solid rgba(229,57,53,.45);
  color: #FFD0D0;
  font-size: .76rem;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: var(--radius-full);
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.hero-badge i { color: #FFD700; }

.hero-title {
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 22px;
}
.hero-title .highlight { color: #FF7043; }

.hero-subtitle {
  font-size: 1.05rem;
  color: #E5E7EB;
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 480px;
}

.hero-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 22px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,.12);
}
.hero-stat { display: flex; flex-direction: column; }
.stat-num { font-size: 1.5rem; font-weight: 800; color: var(--white); line-height: 1; }
.stat-label { font-size: .7rem; color: #9CA3AF; margin-top: 3px; }
.hero-stat-divider { width: 1px; height: 36px; background: rgba(255,255,255,.18); flex-shrink: 0; }

/* Right side */
.hero-right {
  position: relative;
  overflow: hidden;
  min-height: 480px;
}
.hero-img {
  width: 100%;
  height: 100%;
  min-height: 480px;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform .5s ease;
}
.hero-right:hover .hero-img { transform: scale(1.04); }
.hero-right::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(15,52,96,.25) 0%, transparent 35%);
  pointer-events: none;
}

/* ═══════════════════════════════
   FLOATING CARDS
═══════════════════════════════ */
.floating-cards-wrapper {
  position: relative;
  z-index: 10;
  margin-top: -48px;
  padding-bottom: 8px;
}
.floating-cards {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}
.floating-card {
  background: var(--white);
  padding: 20px 28px;
  border-radius: var(--radius-md);
  box-shadow: 0 10px 30px rgba(0,0,0,.12);
  display: flex;
  align-items: center;
  gap: 16px;
  min-width: 240px;
  flex: 1;
  max-width: 280px;
  transition: transform var(--ease), box-shadow var(--ease);
}
.floating-card:hover { transform: translateY(-4px); box-shadow: 0 20px 45px rgba(0,0,0,.16); }

.floating-card-icon {
  width: 52px; height: 52px;
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  color: var(--white);
  flex-shrink: 0;
}
.bg-red    { background: var(--red); }
.bg-orange { background: var(--orange); }

.floating-card-text { display: flex; flex-direction: column; gap: 2px; }
.floating-card-text strong { font-size: .88rem; font-weight: 700; color: var(--text); }
.floating-card-text span   { font-size: .76rem; color: var(--text-sec); }

/* ═══════════════════════════════
   CURSOS – 3 COLUNAS
═══════════════════════════════ */
.cursos-section {
  background: var(--white);
  padding-top: 110px;
}

.cursos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

/* Card */
.curso-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform var(--ease), box-shadow var(--ease);
}
.curso-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 60px rgba(0,0,0,.15);
}

/* Image area */
.curso-img-wrap {
  position: relative;
  overflow: hidden;
}
.curso-img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  object-position: center center;
  display: block;
  transition: transform .55s ease;
}
.curso-card:hover .curso-img { transform: scale(1.06); }

/* Emoji badge */
.curso-emoji {
  position: absolute;
  top: 14px; right: 14px;
  font-size: 1.6rem;
  background: rgba(255,255,255,.92);
  border-radius: 50%;
  width: 46px; height: 46px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 12px rgba(0,0,0,.12);
  line-height: 1;
}

/* Card body */
.curso-body {
  padding: 28px 26px 26px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.curso-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
  line-height: 1.35;
}
.curso-desc {
  font-size: .85rem;
  color: var(--text-sec);
  line-height: 1.65;
  margin-bottom: 24px;
  flex: 1;
}

/* ═══════════════════════════════
   BENEFÍCIOS
═══════════════════════════════ */
.beneficios-section { background: var(--bg-light); }

.beneficios-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 28px;
  text-align: center;
}
.beneficio-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 32px 16px;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: 0 4px 16px rgba(0,0,0,.05);
  transition: transform var(--ease), box-shadow var(--ease);
}
.beneficio-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0,0,0,.1);
}
.beneficio-icon {
  width: 72px; height: 72px;
  background: var(--red-light);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem;
  color: var(--red);
  margin-bottom: 16px;
  transition: background var(--ease), color var(--ease);
}
.beneficio-item:hover .beneficio-icon { background: var(--red); color: var(--white); }

.beneficio-title {
  font-size: .93rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
  line-height: 1.3;
}
.beneficio-desc { font-size: .8rem; color: var(--text-sec); line-height: 1.55; }

/* ═══════════════════════════════
   DEPOIMENTOS
═══════════════════════════════ */
.depoimentos-section {
  background: var(--grad);
  padding: 100px 0;
}
.stars-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  flex-wrap: wrap;
  margin-top: 16px;
}
.stars-row .fas.fa-star { color: #FFD700; font-size: 1.3rem; }
.stars-label {
  font-size: .85rem;
  color: rgba(255,255,255,.85);
  margin-left: 8px;
  font-style: italic;
}

.depoimentos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.depoimento-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 28px;
  box-shadow: 0 8px 32px rgba(0,0,0,.14);
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform var(--ease);
}
.depoimento-card:hover { transform: translateY(-6px); }

.depoimento-header { display: flex; align-items: center; gap: 14px; }
.depoimento-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-size: .95rem;
  flex-shrink: 0;
}
.depoimento-header > div:last-child { display: flex; flex-direction: column; }
.depoimento-header strong { font-size: .93rem; color: var(--text); }
.depoimento-header span   { font-size: .76rem; color: var(--text-sec); }

.depoimento-stars .fas.fa-star { color: #FFD700; font-size: .85rem; }

.depoimento-text {
  font-size: .87rem;
  color: var(--text-sec);
  line-height: 1.65;
  font-style: italic;
  flex: 1;
}
.depoimento-badge {
  font-size: .74rem;
  color: #10B981;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 4px;
}

/* ═══════════════════════════════
   SOBRE
═══════════════════════════════ */
.sobre-section { background: var(--white); }

.sobre-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.sobre-img-wrap { position: relative; }
.sobre-img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  object-position: center;
  border-radius: var(--radius-lg);
  box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}
.sobre-img-wrap::before {
  content: '';
  position: absolute;
  inset: -12px;
  border-radius: calc(var(--radius-lg) + 12px);
  border: 2px dashed rgba(229,57,53,.2);
  z-index: -1;
}
.sobre-badge {
  position: absolute;
  bottom: -20px; right: -16px;
  background: var(--grad);
  color: var(--white);
  padding: 18px 24px;
  border-radius: var(--radius-md);
  text-align: center;
  box-shadow: 0 12px 30px rgba(229,57,53,.4);
}
.sobre-badge-num { display: block; font-size: 2rem; font-weight: 800; line-height: 1; }
.sobre-badge-text { font-size: .75rem; font-weight: 500; opacity: .9; }

.sobre-content { display: flex; flex-direction: column; gap: 18px; }
.sobre-title { font-size: 1.75rem; font-weight: 700; color: var(--text); line-height: 1.3; }
.sobre-text  { font-size: .95rem; color: var(--text-sec); line-height: 1.75; }

.sobre-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding: 22px 0;
  border-top: 1px solid #F3F4F6;
  border-bottom: 1px solid #F3F4F6;
}
.sobre-stat {
  display: flex; flex-direction: column;
  align-items: center; text-align: center;
  gap: 4px;
}
.sobre-stat i    { color: var(--red); font-size: 1.4rem; }
.sobre-stat strong { font-size: 1.3rem; font-weight: 800; color: var(--text); }
.sobre-stat span { font-size: .75rem; color: var(--text-sec); }

/* ═══════════════════════════════
   HERO — ajuste da imagem 16:9
═══════════════════════════════ */
@media (min-width: 769px) {
  .hero {
    min-height: clamp(560px, 60vw, 800px);
  }
  .hero-right {
    min-height: 480px;
  }
}

/* ═══════════════════════════════
   ESTRUTURA DA ESCOLA
═══════════════════════════════ */
.estrutura-section {
  background: var(--bg-light);
  padding: 100px 0;
}

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

/* ── Imagem ── */
.estrutura-img-col {}

.estrutura-img-wrap {
  position: relative;
}

.estrutura-img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
  display: block;
}

.estrutura-img-badge {
  position: absolute;
  bottom: -18px;
  left: 24px;
  background: var(--grad);
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: var(--radius-md);
  font-size: .85rem;
  font-weight: 600;
  box-shadow: 0 10px 28px rgba(229,57,53,.35);
  white-space: nowrap;
}
.estrutura-img-badge i { font-size: 1rem; color: #FFD700; }

/* ── Conteúdo ── */
.estrutura-content {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.estrutura-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 20px 24px;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: 0 4px 16px rgba(0,0,0,0.05);
  transition: transform var(--ease), box-shadow var(--ease);
  border-left: 4px solid transparent;
}
.estrutura-item:hover {
  transform: translateX(6px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.1);
  border-left-color: var(--red);
}

.estrutura-icon {
  width: 52px;
  height: 52px;
  min-width: 52px;
  border-radius: var(--radius-sm);
  background: var(--red-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--red);
  transition: background var(--ease), color var(--ease);
}
.estrutura-item:hover .estrutura-icon {
  background: var(--red);
  color: var(--white);
}

.estrutura-text h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
  line-height: 1.3;
}
.estrutura-text p {
  font-size: .84rem;
  color: var(--text-sec);
  line-height: 1.6;
}

/* Frase de encerramento emocional */
.estrutura-closing {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 20px 24px;
  background: linear-gradient(135deg, rgba(229,57,53,.06) 0%, rgba(255,111,0,.06) 100%);
  border-radius: var(--radius-md);
  border: 1px dashed rgba(229,57,53,.25);
}
.estrutura-closing i {
  font-size: 1.5rem;
  color: var(--red);
  opacity: .5;
  flex-shrink: 0;
  margin-top: 2px;
}
.estrutura-closing p {
  font-size: .9rem;
  color: var(--text-sec);
  line-height: 1.7;
  font-style: italic;
}

/* Responsive – tablet */
@media (max-width: 1024px) {
  .estrutura-grid { gap: 40px; }
  .estrutura-img  { height: 400px; }
}

/* Responsive – mobile */
@media (max-width: 768px) {
  .estrutura-section { padding: 60px 0; }
  .estrutura-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .estrutura-img { height: 280px; }
  .estrutura-img-badge { font-size: .78rem; padding: 12px 16px; }
  .estrutura-item { padding: 16px 18px; }
  .estrutura-content { gap: 20px; }
  .estrutura-text h3 { font-size: .95rem; }
  .estrutura-closing { padding: 16px 18px; }
}

@media (max-width: 480px) {
  .estrutura-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
    border-left: none;
    border-top: 4px solid transparent;
  }
  .estrutura-item:hover {
    transform: translateY(-4px);
    border-left-color: transparent;
    border-top-color: var(--red);
  }
  .estrutura-icon {
    width: 58px;
    height: 58px;
    font-size: 1.5rem;
  }
  .estrutura-closing { flex-direction: column; align-items: center; text-align: center; }
}

/* ═══════════════════════════════
   CTA FINAL
═══════════════════════════════ */
.cta-final {
  background: var(--red);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.cta-final::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Ccircle cx='30' cy='30' r='30'/%3E%3C/g%3E%3C/svg%3E") repeat;
  pointer-events: none;
}
.cta-final-content { text-align: center; position: relative; z-index: 1; }
.cta-final-icon { font-size: 3rem; color: rgba(255,255,255,.3); margin-bottom: 20px; }
.cta-final-title {
  font-size: 2rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
  max-width: 640px;
  margin: 0 auto 18px;
}
.cta-final-subtitle {
  font-size: 1.05rem;
  color: rgba(255,255,255,.85);
  max-width: 480px;
  margin: 0 auto 40px;
  line-height: 1.65;
}
.cta-final-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* ═══════════════════════════════
   FOOTER
═══════════════════════════════ */
.footer {
  background: #111827;
  padding: 64px 0 0;
  color: rgba(255,255,255,.65);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1.2fr 1.4fr 1.6fr;
  gap: 48px;
  padding-bottom: 48px;
}

/* Brand */
.footer-brand {}
.footer-logo-img {
  height: 56px;
  max-width: 200px;
  width: auto;
  object-fit: contain;
  object-position: left center;
  filter: brightness(0) invert(1);
  margin-bottom: 18px;
  display: block;
}
.footer-desc {
  font-size: .83rem;
  line-height: 1.65;
  color: rgba(255,255,255,.5);
  margin-bottom: 24px;
}
.footer-social { display: flex; gap: 10px; flex-wrap: wrap; }
.social-link {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.65);
  font-size: .95rem;
  transition: background var(--ease), color var(--ease);
}
.social-link:hover      { background: var(--red); color: var(--white); }
.social-link.social-wa:hover { background: #25D366; }

/* Columns */
.footer-heading {
  font-size: .86rem;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 18px;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: .82rem;
  color: rgba(255,255,255,.5);
  transition: color var(--ease), padding-left var(--ease);
}
.footer-links a:hover { color: var(--white); padding-left: 4px; }

/* Schedule */
.footer-schedule { display: flex; flex-direction: column; gap: 10px; }
.footer-schedule li {
  display: flex;
  justify-content: space-between;
  font-size: .8rem;
  color: rgba(255,255,255,.55);
  gap: 8px;
}
.footer-schedule .day   { color: rgba(255,255,255,.75); font-weight: 500; }
.footer-schedule .hours { font-weight: 600; color: rgba(255,255,255,.65); }
.footer-schedule li.closed .closed-tag { color: #F87171; }

/* Contact */
.footer-contact-list { display: flex; flex-direction: column; gap: 14px; }
.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .82rem;
  color: rgba(255,255,255,.55);
  line-height: 1.5;
}
.footer-contact-list li i {
  color: var(--red);
  font-size: .85rem;
  margin-top: 2px;
  flex-shrink: 0;
  width: 14px;
}
.footer-contact-list a {
  color: rgba(255,255,255,.55);
  transition: color var(--ease);
}
.footer-contact-list a:hover { color: var(--white); }

/* Bottom bar */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: .78rem;
  color: rgba(255,255,255,.35);
  flex-wrap: wrap;
  gap: 8px;
}

/* ═══════════════════════════════
   WHATSAPP FLOAT
═══════════════════════════════ */
.whatsapp-float {
  position: fixed;
  bottom: 24px; right: 24px;
  z-index: 999;
  width: 60px; height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  font-size: 1.75rem;
  box-shadow: 0 8px 30px rgba(37,211,102,.55);
  transition: transform var(--ease), box-shadow var(--ease);
  text-decoration: none;
}
.whatsapp-float:hover {
  transform: scale(1.12);
  box-shadow: 0 14px 40px rgba(37,211,102,.65);
  color: var(--white);
}
.whatsapp-pulse {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: rgba(37,211,102,.35);
  animation: pulse-ring 2.5s ease-out infinite;
}

/* ═══════════════════════════════
   TOAST
═══════════════════════════════ */
.toast {
  position: fixed;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%) translateY(30px);
  background: var(--dark);
  color: var(--white);
  padding: 14px 28px;
  border-radius: var(--radius-full);
  font-size: .88rem;
  font-weight: 500;
  pointer-events: none;
  opacity: 0;
  transition: all .35s ease;
  z-index: 2000;
  white-space: nowrap;
}
.toast.show    { opacity: 1; transform: translateX(-50%) translateY(0); }
.toast.success { background: #10B981; }
.toast.error   { background: var(--red); }

/* ═══════════════════════════════
   RESPONSIVE – 1024px
═══════════════════════════════ */
@media (max-width: 1024px) {
  .cursos-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
  }
  .beneficios-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
  .depoimentos-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
  .nav { gap: 18px; }
  .hero-overlay { padding: 60px 40px; }
  .sobre-grid { gap: 40px; }
  .header-logo { height: 52px; max-width: 190px; }
}

/* ═══════════════════════════════
   RESPONSIVE – 768px
═══════════════════════════════ */
@media (max-width: 768px) {
  /* Header */
  .nav {
    position: fixed;
    top: 80px; left: 0; right: 0;
    background: var(--white);
    flex-direction: column;
    align-items: flex-start;
    padding: 24px;
    gap: 4px;
    box-shadow: 0 8px 24px rgba(0,0,0,.1);
    transform: translateX(-100%);
    transition: transform .35s ease;
    z-index: 999;
  }
  .nav.open { transform: translateX(0); }
  .nav-link { font-size: 1rem; padding: 10px 0; width: 100%; border-bottom: 1px solid #F3F4F6; }
  .header-actions .btn-primary { display: none; }
  .menu-toggle { display: flex; }

  /* Hero */
  .hero { grid-template-columns: 1fr; }
  .hero-right { height: 56.25vw; min-height: 220px; max-height: 380px; order: -1; }
  .hero-img { min-height: unset; height: 100%; }
  .hero-overlay { padding: 36px 24px; position: relative; }
  .hero-left { min-height: auto; }
  .hero-buttons { flex-direction: column; align-items: stretch; }
  .hero-buttons .btn { justify-content: center; }
  .hero-stats { gap: 14px; }
  .stat-num { font-size: 1.2rem; }

  /* Floating cards */
  .floating-cards { flex-direction: column; align-items: center; }
  .floating-card  { max-width: 100%; width: 100%; }
  .floating-cards-wrapper { margin-top: -24px; }

  /* Cursos */
  .cursos-section { padding-top: 80px; }
  .cursos-grid { grid-template-columns: 1fr; gap: 28px; }

  /* Benefícios */
  .beneficios-grid { grid-template-columns: repeat(2, 1fr); gap: 18px; }

  /* Depoimentos */
  .depoimentos-grid { grid-template-columns: 1fr; }

  /* Sobre */
  .sobre-grid { grid-template-columns: 1fr; gap: 48px; }
  .sobre-img  { height: 300px; }
  .sobre-badge { right: 12px; bottom: -16px; }

  /* CTA Final */
  .cta-final-title { font-size: 1.6rem; }
  .cta-final-buttons { flex-direction: column; align-items: stretch; }
  .cta-final-buttons .btn { justify-content: center; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; align-items: center; text-align: center; }

  .section-title { font-size: 1.8rem; }
}

/* ═══════════════════════════════
   RESPONSIVE – 480px
═══════════════════════════════ */
@media (max-width: 480px) {
  .beneficios-grid { grid-template-columns: 1fr; }
  .sobre-stats     { grid-template-columns: 1fr; gap: 14px; }
  .hero-title      { font-size: 1.75rem; }
  .depoimentos-section { padding: 64px 0; }
  .section { padding: 60px 0; }
  .header-logo { height: 40px; max-width: 160px; }
}

/* ═══════════════════════════════
   PRINT
═══════════════════════════════ */
@media print {
  .header, .whatsapp-float, .cta-final, footer, .hero-buttons { display: none !important; }
  body { background: white; color: black; }
}
