/* ============================================================
   Gomes Corretora de Seguros — Shared Stylesheet
   Paleta: #FF3131 (vermelho), #1a3a5c (navy), #00b4d8 (ciano)
   Tipografia: Playfair Display (títulos) + Inter (corpo)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700;900&family=Inter:wght@300;400;500;600;700&display=swap');

/* ── Reset e Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --primary:       #FF3131;
  --primary-dark:  #cc0000;
  --primary-light: #ff6b6b;
  --navy:          #1a3a5c;
  --navy-dark:     #0f2540;
  --navy-light:    #2a5580;
  --cyan:          #00b4d8;
  --cyan-light:    #90e0ef;
  --white:         #ffffff;
  --bg-light:      #f8f9fb;
  --bg-card:       #ffffff;
  --text-dark:     #1a1a2e;
  --text-body:     #374151;
  --text-muted:    #6b7280;
  --border:        #e5e7eb;
  --shadow-sm:     0 1px 3px rgba(0,0,0,.08);
  --shadow-md:     0 4px 16px rgba(0,0,0,.10);
  --shadow-lg:     0 8px 32px rgba(0,0,0,.14);
  --radius-sm:     6px;
  --radius-md:     12px;
  --radius-lg:     20px;
  --transition:    0.3s ease;
  --font-heading:  'Playfair Display', Georgia, serif;
  --font-body:     'Inter', system-ui, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--text-body);
  background: var(--white);
  line-height: 1.7;
  font-size: 16px;
  overflow-x: hidden;
}

/* ── Tipografia ── */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  color: var(--navy);
  line-height: 1.25;
  font-weight: 700;
}
h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.6rem, 4vw, 2.4rem); margin-bottom: 1rem; }
h3 { font-size: clamp(1.15rem, 2.5vw, 1.5rem); margin-bottom: .6rem; }
h4 { font-size: 1.1rem; }

p { margin-bottom: 1rem; color: var(--text-body); }
a { color: var(--primary); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--primary-dark); }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ── Utilitários ── */
.section { padding: 80px 0; }
.section--alt { background: var(--bg-light); }
.section-header { text-align: center; margin-bottom: 3rem; }
.section-header p { max-width: 640px; margin: 0 auto; color: var(--text-muted); font-size: 1.05rem; }
.text-center { text-align: center; }
.text-primary { color: var(--primary); }
.text-navy { color: var(--navy); }
.badge {
  display: inline-block;
  background: rgba(255,49,49,.1);
  color: var(--primary);
  border: 1px solid rgba(255,49,49,.25);
  padding: .3rem .9rem;
  border-radius: 50px;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .05em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

/* ── Botões ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .85rem 2rem;
  border-radius: 50px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: .95rem;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
  text-decoration: none;
  white-space: nowrap;
}
.btn-primary {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}
.btn-primary:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255,49,49,.35);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--navy);
}
.btn-navy {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.btn-navy:hover {
  background: var(--navy-dark);
  border-color: var(--navy-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(26,58,92,.35);
}
.btn-lg { padding: 1rem 2.5rem; font-size: 1.05rem; }

/* ── Header / Navbar ── */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 12px rgba(0,0,0,.08);
  transition: var(--transition);
}
.header.scrolled { box-shadow: 0 4px 20px rgba(0,0,0,.12); }

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}
.logo {
  display: flex;
  align-items: center;
  gap: .75rem;
  text-decoration: none;
}
.logo-icon {
  width: 44px; height: 44px;
  background: var(--primary);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.logo-icon svg { fill: white; width: 26px; height: 26px; }
.logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.logo-name { font-family: var(--font-heading); font-weight: 700; font-size: 1.15rem; color: var(--navy); }
.logo-sub { font-size: .72rem; color: var(--text-muted); font-weight: 500; letter-spacing: .03em; text-transform: uppercase; }

.nav-menu { display: flex; align-items: center; gap: 0; list-style: none; }
.nav-menu a {
  padding: .5rem .9rem;
  color: var(--text-dark);
  font-size: .9rem;
  font-weight: 500;
  text-decoration: none;
  transition: var(--transition);
  border-radius: var(--radius-sm);
}
.nav-menu a:hover, .nav-menu a.active { color: var(--primary); }
.nav-cta { margin-left: .75rem; }
.nav-cta .btn { padding: .55rem 1.3rem; font-size: .88rem; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: .5rem;
  background: none;
  border: none;
}
.nav-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: var(--transition);
}

