/* =========================================================
   QUEIROZ RODRIGUES ADVOCACIA — STYLESHEET
   ========================================================= */

/* ---------- 1. RESET & VARIABLES ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

:root {
  /* Colors */
  --navy-950: #07111F;
  --navy-900: #0B1626;
  --navy-800: #111827;
  --gold: #C9A45C;
  --gold-light: #E5C77B;
  --off-white: #F8F6F0;
  --wine: #8B1E2D;
  --white: #ffffff;
  --text-muted: #9CA6B5;
  --text-muted-dark: #5B6472;

  /* Type */
  --font-display: 'Playfair Display', 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Inter', 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Layout */
  --container-w: 1240px;
  --radius-sm: 4px;
  --radius-md: 10px;

  /* Motion */
  --ease: cubic-bezier(.22,.61,.36,1);
}

html, body { margin: 0; padding: 0; overflow-x: hidden; }
body {
  font-family: var(--font-body);
  color: var(--navy-900);
  background: var(--off-white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; margin: 0; padding: 0; }
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 600; margin: 0; color: var(--navy-950); }
p { margin: 0; }
button { font-family: inherit; cursor: pointer; }
input, select, textarea { font-family: inherit; }

.container {
  width: 100%;
  max-width: var(--container-w);
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 48px);
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--gold);
  color: var(--navy-950);
  padding: 12px 20px;
  z-index: 999;
  font-weight: 600;
}
.skip-link:focus { left: 12px; top: 12px; }

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

