/* ===========================================================
   MKT University Online — Design System
   =========================================================== */

:root {
  /* Paleta derivada del logo institucional (azul, verde lima, naranja) */
  --navy-900: #061f2f;
  --navy-800: #0a2e44;
  --navy-700: #123f5c;
  --navy-600: #185a82;
  --brand-blue: #0175a9;
  --gold-500: #fd6000;
  --gold-600: #d94f00;
  --gold-100: #ffece0;
  --lime-500: #bcd91c;
  --lime-600: #94ab15;
  --lime-100: #f5fadf;
  --bg: #f7f8fb;
  --surface: #ffffff;
  --text-900: #16202e;
  --text-700: #3c4a5c;
  --text-500: #6b7787;
  --border: #e4e8ee;
  --success: #1c8a4b;

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;

  --shadow-sm: 0 2px 8px rgba(10, 25, 48, 0.06);
  --shadow-md: 0 10px 30px rgba(10, 25, 48, 0.10);
  --shadow-lg: 0 20px 50px rgba(10, 25, 48, 0.16);

  --container: 1180px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

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

h1, h2, h3, h4 {
  font-family: 'Poppins', 'Inter', sans-serif;
  color: var(--text-900);
  line-height: 1.2;
  font-weight: 600;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 88px 0; }
.section-sm { padding: 56px 0; }
.section-tight { padding: 64px 0; }

.bg-navy { background: var(--navy-900); color: #cdd7e4; }
.bg-navy h1, .bg-navy h2, .bg-navy h3 { color: #fff; }
.bg-surface { background: var(--surface); }
.bg-soft { background: var(--gold-100); }

/* --- Eyebrow / Kicker --- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-600);
  margin-bottom: 14px;
}
.bg-navy .eyebrow { color: var(--gold-500); }

.section-head { max-width: 640px; margin-bottom: 48px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 { font-size: clamp(1.7rem, 3vw, 2.4rem); margin-bottom: 14px; }
.section-head p { color: var(--text-500); font-size: 1.05rem; }
.bg-navy .section-head p { color: #a7b4c6; }

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 2px solid transparent;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, color 0.15s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--gold-500); color: var(--navy-900); box-shadow: var(--shadow-sm); }
.btn-primary:hover { background: var(--gold-600); box-shadow: var(--shadow-md); }
.btn-outline { background: transparent; border-color: rgba(255,255,255,0.35); color: #fff; }
.btn-outline:hover { background: rgba(255,255,255,0.1); border-color: #fff; }
.btn-outline-dark { background: transparent; border-color: var(--navy-700); color: var(--navy-800); }
.btn-outline-dark:hover { background: var(--navy-900); color: #fff; }
.btn-block { width: 100%; }
.btn-sm { padding: 10px 20px; font-size: 0.85rem; }

/* ===========================================================
   Header / Nav
   =========================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 500;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  max-width: var(--container);
  margin: 0 auto;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--navy-900);
}
.brand-plate {
  background: #fff;
  border-radius: 12px;
  padding: 6px 12px;
  display: flex;
  align-items: center;
  box-shadow: var(--shadow-sm);
}
.brand-plate img {
  height: 40px;
  width: auto;
  display: block;
}
.header-brand .brand-plate { background: transparent; box-shadow: none; padding: 0; }
.footer-brand .brand-plate { padding: 8px 14px; }
.footer-brand .brand-plate img { height: 46px; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  color: var(--navy-800);
  font-size: 0.94rem;
  font-weight: 500;
  transition: color 0.15s ease;
  position: relative;
}
.nav-links a:hover, .nav-links a.active { color: var(--brand-blue); }
.nav-links a.active::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -8px;
  height: 2px;
  background: var(--gold-500);
}

.nav-actions { display: flex; align-items: center; gap: 14px; }

.nav-toggle {
  display: none;
  background: transparent;
  border: none;
  color: var(--navy-900);
  font-size: 1.4rem;
}

@media (max-width: 900px) {
  .nav-links {
    position: fixed;
    top: 73px; left: 0; right: 0;
    background: #fff;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 8px 24px 20px;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-md);
    transform: translateY(-130%);
    opacity: 0;
    transition: transform 0.25s ease, opacity 0.25s ease;
  }
  .nav-links.open { transform: translateY(0); opacity: 1; }
  .nav-links a { width: 100%; padding: 12px 0; border-bottom: 1px solid var(--border); }
  .nav-toggle { display: block; }
  .nav-actions .btn-primary { display: none; }
}

/* ===========================================================
   Hero
   =========================================================== */
.hero {
  background:
    radial-gradient(circle at 85% 15%, rgba(242,167,27,0.16), transparent 45%),
    linear-gradient(160deg, var(--navy-900) 10%, var(--navy-700) 100%);
  color: #fff;
  padding: 96px 0 80px;
  position: relative;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: center;
}

.hero h1 {
  font-size: clamp(2.1rem, 4.2vw, 3.4rem);
  color: #fff;
  margin-bottom: 20px;
}
.hero h1 span { color: var(--gold-500); }
.hero p.lead {
  font-size: 1.1rem;
  color: #b9c4d4;
  max-width: 520px;
  margin-bottom: 32px;
}
.hero-cta { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 48px; }

.hero-stats {
  display: flex;
  gap: 36px;
  flex-wrap: wrap;
}
.hero-stats .stat strong {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-size: 1.7rem;
  color: #fff;
}
.hero-stats .stat span { font-size: 0.85rem; color: #90a0b6; }

.hero-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  padding: 28px;
  backdrop-filter: blur(6px);
}
.hero-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.hero-card-header .icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: var(--gold-500);
  color: var(--navy-900);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
}
.hero-card-header .icon.cert-thumb {
  width: 64px; height: 44px;
  background: #fff;
  border: 1px solid rgba(255,255,255,0.25);
  overflow: hidden;
  padding: 0;
}
.feature-card .icon.cert-thumb-lg {
  width: 84px; height: 58px;
  background: #fff;
  border: 1px solid var(--border);
  overflow: hidden;
  padding: 0;
}
.cert-thumb img { width: 100%; height: 100%; object-fit: cover; object-position: center 40%; display: block; }
.hero-card-header strong { color: #fff; display: block; }
.hero-card-header span { font-size: 0.8rem; color: #90a0b6; }

.hero-check-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 9px 0;
  color: #cdd7e4;
  font-size: 0.94rem;
}
.hero-check-list i { color: var(--lime-500); margin-top: 3px; }

.hero-photo-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255,255,255,0.12);
  margin-bottom: 20px;
  aspect-ratio: 4 / 3;
}
.hero-photo-card img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hero-photo-card::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(6,32,47,0) 55%, rgba(6,32,47,0.75) 100%);
}
.hero-photo-card .photo-badge {
  position: absolute; left: 16px; bottom: 16px; z-index: 1;
  background: rgba(6,32,47,0.85);
  backdrop-filter: blur(6px);
  color: #fff;
  padding: 10px 16px;
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 600;
  display: flex; align-items: center; gap: 8px;
}
.hero-photo-card .photo-badge i { color: var(--lime-500); }