/* ── Hero ── */
.hero {
  position: relative;
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 50%, #1e4976 100%);
  color: var(--white);
  padding: 160px 0 100px;
  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='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-accent {
  position: absolute;
  top: -80px; right: -80px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(255,49,49,.18) 0%, transparent 70%);
  border-radius: 50%;
}
.hero-accent-2 {
  position: absolute;
  bottom: -100px; left: -60px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(0,180,216,.12) 0%, transparent 70%);
  border-radius: 50%;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.2);
  padding: .4rem 1rem;
  border-radius: 50px;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--cyan-light);
  margin-bottom: 1.5rem;
}
.hero h1 {
  color: var(--white);
  margin-bottom: 1.25rem;
  font-weight: 900;
}
.hero h1 span { color: var(--primary); }
.hero p { font-size: 1.15rem; color: rgba(255,255,255,.85); margin-bottom: 2rem; max-width: 580px; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,.15);
  flex-wrap: wrap;
}
.hero-stat { display: flex; flex-direction: column; }
.hero-stat-number { font-family: var(--font-heading); font-size: 2rem; font-weight: 700; color: var(--white); }
.hero-stat-label { font-size: .8rem; color: rgba(255,255,255,.65); text-transform: uppercase; letter-spacing: .05em; }

/* ── Cards de Serviço ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}
.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 2rem;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  text-decoration: none;
  display: block;
  color: inherit;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--primary);
  transform: scaleX(0);
  transition: var(--transition);
  transform-origin: left;
}
.service-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: rgba(255,49,49,.2);
}
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 56px; height: 56px;
  background: rgba(255,49,49,.08);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  transition: var(--transition);
  font-size: 1.6rem;
}
.service-card:hover .service-icon { background: rgba(255,49,49,.15); }
.service-card h3 { color: var(--navy); margin-bottom: .5rem; font-size: 1.15rem; }
.service-card p { color: var(--text-muted); font-size: .92rem; margin: 0; }
.service-arrow {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  color: var(--primary);
  font-size: .85rem;
  font-weight: 600;
  margin-top: 1rem;
}

/* ── Feature / Diferenciais ── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}
.feature-item {
  display: flex;
  gap: 1rem;
  padding: 1.5rem;
  background: var(--bg-card);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
}
.feature-icon {
  flex-shrink: 0;
  width: 48px; height: 48px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
}
.feature-body h4 { color: var(--navy); font-size: 1rem; margin-bottom: .35rem; }
.feature-body p { font-size: .88rem; color: var(--text-muted); margin: 0; }

/* ── Check list ── */
.check-list { display: flex; flex-direction: column; gap: .6rem; }
.check-list li {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  color: var(--text-body);
  font-size: .95rem;
}
.check-list li::before {
  content: '✓';
  flex-shrink: 0;
  width: 22px; height: 22px;
  background: rgba(0,180,216,.12);
  color: var(--cyan);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .75rem;
  font-weight: 700;
  margin-top: .1rem;
}