/* ---------- 2. BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 30px;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), background .35s var(--ease), color .35s var(--ease), border-color .35s var(--ease);
  white-space: nowrap;
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--navy-950);
  box-shadow: 0 6px 20px rgba(201,164,92,0.25);
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(201,164,92,0.38); }

.btn-ghost {
  background: transparent;
  color: var(--off-white);
  border-color: rgba(248,246,240,0.35);
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold-light); }

.btn-outline-gold {
  background: transparent;
  color: var(--navy-950);
  border-color: var(--gold);
}
.btn-outline-gold:hover { background: var(--gold); color: var(--navy-950); }

.btn-outline-dark {
  background: transparent;
  color: var(--navy-950);
  border-color: var(--navy-950);
}
.btn-outline-dark:hover { background: var(--navy-950); color: var(--off-white); }

.btn-lg { padding: 16px 34px; font-size: 1rem; }
.btn-xl { padding: 20px 44px; font-size: 1.05rem; }
.btn-block { width: 100%; }
.btn-header { margin-left: 12px; }

/* ---------- 3. HEADER ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 500;
  background: transparent;
  transition: background .4s var(--ease), box-shadow .4s var(--ease), backdrop-filter .4s var(--ease);
}
.site-header.is-scrolled {
  background: rgba(7,17,31,0.86);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 6px 24px rgba(0,0,0,0.25);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 18px;
  padding-bottom: 18px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.brand-mark { width: 38px; height: 38px; border-radius: 8px; object-fit: cover; }
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-name { font-family: var(--font-display); font-size: 1.05rem; color: var(--off-white); letter-spacing: 0.01em; }
.brand-sub { font-size: 0.62rem; letter-spacing: 0.22em; color: var(--gold); font-weight: 600; }

.main-nav ul { display: flex; gap: 34px; }
.main-nav a {
  color: var(--off-white);
  font-size: 0.9rem;
  font-weight: 500;
  position: relative;
  padding: 4px 0;
}
.main-nav a::after {
  content: '';
  position: absolute;
  left: 0; bottom: -2px;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width .3s var(--ease);
}
.main-nav a:hover::after { width: 100%; }

.hamburger {
  display: none;
  background: none;
  border: none;
  width: 34px;
  height: 26px;
  position: relative;
  padding: 0;
}
.hamburger span {
  position: absolute;
  left: 0; right: 0;
  height: 2px;
  background: var(--off-white);
  transition: transform .35s var(--ease), opacity .3s var(--ease), top .35s var(--ease);
}
.hamburger span:nth-child(1) { top: 2px; }
.hamburger span:nth-child(2) { top: 12px; }
.hamburger span:nth-child(3) { top: 22px; }
.hamburger[aria-expanded="true"] span:nth-child(1) { top: 12px; transform: rotate(45deg); }
.hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.hamburger[aria-expanded="true"] span:nth-child(3) { top: 12px; transform: rotate(-45deg); }

.mobile-menu {
  position: fixed;
  top: 0; right: 0;
  width: min(320px, 82vw);
  height: 100vh;
  background: var(--navy-950);
  border-left: 1px solid rgba(201,164,92,0.2);
  transform: translateX(100%);
  transition: transform .45s var(--ease);
  z-index: 499;
  padding: 100px 32px 40px;
  overflow-y: auto;
}
.mobile-menu.is-open { transform: translateX(0); }
.mobile-menu ul { display: flex; flex-direction: column; gap: 26px; margin-bottom: 40px; }
.mobile-menu a { color: var(--off-white); font-size: 1.1rem; font-family: var(--font-display); }

/* ---------- 4. HERO ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: radial-gradient(ellipse at 75% 20%, #14233a 0%, var(--navy-950) 55%);
  padding-top: 120px;
  padding-bottom: 60px;
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; pointer-events: none; }
.hero-line {
  position: absolute;
  background: linear-gradient(180deg, transparent, rgba(201,164,92,0.35), transparent);
  width: 1px;
}
.line-1 { top: 0; bottom: 0; right: 34%; }
.line-2 { top: 0; bottom: 0; right: 12%; }
.hero-glow {
  position: absolute;
  top: 10%;
  right: -10%;
  width: 620px;
  height: 620px;
  background: radial-gradient(circle, rgba(201,164,92,0.18) 0%, transparent 70%);
  filter: blur(10px);
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}

.eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  letter-spacing: 0.24em;
  font-weight: 600;
  color: var(--gold-light);
  border: 1px solid rgba(201,164,92,0.4);
  padding: 8px 16px;
  border-radius: 2px;
  margin-bottom: 26px;
}
.eyebrow-dark { color: var(--wine); border-color: rgba(139,30,45,0.3); }
.eyebrow-gold-on-dark { color: var(--gold-light); border-color: rgba(201,164,92,0.4); }

.hero-copy h1 {
  color: var(--off-white);
  font-size: clamp(2.2rem, 4.6vw, 3.6rem);
  line-height: 1.14;
  margin-bottom: 22px;
  max-width: 640px;
}
.hero-lead {
  color: var(--text-muted);
  font-size: 1.08rem;
  max-width: 520px;
  margin-bottom: 36px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 18px; margin-bottom: 40px; }

.trust-indicators { display: flex; flex-wrap: wrap; gap: 28px; }
.trust-indicators li { display: flex; align-items: center; gap: 9px; color: var(--text-muted); font-size: 0.85rem; }
.trust-indicators .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); flex-shrink: 0; }

.hero-media { display: flex; justify-content: center; }
.portrait-frame {
  position: relative;
  max-width: 380px;
  width: 100%;
  aspect-ratio: 2 / 3;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0,0,0,0.45);
}
.portrait-img { width: 100%; height: 100%; object-fit: cover; }
.frame-border {
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(201,164,92,0.5);
  border-radius: 6px;
  pointer-events: none;
}
.portrait-credential {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 20px;
  display: flex;
  flex-direction: column;
  background: rgba(7,17,31,0.72);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid rgba(201,164,92,0.35);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
}
.portrait-credential strong {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--off-white);
  letter-spacing: 0.02em;
}
.portrait-credential span {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  color: var(--gold-light);
  margin-top: 4px;
  font-weight: 600;
}
.about-credential {
  font-size: 0.95rem;
  color: var(--navy-900);
  margin-bottom: 14px;
  border-left: 3px solid var(--gold);
  padding-left: 14px;
  font-weight: 500;
}
.portrait-frame--small { max-width: 440px; margin: 0 auto; aspect-ratio: 1 / 1; }

/* ---------- 5. TRUST BAR ---------- */
.trust-bar {
  background: var(--navy-900);
  padding: 22px 0;
  border-top: 1px solid rgba(201,164,92,0.15);
  border-bottom: 1px solid rgba(201,164,92,0.15);
}
.trust-bar-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  color: var(--gold-light);
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  font-weight: 600;
}
.trust-bar-inner .sep { color: rgba(201,164,92,0.4); }

