/* Síndico Agora — identidade: navy #001a3d, verde #34c67e */

@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Plus+Jakarta+Sans:wght@600;700;800&display=swap');

:root {
  --sa-navy: #001a3d;
  --sa-navy-deep: #000f24;
  --sa-green: #34c67e;
  --sa-green-hover: #2db06f;
  --sa-text: #1a1a1a;
  --sa-muted: #6c757d;
  --sa-bg-soft: #f0f3f7;
  --sa-white: #fff;
  --sa-radius: 6px;
  --sa-shadow: 0 8px 28px rgba(0, 26, 61, 0.08);
  --sa-font: 'DM Sans', system-ui, sans-serif;
  --sa-display: 'Plus Jakarta Sans', var(--sa-font);
  --sa-topo-pattern: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120' viewBox='0 0 120 120'%3E%3Cpath fill='none' stroke='%23ffffff' stroke-opacity='0.06' stroke-width='1' d='M0 40c20-8 40 8 60 0s40-8 60 0M0 80c20 8 40-8 60 0s40 8 60 0M20 0c-8 20 8 40 0 60s-8 40 0 60M60 0c8 20-8 40 0 60s8 40 0 60'/%3E%3C/svg%3E");
}

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

body {
  margin: 0;
  font-family: var(--sa-font);
  color: var(--sa-text);
  background: var(--sa-bg-soft);
  line-height: 1.55;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1 0 auto;
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  color: var(--sa-green);
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

/* ---------- Header / menu ---------- */
.site-top-strip {
  min-height: 4px;
  background: linear-gradient(90deg, var(--sa-navy) 0%, #0a2744 45%, var(--sa-green) 100%);
}

.site-header {
  position: relative;
  z-index: 100;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0, 26, 61, 0.08);
  box-shadow: 0 10px 28px rgba(0, 26, 61, 0.06);
}

.site-header__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.site-header__row {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.site-header__row--main {
  min-height: 84px;
}

.site-header__row--utility {
  min-height: 74px;
  padding: 0.35rem 0 0.75rem;
  border-top: 1px solid rgba(0, 26, 61, 0.07);
  justify-content: space-between;
}

.site-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 140px;
  gap: 4px;
  padding: 10px 0;
  color: var(--sa-navy);
  font-family: var(--sa-display);
  font-weight: 800;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  line-height: 1.1;
  text-align: center;
  flex: 0 0 auto;
}

.site-logo svg {
  display: block;
}

.site-logo__text {
  margin-top: 2px;
}

.site-nav-wrap {
  flex: 1 1 auto;
  min-width: 0;
  padding: 0;
}

.site-nav-wrap .navbar-collapse {
  align-items: center;
  justify-content: flex-end;
}

.site-nav {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 0.35rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-nav > li {
  position: relative;
}

.site-nav .nav-link,
.site-nav a {
  display: block;
  padding: 0.72rem 0.85rem;
  font-size: 0.98rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: #253140;
  white-space: nowrap;
  border-radius: 14px;
  transition: color 0.2s, background 0.2s, transform 0.2s;
}

.site-nav a:hover,
.site-nav a.active,
.site-nav .nav-link:hover,
.site-nav .nav-link.active {
  color: var(--sa-navy);
  background: rgba(52, 198, 126, 0.14);
}

.site-nav .dropdown-menu {
  border: none;
  box-shadow: var(--sa-shadow);
  border-radius: 14px;
  padding: 0.35rem 0;
  min-width: 230px;
}

.site-nav .dropdown-item {
  font-size: 0.92rem;
  padding: 0.55rem 1rem;
  border-radius: 0;
}

.site-nav .dropdown-item:hover {
  background: rgba(52, 198, 126, 0.12);
  color: var(--sa-navy);
}

.site-search-wide {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex: 1 1 auto;
  max-width: 540px;
  margin-right: auto;
}

.site-search-wide input {
  flex: 1 1 auto;
  min-width: 220px;
  height: 46px;
  padding: 0 1rem;
  border: 2px solid #d8e1eb;
  border-radius: 14px;
  font-size: 1rem;
  color: #223042;
  background: #fff;
  outline: none;
  box-shadow: inset 0 1px 2px rgba(0, 26, 61, 0.04);
}

.site-search-wide input:focus {
  border-color: #93b7d9;
  box-shadow: 0 0 0 3px rgba(0, 26, 61, 0.08);
}

.site-search-wide button {
  height: 46px;
  padding: 0 1.35rem;
  border: none;
  background: var(--sa-navy);
  color: #fff;
  border-radius: 14px;
  font-weight: 700;
  font-size: 0.98rem;
  transition: background 0.2s, transform 0.2s;
}

.site-search-wide button:hover {
  background: #012753;
  transform: translateY(-1px);
}

.site-header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  flex: 0 0 auto;
}

.site-cart {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 46px;
  padding: 0 16px;
  border: 1px solid #dbe3ef;
  border-radius: 16px;
  background: #fff;
  color: #001a3d;
  font-weight: 700;
  line-height: 1;
  transition: all 0.18s ease;
  box-shadow: 0 6px 18px rgba(0, 26, 61, 0.05);
  white-space: nowrap;
}

.site-cart:hover {
  border-color: #001a3d;
  color: #001a3d;
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(0, 26, 61, 0.10);
}

.site-cart__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.site-cart__text {
  font-size: 0.98rem;
  white-space: nowrap;
}

.site-cart__badge {
  min-width: 22px;
  height: 22px;
  padding: 0 6px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #28c76f;
  color: #fff;
  font-size: 0.78rem;
  font-weight: 800;
}

.site-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  padding: 0 1.35rem;
  font-size: 0.78rem;
  font-family: var(--sa-display);
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--sa-white) !important;
  background: var(--sa-green);
  border-radius: 14px;
  border: none;
  white-space: nowrap;
  box-shadow: 0 4px 18px rgba(52, 198, 126, 0.35);
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}

