/* ====================================================================
   COMPONENTES E SEÇÕES - TEMPLATE LANDING PAGE DUAL OFFER
   ==================================================================== */

/* 1. SEÇÃO 1: BARRA DE URGÊNCIA */
.urgency-bar {
  background: linear-gradient(90deg, #E11D48 0%, #BE185D 50%, #E11D48 100%);
  background-size: 200% 100%;
  animation: gradientMove 6s ease infinite;
  color: var(--urgency-bar-text);
  padding: 0.55rem 1rem;
  text-align: center;
  font-size: 0.8125rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 8px rgba(225, 29, 72, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

@keyframes gradientMove {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.urgency-icon {
  animation: flameBounce 1.2s ease infinite alternate;
}

@keyframes flameBounce {
  from { transform: scale(1); }
  to { transform: scale(1.2); }
}

/* 2. SEÇÃO 2: HERO / PRIMEIRA DOBRA */
.hero-section {
  padding: 2rem 0 2.75rem 0;
  background: radial-gradient(circle at 50% 10%, #FFF5F7 0%, var(--bg-main) 70%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.9rem;
  background-color: var(--bg-light-pink);
  border: 1px solid var(--border-pink);
  color: var(--primary-rose);
  border-radius: var(--radius-full);
  font-size: 0.8125rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.hero-title {
  font-size: 1.95rem;
  font-weight: 900;
  line-height: 1.18;
  color: var(--secondary-wine);
  letter-spacing: -0.03em;
  margin-bottom: 0.85rem;
}

.hero-subtitle {
  font-size: 1rem;
  color: var(--text-main);
  max-width: 600px;
  margin: 0 auto 1.5rem auto;
  line-height: 1.5;
  font-weight: 500;
}

/* Mockup Bundle na Hero */
.hero-mockup-container {
  max-width: 500px;
  margin: 0 auto 1.5rem auto;
  position: relative;
}

.mockup-stack {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 0.75rem 0;
}

.mockup-book-card {
  width: 125px;
  height: 175px;
  border-radius: 10px;
  background: #FFFFFF;
  box-shadow: 0 12px 24px rgba(112, 26, 117, 0.16);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 0.75rem 0.65rem;
  position: relative;
  border-left: 5px solid rgba(0, 0, 0, 0.12);
  user-select: none;
}

.mockup-left {
  transform: rotate(-9deg) translateX(25px) scale(0.9);
  z-index: 1;
  background: linear-gradient(145deg, #FFF0F5, #FFFFFF);
  border-top: 3px solid #880E4F;
}

.mockup-center {
  transform: scale(1.04);
  z-index: 3;
  background: linear-gradient(145deg, #FFFFFF, #FFF5F8);
  border-top: 4px solid var(--primary-rose);
  box-shadow: 0 18px 32px rgba(216, 27, 96, 0.22);
}

.mockup-right {
  transform: rotate(9deg) translateX(-25px) scale(0.9);
  z-index: 2;
  background: linear-gradient(145deg, #FFF8E1, #FFFFFF);
  border-top: 3px solid #D97706;
}

.mockup-cover-badge {
  align-self: flex-start;
  font-size: 0.55rem;
  font-weight: 800;
  text-transform: uppercase;
  background: var(--primary-rose);
  color: #FFF;
  padding: 2px 5px;
  border-radius: 3px;
}

.mockup-cover-icon {
  font-size: 1.8rem;
  text-align: center;
  margin: 0.2rem 0;
}

.mockup-cover-title {
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--secondary-wine);
  line-height: 1.15;
  text-align: center;
}

.mockup-cover-tagline {
  font-size: 0.6rem;
  color: var(--text-muted);
  text-align: center;
  font-weight: 600;
}

.mockup-cover-price {
  font-size: 0.75rem;
  font-weight: 900;
  color: #FFFFFF;
  text-align: center;
  background: var(--cta-green);
  border-radius: 4px;
  padding: 2px 0;
}

.hero-floating-badge {
  position: absolute;
  bottom: -6px;
  right: 5%;
  background: #FFFFFF;
  border: 2px solid #FDE68A;
  border-radius: var(--radius-full);
  padding: 0.35rem 0.85rem;
  font-size: 0.75rem;
  font-weight: 800;
  color: #92400E;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  gap: 0.35rem;
  z-index: 4;
}

/* Bullets Hero */
.hero-bullets-compact {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.5rem;
  max-width: 440px;
  margin: 0 auto 1.5rem auto;
  text-align: left;
}

.bullet-item-sm {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-main);
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(4px);
  padding: 0.55rem 0.85rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(216, 27, 96, 0.1);
}

.bullet-check-sm {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--cta-green-light);
  color: var(--cta-green);
  font-size: 0.75rem;
  font-weight: 900;
  flex-shrink: 0;
}

.hero-dual-cta-box {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  max-width: 440px;
  margin: 0 auto;
}

.hero-price-hint {
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--text-muted);
}

/* 3. VITRINE ENXUTA DE RECEITAS (8 DESTAQUES + RESUMO) */
.featured-recipes-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.85rem;
  margin-bottom: 1.5rem;
}

.recipe-card-compact {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 1rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.recipe-card-compact:hover {
  transform: translateY(-2px);
  border-color: var(--border-pink);
}

.recipe-compact-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.5rem;
}

.recipe-tag-category {
  font-size: 0.6875rem;
  font-weight: 800;
  color: var(--primary-rose);
  background: var(--bg-light-pink);
  padding: 0.15rem 0.5rem;
  border-radius: var(--radius-full);
}

.recipe-icon-circle {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}

.recipe-compact-title {
  font-size: 1rem;
  font-weight: 800;
  color: var(--secondary-wine);
  margin-bottom: 0.25rem;
}

.recipe-compact-desc {
  font-size: 0.8125rem;
  color: var(--text-muted);
  line-height: 1.4;
  margin-bottom: 0.65rem;
}

.recipe-compact-footer {
  padding-top: 0.5rem;
  border-top: 1px dashed var(--border-light);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--cta-green);
}

.recipes-summary-pill {
  background: linear-gradient(135deg, #FFF1F5 0%, #FDF4FF 100%);
  border: 1px dashed var(--primary-rose);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.recipes-summary-pill h4 {
  font-size: 1rem;
  font-weight: 800;
  color: var(--secondary-wine);
  margin-bottom: 0.35rem;
}

.recipes-summary-pill p {
  font-size: 0.8125rem;
  color: var(--text-muted);
}

/* 4. SEÇÃO: COMPARAÇÃO DOS PACOTES (ESSENCIAL VS COMPLETO) */
.packages-comparison-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  max-width: 900px;
  margin: 0 auto;
  align-items: stretch;
}

.package-card {
  background: var(--bg-card);
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: 1.75rem 1.35rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.package-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

/* Destaque Maior para o Pacote Completo */
.package-card-highlighted {
  border: 2.5px solid var(--primary-rose);
  background: linear-gradient(180deg, #FFFBFD 0%, #FFFFFF 100%);
  box-shadow: 0 12px 36px rgba(216, 27, 96, 0.16);
}

.package-badge-top {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(90deg, #F59E0B 0%, #D97706 100%);
  color: #FFFFFF;
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.3rem 1.15rem;
  border-radius: var(--radius-full);
  box-shadow: 0 4px 10px rgba(217, 119, 6, 0.3);
  white-space: nowrap;
}

.package-header {
  text-align: center;
  margin-bottom: 1.25rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border-light);
}

.package-title {
  font-size: 1.45rem;
  font-weight: 900;
  color: var(--secondary-wine);
  margin-bottom: 0.25rem;
}

.package-positioning {
  font-size: 0.8125rem;
  color: var(--text-muted);
  font-weight: 600;
  min-height: 2.4em;
}

.package-price-wrap {
  margin-top: 0.65rem;
}

.package-price-label {
  font-size: 0.6875rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--text-muted);
}

.package-price-num {
  font-size: 2.35rem;
  font-weight: 900;
  color: var(--secondary-wine);
  line-height: 1;
}

.package-card-highlighted .package-price-num {
  color: var(--primary-rose);
}

.package-price-type {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 700;
}

.package-features-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-bottom: 1.5rem;
}

.package-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  font-size: 0.875rem;
  line-height: 1.4;
  color: var(--text-main);
  font-weight: 600;
}

.package-feature-check {
  color: var(--cta-green);
  font-weight: 900;
  font-size: 0.95rem;
  line-height: 1;
  flex-shrink: 0;
  margin-top: 2px;
}

.bonuses-box {
  background: var(--bg-soft-pink);
  border-radius: var(--radius-md);
  padding: 0.85rem;
  margin-top: 0.75rem;
  border-left: 3px solid var(--primary-rose);
}

.bonuses-box-title {
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
  color: var(--primary-rose);
  margin-bottom: 0.5rem;
}

.bonus-mini-item {
  margin-bottom: 0.5rem;
}

.bonus-mini-item:last-child {
  margin-bottom: 0;
}

.bonus-mini-title {
  font-size: 0.8125rem;
  font-weight: 800;
  color: var(--secondary-wine);
}

.bonus-mini-desc {
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.35;
}

/* Botões dos Pacotes */
.btn-pkg-cta {
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.95rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  padding: 1rem 1.25rem;
  border-radius: var(--radius-md);
  text-align: center;
  transition: all 0.2s ease;
  min-height: 52px;
}

.btn-pkg-essential {
  background: #FFFFFF;
  color: var(--secondary-wine);
  border: 2px solid var(--secondary-wine);
}

.btn-pkg-essential:hover {
  background: var(--bg-light-pink);
}

.btn-pkg-complete {
  background: var(--cta-green);
  color: #FFFFFF;
  border: 2px solid var(--cta-green);
  box-shadow: 0 6px 18px var(--cta-green-shadow);
}

.btn-pkg-complete:hover {
  background: var(--cta-green-hover);
  transform: translateY(-2px);
}

/* 5. SEÇÃO: BENEFÍCIOS DE COMEÇAR A VENDER */
.benefits-grid-3 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.benefit-card-clean {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
}

.benefit-icon-sm {
  width: 42px;
  height: 42px;
  border-radius: var(--radius-md);
  background: var(--bg-light-pink);
  color: var(--primary-rose);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  flex-shrink: 0;
}

.benefit-clean-title {
  font-size: 1rem;
  font-weight: 800;
  color: var(--secondary-wine);
  margin-bottom: 0.25rem;
}

.benefit-clean-desc {
  font-size: 0.8125rem;
  color: var(--text-muted);
  line-height: 1.4;
}

/* 6. PROVA SOCIAL — DEMONSTRAÇÃO DE LAYOUT */
.demo-layout-disclaimer {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: #FEF3C7;
  color: #92400E;
  font-size: 0.75rem;
  font-weight: 800;
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-full);
  margin-bottom: 1.25rem;
  border: 1px solid #FDE68A;
}

.demo-testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.demo-testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 1.15rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.demo-card-top {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 0.65rem;
}

.demo-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.demo-author {
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--secondary-wine);
}

.demo-stars {
  color: #F59E0B;
  font-size: 0.85rem;
  letter-spacing: 1px;
}

.demo-comment {
  font-size: 0.8125rem;
  color: var(--text-main);
  line-height: 1.45;
  font-style: italic;
  margin-bottom: 0.65rem;
}

.demo-focus-tag {
  align-self: flex-start;
  font-size: 0.6875rem;
  font-weight: 700;
  color: var(--primary-rose);
  background: var(--bg-light-pink);
  padding: 0.15rem 0.45rem;
  border-radius: var(--radius-full);
}

/* 7. COMO FUNCIONA (3 PASSOS) */
.steps-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.step-card-compact {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  text-align: center;
}

.step-num-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-rose) 0%, var(--secondary-burgundy) 100%);
  color: #FFFFFF;
  font-weight: 900;
  font-size: 1rem;
  margin-bottom: 0.65rem;
}