/* ---------- 6. SECTION GENERIC ---------- */
.section { padding: clamp(70px, 10vw, 130px) 0; }
.section-head { max-width: 680px; margin: 0 auto 56px; text-align: center; }
.section-head h2 { font-size: clamp(1.8rem, 3.4vw, 2.5rem); margin-bottom: 18px; line-height: 1.25; }
.section-head p { color: var(--text-muted-dark); font-size: 1.02rem; }
.section-head h2.on-dark { color: var(--off-white); }
.section-cta { text-align: center; margin-top: 56px; }

/* ---------- 7. AREAS (CARDS) ---------- */
.areas { background: var(--off-white); }
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 26px;
}
.area-card {
  background: var(--white);
  border: 1px solid rgba(17,24,39,0.08);
  border-radius: var(--radius-md);
  padding: 34px 28px;
  position: relative;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s var(--ease);
}
.area-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold);
  box-shadow: 0 20px 40px rgba(17,24,39,0.08);
}
.area-number {
  display: block;
  font-family: var(--font-display);
  font-size: 0.85rem;
  color: var(--text-muted-dark);
  letter-spacing: 0.1em;
  margin-bottom: 18px;
}
.area-icon {
  display: inline-flex;
  width: 48px;
  height: 48px;
  color: var(--gold);
  margin-bottom: 18px;
  transition: transform .4s var(--ease), color .4s var(--ease);
}
.area-icon svg { width: 100%; height: 100%; }
.area-card:hover .area-icon { transform: scale(1.08); color: var(--wine); }
.area-card h3 { font-size: 1.18rem; margin-bottom: 12px; }
.area-card p { color: var(--text-muted-dark); font-size: 0.94rem; margin-bottom: 20px; }
.card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--navy-900);
  border-bottom: 1px solid transparent;
  transition: color .3s var(--ease), border-color .3s var(--ease), gap .3s var(--ease);
}
.card-link:hover { color: var(--wine); border-color: var(--wine); gap: 10px; }

/* ---------- 8. DIFERENCIAIS ---------- */
.differentiators { background: var(--navy-950); }
.differentiators .section-head p { color: var(--text-muted); }
.differentiators .eyebrow-dark { color: var(--gold-light); border-color: rgba(201,164,92,0.4); }
.diff-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
}
.diff-item { border-top: 1px solid rgba(201,164,92,0.2); padding-top: 24px; }
.diff-number {
  display: block;
  font-family: var(--font-display);
  font-size: 2.6rem;
  color: var(--gold);
  margin-bottom: 14px;
  line-height: 1;
}
.diff-item h3 { color: var(--off-white); font-size: 1.12rem; margin-bottom: 10px; }
.diff-item p { color: var(--text-muted); font-size: 0.92rem; }

/* ---------- 9. SOBRE ---------- */
.about { background: var(--off-white); }
.about-inner {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 60px;
  align-items: center;
}
.about-copy p { color: var(--text-muted-dark); margin-bottom: 18px; font-size: 1rem; }
.about-copy h2 { margin-bottom: 22px; }
.about-copy { display: flex; flex-direction: column; align-items: flex-start; }
.about-copy .btn { margin-top: 12px; }