.site-cta:hover {
  background: var(--sa-green-hover);
  color: var(--sa-white) !important;
  transform: translateY(-1px);
}

.header-member-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.header-member-btn i {
  font-size: 1rem;
  line-height: 1;
}

.header-member-btn.is-logged {
  background: linear-gradient(135deg, #34c67e 0%, #2db06f 100%);
}

.navbar-toggler {
  border: 1px solid #dbe3ef;
  border-radius: 12px;
  padding: 0.45rem 0.65rem;
  background: #fff;
}

.navbar-toggler:focus {
  box-shadow: none;
  border-color: var(--sa-navy);
}

@media (max-width: 1399.98px) {
  .site-nav .nav-link,
  .site-nav a {
    font-size: 0.94rem;
    padding-left: 0.7rem;
    padding-right: 0.7rem;
  }
}

@media (max-width: 1199.98px) {
  .site-header__row--main {
    position: relative;
    min-height: 76px;
    justify-content: space-between;
  }

  .site-nav-wrap {
    flex: 0 0 auto;
    min-width: auto;
    margin-left: auto;
    position: relative;
  }

  .site-nav-wrap .navbar-toggler {
    margin-left: 0 !important;
  }

  .site-nav-wrap .navbar-collapse {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    left: auto;
    width: min(320px, calc(100vw - 2rem));
    max-width: 320px;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 14px;
    margin-top: 0;
    box-shadow: 0 10px 28px rgba(16, 0, 57, 0.08);
    z-index: 1000;
  }

  .site-nav {
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 0;
    width: 100%;
  }

  .site-nav .nav-link,
  .site-nav a {
    width: 100%;
  }

  .site-search-wide {
    max-width: none;
    width: 100%;
    margin-right: 0;
  }

  .site-header-actions {
    width: 100%;
    display: flex;
    justify-content: space-between;
    gap: 12px;
  }

  .site-cart,
  .site-cta {
    flex: 1 1 calc(50% - 6px);
    justify-content: center;
  }
}

@media (max-width: 767.98px) {
  .site-header__inner {
    padding: 0 0.85rem;
  }

  .site-header__row--main {
    min-height: 72px;
  }

  .site-logo {
    min-width: auto;
  }

  .site-search-wide input {
    min-width: 0;
  }

  .site-header__row--utility {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    padding-bottom: 0.85rem;
  }

  .site-search-wide {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    max-width: none;
    margin: 0;
    gap: 10px;
  }

  .site-search-wide input,
  .site-search-wide button {
    width: 100%;
  }

  .site-header-actions {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 10px;
  }

  .site-cart,
  .site-cta {
    width: 100%;
    max-width: none;
    flex: 0 0 100%;
    justify-content: center;
  }
}

/* ---------- Page hero interno ---------- */
.page-hero {
  position: relative;
  background: var(--sa-navy);
  background-image: var(--sa-topo-pattern);
  color: var(--sa-white);
  padding: 2.5rem 1rem 3rem;
  overflow: hidden;
}

.page-hero::after {
  content: '';
  position: absolute;
  right: 0;
  bottom: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0 72px 120px;
  border-color: transparent transparent var(--sa-bg-soft) transparent;
}

.page-hero h1 {
  margin: 0 0 0.5rem;
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  font-weight: 800;
}

.breadcrumb-sa {
  font-size: 0.85rem;
  opacity: 0.9;
}

.breadcrumb-sa a {
  color: var(--sa-green);
}

/* ---------- Conteúdo ---------- */
.sa-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.section-sa {
  padding: 3rem 0;
}

.section-title {
  text-align: center;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sa-green);
  margin: 0 0 0.35rem;
}

