/* =============================
   CIBERTEO – ESTILOS GLOBALES
   by Delta Soluciones
   ============================= */

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

:root {
  --blue-light: #4fc3f7;
  --blue:       #1976d2;
  --blue-dark:  #0d47a1;
  --navy:       #1a237e;
  --navy-deep:  #0d1b4b;
  --white:      #ffffff;
  --gray-50:    #f8fafc;
  --gray-100:   #f1f5f9;
  --gray-200:   #e2e8f0;
  --gray-500:   #64748b;
  --gray-700:   #334155;
  --gray-900:   #0f172a;
  --accent:     #00bcd4;
  --success:    #22c55e;
  --shadow:     0 4px 24px rgba(13,71,161,0.10);
  --shadow-lg:  0 8px 40px rgba(13,71,161,0.18);
  --radius:     12px;
  --radius-lg:  20px;
  --transition: 0.25s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  color: var(--gray-900);
  background: var(--white);
  line-height: 1.6;
}

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

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

/* ========================
   BUTTONS
   ======================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(25,118,210,0.30);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(25,118,210,0.40);
}
.btn-secondary {
  background: var(--white);
  color: var(--blue-dark);
  border-color: var(--blue);
}
.btn-secondary:hover {
  background: var(--blue-dark);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.6);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.15);
  border-color: var(--white);
}
.btn-lg { padding: 15px 32px; font-size: 1rem; border-radius: 10px; }
.btn-ghost {
  background: transparent;
  color: var(--blue-dark);
  border-color: var(--gray-200);
}
.btn-ghost:hover { background: var(--gray-100); }
.w-full { width: 100%; }

/* ========================
   NAVBAR
   ======================== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 999;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gray-200);
  transition: box-shadow var(--transition);
}
.navbar.scrolled { box-shadow: var(--shadow); }
.nav-inner {
  display: flex;
  align-items: center;
  gap: 32px;
  height: 70px;
}
.logo-link { display: flex; align-items: center; }
.logo { height: 42px; width: auto; }
.nav-links {
  display: flex;
  gap: 28px;
  margin-left: auto;
}
.nav-links a {
  font-size: 0.93rem;
  font-weight: 500;
  color: var(--gray-700);
  transition: color var(--transition);
}
.nav-links a:hover { color: var(--blue-dark); }
.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.4rem;
  color: var(--navy);
  cursor: pointer;
  margin-left: auto;
}

/* ========================
   HERO
   ======================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 70px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 40%, var(--blue-dark) 70%, var(--blue) 100%);
  z-index: 0;
}
.hero-bg::after {
  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='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-content {
  position: relative;
  z-index: 1;
  padding: 80px 24px;
  text-align: center;
  max-width: 860px;
  margin: 0 auto;
}
.hero-badge {
  display: inline-block;
  background: rgba(255,255,255,0.12);
  color: var(--blue-light);
  border: 1px solid rgba(79,195,247,0.30);
  border-radius: 100px;
  padding: 6px 18px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 24px;
  text-transform: uppercase;
}
.hero-content h1 {
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 20px;
}
.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,0.80);
  max-width: 680px;
  margin: 0 auto 36px;
}
.hero-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 60px;
}
.hero-stats {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  padding: 28px 40px;
}
.stat { text-align: center; padding: 0 32px; }
.stat-num {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--blue-light);
  margin-bottom: 4px;
}
.stat-label {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.65);
  max-width: 140px;
  display: block;
  line-height: 1.4;
}
.stat-div {
  width: 1px;
  height: 50px;
  background: rgba(255,255,255,0.15);
}

/* ========================
   ALERT BAND
   ======================== */