/* ===========================================================
   Feature / Value cards
   =========================================================== */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
  .grid-3, .grid-4, .grid-2 { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 620px) {
  .grid-3, .grid-4, .grid-2 { grid-template-columns: 1fr; }
}

.feature-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 30px 26px;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.feature-card .icon {
  width: 52px; height: 52px;
  border-radius: 12px;
  background: var(--gold-100);
  color: var(--gold-600);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 18px;
}
.feature-card h3 { font-size: 1.08rem; margin-bottom: 10px; }
.feature-card p { color: var(--text-500); font-size: 0.94rem; }

/* ===========================================================
   Course cards
   =========================================================== */
.course-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 40px;
}
.filter-btn {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 10px 20px;
  border-radius: 100px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-700);
  transition: all 0.15s ease;
}
.filter-btn:hover { border-color: var(--gold-500); color: var(--gold-600); }
.filter-btn.active { background: var(--navy-900); border-color: var(--navy-900); color: #fff; }

.course-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
@media (max-width: 980px) { .course-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 620px) { .course-grid { grid-template-columns: 1fr; } }

#featured-courses { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 1080px) { #featured-courses { grid-template-columns: 1fr 1fr; } }
@media (max-width: 620px) { #featured-courses { grid-template-columns: 1fr; } }

.course-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.course-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }

.course-thumb {
  height: 170px;
  position: relative;
  overflow: hidden;
}
.course-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}
.course-card:hover .course-thumb img { transform: scale(1.06); }
.course-thumb::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(6,32,47,0.05) 40%, rgba(6,32,47,0.65) 100%);
}
.course-thumb .thumb-icon {
  position: absolute;
  bottom: 12px; left: 14px;
  z-index: 1;
  width: 34px; height: 34px;
  border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.95rem;
  color: #fff;
}
.course-thumb .badge-level {
  position: absolute;
  top: 12px; right: 12px;
  z-index: 1;
  background: rgba(10,25,48,0.55);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 100px;
  backdrop-filter: blur(4px);
}

.course-body { padding: 22px; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.course-cat { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; color: var(--gold-600); }
.course-body h3 { font-size: 1.08rem; }
.course-body p.desc { color: var(--text-500); font-size: 0.9rem; flex: 1; }

.course-meta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 0.82rem;
  color: var(--text-500);
  padding-top: 10px;
  border-top: 1px solid var(--border);
}
.course-meta span { display: flex; align-items: center; gap: 6px; }
.course-meta i { color: var(--gold-600); }