.section-heading {
  text-align: center;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  color: var(--sa-navy);
  margin: 0 0 2rem;
}

/* ---------- Home hero ---------- */
.home-hero {
  position: relative;
  background: var(--sa-navy);
  background-image: var(--sa-topo-pattern);
  color: var(--sa-white);
  padding: 3rem 1rem 4rem;
}

.home-hero__grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}

.home-hero h1 {
  font-size: clamp(1.35rem, 3vw, 2rem);
  font-weight: 800;
  line-height: 1.25;
  margin: 0 0 0.75rem;
}

.home-hero .tag {
  display: inline-block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  opacity: 0.95;
  margin-bottom: 1rem;
}

.home-hero ul.checks {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
}

.home-hero ul.checks li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.65rem;
  font-size: 0.95rem;
}

.home-hero ul.checks li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--sa-green);
  font-weight: 800;
}

.btn-sa-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.5rem;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--sa-white);
  background: var(--sa-green);
  border: none;
  border-radius: var(--sa-radius);
  cursor: pointer;
  transition: background 0.2s;
}

.btn-sa-primary:hover {
  background: var(--sa-green-hover);
  color: var(--sa-white);
}

.home-hero__visual {
  text-align: center;
}

.home-hero__visual .ph {
  aspect-ratio: 4/3;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  opacity: 0.85;
}

/* ---------- Blocos home ---------- */
.block-about {
  background: var(--sa-white);
  padding: 3.5rem 1rem;
}

.block-about__grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
}

.kicker {
  color: var(--sa-green);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin: 0 0 0.5rem;
}

.block-about h2 {
  color: var(--sa-navy);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  margin: 0 0 1rem;
}

.block-course-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 420px;
}

.block-course-split__photo {
  background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
  min-height: 280px;
}

.block-course-split__content {
  background: var(--sa-navy);
  background-image: var(--sa-topo-pattern);
  color: var(--sa-white);
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.block-course-split__content .sub {
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #8ec5ff;
  margin-bottom: 0.75rem;
}

.block-course-split__content h2 {
  margin: 0 0 1rem;
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
}

.stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: 1200px;
  margin: -2rem auto 0;
  position: relative;
  z-index: 2;
  padding: 0 1rem;
}

.stat-box {
  background: var(--sa-green);
  color: var(--sa-white);
  text-align: center;
  padding: 1.35rem 0.75rem;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-box:last-child {
  border-right: none;
}

.stat-box strong {
  display: block;
  font-size: 1.5rem;
  font-weight: 800;
}

.stat-box span {
  font-size: 0.75rem;
  opacity: 0.95;
}

/* Blog grid home */
.blog-section {
  background: #e8eef5;
  padding: 3rem 1rem 4rem;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.blog-card {
  background: var(--sa-white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--sa-shadow);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.blog-card__img {
  aspect-ratio: 16/10;
  background: #dde4ec;
}

.blog-card__body {
  padding: 1.1rem 1.25rem 1.25rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.blog-card__tag {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--sa-green);
  margin-bottom: 0.5rem;
}

.blog-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--sa-navy);
  margin: 0 0 0.5rem;
  line-height: 1.35;
}

.blog-card p {
  font-size: 0.88rem;
  color: var(--sa-muted);
  margin: 0 0 1rem;
  flex: 1;
}

.blog-card a.more {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--sa-green);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.cta-strip {
  background: var(--sa-white);
  padding: 3rem 1rem;
  text-align: center;
}

.cta-strip p {
  max-width: 720px;
  margin: 0 auto 1.25rem;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--sa-navy);
  line-height: 1.45;
}

/* Produtos */
.prod-section-title {
  text-align: center;
  color: var(--sa-navy);
  font-size: 1.35rem;
  font-weight: 800;
  margin: 2.5rem 0 1.5rem;
}

.prod-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.5rem;
  margin-bottom: 1rem;
}

.prod-grid--center-one {
  max-width: 320px;
  margin-left: auto;
  margin-right: auto;
}

