/* ===== WYSTER CURSOS - ESTILOS PRINCIPAIS ===== */

:root {
  --primary: #e84c3d;
  --primary-dark: #c0392b;
  --secondary: #2c3e50;
  --bg-dark: #1a1a2e;
  --bg-card: #16213e;
  --bg-sidebar: #0f3460;
  --text-light: #ecf0f1;
  --text-muted: #95a5a6;
  --accent: #f39c12;
  --success: #27ae60;
  --border: #2c3e50;
  --shadow: 0 4px 15px rgba(0,0,0,0.3);
  --radius: 8px;
}

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

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: var(--bg-dark);
  color: var(--text-light);
  line-height: 1.6;
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: color 0.2s;
}

a:hover {
  color: var(--accent);
}

/* ===== PIX BANNER ===== */
.pix-banner {
  background: linear-gradient(135deg, #27ae60, #2ecc71);
  padding: 12px 20px;
  text-align: center;
  border-bottom: 2px solid #1e8449;
}

.pix-content {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.pix-text {
  font-weight: 600;
  color: white;
  font-size: 14px;
}

.pix-key-container {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.2);
  padding: 8px 15px;
  border-radius: 6px;
}

.pix-key {
  color: white;
  font-weight: 700;
  font-size: 14px;
  font-family: monospace;
  letter-spacing: 1px;
}

.pix-copy-btn {
  background: rgba(255,255,255,0.3);
  border: 1px solid rgba(255,255,255,0.5);
  color: white;
  padding: 6px 12px;
  border-radius: 4px;
  cursor: pointer;
  font-size: 12px;
  font-weight: 600;
  transition: all 0.2s;
  white-space: nowrap;
}

.pix-copy-btn:hover {
  background: rgba(255,255,255,0.5);
  transform: translateY(-1px);
}

/* ===== HEADER ===== */
header {
  background: linear-gradient(135deg, #0f3460 0%, #16213e 100%);
  border-bottom: 3px solid var(--primary);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 20px rgba(0,0,0,0.5);
}

.header-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  flex-wrap: wrap;
  gap: 15px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-icon {
  width: 45px;
  height: 45px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: bold;
  color: white;
  flex-shrink: 0;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-text .brand {
  font-size: 22px;
  font-weight: 800;
  color: white;
  letter-spacing: -0.5px;
}

.logo-text .brand span {
  color: var(--primary);
}

.logo-text .tagline {
  font-size: 11px;
  color: var(--text-muted);
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.header-search {
  flex: 1;
  min-width: 250px;
  max-width: 400px;
}

.search-box {
  display: flex;
  gap: 8px;
  background: rgba(255,255,255,0.08);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 6px;
}

.search-box input {
  flex: 1;
  background: transparent;
  border: none;
  color: white;
  font-size: 14px;
  outline: none;
  padding: 6px 10px;
}

.search-box input::placeholder {
  color: var(--text-muted);
}

.search-box button {
  background: var(--primary);
  border: none;
  border-radius: 6px;
  padding: 6px 12px;
  color: white;
  cursor: pointer;
  font-size: 14px;
  transition: background 0.2s;
}

.search-box button:hover {
  background: var(--primary-dark);
}

.header-nav {
  display: flex;
  gap: 5px;
  flex-wrap: wrap;
}

.header-nav a {
  padding: 8px 15px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
  transition: all 0.2s;
  white-space: nowrap;
}

.header-nav a:hover {
  background: rgba(232,76,61,0.2);
  color: var(--accent);
}

/* ===== HERO BANNER ===== */
.hero-banner {
  background: linear-gradient(135deg, #16213e 0%, #0f3460 100%);
  border-bottom: 2px solid var(--primary);
  padding: 40px 20px;
  text-align: center;
}

.hero-banner h1 {
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 10px;
  line-height: 1.2;
}

.hero-banner h1 span {
  color: var(--primary);
}

.hero-banner p {
  font-size: 16px;
  color: var(--text-muted);
  margin-bottom: 30px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 20px;
  max-width: 600px;
  margin: 0 auto;
}

.stat-item {
  background: rgba(232,76,61,0.1);
  border: 1px solid rgba(232,76,61,0.3);
  border-radius: 8px;
  padding: 20px;
}

.stat-number {
  font-size: 28px;
  font-weight: 800;
  color: var(--primary);
}

.stat-label {
  font-size: 12px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 5px;
}

/* ===== LAYOUT PRINCIPAL ===== */
.main-layout {
  max-width: 1400px;
  margin: 0 auto;
  padding: 30px 20px;
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 30px;
}

main {
  min-height: 400px;
}

/* ===== CURSOS GRID ===== */
.courses-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
  margin-bottom: 30px;
}

.course-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
}

.course-card:hover {
  border-color: var(--primary);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(232,76,61,0.2);
}

.course-thumb {
  width: 100%;
  height: 180px;
  background: linear-gradient(135deg, #0f3460, #16213e);
  overflow: hidden;
  position: relative;
}

.course-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.course-card:hover .course-thumb img {
  transform: scale(1.05);
}

.no-image {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 60px;
  background: linear-gradient(135deg, rgba(232,76,61,0.1), rgba(232,76,61,0.05));
}

.course-body {
  padding: 15px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.course-category {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 8px;
  padding: 4px 8px;
  background: rgba(232,76,61,0.1);
  border-radius: 4px;
  width: fit-content;
  transition: all 0.2s;
}

.course-category:hover {
  background: rgba(232,76,61,0.2);
  color: var(--accent);
}

.course-title {
  font-size: 15px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 8px;
  color: white;
}

.course-title a {
  color: white;
  transition: color 0.2s;
}

.course-title a:hover {
  color: var(--primary);
}

.course-excerpt {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.4;
  margin-bottom: 10px;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.course-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: auto;
  padding-top: 10px;
  border-top: 1px solid var(--border);
}

.btn-info {
  background: var(--primary);
  color: white;
  padding: 8px 14px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 600;
  transition: all 0.2s;
  display: inline-block;
}

.btn-info:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
}

.course-date {
  font-size: 11px;
  color: var(--text-muted);
  white-space: nowrap;
}

/* ===== PAGINAÇÃO ===== */
.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 30px 0;
  flex-wrap: wrap;
}

.pagination a,
.pagination span {
  padding: 10px 14px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
  transition: all 0.2s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
}

.pagination a {
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--text-light);
  cursor: pointer;
}

.pagination a:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: white;
}

.pagination .current {
  background: var(--primary);
  color: white;
  border: 1px solid var(--primary);
}

.pagination .dots {
  color: var(--text-muted);
}

.pagination .prev-next {
  background: var(--primary);
  color: white;
  border: 1px solid var(--primary);
}

.pagination .prev-next:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
}

