/* =========================================================
   ADBO — Estilos Globais
   Tema: Azul Escuro
   ========================================================= */

/* ---- Variáveis e Reset ---- */
:root {
  --color-bg-dark:   #0a1f44;
  --color-primary:   #1a3a6b;
  --color-accent:    #1e6fc5;
  --color-accent-h:  #1558a0;
  --color-text-light:#e8f0fe;
  --color-page-bg:   #f0f4ff;
  --color-card-bg:   #ffffff;
  --color-card-bdr:  #c8d8f8;
  --color-muted:     #6b84b8;
  --radius:          8px;
  --shadow:          0 4px 18px rgba(10,31,68,.12);
  --shadow-hover:    0 8px 28px rgba(10,31,68,.22);
  --transition:      .25s ease;
  --font:            'Nunito', 'Segoe UI', sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--color-page-bg);
  color: #1a2a4a;
  line-height: 1.65;
  font-size: 16px;
}

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

/* ---- Utilitários ---- */
.container {
  width: 90%;
  max-width: 1140px;
  margin: 0 auto;
}

.btn {
  display: inline-block;
  padding: .65rem 1.6rem;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: .95rem;
  cursor: pointer;
  border: none;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}
.btn-primary {
  background: var(--color-accent);
  color: #fff;
}
.btn-primary:hover {
  background: var(--color-accent-h);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(30,111,197,.35);
}
.btn-outline {
  background: transparent;
  color: var(--color-text-light);
  border: 2px solid var(--color-text-light);
}
.btn-outline:hover {
  background: rgba(255,255,255,.12);
  transform: translateY(-2px);
}

.section-title {
  font-size: 1.85rem;
  font-weight: 800;
  color: var(--color-bg-dark);
  text-align: center;
  margin-bottom: .5rem;
}
.section-subtitle {
  text-align: center;
  color: var(--color-muted);
  margin-bottom: 2.8rem;
  font-size: 1.05rem;
}
.section-divider {
  width: 60px;
  height: 4px;
  background: var(--color-accent);
  border-radius: 4px;
  margin: .5rem auto 1rem;
}

/* =========================================================
   HEADER / NAV
   ========================================================= */