.alert-band {
  background: linear-gradient(90deg, #fff8e1, #fff3e0);
  border-top: 3px solid #f59e0b;
  border-bottom: 3px solid #f59e0b;
  padding: 16px 0;
}
.alert-band .container {
  display: flex;
  align-items: center;
  gap: 14px;
}
.alert-icon { font-size: 1.4rem; flex-shrink: 0; }
.alert-band p { font-size: 0.93rem; color: #78350f; }
.alert-band a { color: var(--blue-dark); font-weight: 600; text-decoration: underline; }

/* ========================
   SECTIONS
   ======================== */
.section { padding: 90px 0; }
.section-dark {
  background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 100%);
  color: var(--white);
}
.section-light { background: var(--gray-50); }
.section-header {
  text-align: center;
  margin-bottom: 56px;
}
.section-header.light h2,
.section-header.light p { color: var(--white); }
.section-tag {
  display: inline-block;
  background: linear-gradient(135deg, var(--blue-light), var(--blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.section-dark .section-tag {
  background: linear-gradient(135deg, var(--blue-light), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.section-header h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 14px;
}
.section-header p {
  color: var(--gray-500);
  font-size: 1.05rem;
  max-width: 560px;
  margin: 0 auto;
}

/* ========================
   CARDS GRID
   ======================== */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
}
.card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  position: relative;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--blue-light);
}
.card-featured {
  border: 2px solid var(--blue);
  box-shadow: var(--shadow);
}
.card-badge {
  position: absolute;
  top: -13px;
  left: 24px;
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 100px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.card-icon { font-size: 2.4rem; }
.card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.3;
}
.card-desc { color: var(--gray-500); font-size: 0.93rem; }
.card-list { display: flex; flex-direction: column; gap: 8px; flex: 1; }
.card-list li {
  font-size: 0.88rem;
  color: var(--gray-700);
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.card-list li::before {
  content: '✓';
  color: var(--success);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}
.card-meta { display: flex; gap: 8px; flex-wrap: wrap; }
.tag-mode {
  font-size: 0.78rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 100px;
  background: var(--gray-100);
  color: var(--gray-700);
  border: 1px solid var(--gray-200);
}

/* ========================
   FEATURES GRID
   ======================== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
}
.feature {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: background var(--transition);
}
.feature:hover { background: rgba(255,255,255,0.10); }
.feature-icon { font-size: 2rem; margin-bottom: 14px; }
.feature h4 { font-size: 1rem; font-weight: 700; color: var(--white); margin-bottom: 8px; }
.feature p { font-size: 0.88rem; color: rgba(255,255,255,0.68); line-height: 1.6; }

/* ========================
   PRICING
   ======================== */
.toggle-group {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 40px;
  background: var(--gray-100);
  border-radius: 10px;
  padding: 6px;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}
.toggle-btn {
  padding: 10px 28px;
  border-radius: 8px;
  border: none;
  background: transparent;
  font-weight: 600;
  font-size: 0.93rem;
  cursor: pointer;
  color: var(--gray-500);
  transition: all var(--transition);
}
.toggle-btn.active {
  background: var(--white);
  color: var(--blue-dark);
  box-shadow: 0 2px 8px rgba(0,0,0,0.10);
}
.price-tables {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-bottom: 24px;
}
.price-tables.hidden { display: none; }
.price-table {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.featured-pt {
  border: 2px solid var(--blue);
  box-shadow: var(--shadow);
}
.pt-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 16px;
  border-radius: 100px;
  white-space: nowrap;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.pt-header { border-bottom: 1px solid var(--gray-200); padding-bottom: 16px; }
.pt-plan { font-size: 1rem; font-weight: 700; color: var(--navy); }
.pt-rows { display: flex; flex-direction: column; gap: 12px; flex: 1; }
.pt-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 14px;
  background: var(--gray-50);
  border-radius: 8px;
  font-size: 0.9rem;
}
.pt-row span { color: var(--gray-700); }
.pt-row strong { color: var(--navy); font-size: 1rem; }
.price-note {
  text-align: center;
  font-size: 0.82rem;
  color: var(--gray-500);
  margin-top: 8px;
}

/* ========================
   TESTIMONIOS
   ======================== */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.testi-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  box-shadow: var(--shadow);
}
.testi-card p {
  font-size: 0.93rem;
  color: var(--gray-700);
  font-style: italic;
  line-height: 1.7;
}
.testi-card p::before { content: '\201C'; }
.testi-card p::after  { content: '\201D'; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue-light), var(--blue-dark));
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.testi-author strong { display: block; font-size: 0.9rem; color: var(--navy); }
.testi-author span { font-size: 0.8rem; color: var(--gray-500); }

/* ========================
   CONTACT
   ======================== */
.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 60px;
  align-items: start;
}
.contact-info { display: flex; flex-direction: column; gap: 20px; }
.contact-info h2 {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.2;
}
.contact-info p { color: var(--gray-500); font-size: 1rem; }
.contact-list { display: flex; flex-direction: column; gap: 10px; }
.contact-list li { font-size: 0.93rem; color: var(--gray-700); display: flex; gap: 10px; align-items: center; }
.brand-tag {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 8px;
  padding-top: 20px;
  border-top: 1px solid var(--gray-200);
}
.brand-logo { height: 36px; }
.brand-tag span { font-size: 0.85rem; color: var(--gray-500); font-style: italic; }
.contact-form {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 0.88rem; font-weight: 600; color: var(--gray-700); }
.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 14px;
  border: 1.5px solid var(--gray-200);
  border-radius: 8px;
  font-family: inherit;
  font-size: 0.93rem;
  color: var(--gray-900);
  transition: border-color var(--transition);
  background: var(--white);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(25,118,210,0.10);
}
.form-group textarea { min-height: 100px; resize: vertical; }

/* ========================
   FOOTER
   ======================== */
.footer {
  background: var(--navy-deep);
  color: rgba(255,255,255,0.75);
  padding-top: 60px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.10);
}
.footer-brand { display: flex; flex-direction: column; gap: 14px; }
.footer-logo { height: 44px; width: auto; filter: brightness(10); opacity: 0.92; }
.footer-brand p { font-size: 0.88rem; color: rgba(255,255,255,0.55); line-height: 1.7; max-width: 320px; }
.footer-links h5 { font-size: 0.85rem; font-weight: 700; color: var(--white); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 16px; }
.footer-links ul { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 0.88rem; color: rgba(255,255,255,0.55); transition: color var(--transition); }
.footer-links a:hover { color: var(--blue-light); }
.footer-bottom {
  padding: 20px 24px;
  text-align: center;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.35);
}