/* ===== SIDEBAR ===== */
.sidebar {
  display: flex;
  flex-direction: column;
  gap: 20px;
  height: fit-content;
  position: sticky;
  top: 100px;
}

.sidebar-widget {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.widget-title {
  background: rgba(232,76,61,0.15);
  padding: 12px 15px;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: white;
  border-bottom: 2px solid var(--primary);
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  user-select: none;
}

.widget-title:hover {
  background: rgba(232,76,61,0.25);
}

.widget-content {
  padding: 15px;
}

/* Aviso */
.notice-box {
  padding: 15px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.notice-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 13px;
  color: var(--text-muted);
  padding: 6px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.notice-item:last-child {
  border-bottom: none;
}

.notice-item .icon {
  font-size: 16px;
  flex-shrink: 0;
  margin-top: 1px;
}

.notice-item.highlight {
  color: var(--success);
  font-weight: 600;
}

/* Categorias - COMPACTAS COM SCROLL */
.categories-list {
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  max-height: 350px;
  overflow-y: auto;
  overflow-x: hidden;
}

.categories-list::-webkit-scrollbar {
  width: 6px;
}

.categories-list::-webkit-scrollbar-track {
  background: rgba(255,255,255,0.05);
  border-radius: 10px;
}

.categories-list::-webkit-scrollbar-thumb {
  background: var(--primary);
  border-radius: 10px;
}

.categories-list::-webkit-scrollbar-thumb:hover {
  background: var(--primary-dark);
}

.cat-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 10px;
  border-radius: 6px;
  color: var(--text-light);
  font-size: 13px;
  transition: all 0.2s;
}

.cat-link:hover {
  background: rgba(232,76,61,0.15);
  color: var(--primary);
  padding-left: 15px;
}

.cat-link .cat-count {
  background: rgba(255,255,255,0.1);
  color: var(--text-muted);
  padding: 2px 8px;
  border-radius: 10px;
  font-size: 11px;
}

/* Search widget */
.search-widget {
  padding: 15px;
}

.search-widget form {
  display: flex;
  gap: 8px;
}

.search-widget input {
  flex: 1;
  background: rgba(255,255,255,0.08);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 9px 12px;
  color: white;
  font-size: 13px;
  outline: none;
  transition: border-color 0.2s;
}

.search-widget input:focus {
  border-color: var(--primary);
}

.search-widget button {
  background: var(--primary);
  border: none;
  border-radius: 6px;
  padding: 9px 14px;
  color: white;
  cursor: pointer;
  font-size: 14px;
  transition: background 0.2s;
}

.search-widget button:hover {
  background: var(--primary-dark);
}

/* ===== PÁGINA DE CURSO INDIVIDUAL ===== */
.course-page {
  max-width: 1400px;
  margin: 0 auto;
  padding: 30px 20px;
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 30px;
}

.course-single {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.course-single-header {
  padding: 25px 30px;
  border-bottom: 1px solid var(--border);
}

.course-single-title {
  font-size: 26px;
  font-weight: 800;
  color: white;
  margin-bottom: 10px;
  line-height: 1.3;
}

.course-meta {
  display: flex;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
}

.course-single-body {
  padding: 25px 30px;
}

.course-featured-image {
  margin-bottom: 25px;
  border-radius: var(--radius);
  overflow: hidden;
  max-height: 400px;
}

.course-featured-image img {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
}

/* Download buttons */
.download-section {
  background: rgba(232,76,61,0.08);
  border: 1px solid rgba(232,76,61,0.3);
  border-radius: var(--radius);
  padding: 20px;
  margin: 20px 0;
}

.download-section h3 {
  color: var(--primary);
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.download-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.dl-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.2s;
  text-decoration: none;
  width: fit-content;
}

.dl-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.dl-btn.magnet {
  background: linear-gradient(135deg, #27ae60, #2ecc71);
  color: white;
}

.dl-btn.telegram {
  background: linear-gradient(135deg, #0088cc, #00a8e8);
  color: white;
}

.dl-btn.mega {
  background: linear-gradient(135deg, #d63031, #e17055);
  color: white;
}

.dl-btn.drive {
  background: linear-gradient(135deg, #4285f4, #34a853);
  color: white;
}

.dl-btn.torrent {
  background: linear-gradient(135deg, #6c5ce7, #a29bfe);
  color: white;
}

.dl-btn.other {
  background: linear-gradient(135deg, #636e72, #b2bec3);
  color: white;
}

.entry-content {
  color: var(--text-muted);
  line-height: 1.8;
}

.entry-content p {
  margin-bottom: 15px;
}

.entry-content strong {
  color: white;
}

/* ===== BREADCRUMB ===== */
.breadcrumb {
  max-width: 1400px;
  margin: 0 auto;
  padding: 15px 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-muted);
}

.breadcrumb a {
  color: var(--primary);
  transition: color 0.2s;
}

.breadcrumb a:hover {
  color: var(--accent);
}

.breadcrumb .sep {
  color: var(--text-muted);
}

/* ===== CATEGORIA HEADER ===== */
.category-header {
  background: linear-gradient(135deg, #16213e 0%, #0f3460 100%);
  border-bottom: 2px solid var(--primary);
  padding: 30px 20px;
}

.category-header .container {
  max-width: 1400px;
  margin: 0 auto;
}

.category-icon {
  font-size: 48px;
}

.category-info h1 {
  font-size: 32px;
  font-weight: 800;
  color: white;
  margin-bottom: 5px;
}

.category-info p {
  color: var(--text-muted);
  font-size: 14px;
}

/* ===== CATEGORIES SECTION (INFERIOR) ===== */
.categories-section {
  background: linear-gradient(135deg, #16213e 0%, #0f3460 100%);
  border-top: 2px solid var(--primary);
  padding: 50px 20px;
  margin: 60px 0 0 0;
}

.categories-section .container {
  max-width: 1400px;
  margin: 0 auto;
}

.categories-section h2 {
  font-size: 28px;
  font-weight: 800;
  color: white;
  margin-bottom: 30px;
  text-align: center;
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 15px;
}

.category-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 15px;
  text-align: center;
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 100px;
  color: var(--text-light);
  text-decoration: none;
}

.category-card:hover {
  background: rgba(232,76,61,0.15);
  border-color: var(--primary);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(232,76,61,0.2);
}

.category-card .cat-name {
  font-size: 14px;
  font-weight: 700;
  color: white;
  display: block;
}

.category-card .cat-badge {
  background: var(--primary);
  color: white;
  padding: 4px 10px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 700;
}

/* ===== FOOTER ===== */
footer {
  background: linear-gradient(135deg, #0f3460 0%, #16213e 100%);
  border-top: 2px solid var(--primary);
  padding: 40px 20px 20px;
  margin-top: 60px;
}

.footer-inner {
  max-width: 1400px;
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-bottom: 30px;
}

.footer-brand {
  color: var(--text-muted);
  font-size: 13px;
  line-height: 1.6;
}

.footer-brand .logo-text {
  margin-bottom: 15px;
}

.footer-brand .brand {
  font-size: 18px;
  font-weight: 800;
  color: white;
}

.footer-col h4 {
  color: white;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-col a {
  color: var(--text-muted);
  font-size: 13px;
  transition: color 0.2s;
}

.footer-col a:hover {
  color: var(--primary);
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 20px;
  text-align: center;
  color: var(--text-muted);
  font-size: 12px;
}

.footer-bottom p {
  margin-bottom: 5px;
}

/* ===== BACK TO TOP ===== */
#back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: var(--primary);
  color: white;
  border: none;
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 999;
  transition: all 0.3s;
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

#back-to-top.visible {
  display: flex;
}

#back-to-top:hover {
  background: var(--primary-dark);
  transform: translateY(-3px);
}

/* ===== EMPTY STATE ===== */
.empty-state {
  text-align: center;
  padding: 60px 20px;
  color: var(--text-muted);
}

.empty-state .icon {
  font-size: 64px;
  margin-bottom: 20px;
}

.empty-state h3 {
  color: white;
  font-size: 20px;
  margin-bottom: 10px;
}

/* ===== LOADING ===== */
.loading {
  text-align: center;
  padding: 40px 20px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.spinner {
  width: 20px;
  height: 20px;
  border: 3px solid rgba(232,76,61,0.3);
  border-top-color: var(--primary);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* ===== RESPONSIVO ===== */
@media (max-width: 1024px) {
  .main-layout,
  .course-page {
    grid-template-columns: 1fr;
  }
  
  .sidebar {
    position: static;
    top: auto;
  }
  
  .courses-grid {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  }
}

@media (max-width: 768px) {
  .header-inner {
    height: auto;
    padding: 15px 20px;
    gap: 10px;
  }
  
  .header-search {
    order: 3;
    flex-basis: 100%;
    min-width: auto;
    max-width: 100%;
  }
  
  .header-nav {
    order: 4;
    flex-basis: 100%;
    justify-content: space-around;
  }
  
  .logo-text .brand {
    font-size: 18px;
  }
  
  .logo-text .tagline {
    font-size: 10px;
  }
  
  .hero-banner h1 {
    font-size: 28px;
  }
  
  .hero-stats {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .courses-grid {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  }
  
  .course-card {
    margin-bottom: 0;
  }
  
  .course-thumb {
    height: 150px;
  }
  
  .sidebar {
    margin-top: 20px;
  }
  
  .categories-list {
    max-height: 250px;
  }
  
  #back-to-top {
    bottom: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
    font-size: 18px;
  }
}

@media (max-width: 480px) {
  .header-inner {
    padding: 10px 15px;
  }
  
  .logo-icon {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }
  
  .logo-text .brand {
    font-size: 16px;
  }
  
  .search-box {
    padding: 4px;
  }
  
  .search-box input {
    padding: 4px 8px;
    font-size: 12px;
  }
  
  .search-box button {
    padding: 4px 10px;
    font-size: 12px;
  }
  
  .header-nav a {
    padding: 6px 10px;
    font-size: 11px;
  }
  
  .hero-banner {
    padding: 25px 15px;
  }
  
  .hero-banner h1 {
    font-size: 22px;
  }
  
  .hero-banner p {
    font-size: 14px;
  }
  
  .hero-stats {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  
  .main-layout,
  .course-page {
    padding: 15px 15px;
    gap: 15px;
  }
  
  .courses-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .course-thumb {
    height: 120px;
  }
  
  .course-body {
    padding: 12px;
  }
  
  .course-title {
    font-size: 14px;
  }
  
  .course-excerpt {
    font-size: 12px;
  }
  
  .pagination {
    gap: 5px;
  }
  
  .pagination a,
  .pagination span {
    padding: 8px 10px;
    font-size: 12px;
    min-width: 35px;
  }
  
  .course-single-title {
    font-size: 20px;
  }
  
  .course-single-header,
  .course-single-body {
    padding: 15px 20px;
  }
  
  .breadcrumb {
    padding: 10px 15px;
    font-size: 12px;
  }
  
  .footer-grid {
    gap: 20px;
  }
  
  .footer-col h4 {
    font-size: 13px;
    margin-bottom: 10px;
  }
  
  .footer-col a {
    font-size: 12px;
  }
}