.prod-card {
  background: var(--sa-white);
  border-radius: 10px;
  box-shadow: var(--sa-shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.prod-card__img {
  border: 1px solid #e9ecef;
  margin: 1rem;
  border-radius: 6px;
  aspect-ratio: 1;
  background: #f4f6f9;
  overflow: hidden;
}

.prod-card__body {
  padding: 0 1.25rem 1.25rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.prod-card__meta {
  font-size: 0.75rem;
  color: var(--sa-muted);
  margin-bottom: 0.35rem;
}

.prod-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--sa-navy);
  margin: 0 0 0.75rem;
  flex: 1;
}

.price-sa {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.price-sa del {
  color: var(--sa-muted);
  font-weight: 500;
  margin-right: 0.35rem;
}

.btn-cart {
  display: block;
  width: 100%;
  text-align: center;
  padding: 0.55rem;
  background: #111;
  color: var(--sa-white) !important;
  font-size: 0.8rem;
  font-weight: 600;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

.btn-cart:hover {
  background: #333;
  color: var(--sa-white) !important;
}

/* Post */
.post-content {
  background: var(--sa-white);
  padding: 2rem;
  border-radius: 12px;
  box-shadow: var(--sa-shadow);
  max-width: 800px;
  margin: 0 auto;
}

.post-content img.featured {
  width: 100%;
  border-radius: 8px;
  margin-bottom: 1.5rem;
}

.post-body {
  line-height: 1.75;
}

.post-body img {
  max-width: 100%;
  height: auto;
}

/* Footer */
.site-footer {
  background: var(--sa-navy);
  background-image: var(--sa-topo-pattern);
  color: rgba(255, 255, 255, 0.92);
  padding: 3rem 1rem 0;
}

.site-footer__grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 320px 1fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 2rem;
}

.site-footer__contact {
  background: var(--sa-green);
  padding: 1.5rem 1.25rem;
  margin: -3rem 0 0;
  align-self: start;
  min-height: 200px;
}

.site-footer__contact .logo-light svg {
  opacity: 0.98;
}

.site-footer__contact p {
  margin: 0.75rem 0 0;
  font-size: 0.85rem;
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.site-footer h4 {
  font-size: 0.95rem;
  font-weight: 700;
  margin: 0 0 1rem;
}

.site-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.site-footer ul li {
  margin-bottom: 0.5rem;
  padding-left: 1rem;
  position: relative;
  font-size: 0.88rem;
}

.site-footer ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 5px;
  height: 5px;
  background: var(--sa-white);
}

.site-footer a:hover {
  color: var(--sa-green);
}

.site-footer .social {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex-wrap: wrap;
}

.site-footer .social a {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-right: 0;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.site-footer .social a svg {
  display: block;
}

.site-footer .social a:hover {
  transform: translateY(-2px);
  color: #fff;
  box-shadow: 0 10px 18px rgba(0, 0, 0, 0.18);
}

.site-footer .social .social-link--instagram {
  background: linear-gradient(135deg, #833ab4 0%, #fd1d1d 50%, #fcb045 100%);
  border-color: rgba(255, 255, 255, 0.22);
}

.site-footer .social .social-link--youtube {
  background: linear-gradient(135deg, #ff0000 0%, #cc0000 100%);
  border-color: rgba(255, 255, 255, 0.22);
}

.site-footer .social .social-link--instagram:hover {
  box-shadow: 0 10px 20px rgba(253, 29, 29, 0.28);
}

.site-footer .social .social-link--youtube:hover {
  box-shadow: 0 10px 20px rgba(255, 0, 0, 0.28);
}

.site-footer__sub {
  background: var(--sa-navy-deep);
  padding: 1rem;
  text-align: center;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.65);
  position: relative;
}

.back-to-top {
  position: absolute;
  left: 1rem;
  bottom: 50%;
  transform: translateY(50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #c8cdd4;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sa-navy);
  font-size: 1.2rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.back-to-top:hover {
  background: var(--sa-white);
}

/* Responsivo */
@media (max-width: 991px) {
  .site-footer__grid {
    grid-template-columns: 1fr 1fr;
  }

  .site-footer__contact {
    grid-column: 1 / -1;
    margin: 0 0 1rem;
  }

  .home-hero__grid,
  .block-about__grid,
  .block-course-split {
    grid-template-columns: 1fr;
  }

  .stats-bar {
    grid-template-columns: repeat(2, 1fr);
  }

  .stat-box {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }

  .blog-grid {
    grid-template-columns: 1fr;
  }

  .site-logo {
    padding-left: 40px;
  }
}

@media (max-width: 767px) {
  .site-nav-wrap {
    flex-direction: column;
    align-items: stretch;
  }

  .site-search-mini {
    width: 100%;
  }

  .site-search-mini input {
    flex: 1;
    width: auto;
  }

  .stats-bar {
    grid-template-columns: 1fr;
    margin-top: 0;
  }

  .back-to-top {
    position: fixed;
    left: auto;
    right: 12px;
    bottom: 16px;
    z-index: 50;
    transform: none;
  }
}

/* Util */
.mt-0 {
  margin-top: 0;
}
.mb-0 {
  margin-bottom: 0;
}


.menu-aluno-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: #f3f6fb;
  color: #0b2441;
  text-decoration: none;
  font-weight: 600;
}

.menu-aluno-pill i {
  font-size: 1rem;
}