/* ── FAQ Accordion ── */
.faq-list { max-width: 820px; margin: 0 auto; display: flex; flex-direction: column; gap: .75rem; }
.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
}
.faq-item:hover { border-color: rgba(255,49,49,.3); }
.faq-item.active { border-color: rgba(255,49,49,.4); box-shadow: 0 2px 12px rgba(255,49,49,.1); }
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  transition: var(--transition);
}
.faq-question:hover { color: var(--primary); }
.faq-icon {
  flex-shrink: 0;
  width: 28px; height: 28px;
  background: rgba(255,49,49,.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.2rem;
  font-weight: 300;
  transition: var(--transition);
}
.faq-item.active .faq-icon { transform: rotate(45deg); background: var(--primary); color: white; }
.faq-answer {
  display: none;
  padding: 0 1.5rem 1.25rem;
  color: var(--text-body);
  font-size: .95rem;
  line-height: 1.7;
}
.faq-answer.open { display: block; }

/* ── Contact / Mapa ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}
.contact-info { display: flex; flex-direction: column; gap: 1.5rem; }
.contact-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.contact-icon {
  flex-shrink: 0;
  width: 44px; height: 44px;
  background: rgba(255,49,49,.1);
  color: var(--primary);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}
.contact-item h4 { font-family: var(--font-body); font-weight: 600; font-size: .9rem; color: var(--navy); margin-bottom: .2rem; }
.contact-item p { font-size: .9rem; color: var(--text-muted); margin: 0; }
.contact-item a { color: var(--text-body); }
.contact-item a:hover { color: var(--primary); }
.map-wrapper {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}
.map-wrapper iframe { display: block; width: 100%; height: 380px; border: 0; }

/* ── CTA Banner ── */
.cta-banner {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  color: white;
  padding: 70px 0;
  text-align: center;
}
.cta-banner h2 { color: white; margin-bottom: .75rem; }
.cta-banner p { color: rgba(255,255,255,.85); margin-bottom: 2rem; font-size: 1.05rem; }

/* ── Testimonials ── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}
.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  position: relative;
}
.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 1rem; right: 1.5rem;
  font-family: var(--font-heading);
  font-size: 4rem;
  color: var(--primary);
  opacity: .15;
  line-height: 1;
}
.stars { color: #f59e0b; font-size: 1rem; letter-spacing: .1em; margin-bottom: .75rem; }
.testimonial-text { font-size: .95rem; color: var(--text-body); margin-bottom: 1rem; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: .75rem; }
.author-avatar {
  width: 40px; height: 40px;
  background: linear-gradient(135deg, var(--navy), var(--cyan));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: .9rem;
}
.author-name { font-weight: 600; font-size: .9rem; color: var(--navy); }
.author-city { font-size: .8rem; color: var(--text-muted); }

/* ── Page Hero (inner pages) ── */
.page-hero {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 60%, #1e4976 100%);
  color: white;
  padding: 130px 0 70px;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0; right: 0;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(255,49,49,.15) 0%, transparent 70%);
}
.page-hero .container { position: relative; z-index: 2; }
.page-hero h1 { color: white; margin-bottom: 1rem; }
.page-hero p { font-size: 1.1rem; color: rgba(255,255,255,.85); max-width: 600px; }
.breadcrumb {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .82rem;
  color: rgba(255,255,255,.6);
  margin-bottom: 1rem;
}
.breadcrumb a { color: rgba(255,255,255,.7); }
.breadcrumb a:hover { color: white; }
.breadcrumb span { color: rgba(255,255,255,.4); }

/* ── Content Section ── */
.content-body h2 { margin: 2rem 0 1rem; }
.content-body h3 { margin: 1.5rem 0 .75rem; color: var(--navy); }
.content-body p { margin-bottom: 1rem; }
.content-body ul { margin-bottom: 1rem; }
.content-body ul li { position: relative; padding-left: 1.4rem; margin-bottom: .4rem; color: var(--text-body); }
.content-body ul li::before { content: '•'; position: absolute; left: 0; color: var(--primary); font-weight: 700; }

/* ── Info Box ── */
.info-box {
  background: rgba(0,180,216,.07);
  border-left: 4px solid var(--cyan);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 1.25rem 1.5rem;
  margin: 1.5rem 0;
}
.info-box p { margin: 0; font-size: .95rem; color: var(--text-dark); }

.warning-box {
  background: rgba(255,49,49,.05);
  border-left: 4px solid var(--primary);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 1.25rem 1.5rem;
  margin: 1.5rem 0;
}
.warning-box p { margin: 0; font-size: .95rem; color: var(--text-dark); }