.site-header {
  background: var(--color-bg-dark);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 16px rgba(0,0,0,.35);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .9rem 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: .75rem;
  color: var(--color-text-light);
}
.logo-icon {
  width: 46px;
  height: 46px;
  background: var(--color-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
  box-shadow: 0 0 0 3px rgba(30,111,197,.35);
}
.logo-text { line-height: 1.2; }
.logo-name {
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: .5px;
}
.logo-sub {
  font-size: .72rem;
  color: var(--color-muted);
  font-weight: 400;
}

/* Nav links */
.nav-links {
  display: flex;
  gap: .3rem;
  align-items: center;
}
.nav-links a {
  color: var(--color-text-light);
  padding: .45rem .9rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: .93rem;
  transition: background var(--transition), color var(--transition);
  position: relative;
}
.nav-links a:hover,
.nav-links a.active {
  background: var(--color-accent);
  color: #fff;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: .4rem;
  border-radius: var(--radius);
  transition: background var(--transition);
}
.hamburger:hover { background: rgba(255,255,255,.1); }
.hamburger span {
  display: block;
  width: 26px;
  height: 3px;
  background: var(--color-text-light);
  border-radius: 3px;
  transition: transform var(--transition), opacity var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* Mobile nav */
@media (max-width: 768px) {
  .hamburger { display: flex; }
  .site-header { overflow: visible; }
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: var(--color-bg-dark);
    padding: 1rem 1.5rem 1.5rem;
    gap: .25rem;
    box-shadow: 0 8px 24px rgba(0,0,0,.3);
    z-index: 1001;
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: .7rem 1rem; }
}

/* =========================================================
   HERO
   ========================================================= */
.hero {
  background: linear-gradient(135deg, var(--color-bg-dark) 0%, var(--color-primary) 60%, #1a4d8f 100%);
  color: var(--color-text-light);
  padding: 5.5rem 0 5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  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='%231e6fc5' fill-opacity='0.08'%3E%3Ccircle cx='30' cy='30' r='10'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}
.hero-badge {
  display: inline-block;
  background: rgba(30,111,197,.35);
  border: 1px solid rgba(30,111,197,.6);
  color: #93bbf5;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: .35rem 1rem;
  border-radius: 20px;
  margin-bottom: 1.2rem;
}
.hero h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 1.2rem;
  text-shadow: 0 2px 12px rgba(0,0,0,.2);
}
.hero h1 span { color: #7ab8f5; }
.hero p {
  font-size: 1.15rem;
  color: #b3c9e8;
  max-width: 580px;
  margin: 0 auto 2.2rem;
  line-height: 1.7;
}
.hero-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* =========================================================
   SOBRE (HOME)
   ========================================================= */
.about-section { padding: 5rem 0; }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
@media (max-width: 768px) { .about-grid { grid-template-columns: 1fr; } }

.about-text .section-title { text-align: left; }
.about-text .section-divider { margin-left: 0; }
.about-text .section-subtitle { text-align: left; margin-bottom: 1.5rem; }
.about-text p { color: #3a5080; margin-bottom: 1rem; line-height: 1.8; }

.mvv-cards {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.mvv-card {
  background: var(--color-card-bg);
  border: 1px solid var(--color-card-bdr);
  border-left: 4px solid var(--color-accent);
  border-radius: var(--radius);
  padding: 1.1rem 1.3rem;
  box-shadow: var(--shadow);
  transition: box-shadow var(--transition), transform var(--transition);
}
.mvv-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateX(4px);
}
.mvv-card h4 {
  font-size: .85rem;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: .35rem;
}
.mvv-card p { font-size: .93rem; color: #4a6080; margin: 0; }

/* =========================================================
   ESTATÍSTICAS
   ========================================================= */
.stats-section {
  background: linear-gradient(135deg, var(--color-bg-dark), var(--color-primary));
  padding: 4rem 0;
  color: var(--color-text-light);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1.5rem;
  text-align: center;
}
.stat-card {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius);
  padding: 1.8rem 1rem;
  transition: background var(--transition), transform var(--transition);
}
.stat-card:hover {
  background: rgba(255,255,255,.13);
  transform: translateY(-4px);
}
.stat-number {
  font-size: 2.4rem;
  font-weight: 900;
  color: #7ab8f5;
  line-height: 1;
  margin-bottom: .3rem;
}
.stat-label {
  font-size: .88rem;
  color: #93b3d8;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .8px;
}
.stat-icon { font-size: 1.6rem; margin-bottom: .5rem; }

/* =========================================================
   NOVIDADES (HOME)
   ========================================================= */
.news-section { padding: 5rem 0; }
.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.8rem;
}
.news-card {
  background: var(--color-card-bg);
  border: 1px solid var(--color-card-bdr);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: box-shadow var(--transition), transform var(--transition);
}
.news-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-5px);
}
.news-thumb {
  height: 160px;
  background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
}
.news-body { padding: 1.3rem; }
.news-cat {
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--color-accent);
  margin-bottom: .4rem;
}
.news-body h3 { font-size: 1rem; font-weight: 800; margin-bottom: .5rem; color: #1a2a4a; }
.news-body p  { font-size: .88rem; color: #5a7090; line-height: 1.6; }
.news-date { font-size: .78rem; color: var(--color-muted); margin-top: .6rem; }

/* =========================================================
   PAGE BANNER (páginas internas)
   ========================================================= */
.page-banner {
  background: linear-gradient(135deg, var(--color-bg-dark), var(--color-primary));
  color: var(--color-text-light);
  padding: 3.5rem 0 3rem;
  text-align: center;
}
.page-banner h1 { font-size: 2.2rem; font-weight: 900; margin-bottom: .5rem; }
.page-banner p  { color: #93b3d8; font-size: 1rem; }
.breadcrumb { font-size: .85rem; color: #7ab8f5; margin-bottom: .6rem; }
.breadcrumb a { color: #7ab8f5; }
.breadcrumb a:hover { text-decoration: underline; }

/* =========================================================
   PORTAL DA TRANSPARÊNCIA
   ========================================================= */
.transparency-section { padding: 4rem 0 5rem; }
.alert-box {
  background: #e8f0fe;
  border: 1px solid var(--color-card-bdr);
  border-left: 4px solid var(--color-accent);
  border-radius: var(--radius);
  padding: 1rem 1.4rem;
  margin-bottom: 2.5rem;
  font-size: .93rem;
  color: #1a3a6b;
}
.alert-box strong { color: var(--color-accent); }

.doc-category { margin-bottom: 2.8rem; }
.doc-category-title {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--color-bg-dark);
  padding: .6rem 1rem;
  background: #dce8fb;
  border-radius: var(--radius) var(--radius) 0 0;
  border-left: 4px solid var(--color-accent);
  display: flex;
  align-items: center;
  gap: .5rem;
}

.doc-table { width: 100%; border-collapse: collapse; }
.doc-table th {
  background: var(--color-bg-dark);
  color: var(--color-text-light);
  padding: .75rem 1rem;
  font-size: .85rem;
  text-align: left;
  font-weight: 700;
}
.doc-table td {
  padding: .75rem 1rem;
  border-bottom: 1px solid var(--color-card-bdr);
  font-size: .9rem;
  color: #2a3a5a;
  background: var(--color-card-bg);
}
.doc-table tr:last-child td { border-bottom: none; }
.doc-table tr:hover td { background: #f0f6ff; }

.badge {
  display: inline-block;
  padding: .2rem .7rem;
  border-radius: 20px;
  font-size: .75rem;
  font-weight: 700;
}
.badge-ata       { background: #d4e8ff; color: #1a4a8a; }
.badge-financ    { background: #d4f0e0; color: #1a6040; }
.badge-estatuto  { background: #ffe8d4; color: #8a4010; }
.badge-relatorio { background: #e8d4ff; color: #5a1a8a; }
.badge-custom1   { background: #e8e8e8; color: #444; }
.badge-custom2   { background: #1a2a4a; color: #fff; }
.badge-custom3   { background: #ffe0e0; color: #8a1a1a; }
.badge-custom4   { background: #d4f5f0; color: #0d5c52; }
.badge-custom5   { background: #fff8d4; color: #7a6000; }
.badge-custom6   { background: #ffd6ec; color: #7a1a50; }

.btn-download {
  background: var(--color-accent);
  color: #fff;
  padding: .35rem .85rem;
  border-radius: var(--radius);
  font-size: .82rem;
  font-weight: 700;
  transition: background var(--transition);
  white-space: nowrap;
}
.btn-download:hover { background: var(--color-accent-h); }

/* =========================================================
   ATIVIDADES
   ========================================================= */
.activities-section { padding: 4rem 0; }
.activities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.8rem;
  margin-bottom: 4rem;
}
.activity-card {
  background: var(--color-card-bg);
  border: 1px solid var(--color-card-bdr);
  border-radius: var(--radius);
  padding: 1.8rem 1.5rem;
  text-align: center;
  box-shadow: var(--shadow);
  transition: box-shadow var(--transition), transform var(--transition);
  position: relative;
}
.activity-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-5px);
}
.activity-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  margin: 0 auto 1rem;
  box-shadow: 0 4px 14px rgba(30,111,197,.3);
}
.activity-card h3 { font-size: 1.05rem; font-weight: 800; color: #1a2a4a; margin-bottom: .5rem; }
.activity-card p  { font-size: .88rem; color: #5a7090; line-height: 1.65; margin-bottom: 1rem; }
.freq-badge {
  display: inline-block;
  padding: .25rem .8rem;
  border-radius: 20px;
  font-size: .75rem;
  font-weight: 700;
  background: #e0eeff;
  color: var(--color-accent);
}

.agenda-section { margin-top: 1rem; }
.agenda-section h2 {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--color-bg-dark);
  margin-bottom: 1.2rem;
  padding-bottom: .5rem;
  border-bottom: 3px solid var(--color-accent);
  display: inline-block;
}

.agenda-table { width: 100%; border-collapse: collapse; }
.agenda-table th {
  background: var(--color-bg-dark);
  color: var(--color-text-light);
  padding: .75rem 1rem;
  font-size: .85rem;
  text-align: left;
}
.agenda-table td {
  padding: .8rem 1rem;
  border-bottom: 1px solid var(--color-card-bdr);
  font-size: .9rem;
  background: var(--color-card-bg);
  color: #2a3a5a;
}
.agenda-table tr:last-child td { border-bottom: none; }
.agenda-table tr:hover td { background: #f0f6ff; }
.agenda-status {
  display: inline-block;
  padding: .2rem .7rem;
  border-radius: 20px;
  font-size: .75rem;
  font-weight: 700;
}
.status-open   { background: #d4f0e0; color: #1a6040; }
.status-full   { background: #ffe8e8; color: #8a1a1a; }
.status-coming { background: #fff3d4; color: #7a4a00; }

/* =========================================================
   FALE CONOSCO
   ========================================================= */
.contact-section { padding: 4rem 0 5rem; }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 3rem;
  margin-bottom: 3.5rem;
}
@media (max-width: 860px) { .contact-grid { grid-template-columns: 1fr; } }

.contact-info h2 {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--color-bg-dark);
  margin-bottom: 1.2rem;
}
.info-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.2rem;
  align-items: flex-start;
}
.info-icon {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
  box-shadow: 0 3px 10px rgba(30,111,197,.25);
}
.info-text strong { display: block; font-size: .82rem; text-transform: uppercase; letter-spacing: .8px; color: var(--color-accent); margin-bottom: .15rem; }
.info-text span   { font-size: .93rem; color: #3a5080; line-height: 1.5; }

.contact-form { background: var(--color-card-bg); border: 1px solid var(--color-card-bdr); border-radius: var(--radius); padding: 2rem; box-shadow: var(--shadow); }
.contact-form h2 { font-size: 1.35rem; font-weight: 800; color: var(--color-bg-dark); margin-bottom: 1.5rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 520px) { .form-row { grid-template-columns: 1fr; } }
.form-group { margin-bottom: 1rem; }
.form-group label { display: block; font-size: .85rem; font-weight: 700; color: #2a3a5a; margin-bottom: .35rem; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: .65rem .9rem;
  border: 1.5px solid var(--color-card-bdr);
  border-radius: var(--radius);
  font-family: var(--font);
  font-size: .93rem;
  color: #1a2a4a;
  background: var(--color-page-bg);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(30,111,197,.18);
}
.form-group textarea { resize: vertical; min-height: 130px; }
.form-submit { margin-top: .5rem; width: 100%; padding: .8rem; font-size: 1rem; }

.map-section { margin-top: 1.5rem; }
.map-section h2 {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--color-bg-dark);
  margin-bottom: 1rem;
  padding-bottom: .5rem;
  border-bottom: 3px solid var(--color-accent);
  display: inline-block;
}
.map-wrapper {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 2px solid var(--color-card-bdr);
}
.map-wrapper iframe { display: block; width: 100%; height: 400px; border: none; }

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer {
  background: var(--color-bg-dark);
  color: var(--color-text-light);
  padding: 3.5rem 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
@media (max-width: 768px) { .footer-grid { grid-template-columns: 1fr; gap: 2rem; } }

.footer-brand .logo { margin-bottom: 1rem; }
.footer-brand p { font-size: .88rem; color: #7a9cc8; line-height: 1.7; }

.footer-col h4 {
  font-size: .9rem;
  font-weight: 800;
  letter-spacing: .8px;
  text-transform: uppercase;
  color: #7ab8f5;
  margin-bottom: 1rem;
}
.footer-col ul li { margin-bottom: .5rem; }
.footer-col ul a {
  font-size: .88rem;
  color: #93b3d8;
  transition: color var(--transition);
}
.footer-col ul a:hover { color: #fff; }
.footer-col p { font-size: .88rem; color: #93b3d8; line-height: 1.8; }

.footer-bottom {
  text-align: center;
  padding: 1.2rem 0;
  font-size: .82rem;
  color: #4a6488;
}

/* =========================================================
   RESPONSIVE — Tabelas
   ========================================================= */
.table-responsive { overflow-x: auto; border-radius: 0 0 var(--radius) var(--radius); }

@media (max-width: 640px) {
  .hero { padding: 3.5rem 0 3rem; }
  .section-title { font-size: 1.45rem; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }

  /* Portal Transparência — oculta coluna Categoria (redundante no mobile) */
  .doc-table th:nth-child(3),
  .doc-table td:nth-child(3) { display: none; }
  .doc-table th, .doc-table td {
    padding: .5rem .6rem;
    font-size: .82rem;
    word-break: break-word;
  }
  .doc-table { min-width: unset; }
  .table-responsive { overflow-x: hidden; }

  /* Agenda — layout card no mobile */
  .agenda-table thead { display: none; }
  .agenda-table, .agenda-table tbody, .agenda-table tr, .agenda-table td { display: block; width: 100%; }
  .agenda-table tr {
    background: var(--color-card-bg);
    border: 1px solid var(--color-card-bdr);
    border-radius: var(--radius);
    margin-bottom: .8rem;
    padding: .7rem .9rem;
  }
  .agenda-table td {
    border-bottom: none;
    padding: .2rem 0;
    font-size: .88rem;
    display: flex;
    gap: .5rem;
    align-items: baseline;
  }
  .agenda-table td::before {
    content: attr(data-label);
    font-weight: 700;
    font-size: .75rem;
    text-transform: uppercase;
    color: var(--color-accent);
    min-width: 72px;
    flex-shrink: 0;
  }
}

/* =========================================================
   LIGHTBOX
   ========================================================= */
.lightbox-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0,0,0,.88);
  align-items: center;
  justify-content: center;
  cursor: zoom-out;
}
.lightbox-overlay.active { display: flex; }
.lightbox-overlay img {
  max-width: 92vw;
  max-height: 88vh;
  object-fit: contain;
  border-radius: 6px;
  box-shadow: 0 8px 40px rgba(0,0,0,.7);
  cursor: default;
}
.lightbox-close {
  position: absolute;
  top: 1.1rem;
  right: 1.3rem;
  background: rgba(255,255,255,.15);
  border: none;
  color: #fff;
  font-size: 1.8rem;
  line-height: 1;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s;
}
.lightbox-close:hover { background: rgba(255,255,255,.3); }

/* Cursor de zoom nas imagens do carousel de atividades */
.ativ-carousel img { cursor: zoom-in; }
.ativ-carousel video { cursor: pointer; }

/* WhatsApp button */
.whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  margin-top: 1.2rem;
  background: #25d366;
  color: #fff;
  font-weight: 700;
  font-size: .95rem;
  padding: .75rem 1.4rem;
  border-radius: 50px;
  text-decoration: none;
  transition: background .2s, transform .15s;
  box-shadow: 0 4px 14px rgba(37,211,102,.35);
}
.whatsapp-btn:hover {
  background: #1da851;
  transform: translateY(-2px);
  color: #fff;
}