.step-title-sm {
  font-size: 1rem;
  font-weight: 800;
  color: var(--secondary-wine);
  margin-bottom: 0.25rem;
}

.step-desc-sm {
  font-size: 0.8125rem;
  color: var(--text-muted);
  line-height: 1.4;
}

/* 8. GARANTIA (SOBRIA E PROFISSIONAL) */
.guarantee-box-clean {
  background: #FFFFFF;
  border: 1.5px solid #FDE68A;
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.25rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
}

.guarantee-icon-badge {
  font-size: 2.75rem;
  margin-bottom: 0.35rem;
}

.guarantee-title-clean {
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--secondary-wine);
  margin-bottom: 0.5rem;
}

.guarantee-text-clean {
  font-size: 0.875rem;
  color: var(--text-main);
  max-width: 540px;
  margin: 0 auto;
  line-height: 1.5;
}

/* 9. FAQ */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  max-width: 700px;
  margin: 0 auto;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color 0.2s ease;
}

.faq-item.active {
  border-color: var(--primary-rose);
}

.faq-question-btn {
  width: 100%;
  text-align: left;
  padding: 1rem 1.15rem;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--secondary-wine);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.faq-icon-arrow {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--bg-soft-pink);
  color: var(--primary-rose);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 0.75rem;
  transition: transform 0.25s ease;
  flex-shrink: 0;
}

