/* ============================
   SIMCRED – politica.css / termos.css
   CSS compartilhado para páginas de documentos legais
   ============================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: 'DM Sans', sans-serif; color: #1a2233; background: #fff; overflow-x: hidden; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

:root {
  --blue: #1a6fb4;
  --blue-dark: #0d4e8a;
  --blue-light: #e8f2fb;
  --gold: #e8a020;
  --gold-dark: #c47d00;
  --dark: #0f1b2d;
  --dark2: #1a2a40;
  --gray: #f4f6f9;
  --gray2: #e2e8f0;
  --text: #3a4a60;
  --white: #fff;
  --green: #16a34a;
  --radius: 12px;
  --shadow: 0 4px 24px rgba(26,111,180,0.10);
  --shadow-lg: 0 12px 48px rgba(26,111,180,0.18);
  --transition: all 0.32s cubic-bezier(0.4, 0, 0.2, 1);
}

.container { width: 100%; max-width: 1180px; margin: 0 auto; padding: 0 24px; }

/* ============================================
   NAVBAR
   ============================================ */
.navbar { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; padding: 18px 0; background: transparent; transition: var(--transition); }
.navbar.scrolled { background: var(--dark); padding: 12px 0; box-shadow: 0 4px 24px rgba(0,0,0,0.25); }
.nav-inner { display: flex; align-items: center; gap: 32px; }
.logo-wrap { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.logo-badge { width: 38px; height: 38px; background: var(--gold); color: var(--dark); border-radius: 8px; display: grid; place-items: center; font-family: 'Sora', sans-serif; font-weight: 800; font-size: 1.2rem; }
.logo-text { font-family: 'Sora', sans-serif; font-size: 1.25rem; font-weight: 400; color: #fff; }
.logo-text strong { font-weight: 800; }
.nav-links { display: flex; gap: 28px; margin-left: auto; }
.nav-links a { font-family: 'Sora', sans-serif; font-size: 0.9rem; font-weight: 500; color: rgba(255,255,255,0.85); transition: var(--transition); }
.nav-links a:hover { color: #fff; }
.btn-cta { display: inline-flex; align-items: center; gap: 7px; background: var(--gold); color: var(--dark); font-family: 'Sora', sans-serif; font-weight: 700; font-size: 0.88rem; padding: 10px 20px; border-radius: 8px; transition: var(--transition); }
.btn-cta:hover { background: var(--gold-dark); }
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; margin-left: auto; }
.hamburger span { display: block; width: 24px; height: 2px; background: #fff; border-radius: 2px; transition: var(--transition); }

/* ============================================
   PAGE HERO - CORRIGIDO
   ============================================ */
.page-hero {
  position: relative;
  padding: 140px 0 80px;
  text-align: center;
  color: #fff;
  overflow: hidden;
  background: linear-gradient(135deg, var(--blue-dark), var(--blue)); /* Fundo direto aqui pra não bugar o texto */
}

.page-hero-content { max-width: 800px; margin: 0 auto; position: relative; z-index: 2; }
.breadcrumb { display: flex; align-items: center; justify-content: center; gap: 12px; font-size: 0.9rem; margin-bottom: 24px; color: rgba(255,255,255,0.8); }
.breadcrumb a:hover { color: #fff; }
.breadcrumb .sep { opacity: 0.5; }
.page-hero h1 { font-family: 'Sora', sans-serif; font-size: 2.8rem; font-weight: 800; margin-bottom: 16px; line-height: 1.1; }
.page-hero p { font-size: 1.1rem; opacity: 0.95; margin-bottom: 28px; }
.page-meta { display: flex; justify-content: center; gap: 32px; font-size: 0.85rem; color: rgba(255,255,255,0.7); }

/* ============================================
   MAIN DOC
   ============================================ */
.doc-main { padding: 60px 0; min-height: 60vh; }
.doc-layout { display: grid; grid-template-columns: 280px 1fr; gap: 48px; align-items: start; }

/* ============================================
   SIDEBAR - CORRIGIDO (só sticky nativo)
   ============================================ */
.doc-sidebar { position: sticky; top: 120px; max-height: calc(100vh - 150px); overflow-y: auto; }
.sidebar-inner { padding: 24px; background: var(--gray); border-radius: 16px; }
.sidebar-inner h3 { font-family: 'Sora', sans-serif; font-size: 1rem; font-weight: 700; margin-bottom: 18px; }
.toc { display: flex; flex-direction: column; gap: 0; }
.toc-link { display: block; padding: 10px 14px; font-size: 0.9rem; color: var(--text); border-left: 3px solid transparent; transition: var(--transition); }
.toc-link:hover { background: rgba(26,111,180,0.08); color: var(--blue); }
.toc-link.active { background: rgba(26,111,180,0.12); color: var(--blue); border-left-color: var(--blue); font-weight: 600; }
.sidebar-cta { margin-top: 24px; padding-top: 20px; border-top: 1px solid rgba(0,0,0,0.08); }
.sidebar-cta p { font-size: 0.85rem; color: var(--text); margin-bottom: 12px; font-weight: 600; }
.btn-sidebar { display: flex; align-items: center; justify-content: center; gap: 8px; width: 100%; background: var(--blue); color: #fff; padding: 10px; border-radius: 8px; font-size: 0.85rem; transition: var(--transition); }
.btn-sidebar:hover { background: var(--blue-dark); }

/* ============================================
   DOC CONTENT
   ============================================ */
.doc-content h2 { font-family: 'Sora', sans-serif; font-size: 1.8rem; font-weight: 800; margin: 40px 0 20px; color: var(--dark); display: flex; align-items: center; gap: 14px; }
.sec-num { display: inline-flex; align-items: center; justify-content: center; width: 44px; height: 44px; background: var(--blue-light); color: var(--blue); border-radius: 50%; font-weight: 700; flex-shrink: 0; }
.doc-content h3 { font-family: 'Sora', sans-serif; font-size: 1.2rem; font-weight: 700; margin: 24px 0 12px; }
.doc-content p { line-height: 1.8; margin-bottom: 16px; color: var(--text); }
.doc-section { margin-bottom: 48px; }
.doc-alert { padding: 20px; background: var(--blue-light); border-left: 4px solid var(--blue); margin-bottom: 32px; border-radius: 8px; display: flex; gap: 16px; }
.doc-alert i { font-size: 1.4rem; color: var(--blue); flex-shrink: 0; }
.doc-alert p { margin: 0; }
.doc-alert.warning { background: rgba(200,125,0,0.08); border-left-color: var(--gold); }
.doc-alert.warning i { color: var(--gold); }
.doc-list { list-style: none; margin-bottom: 20px; }
.doc-list li { padding: 10px 0; padding-left: 28px; position: relative; }
.doc-list i { position: absolute; left: 0; color: var(--green); }
.info-box { background: var(--gray); padding: 24px; border-radius: 12px; margin-bottom: 20px; }
.info-row { padding: 8px 0; font-size: 0.95rem; }
.info-row strong { color: var(--dark); }
.doc-table { width: 100%; border-collapse: collapse; margin: 24px 0; border-radius: 12px; overflow: hidden; box-shadow: var(--shadow); }
.doc-table th { background: var(--blue); color: #fff; padding: 16px; text-align: left; font-family: 'Sora', sans-serif; font-weight: 700; }
.doc-table td { padding: 14px 16px; border-bottom: 1px solid #e0e0e0; }
.doc-table tr:last-child td { border-bottom: none; }
.doc-table tr:nth-child(even) { background: var(--gray); }

/* ============================================
   RESTO DA PÁGINA (QUE EU TINHA CORTADO)
   ============================================ */
.badge { display: inline-block; padding: 4px 12px; border-radius: 99px; font-weight: 600; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.05em; }
.badge.blue { background: var(--blue-light); color: var(--blue); }
.badge.green { background: #dcfce7; color: #16a34a; }
.badge.gold { background: rgba(232,160,32,0.15); color: var(--gold); }
.badge.gray { background: #f0f0f0; color: var(--text); }

.purpose-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; margin: 24px 0; }
.purpose-card { padding: 28px; background: var(--gray); border-radius: 12px; text-align: center; transition: var(--transition); }
.purpose-card:hover { box-shadow: var(--shadow); transform: translateY(-4px); }
.purpose-icon { font-size: 2.2rem; color: var(--blue); margin-bottom: 14px; }
.purpose-card h4 { font-family: 'Sora', sans-serif; font-weight: 700; margin-bottom: 10px; color: var(--dark); }
.purpose-card p { font-size: 0.9rem; margin-bottom: 0; }

.cookie-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 24px; margin: 24px 0; }
.cookie-card { padding: 24px; background: #fff; border: 2px solid #e0e0e0; border-radius: 12px; transition: var(--transition); }
.cookie-card:hover { border-color: var(--blue); box-shadow: var(--shadow); }
.cookie-card h4 { display: flex; align-items: center; gap: 10px; font-family: 'Sora', sans-serif; font-size: 1rem; font-weight: 700; margin-bottom: 12px; }
.cookie-card i { color: var(--blue); }
.cookie-card p { margin-bottom: 16px; }
.cookie-tag { display: inline-block; padding: 4px 12px; border-radius: 6px; font-size: 0.7rem; font-weight: 700; text-transform: uppercase; }
.cookie-tag.obrigatorio { background: #dcfce7; color: #16a34a; }
.cookie-tag.opcional { background: rgba(232,160,32,0.15); color: var(--gold); }

.rights-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; margin: 24px 0; }
.right-item { display: flex; gap: 16px; }
.right-icon { font-size: 1.6rem; color: var(--blue); flex-shrink: 0; }
.right-item h4 { font-weight: 700; margin-bottom: 6px; }
.right-item p { margin-bottom: 0; font-size: 0.9rem; }

/* ACEITE SECTION */
.aceite-section { padding: 60px 0; background: linear-gradient(to right, var(--gray), rgba(26,111,180,0.05)); border-radius: 16px; margin-top: 40px; }
.aceite-card { background: #fff; border-radius: 16px; overflow: hidden; box-shadow: var(--shadow-lg); }
.aceite-header { display: flex; align-items: center; gap: 20px; padding: 32px; background: linear-gradient(135deg, var(--blue-dark), var(--blue)); color: #fff; }
.aceite-icon { font-size: 2.2rem; flex-shrink: 0; }
.aceite-header h2 { font-family: 'Sora', sans-serif; margin: 0 0 4px; font-size: 1.4rem; }
.aceite-header p { margin: 0; opacity: 0.95; }
.aceite-body { padding: 40px; }
.aceite-checks { margin-bottom: 32px; }
.check-item { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 16px; cursor: pointer; }
.check-item input { margin-top: 4px; cursor: pointer; }
.check-text { font-size: 0.95rem; line-height: 1.6; color: var(--text); }
.aceite-dados { background: var(--gray); padding: 28px; border-radius: 12px; margin-bottom: 28px; }
.aceite-dados h3 { font-size: 1rem; margin-bottom: 18px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.form-group { display: flex; flex-direction: column; }
.form-group label { font-size: 0.85rem; font-weight: 600; margin-bottom: 6px; color: var(--dark); }
.form-group input { padding: 10px 12px; border: 1px solid #e0e0e0; border-radius: 6px; font-size: 0.95rem; font-family: 'DM Sans', sans-serif; transition: var(--transition); }
.form-group input:focus { outline: none; border-color: var(--blue); box-shadow: 0 0 0 3px var(--blue-light); }
.btn-aceite { width: 100%; padding: 14px; background: var(--blue); color: #fff; border: none; border-radius: 8px; font-family: 'Sora', sans-serif; font-weight: 700; font-size: 1rem; cursor: pointer; transition: var(--transition); display: flex; align-items: center; justify-content: center; gap: 10px; }
.btn-aceite:hover:not(:disabled) { background: var(--blue-dark); transform: translateY(-2px); }
.btn-aceite:disabled { opacity: 0.6; cursor: not-allowed; }
.aceite-success { display: none; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 48px 32px; background: rgba(22,163,74,0.08); border-radius: 12px; }
.success-icon { font-size: 3rem; color: #16a34a; margin-bottom: 16px; }
.aceite-success h3 { font-family: 'Sora', sans-serif; font-size: 1.4rem; color: var(--dark); margin-bottom: 12px; }
.aceite-success p { max-width: 600px; color: var(--text); margin-bottom: 28px; }
.success-actions { display: flex; gap: 16px; flex-wrap: wrap; justify-content: center; }
.btn-outline-blue { padding: 12px 24px; background: transparent; color: var(--blue); border: 2px solid var(--blue); border-radius: 8px; font-family: 'Sora', sans-serif; font-weight: 700; cursor: pointer; transition: var(--transition); }
.btn-outline-blue:hover { background: var(--blue-light); }

/* FOOTER */
.footer { background: #07101f; color: #f8fafc; }
.footer-top { padding: 80px 0 40px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 36px; align-items: start; }
.footer-col { min-width: 0; }
.footer-logo { display: flex; align-items: center; gap: 14px; margin-bottom: 18px; }
.logo-badge.small { width: 30px; height: 30px; font-size: 1rem; }
.footer-desc { font-size: 0.95rem; color: rgba(248,250,252,0.75); line-height: 1.8; margin-bottom: 26px; }
.grupo-badge { display: inline-flex; align-items: center; gap: 8px; background: transparent; border: none; color: rgba(248,250,252,0.75); font-size: 0.82rem; padding: 0; }
.footer-col h4 { font-family: 'Sora', sans-serif; font-size: 0.88rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(248,250,252,0.65); margin-bottom: 18px; }
.footer-col ul { padding: 0; margin: 0; list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { font-size: 0.9rem; color: rgba(248,250,252,0.7); transition: color 0.2s ease; }
.footer-col ul li a:hover { color: #e8a020; }
.footer-contact li { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 12px; }
.footer-contact li i { color: #e8a020; font-size: 0.9rem; margin-top: 3px; flex-shrink: 0; width: 16px; }
.footer-contact li, .footer-contact a { font-size: 0.88rem; color: rgba(248,250,252,0.7); }
.footer-contact a:hover { color: #e8a020; }
.footer-legal { border-top: 1px solid rgba(255,255,255,0.08); padding: 24px 0 16px; }
.footer-legal-inner { display: flex; align-items: center; justify-content: center; gap: 16px; flex-wrap: wrap; margin-bottom: 12px; }
.legal-dados { flex: 1 1 0; min-width: 220px; }
.legal-dados p { font-size: 0.82rem; color: rgba(248,250,252,0.5); line-height: 1.6; margin-bottom: 6px; }
.legal-dados strong { color: rgba(248,250,252,0.8); }
.grupo-line { display: flex; align-items: center; gap: 6px; font-size: 0.82rem; color: #e8a020; }
.legal-links { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.legal-links a { font-size: 0.82rem; color: rgba(248,250,252,0.55); transition: color 0.2s; }
.legal-links a:hover { color: #e8a020; }
.legal-links span { color: rgba(248,250,252,0.25); }
.copyright { border-top: 1px solid rgba(255,255,255,0.05); padding-top: 14px; }
.copyright p { font-size: 0.78rem; color: rgba(248,250,252,0.35); text-align: center; }

/* WHATSAPP FLOAT */
.whatsapp-float { position: fixed; bottom: 28px; right: 28px; z-index: 999; width: 58px; height: 58px; border-radius: 50%; background: #25d366; color: #fff; display: grid; place-items: center; font-size: 1.7rem; box-shadow: 0 6px 24px rgba(37,211,102,0.45); transition: var(--transition); }
.whatsapp-float:hover { transform: scale(1.1); background: #20b85a; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .doc-layout { grid-template-columns: 1fr; }
  .doc-sidebar { position: static; max-height: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .page-hero { padding: 100px 0 60px; }
  .page-hero h1 { font-size: 2rem; }
  .page-meta { flex-direction: column; gap: 12px; }
  .doc-content h2 { font-size: 1.4rem; }
  .purpose-grid { grid-template-columns: 1fr; }
  .rights-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .nav-links.open { display: flex; position: fixed; top: 0; right: -100%; bottom: 0; width: 260px; background: var(--dark); flex-direction: column; justify-content: center; align-items: center; gap: 32px; transition: right 0.35s ease; z-index: 999; }
  .nav-links.open { right: 0; }
}

@media (max-width: 480px) {
  .page-hero h1 { font-size: 1.6rem; }
  .page-hero-content { padding: 20px; }
  .aceite-body { padding: 20px; }
  .success-actions { flex-direction: column; }
  .btn-aceite, .btn-outline-blue { width: 100%; justify-content: center; }
}
/* ============================================
   AJUSTE DE FORMATAÇÃO DO FOOTER (IGUAL À HOME)
   Adicione este bloco ao final do seu arquivo .css
   ============================================ */

/* Fundo Escuro e Texto Claro */
.footer {
  background-color: #07101f; /* Azul quase preto */
  color: #f8fafc; /* Branco gelo */
  font-family: 'DM Sans', sans-serif;
}

/* Espaçamento do Topo do Footer */
.footer-top {
  padding: 80px 0 40px;
}

/* Grid de 3 Colunas (Alinhado com a Home) */
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr; /* Coluna da logo maior */
  gap: 36px;
  align-items: start;
}

/* Estilo Base das Colunas */
.footer-col {
  min-width: 0;
}

/* Estilo da Coluna da Logo ( footer-brand) */
.footer-brand .footer-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}

/* Badge 'S' Dourado */
.footer-brand .logo-badge.small {
  width: 30px;
  height: 30px;
  background-color: #e8a020; /* Dourado */
  color: #0f1b2d; /* Azul Escuro */
  border-radius: 8px;
  display: grid;
  place-items: center;
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  font-size: 1rem;
}

/* Texto 'Simcred' Branco */
.footer-brand .logo-text {
  font-family: 'Sora', sans-serif;
  font-size: 1.25rem;
  font-weight: 400;
  color: #fff;
}
.footer-brand .logo-text strong {
  font-weight: 800;
}

/* Subtítulo 'Serviços' */
.footer-brand-subtitle {
  margin: 4px 0 0;
  font-size: 0.85rem;
  color: rgba(248, 250, 252, 0.7);
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

/* Descrição da Empresa */
.footer-desc {
  font-size: 0.95rem;
  color: rgba(248, 250, 252, 0.75);
  line-height: 1.8;
  margin-bottom: 26px;
  max-width: 520px;
}

/* Links Sociais (Ícones Arredondados) */
.social-links {
  display: flex;
  gap: 14px;
}
.social-links a {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.05);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.25s ease;
}
.social-links a:hover {
  background-color: rgba(255, 255, 255, 0.12);
  transform: translateY(-1px);
}

/* Títulos das Colunas (Navegar / Contato) */
.footer-col h4 {
  font-family: 'Sora', sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(248, 250, 252, 0.65);
  margin-bottom: 18px;
}

/* Listas de Links */
.footer-col ul {
  padding: 0;
  margin: 0;
  list-style: none;
}
.footer-col ul li {
  margin-bottom: 10px;
}
.footer-col ul li a {
  font-size: 0.9rem;
  color: rgba(248, 250, 252, 0.7);
  text-decoration: none;
  transition: color 0.2s ease;
}
.footer-col ul li a:hover {
  color: #e8a020; /* Hover Dourado */
}

/* Coluna de Contato (footer-contact) */
.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
}

/* Ícones de Contato Dourados */
.footer-contact li i {
  color: #e8a020; /* Dourado */
  font-size: 0.9rem;
  margin-top: 3px;
  flex-shrink: 0;
  width: 16px;
}

.footer-contact li, .footer-contact a {
  font-size: 0.88rem;
  color: rgba(248, 250, 252, 0.7);
}
.footer-contact a:hover {
  color: #e8a020;
}

/* ============================================
   FAIXA LEGAL (RODAPÉ INFERIOR)
   ============================================ */
.footer-legal {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 24px 0 16px;
  text-align: center;
}

.footer-legal-inner,
.footer-legal-group-wrap,
.footer-legal-note,
.copyright {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Texto Legal (CNPJ, Endereço) */
.legal-text {
  font-size: 0.82rem;
  color: rgba(248, 250, 252, 0.5);
  line-height: 1.8;
  margin-bottom: 28px;
}

/* Grupo Promotora Simcred (Badge Dourado) */
.footer-legal-group-wrap {
  margin-bottom: 28px;
}
.footer-legal-group {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 32px;
  border: 1px solid rgba(232, 160, 32, 0.55);
  border-radius: 999px;
  background-color: rgba(232, 160, 32, 0.12);
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.95rem;
}
.footer-legal-group strong {
  color: #e8a020;
}

/* Nota Bancária */
.footer-legal-note {
  font-size: 0.88rem;
  color: rgba(248, 250, 252, 0.72);
  line-height: 1.8;
  margin-bottom: 14px;
}

/* Copyright (Última Linha) */
.copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 18px;
}
.copyright p {
  font-size: 0.78rem;
  color: rgba(248, 250, 252, 0.35);
  margin: 0;
}
.copyright p a {
  color: rgba(248, 250, 252, 0.75);
  text-decoration: none;
  transition: color 0.2s ease;
}
.copyright p a:hover {
  color: #e8a020;
}

/* ============================================
   RESPONSIVO (Mobile)
   ============================================ */
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr; /* 2 colunas no tablet */
  }
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr; /* 1 coluna no celular */
    text-align: center;
  }
  .footer-brand .footer-logo,
  .social-links,
  .footer-contact li {
    justify-content: center;
    text-align: center;
  }
  .footer-desc {
    margin-left: auto;
    margin-right: auto;
  }
  .footer-legal-group {
    padding: 12px 20px;
    font-size: 0.85rem;
    border-radius: 12px;
  }
}