.course-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 4px;
}
.course-price { font-family: 'Poppins', sans-serif; font-weight: 700; color: var(--navy-900); font-size: 1.15rem; }
.course-price span { font-size: 0.75rem; color: var(--text-500); font-weight: 400; }

/* thumb color variants — derivadas de la paleta del logo (azul / lima / naranja) */
.thumb-1 { background: linear-gradient(135deg, var(--brand-blue), var(--navy-900)); }
.thumb-2 { background: linear-gradient(135deg, var(--gold-600), var(--gold-500)); }
.thumb-3 { background: linear-gradient(135deg, var(--lime-600), var(--navy-900)); }
.thumb-4 { background: linear-gradient(135deg, var(--brand-blue), var(--lime-500)); }
.thumb-5 { background: linear-gradient(135deg, var(--gold-500), var(--navy-900)); }
.thumb-6 { background: linear-gradient(135deg, var(--lime-500), var(--brand-blue)); }

/* ===========================================================
   Testimonials
   =========================================================== */
.testimonial-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px;
}
.testimonial-card .stars { color: var(--gold-500); margin-bottom: 14px; font-size: 0.9rem; }
.testimonial-card p.quote { font-size: 0.96rem; color: var(--text-700); margin-bottom: 20px; }
.testimonial-person { display: flex; align-items: center; gap: 12px; }
.avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--navy-800);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  flex-shrink: 0;
}
.testimonial-person strong { display: block; font-size: 0.9rem; color: var(--text-900); }
.testimonial-person span { font-size: 0.8rem; color: var(--text-500); }

/* ===========================================================
   CTA banner
   =========================================================== */
.cta-banner {
  background: linear-gradient(120deg, var(--navy-900), var(--navy-700));
  border-radius: var(--radius-lg);
  padding: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  color: #fff;
}
.cta-banner h2 { color: #fff; font-size: 1.6rem; margin-bottom: 10px; }
.cta-banner p { color: #b9c4d4; }

/* ===========================================================
   Logos strip
   =========================================================== */
.logo-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 28px;
  padding: 32px 0;
  opacity: 0.75;
}
.logo-strip span {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  color: var(--text-500);
  font-size: 1.05rem;
  letter-spacing: 0.02em;
}

/* ===========================================================
   Page header (inner pages)
   =========================================================== */
.page-hero {
  background: linear-gradient(160deg, var(--navy-900), var(--navy-700));
  color: #fff;
  padding: 64px 0 56px;
}
.page-hero h1 { color: #fff; font-size: clamp(1.8rem, 3.4vw, 2.6rem); margin-bottom: 12px; }
.page-hero p { color: #b9c4d4; max-width: 600px; }
.breadcrumb { font-size: 0.85rem; color: #90a0b6; margin-bottom: 16px; }
.breadcrumb a { color: var(--gold-500); }

.page-hero.has-photo {
  position: relative;
  padding: 90px 0;
  background:
    linear-gradient(160deg, rgba(6,32,47,0.92), rgba(18,63,92,0.88)),
    url('../img/cursos-hero.jpg') center 30% / cover no-repeat;
}

/* ===========================================================
   Photo banner (nosotros)
   =========================================================== */
.photo-banner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
.photo-banner img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
@media (max-width: 900px) { .photo-banner { grid-template-columns: 1fr; } }

/* ===========================================================
   Side photo (contacto)
   =========================================================== */
.side-photo {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  margin-bottom: 24px;
  aspect-ratio: 4 / 3;
}
.side-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ===========================================================
   Forms
   =========================================================== */
.form-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-sm);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-bottom: 18px; }
@media (max-width: 620px) { .form-row { grid-template-columns: 1fr; } }

.field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 18px; }
.field label { font-size: 0.85rem; font-weight: 600; color: var(--text-900); }
.field label .req { color: #c0392b; }
.field input, .field select, .field textarea {
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  font-size: 0.95rem;
  font-family: inherit;
  color: var(--text-900);
  background: #fff;
  transition: border-color 0.15s ease;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--gold-500);
}
.field.has-error input, .field.has-error select, .field.has-error textarea {
  border-color: #c0392b;
}
.field .error-msg { font-size: 0.78rem; color: #c0392b; display: none; }
.field.has-error .error-msg { display: block; }
.field textarea { resize: vertical; min-height: 110px; }

.checkbox-row { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 22px; }
.checkbox-row input { margin-top: 4px; }
.checkbox-row label { font-size: 0.85rem; color: var(--text-500); }
.checkbox-row a { color: var(--gold-600); font-weight: 600; }

.form-note {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  background: var(--gold-100);
  color: #8a5a00;
  font-size: 0.85rem;
  margin-bottom: 22px;
}

.form-success {
  display: none;
  text-align: center;
  padding: 40px 20px;
}
.form-success i { font-size: 2.6rem; color: var(--success); margin-bottom: 16px; }
.form-success h3 { margin-bottom: 8px; }
.form-success p { color: var(--text-500); }

/* ===========================================================
   Contact info cards
   =========================================================== */
.contact-info-card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}
.contact-info-card:last-child { border-bottom: none; }
.contact-info-card .icon {
  width: 46px; height: 46px;
  border-radius: 10px;
  background: var(--navy-900);
  color: var(--gold-500);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-info-card h4 { font-size: 0.95rem; margin-bottom: 4px; }
.contact-info-card p, .contact-info-card a { font-size: 0.88rem; color: var(--text-500); }

/* ===========================================================
   Course detail page
   =========================================================== */
.detail-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 48px;
  align-items: start;
}
@media (max-width: 900px) { .detail-grid { grid-template-columns: 1fr; } }

.detail-hero-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 21 / 8;
}
.detail-hero-image img { width: 100%; height: 100%; object-fit: cover; display: block; }
@media (max-width: 700px) { .detail-hero-image { aspect-ratio: 4 / 3; } }