/* ---------- 10. PROCESS ---------- */
.process { background: var(--navy-900); }
.process .section-head p { color: var(--text-muted); }
.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
  counter-reset: step;
  margin-bottom: 20px;
}
.process-steps li { position: relative; padding-left: 4px; }
.step-number {
  display: block;
  font-family: var(--font-display);
  font-size: 2.2rem;
  color: var(--gold);
  margin-bottom: 16px;
}
.process-steps h3 { color: var(--off-white); font-size: 1.1rem; margin-bottom: 10px; }
.process-steps p { color: var(--text-muted); font-size: 0.94rem; }

/* ---------- 11. CTA FORTE ---------- */
.cta-strong {
  background: linear-gradient(135deg, var(--navy-950), #0d1a2e);
  text-align: center;
  position: relative;
}
.cta-strong-inner { max-width: 720px; margin: 0 auto; }
.cta-strong h2 { color: var(--off-white); font-size: clamp(1.8rem, 3.6vw, 2.6rem); margin-bottom: 20px; }
.cta-strong p { color: var(--text-muted); margin-bottom: 34px; font-size: 1.02rem; }
.cta-note { display: block; margin-top: 18px; color: var(--text-muted-dark); font-size: 0.82rem; color: #6b7688; }

/* ---------- 12. FAQ ---------- */
.faq { background: var(--off-white); }
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid rgba(17,24,39,0.12); }
.faq-item h3 { margin: 0; }
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  background: none;
  border: none;
  text-align: left;
  padding: 24px 4px;
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--navy-950);
}
.faq-icon {
  position: relative;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}
.faq-icon::before, .faq-icon::after {
  content: '';
  position: absolute;
  background: var(--wine);
  transition: transform .35s var(--ease);
}
.faq-icon::before { width: 100%; height: 1.5px; top: 50%; left: 0; transform: translateY(-50%); }
.faq-icon::after { width: 1.5px; height: 100%; left: 50%; top: 0; transform: translateX(-50%); }
.faq-question[aria-expanded="true"] .faq-icon::after { transform: translateX(-50%) rotate(90deg); opacity: 0; }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s var(--ease);
}
.faq-answer p { padding: 0 4px 24px; color: var(--text-muted-dark); font-size: 0.95rem; max-width: 640px; }

/* ---------- 13. CONTATO ---------- */
.contact { background: var(--navy-950); }
.contact .section-head h2 { color: var(--off-white); }
.contact .section-head p { color: var(--text-muted); }
.contact .eyebrow-dark { color: var(--gold-light); border-color: rgba(201,164,92,0.4); }

.contact-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr;
  gap: 44px;
  align-items: flex-start;
}
.contact-form {
  background: var(--navy-900);
  border: 1px solid rgba(201,164,92,0.18);
  border-radius: var(--radius-md);
  padding: clamp(24px, 4vw, 42px);
}
.form-row { margin-bottom: 20px; display: flex; flex-direction: column; gap: 8px; }
.form-row label { color: var(--text-muted); font-size: 0.85rem; font-weight: 500; }
.form-row input, .form-row select, .form-row textarea {
  background: var(--navy-950);
  border: 1px solid rgba(201,164,92,0.25);
  border-radius: var(--radius-sm);
  padding: 13px 16px;
  color: var(--off-white);
  font-size: 0.95rem;
  transition: border-color .3s var(--ease);
}
.form-row input:focus, .form-row select:focus, .form-row textarea:focus {
  border-color: var(--gold);
}
.form-row textarea { resize: vertical; min-height: 100px; }
.field-error { color: #e88a95; font-size: 0.78rem; min-height: 16px; }
.form-note { margin-top: 16px; color: var(--gold-light); font-size: 0.88rem; min-height: 20px; }

.lgpd-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
}
.lgpd-checkbox input[type="checkbox"] {
  flex-shrink: 0;
  margin-top: 2px;
  width: 18px;
  height: 18px;
  accent-color: var(--gold);
  padding: 0;
  border: none;
  background: none;
  border-radius: 0;
}
.lgpd-checkbox span {
  color: var(--text-muted);
  font-size: 0.82rem;
  line-height: 1.5;
  font-weight: 400;
}