.faq-item.active .faq-icon-arrow {
  transform: rotate(180deg);
  background: var(--primary-rose);
  color: #FFFFFF;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 1.15rem;
  font-size: 0.8125rem;
  line-height: 1.5;
  color: var(--text-main);
}

.faq-item.active .faq-answer {
  max-height: 250px;
  padding: 0 1.15rem 1rem 1.15rem;
}

/* 10. CTA FINAL */
.final-cta-clean {
  text-align: center;
  padding: 3.5rem 0;
  background: linear-gradient(180deg, var(--bg-main) 0%, var(--bg-soft-pink) 100%);
}

/* 11. BARRA FLUTUANTE MOBILE (STICKY CTA) */
.mobile-floating-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--border-pink);
  padding: 0.6rem 1rem;
  z-index: 99;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.08);
  transform: translateY(120%);
  transition: transform 0.3s ease;
}

.mobile-floating-cta.visible {
  transform: translateY(0);
}

.mobile-floating-cta.hidden-footer {
  transform: translateY(120%);
}

.floating-info {
  display: flex;
  flex-direction: column;
}

.floating-label {
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text-muted);
}

.floating-price {
  font-size: 1.05rem;
  font-weight: 900;
  color: var(--primary-rose);
  line-height: 1;
}

.floating-btn {
  background: var(--cta-green);
  color: #FFFFFF;
  font-weight: 800;
  font-size: 0.875rem;
  text-transform: uppercase;
  padding: 0.6rem 1.1rem;
  border-radius: var(--radius-md);
  box-shadow: 0 4px 12px var(--cta-green-shadow);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

@media (min-width: 768px) {
  .mobile-floating-cta {
    display: none !important;
  }
}

/* 12. RODAPÉ */
.site-footer {
  background: #18181B;
  color: #A1A1AA;
  padding: 2.5rem 0 2rem 0;
  font-size: 0.8125rem;
  line-height: 1.6;
  text-align: center;
}

.footer-info-block {
  max-width: 600px;
  margin: 0 auto 1.25rem auto;
}

.footer-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.25rem;
  margin-bottom: 1.25rem;
}