.detail-tags { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 18px; }
.tag {
  font-size: 0.76rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 100px;
  background: rgba(255,255,255,0.1);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.2);
}

.detail-section { margin-bottom: 36px; }
.detail-section h2 { font-size: 1.3rem; margin-bottom: 16px; }
.syllabus-item {
  display: flex;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}
.syllabus-item .num {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--gold-100);
  color: var(--gold-600);
  font-weight: 700;
  font-size: 0.85rem;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.syllabus-item h4 { font-size: 0.95rem; margin-bottom: 4px; }
.syllabus-item p { font-size: 0.85rem; color: var(--text-500); }

.sticky-card {
  position: sticky;
  top: 100px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-sm);
}
.sticky-card .price-row { display: flex; align-items: baseline; gap: 8px; margin-bottom: 6px; }
.sticky-card .price-row strong { font-family: 'Poppins', sans-serif; font-size: 1.9rem; color: var(--navy-900); }
.sticky-card .price-row span { font-size: 0.85rem; color: var(--text-500); }
.sticky-list { margin: 20px 0; }
.sticky-list li { display: flex; gap: 10px; align-items: flex-start; padding: 8px 0; font-size: 0.88rem; color: var(--text-700); }
.sticky-list i { color: var(--gold-600); margin-top: 3px; }

/* ===========================================================
   Footer
   =========================================================== */
.site-footer { background: var(--navy-900); color: #90a0b6; padding: 64px 0 24px; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }

.footer-grid h4 { color: #fff; font-size: 0.95rem; margin-bottom: 18px; }
.footer-grid ul li { padding: 7px 0; }
.footer-grid ul li a:hover { color: var(--gold-500); }
.footer-grid p { font-size: 0.88rem; margin-bottom: 18px; }

.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex; align-items: center; justify-content: center;
  transition: all 0.15s ease;
}
.footer-social a:hover { background: var(--gold-500); color: var(--navy-900); border-color: var(--gold-500); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 24px;
  font-size: 0.82rem;
}
.footer-bottom a:hover { color: var(--gold-500); }

/* ===========================================================
   Floating WhatsApp
   =========================================================== */
.whatsapp-float {
  position: fixed;
  bottom: 24px; right: 24px;
  width: 58px; height: 58px;
  background: #25d366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-size: 1.6rem;
  box-shadow: 0 8px 24px rgba(37,211,102,0.4);
  z-index: 400;
  transition: transform 0.15s ease;
}
.whatsapp-float:hover { transform: scale(1.08); }

/* ===========================================================
   Misc pages (about)
   =========================================================== */
.value-list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}
.value-list li:last-child { border-bottom: none; }
.value-list i { color: var(--gold-600); font-size: 1.1rem; margin-top: 3px; }
.value-list strong { display: block; color: var(--text-900); margin-bottom: 3px; }
.value-list span { font-size: 0.9rem; color: var(--text-500); }

.team-card { text-align: center; }
.team-card .avatar { width: 84px; height: 84px; font-size: 1.5rem; margin: 0 auto 16px; }
.team-card h4 { margin-bottom: 4px; }
.team-card span { font-size: 0.85rem; color: var(--gold-600); font-weight: 600; }

.empty-state { text-align: center; padding: 60px 20px; color: var(--text-500); display: none; }
.empty-state i { font-size: 2.4rem; margin-bottom: 14px; color: var(--border); }