.contact-side {
  display: flex;
  flex-direction: column;
  gap: 20px;
  background: var(--navy-900);
  border: 1px solid rgba(201,164,92,0.18);
  border-radius: var(--radius-md);
  padding: clamp(24px, 4vw, 34px);
}
.contact-side-note { color: var(--text-muted); font-size: 0.88rem; }

/* ---------- 14. FOOTER ---------- */
.site-footer { background: var(--navy-950); border-top: 1px solid rgba(201,164,92,0.12); padding: 60px 0 0; }
.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
  padding-bottom: 40px;
}
.footer-logo { display: block; font-family: var(--font-display); color: var(--off-white); font-size: 1.15rem; letter-spacing: 0.03em; }
.footer-logo-sub { display: block; font-size: 0.65rem; letter-spacing: 0.24em; color: var(--gold); margin-top: 4px; font-weight: 600; }
.footer-tagline { color: var(--text-muted); font-size: 0.85rem; margin-top: 14px; }
.footer-nav { display: flex; flex-direction: column; gap: 12px; }
.footer-nav a { color: var(--text-muted); font-size: 0.9rem; transition: color .3s var(--ease); }
.footer-nav a:hover { color: var(--gold-light); }
.footer-social { display: flex; flex-direction: column; gap: 12px; }
.footer-social a { color: var(--text-muted); font-size: 0.9rem; transition: color .3s var(--ease); }
.footer-social a:hover { color: var(--gold-light); }
.footer-legal {
  border-top: 1px solid rgba(201,164,92,0.1);
  padding: 22px 0 26px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-legal p { color: #5c6779; font-size: 0.76rem; max-width: 720px; }
.footer-credit { font-size: 0.82rem !important; letter-spacing: 0.02em; }
.footer-credit a { color: var(--gold); text-decoration: none; font-weight: 600; transition: color .3s var(--ease); }
.footer-credit a:hover { color: var(--gold-light); text-decoration: underline; }

/* ---------- 15. BOTÕES FLUTUANTES ---------- */
.social-float,
.whatsapp-float {
  position: fixed;
  right: 24px;
  z-index: 400;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  color: #fff;
  box-shadow: 0 10px 26px rgba(0,0,0,0.3);
}
.whatsapp-float {
  bottom: 24px;
  background: #1EBE5A;
  animation: pulse-wa 2.6s infinite;
}
.social-float {
  bottom: 92px;
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}
.social-float svg { width: 26px; height: 26px; }
.whatsapp-float svg { width: 26px; height: 26px; }

@keyframes pulse-wa {
  0%, 100% { box-shadow: 0 10px 26px rgba(0,0,0,0.3), 0 0 0 0 rgba(30,190,90,0.5); }
  50% { box-shadow: 0 10px 26px rgba(0,0,0,0.3), 0 0 0 10px rgba(30,190,90,0); }
}

/* ---------- 16. FADE-IN ANIMATION ---------- */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}
.fade-in.is-visible { opacity: 1; transform: translateY(0); }

/* ---------- 17. RESPONSIVE ---------- */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-media { order: -1; }
  .portrait-frame { max-width: 300px; }
  .about-inner { grid-template-columns: 1fr; }
  .about-media { order: -1; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 860px) {
  .main-nav { display: none; }
  .btn-header { display: none; }
  .hamburger { display: block; }
}

@media (max-width: 640px) {
  .hero { padding-top: 100px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { width: 100%; }
  .trust-indicators { flex-direction: column; gap: 12px; }
  .cards-grid { grid-template-columns: 1fr; }
  .diff-grid { grid-template-columns: 1fr; gap: 30px; }
  .process-steps { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; }
  .cta-strong .btn { max-width: 100%; white-space: normal; padding: 18px 24px; }
}

@media (min-width: 641px) and (max-width: 1023px) {
  .cards-grid { grid-template-columns: repeat(2, 1fr); }
}