.footer-link {
  color: #E4E4E7;
  font-weight: 600;
  transition: color 0.2s ease;
  cursor: pointer;
}

.footer-link:hover {
  color: var(--primary-rose);
}

.footer-notice {
  font-size: 0.75rem;
  color: #71717A;
  margin-bottom: 0.85rem;
}

.footer-copyright {
  font-size: 0.75rem;
  color: #52525B;
  border-top: 1px solid #27272A;
  padding-top: 1rem;
}

/* MODAIS */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(4px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  opacity: 0;
  visibility: hidden;
  transition: all 0.25s ease;
}

.modal-overlay.open {
  opacity: 1;
  visibility: visible;
}

.modal-card {
  background: #FFFFFF;
  border-radius: var(--radius-xl);
  max-width: 580px;
  width: 100%;
  max-height: 80vh;
  display: flex;
  flex-direction: column;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.15rem 1.35rem;
  border-bottom: 1px solid var(--border-light);
}

.modal-title {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--secondary-wine);
}

.modal-close-btn {
  font-size: 1.4rem;
  line-height: 1;
  color: var(--text-muted);
  padding: 0.25rem;
}

.modal-body {
  padding: 1.35rem;
  overflow-y: auto;
  font-size: 0.8125rem;
  color: var(--text-main);
  line-height: 1.55;
}

/* RESPONSIVIDADE TABLET E DESKTOP */
@media (min-width: 640px) {
  .featured-recipes-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .benefits-grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }
  .demo-testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .steps-row {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 768px) {
  .packages-comparison-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .hero-title {
    font-size: 2.5rem;
  }
  .hero-subtitle {
    font-size: 1.15rem;
  }
}

@media (min-width: 1024px) {
  .featured-recipes-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