/* ========================
   PRODUCT PAGE HERO
   ======================== */
.page-hero {
  background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 50%, var(--blue-dark) 100%);
  padding: 130px 0 80px;
  text-align: center;
  color: var(--white);
}
.page-hero .hero-badge { margin-bottom: 20px; }
.page-hero h1 {
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 800;
  margin-bottom: 18px;
}
.page-hero p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.78);
  max-width: 640px;
  margin: 0 auto 32px;
}
.page-hero-cta { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ========================
   CONTENT SECTIONS
   ======================== */
.content-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.content-block.reverse { direction: rtl; }
.content-block.reverse > * { direction: ltr; }
.content-text { display: flex; flex-direction: column; gap: 18px; }
.content-text h2 {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.25;
}
.content-text p { color: var(--gray-500); font-size: 0.97rem; line-height: 1.8; }
.content-visual {
  background: linear-gradient(135deg, var(--navy) 0%, var(--blue-dark) 100%);
  border-radius: var(--radius-lg);
  padding: 48px 36px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-height: 320px;
  justify-content: center;
}
.visual-item {
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 10px;
  padding: 14px 18px;
}
.visual-item-icon { font-size: 1.5rem; flex-shrink: 0; }
.visual-item-text strong { display: block; font-size: 0.9rem; color: var(--white); margin-bottom: 2px; }
.visual-item-text span { font-size: 0.8rem; color: rgba(255,255,255,0.60); }

/* ========================
   MODULES / CURRICULUM
   ======================== */
.modules-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}
.module-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 24px 20px;
  border-left: 4px solid var(--blue);
  transition: all var(--transition);
}
.module-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.module-num {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}
.module-card h4 { font-size: 0.97rem; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.module-card p { font-size: 0.85rem; color: var(--gray-500); line-height: 1.6; }

/* ========================
   CTA BANNER
   ======================== */
.cta-banner {
  background: linear-gradient(135deg, var(--blue-dark) 0%, var(--navy-deep) 100%);
  border-radius: var(--radius-lg);
  padding: 56px 48px;
  text-align: center;
  color: var(--white);
}
.cta-banner h2 {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 800;
  margin-bottom: 14px;
}
.cta-banner p {
  color: rgba(255,255,255,0.75);
  font-size: 1rem;
  max-width: 520px;
  margin: 0 auto 28px;
}
.cta-banner-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ========================
   BREADCRUMB
   ======================== */
.breadcrumb {
  background: var(--gray-50);
  padding: 12px 0;
  border-bottom: 1px solid var(--gray-200);
  margin-top: 70px;
}
.breadcrumb .container {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.83rem;
  color: var(--gray-500);
}
.breadcrumb a { color: var(--blue); }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb span { color: var(--gray-300); }

/* ========================
   BACK LINK
   ======================== */
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--blue);
  margin-bottom: 32px;
}
.back-link:hover { text-decoration: underline; }

/* ========================
   RESPONSIVE
   ======================== */
@media (max-width: 900px) {
  .nav-links, .navbar .btn { display: none; }
  .menu-toggle { display: block; }
  .contact-wrapper { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .content-block { grid-template-columns: 1fr; }
  .content-block.reverse { direction: ltr; }
  .hero-stats { gap: 16px; }
  .stat { padding: 0 16px; }
  .stat-div { display: none; }
}
@media (max-width: 600px) {
  .section { padding: 60px 0; }
  .hero-content { padding: 60px 24px; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .cta-banner { padding: 36px 24px; }
  .contact-form { padding: 28px 20px; }
}

/* ========================
   SESSION GROUPS
   ======================== */
.session-group { margin-bottom: 44px; }
.session-group:last-child { margin-bottom: 0; }
.session-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
  padding: 14px 22px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--blue-dark) 100%);
  border-radius: 10px;
  flex-wrap: wrap;
}
.session-label {
  font-size: 1rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: 0.3px;
}
.session-duration {
  font-size: 0.78rem;
  font-weight: 600;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.20);
  padding: 3px 12px;
  border-radius: 100px;
  color: var(--blue-light);
}
.session-count {
  margin-left: auto;
  font-size: 0.80rem;
  color: rgba(255,255,255,0.55);
  font-style: italic;
}

/* ========================
   UTILITIES
   ======================== */
.text-center { text-align: center; }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mb-32 { margin-bottom: 32px; }
.gap-16 { gap: 16px; }
.flex { display: flex; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.flex-wrap { flex-wrap: wrap; }

/* Mobile nav open */
.nav-open .nav-links {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 70px;
  left: 0; right: 0;
  background: var(--white);
  padding: 20px 24px;
  border-bottom: 1px solid var(--gray-200);
  box-shadow: var(--shadow);
  gap: 16px;
  z-index: 998;
}
.nav-open .navbar .btn {
  display: flex;
  margin: 0 24px 20px;
  position: absolute;
  bottom: -70px;
  right: 0;
  left: 0;
}
