/* ─── WHY CARDS ───────────────────────────────────────── */
.why { background: var(--bg-light); padding: var(--section-y) 0; }
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--grid-gap); }
.why-card {
  background: #fff; border: 1px solid var(--border); border-radius: 12px;
  padding: var(--card-pad) 24px; position: relative; overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  cursor: default;
}
.why-card::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--red-glow) 0%, transparent 60%);
  opacity: 0; transition: opacity 0.3s ease;
}
.why-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: rgba(192,57,43,0.2); }
.why-card:hover::before { opacity: 1; }
.why-icon {
  width: 48px; height: 48px; background: #fdecea; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px; transition: background 0.3s ease; position: relative; z-index: 1;
}
.why-icon svg { width: 22px; height: 22px; fill: var(--red); transition: fill 0.3s ease; }
.why-card:hover .why-icon { background: var(--red); }
.why-card:hover .why-icon svg { fill: #fff; }
.why-card h3 { font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 15.5px; margin-bottom: 12px; color: var(--text-dark); position: relative; z-index: 1; }
.why-card p { font-size: 13.5px; color: var(--text-light); line-height: 1.7; position: relative; z-index: 1; }

/* ─── COURSE CARDS ────────────────────────────────────── */
.courses { padding: var(--section-y) 0; background: #fff; }
.courses-header { display: grid; grid-template-columns: 1fr 1fr; gap: var(--grid-gap); align-items: center; margin-bottom: 44px; }
.courses-header .section-underline { margin-bottom: 0; }
.courses-header p { font-size: 15px; color: var(--text-light); line-height: 1.7; }
.courses-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--grid-gap); margin-bottom: 44px; }
.course-card {
  border: 1px solid var(--border); border-radius: 14px; overflow: hidden;
  background: #fff; display: flex; flex-direction: column;
  transition: transform 0.35s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.3s ease, border-color 0.3s ease;
}
.course-card:hover { transform: translateY(-8px) scale(1.01); box-shadow: var(--shadow-lg); border-color: rgba(192,57,43,0.18); }
.course-img {
  width: 100%; height: 156px;
  background: linear-gradient(135deg, #e4e4e4 0%, #d5d5d5 100%);
  position: relative; overflow: hidden; display: flex; align-items: center; justify-content: center;
}
.course-img-bg { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; }
.course-img::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to bottom, transparent 40%, rgba(0,0,0,0.1) 100%); }
.course-badge-wrap { position: absolute; top: 10px; left: 10px; z-index: 2; display: flex; gap: 6px; }
.course-tag { font-size: 10.5px; font-weight: 700; padding: 3px 9px; border-radius: 5px; letter-spacing: 0.3px; }
.course-tag-new     { background: var(--red); color: #fff; }
.course-tag-aha     { background: #1e40af; color: #fff; }
.course-tag-popular { background: #065f46; color: #fff; }
.course-bookmark {
  position: absolute; top: 10px; right: 10px; z-index: 2;
  width: 30px; height: 30px; background: rgba(255,255,255,0.94);
  border-radius: 6px; border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s, transform 0.2s;
}
.course-bookmark:hover { background: #fff; transform: scale(1.1); }
.course-bookmark svg { width: 14px; height: 14px; fill: #bbb; transition: fill 0.2s; }
.course-bookmark:hover svg, .course-bookmark.saved svg { fill: var(--red); }
.course-body { padding: 18px 18px 12px; flex: 1; }
.course-meta { font-size: 11.5px; color: var(--text-light); display: flex; align-items: center; gap: 6px; margin-bottom: 8px; }
.course-meta-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--red); flex-shrink: 0; }
.course-body h4 { font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 14px; color: var(--text-dark); margin-bottom: 10px; line-height: 1.45; }
.course-info-row { display: flex; align-items: center; gap: 14px; font-size: 12px; color: var(--text-light); }
.course-info-item { display: flex; align-items: center; gap: 4px; }
.course-footer { padding: 12px 18px; border-top: 1px solid var(--border); background: #fafafa; display: flex; align-items: center; justify-content: space-between; }
.course-price-wrap {}
.course-price { font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 17px; color: var(--text-dark); }
.course-price-label { font-size: 11px; color: var(--text-light); display: block; }
.btn-add-cart {
  display: inline-flex; align-items: center; gap: 6px;
  background: transparent; border: 1.5px solid var(--border);
  color: var(--text-mid); font-size: 12px; font-weight: 600; padding: 7px 13px;
  border-radius: 6px; cursor: pointer; font-family: 'Inter', sans-serif;
  transition: border-color 0.2s, color 0.2s, background 0.2s, transform 0.15s;
}
.btn-add-cart:hover { border-color: var(--red); color: var(--red); background: var(--red-glow); transform: translateY(-1px); }
.courses-cta { text-align: center; }

/* ─── HOSPITAL / CAPACITE ─────────────────────────────── */
.hospital { padding: var(--section-y) 0; background: #fff; border-top: 1px solid var(--border); }
.hospital-header { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; margin-bottom: 32px; }
.hospital-header-left h2 { font-family: 'Montserrat', sans-serif; font-weight: 900; font-size: 30px; line-height: 1.2; margin-bottom: 10px; letter-spacing: -0.3px; }
.hospital-header-right { font-size: 15px; color: var(--text-light); line-height: 1.75; padding-top: 4px; }
.hospital-cards { display: grid; grid-template-columns: 1fr 1fr; gap: var(--grid-gap); margin-bottom: 28px; }
.hosp-card {
  background: var(--bg-cream); border: none; border-radius: 12px;
  padding: var(--card-pad) 28px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.hosp-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.hosp-card-icon { width: 48px; height: 48px; background: #fdecea; border-radius: 10px; display: flex; align-items: center; justify-content: center; margin-bottom: 20px; transition: background 0.3s; }
.hosp-card:hover .hosp-card-icon { background: var(--red); }
.hosp-card:hover .hosp-card-icon svg { stroke: #fff; }
.hosp-card-icon svg { transition: stroke 0.3s; }
.hosp-card h4 { font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 15.5px; color: var(--text-dark); margin-bottom: 12px; }
.hosp-card:hover h4 { color: var(--red); }
.hosp-card p { font-size: 13.5px; color: var(--text-light); line-height: 1.75; }
.hospital-link {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--red); font-weight: 700; font-size: 14px; text-decoration: none;
  transition: gap 0.2s;
}
.hospital-link:hover { gap: 10px; }

/* ─── CATALOG LAYOUT (cursos) ─────────────────────────── */
.catalog-layout { display: grid; grid-template-columns: 260px 1fr; gap: 36px; padding: var(--section-y) 0; align-items: start; }
.sidebar { position: sticky; top: calc(68px + 24px); }
.sidebar-block { background: #fff; border: 1px solid var(--border); border-radius: 12px; overflow: hidden; margin-bottom: 16px; }
.sidebar-block-title { font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 12px; color: var(--text-dark); text-transform: uppercase; letter-spacing: 0.8px; padding: 16px 18px 14px; border-bottom: 1px solid var(--border); display: flex; align-items: center; justify-content: space-between; }
.sidebar-clear { font-size: 11px; color: var(--red); font-weight: 600; background: none; border: none; cursor: pointer; font-family: 'Inter', sans-serif; text-transform: none; letter-spacing: 0; }
.sidebar-clear:hover { text-decoration: underline; }
.sidebar-options { padding: 12px 18px 16px; }
.sidebar-option { display: flex; align-items: center; gap: 10px; padding: 8px 0; cursor: pointer; }
.sidebar-option input[type="checkbox"] { width: 16px; height: 16px; accent-color: var(--red); cursor: pointer; flex-shrink: 0; }
.sidebar-option label { font-size: 13.5px; color: var(--text-mid); cursor: pointer; flex: 1; display: flex; justify-content: space-between; align-items: center; }
.sidebar-option label span { font-size: 11px; color: var(--text-light); background: var(--bg-light); padding: 1px 7px; border-radius: 100px; }
.sidebar-option:hover label { color: var(--text-dark); }
.price-range { padding: 16px 18px; }
.price-row { display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; }
.price-row span { font-size: 13px; color: var(--text-mid); font-weight: 500; }
.price-slider { width: 100%; accent-color: var(--red); cursor: pointer; height: 4px; }
.sidebar-cta { background: var(--bg-cream); border: 1px solid #f0e0c8; border-radius: 12px; padding: 22px 18px; text-align: center; }
.sidebar-cta h4 { font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 14px; color: var(--text-dark); margin-bottom: 8px; line-height: 1.35; }
.sidebar-cta p { font-size: 12.5px; color: var(--text-light); margin-bottom: 14px; line-height: 1.6; }
.sidebar-cta-btn { display: inline-flex; align-items: center; gap: 6px; background: var(--red); color: #fff; font-size: 13px; font-weight: 700; padding: 9px 18px; border-radius: 7px; border: none; cursor: pointer; font-family: 'Inter', sans-serif; transition: background 0.2s, transform 0.15s; }
.sidebar-cta-btn:hover { background: var(--red-dark); transform: translateY(-1px); }
.catalog-topbar { display: flex; align-items: center; justify-content: space-between; margin-bottom: 24px; }
.catalog-count { font-size: 14px; color: var(--text-light); }
.catalog-count strong { color: var(--text-dark); font-weight: 700; }
.view-toggle { display: flex; gap: 4px; }
.view-btn { width: 36px; height: 36px; border-radius: 7px; border: 1px solid var(--border); background: #fff; display: flex; align-items: center; justify-content: center; cursor: pointer; color: var(--text-light); transition: all 0.2s; }
.view-btn.active { background: var(--red); border-color: var(--red); color: #fff; }
.view-btn:not(.active):hover { border-color: var(--red); color: var(--red); }
.sort-select { border: 1px solid var(--border); border-radius: 7px; padding: 7px 32px 7px 12px; font-size: 13px; font-family: 'Inter', sans-serif; color: var(--text-mid); font-weight: 500; background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E") no-repeat right 10px center; -webkit-appearance: none; appearance: none; cursor: pointer; transition: border-color 0.2s; }
.sort-select:focus { outline: none; border-color: var(--red); }
.search-input-wrap { position: relative; display: flex; align-items: center; }
.search-input-wrap svg { position: absolute; left: 10px; color: var(--text-light); pointer-events: none; }
.search-input { border: 1px solid var(--border); border-radius: 7px; padding: 7px 12px 7px 34px; font-size: 13px; font-family: 'Inter', sans-serif; color: var(--text-dark); width: 200px; transition: border-color 0.2s, width 0.3s; }
.search-input:focus { outline: none; border-color: var(--red); width: 240px; }
.pagination { display: flex; align-items: center; justify-content: center; gap: 6px; margin-top: 48px; }
.page-btn { width: 38px; height: 38px; border-radius: 8px; border: 1px solid var(--border); background: #fff; display: flex; align-items: center; justify-content: center; font-size: 13.5px; font-weight: 500; color: var(--text-mid); cursor: pointer; font-family: 'Inter', sans-serif; transition: all 0.2s; }
.page-btn:hover { border-color: var(--red); color: var(--red); }
.page-btn.active { background: var(--red); border-color: var(--red); color: #fff; font-weight: 700; }

/* ─── AHA BANNER ──────────────────────────────────────── */
.aha-banner { background: #fff8e5; border: 1px solid #f0dfa0; border-radius: 16px; padding: 48px 52px; display: flex; align-items: center; justify-content: space-between; gap: 40px; margin: 0 0 var(--section-y); position: relative; overflow: hidden; }
.aha-logo { display: flex; align-items: center; gap: 16px; flex-shrink: 0; }
.aha-logo-icon { width: 56px; height: 56px; background: rgba(192,57,43,0.1); border-radius: 12px; display: flex; align-items: center; justify-content: center; }
.aha-logo-text { font-family: 'Montserrat', sans-serif; font-weight: 900; font-size: 20px; color: var(--text-dark); letter-spacing: -0.3px; line-height: 1.2; }
.aha-logo-sub { font-size: 12px; color: var(--text-light); font-weight: 500; margin-top: 2px; display: block; }
.aha-content h3 { font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 22px; color: var(--text-dark); margin-bottom: 8px; }
.aha-content p { font-size: 14px; color: var(--text-light); max-width: 380px; line-height: 1.6; }
.aha-btn { display: inline-flex; align-items: center; gap: 8px; background: var(--red); color: #fff; font-size: 13.5px; font-weight: 700; padding: 12px 22px; border-radius: 8px; border: none; cursor: pointer; font-family: 'Inter', sans-serif; flex-shrink: 0; transition: background 0.2s, transform 0.2s, box-shadow 0.2s; box-shadow: 0 4px 16px rgba(192,57,43,0.25); }
.aha-btn:hover { background: var(--red-dark); transform: translateY(-2px); box-shadow: var(--shadow-red); }

/* ─── FORMULÁRIO CONTATO ──────────────────────────────── */
.contact-form-card { background: #fff; border: 1px solid var(--border); border-radius: 16px; padding: 36px 32px; box-shadow: var(--shadow-md); position: sticky; top: calc(68px + 24px); }
.form-title { font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 20px; color: var(--text-dark); margin-bottom: 6px; }
.form-subtitle { font-size: 13.5px; color: var(--text-light); margin-bottom: 28px; line-height: 1.5; }
.form-group { margin-bottom: 18px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 18px; }
.form-label { display: block; font-size: 13px; font-weight: 600; color: var(--text-dark); margin-bottom: 6px; }
.form-label span { color: var(--red); margin-left: 2px; }
.form-input, .form-select, .form-textarea { width: 100%; padding: 10px 14px; border: 1.5px solid var(--border); border-radius: 8px; font-size: 14px; font-family: 'Inter', sans-serif; color: var(--text-dark); background: #fff; transition: border-color 0.2s, box-shadow 0.2s; outline: none; }
.form-input::placeholder, .form-textarea::placeholder { color: #bbb; }
.form-input:focus, .form-select:focus, .form-textarea:focus { border-color: var(--red); box-shadow: 0 0 0 3px rgba(192,57,43,0.08); }
.form-select { -webkit-appearance: none; appearance: none; cursor: pointer; background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E") no-repeat right 12px center; padding-right: 36px; }
.form-textarea { resize: vertical; min-height: 110px; line-height: 1.6; }
.form-check { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 22px; }
.form-check input[type="checkbox"] { width: 16px; height: 16px; accent-color: var(--red); flex-shrink: 0; margin-top: 2px; cursor: pointer; }
.form-check label { font-size: 12.5px; color: var(--text-light); line-height: 1.55; cursor: pointer; }
.form-check label a { color: var(--red); text-decoration: none; }
.btn-submit { width: 100%; padding: 13px; background: var(--red); color: #fff; border: none; border-radius: 8px; font-size: 14.5px; font-weight: 700; font-family: 'Inter', sans-serif; cursor: pointer; display: flex; align-items: center; justify-content: center; gap: 8px; transition: background 0.2s, transform 0.15s, box-shadow 0.2s; box-shadow: 0 4px 16px rgba(192,57,43,0.28); }
.btn-submit:hover { background: var(--red-dark); transform: translateY(-1px); box-shadow: var(--shadow-red); }
.form-divider { display: flex; align-items: center; gap: 12px; margin: 20px 0; font-size: 12px; color: var(--text-light); }
.form-divider::before, .form-divider::after { content: ''; flex: 1; height: 1px; background: var(--border); }
.btn-whatsapp-form { width: 100%; padding: 12px; background: #25D366; color: #fff; border: none; border-radius: 8px; font-size: 14px; font-weight: 700; font-family: 'Inter', sans-serif; cursor: pointer; display: flex; align-items: center; justify-content: center; gap: 9px; transition: filter 0.2s, transform 0.15s; }
.btn-whatsapp-form:hover { filter: brightness(0.93); transform: translateY(-1px); }
.form-success { display: none; text-align: center; padding: 32px 16px; }
.form-success-icon { width: 56px; height: 56px; background: #dcfce7; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; }
.form-success h4 { font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 18px; color: var(--text-dark); margin-bottom: 8px; }
.form-success p { font-size: 14px; color: var(--text-light); line-height: 1.6; }

/* ─── BOTÕES DO CTA BANNER (faltavam) ─────────────────── */
.btn-whatsapp {
  display: inline-flex; align-items: center; gap: 9px;
  background: #25D366; color: #fff; font-size: 14px; font-weight: 700;
  padding: 14px 24px; border-radius: 8px; text-decoration: none;
  font-family: 'Inter', sans-serif;
  transition: filter 0.2s, transform 0.15s;
  box-shadow: 0 4px 16px rgba(37,211,102,0.35);
}
.btn-whatsapp:hover { filter: brightness(0.92); transform: translateY(-2px); }

.btn-cursos-outline {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; border: 1.5px solid rgba(255,255,255,0.5);
  color: #fff; font-size: 14px; font-weight: 600; padding: 13px 22px;
  border-radius: 8px; text-decoration: none; font-family: 'Inter', sans-serif;
  transition: background 0.2s, border-color 0.2s;
}
.btn-cursos-outline:hover { background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.85); }

/* ─── SEÇÃO DE CONTATO (faltavam todos os estilos) ──────── */
.contact-section { padding: var(--section-y) 0; background: var(--bg-light); }
.contact-layout {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 48px; align-items: start;
}
.contact-info p { font-size: 15px; color: var(--text-light); line-height: 1.75; margin-bottom: 28px; }
.contact-channels { display: flex; flex-direction: column; gap: 12px; margin-top: 8px; }
.contact-channel {
  display: flex; align-items: center; gap: 16px;
  background: #fff; border: 1px solid var(--border); border-radius: 12px;
  padding: 16px 18px; text-decoration: none; color: inherit;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}
.contact-channel:hover {
  border-color: var(--red); box-shadow: var(--shadow-sm);
  transform: translateX(4px);
}
.contact-channel-icon {
  width: 46px; height: 46px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-channel-icon.green  { background: #dcfce7; }
.contact-channel-icon.red    { background: #fdecea; }
.contact-channel-icon.blue   { background: #dbeafe; }
.contact-channel-icon.dark   { background: #f3f4f6; }
.contact-channel-body { flex: 1; }
.contact-channel-label { font-size: 11.5px; color: var(--text-light); font-weight: 600; text-transform: uppercase; letter-spacing: 0.8px; margin-bottom: 2px; }
.contact-channel-value { font-size: 14.5px; font-weight: 700; color: var(--text-dark); margin-bottom: 2px; }
.contact-channel-sub { font-size: 12px; color: var(--text-light); }
.contact-channel-arrow { color: var(--text-light); flex-shrink: 0; }

/* ─── PAGE HEADER STATS (faltava estilo) ──────────────── */
.page-header-inner { display: flex; flex-direction: column; gap: 0; align-items: flex-start; }
.page-header-stats {
  display: flex; gap: 32px; margin-top: 28px;
}
.ph-stat {}
.ph-stat-num {
  font-family: 'Montserrat', sans-serif; font-weight: 900; font-size: 26px;
  color: #fff; display: block; line-height: 1;
}
.ph-stat-label { font-size: 12px; color: rgba(255,255,255,0.75); font-weight: 500; }

/* ─── HAMBURGER MOBILE ─────────────────────────────────── */
.nav-hamburger {
  display: none;
  flex-direction: column; justify-content: center; align-items: center;
  gap: 5px; width: 40px; height: 40px;
  background: none; border: none; cursor: pointer; padding: 4px;
  border-radius: 8px; transition: background 0.18s;
}
.nav-hamburger:hover { background: var(--red-glow); }
.nav-hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--text-dark); border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