/* ── Stats Strip ── */
.stats-strip {
  background: var(--navy);
  padding: 50px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}
.stat-item {}
.stat-number { font-family: var(--font-heading); font-size: 2.4rem; font-weight: 700; color: var(--primary); }
.stat-label { font-size: .85rem; color: rgba(255,255,255,.65); text-transform: uppercase; letter-spacing: .05em; margin-top: .25rem; }

/* ── WhatsApp Floating Button ── */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: .6rem;
  background: #25d366;
  color: white;
  padding: .85rem 1.4rem .85rem 1rem;
  border-radius: 50px;
  box-shadow: 0 4px 20px rgba(37,211,102,.4);
  text-decoration: none;
  font-weight: 600;
  font-size: .9rem;
  transition: var(--transition);
  animation: pulse-wa 3s infinite;
}
.whatsapp-float:hover {
  background: #1ebe5a;
  color: white;
  transform: scale(1.05);
  box-shadow: 0 6px 28px rgba(37,211,102,.5);
}
.whatsapp-float svg { width: 24px; height: 24px; fill: white; flex-shrink: 0; }
@keyframes pulse-wa {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,.4); }
  50% { box-shadow: 0 4px 30px rgba(37,211,102,.65); }
}

/* ── Footer ── */
.footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,.8);
  padding: 60px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  padding-bottom: 3rem;
}
.footer-brand .logo-name { color: white; }
.footer-brand .logo-sub { color: rgba(255,255,255,.5); }
.footer-brand p { color: rgba(255,255,255,.6); font-size: .9rem; margin-top: 1rem; margin-bottom: 1.25rem; }
.footer-social { display: flex; gap: .75rem; }
.footer-social a {
  width: 36px; height: 36px;
  background: rgba(255,255,255,.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.7);
  font-size: .9rem;
  transition: var(--transition);
  text-decoration: none;
}
.footer-social a:hover { background: var(--primary); color: white; }
.footer-col h5 {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: .85rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: rgba(255,255,255,.5);
  margin-bottom: 1rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: .5rem; }
.footer-col ul li a {
  color: rgba(255,255,255,.7);
  font-size: .9rem;
  text-decoration: none;
  transition: var(--transition);
}
.footer-col ul li a:hover { color: var(--primary); }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: .6rem;
  margin-bottom: .75rem;
  color: rgba(255,255,255,.7);
  font-size: .88rem;
}
.footer-contact-item span:first-child { color: var(--primary); font-size: 1rem; flex-shrink: 0; margin-top: .1rem; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 1.25rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer-bottom p { font-size: .82rem; color: rgba(255,255,255,.4); margin: 0; }
.footer-bottom a { color: rgba(255,255,255,.5); font-size: .82rem; }
.footer-bottom a:hover { color: var(--primary); }

/* ── Responsive ── */
@media (max-width: 992px) {
  .contact-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

@media (max-width: 768px) {
  .section { padding: 55px 0; }
  .nav-menu {
    display: none;
    position: fixed;
    top: 72px; left: 0; right: 0; bottom: 0;
    background: white;
    flex-direction: column;
    padding: 2rem 1.5rem;
    gap: .5rem;
    overflow-y: auto;
    z-index: 999;
    align-items: flex-start;
  }
  .nav-menu.open { display: flex; }
  .nav-menu a { font-size: 1.05rem; padding: .75rem 1rem; width: 100%; border-radius: var(--radius-sm); }
  .nav-cta { width: 100%; margin-left: 0; margin-top: .5rem; }
  .nav-cta .btn { width: 100%; justify-content: center; }
  .nav-toggle { display: flex; }
  .hero { padding: 120px 0 70px; }
  .hero-stats { gap: 1.5rem; }
  .services-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .whatsapp-float .wa-text { display: none; }
  .whatsapp-float { padding: 1rem; border-radius: 50%; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
}
