/* ============================================================
   Bella Angela — Premium Boutique Design System (static build)
   Paleta: Preto profundo · Dourado · Off-white · Cinza suave
   Tipografia: Playfair Display (serif) + Inter (sans)
   ============================================================ */

:root {
  --onyx: #0A0A0A;
  --pearl: #F8F8F8;
  --gold: #D4AF37;
  --gold-soft: #E8D9A8;

  --background: var(--pearl);
  --foreground: var(--onyx);
  --card: #FFFFFF;
  --secondary: #F0EFEA;
  --muted-foreground: #767567;
  --border: #E1DFD6;
}

* { box-sizing: border-box; }

html { -webkit-font-smoothing: antialiased; scroll-behavior: smooth; }

body {
  background-color: var(--background);
  color: var(--foreground);
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  margin: 0;
}

h1, h2, h3, h4 {
  font-family: 'Playfair Display', 'Cormorant Garamond', Georgia, serif;
  font-weight: 400;
  letter-spacing: -0.01em;
  margin: 0;
}
strong, b { font-weight: 700; }

ul, ol { list-style: none; margin: 0; padding: 0; }
img, svg { display: block; max-width: 100%; }
fieldset { margin: 0; padding: 0; border: 0; }
legend { padding: 0; }
input, textarea, select {
  font-family: inherit;
  font-size: 100%;
  color: inherit;
  margin: 0;
}

::selection { background: var(--gold); color: var(--onyx); }

a { color: inherit; text-decoration: none; }
button {
  font-family: inherit;
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  color: inherit;
  font: inherit;
  cursor: pointer;
  text-align: inherit;
}

/* Layout container */
.container-bella {
  width: 100%;
  margin-inline: auto;
  padding-inline: 1.25rem;
  max-width: 1400px;
}
@media (min-width: 768px) { .container-bella { padding-inline: 2rem; } }
@media (min-width: 1280px) { .container-bella { padding-inline: 3rem; } }

/* Text styles */
.text-eyebrow {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  font-weight: 500;
  color: var(--gold);
  display: inline-block;
}

.gold-divider {
  display: inline-block;
  width: 3rem;
  height: 1px;
  background: var(--gold);
  vertical-align: middle;
}

/* Buttons */
.btn-gold {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: var(--gold);
  color: var(--onyx);
  font-weight: 500;
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 1rem 2rem;
  transition: all 0.35s ease;
  border: 1px solid var(--gold);
  cursor: pointer;
}
.btn-gold:hover { background: transparent; color: var(--gold); }
.btn-gold:disabled { opacity: 0.5; cursor: not-allowed; }

.btn-outline-gold {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: transparent;
  color: currentColor;
  font-weight: 500;
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 1rem 2rem;
  transition: all 0.35s ease;
  border: 1px solid currentColor;
  cursor: pointer;
}
.btn-outline-gold:hover { background: var(--gold); color: var(--onyx); border-color: var(--gold); }
.btn-outline-gold:disabled { opacity: 0.5; cursor: not-allowed; }

.link-underline { position: relative; }
.link-underline::after {
  content: "";
  position: absolute;
  left: 0; bottom: -3px;
  width: 100%; height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s ease;
}
.link-underline:hover::after { transform: scaleX(1); transform-origin: left; }

@keyframes fade-up {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.animate-fade-up { animation: fade-up 0.9s ease-out both; }

/* FAQ accordion (bordered rows) */
.faq-item {
  border: 1px solid var(--border);
  background: var(--secondary);
  margin-top: -1px;
}
.faq-item:first-child { margin-top: 0; }
.faq-item summary,
.faq-item .faq-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem 1.5rem;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.05rem;
}
.faq-item:hover { background: #e8e6de; }
.faq-chevron { transition: transform 0.2s ease; flex-shrink: 0; color: var(--muted-foreground); }
.faq-panel {
  padding: 0 1.5rem 1.25rem 1.5rem;
  color: var(--muted-foreground);
  line-height: 1.7;
  background: var(--pearl);
}
.nav-dropdown { opacity: 0; visibility: hidden; transition: all .2s ease; }
.nav-item:hover .nav-dropdown { opacity: 1; visibility: visible; }

/* Product / category cards */
.card-img-zoom img { transition: transform 1s ease-out; }
.card-img-zoom:hover img { transform: scale(1.06); }

/* Skeleton loading */
.skeleton {
  background: linear-gradient(90deg, #eee 25%, #f5f5f5 37%, #eee 63%);
  background-size: 400% 100%;
  animation: skeleton-loading 1.4s ease infinite;
}
@keyframes skeleton-loading {
  0% { background-position: 100% 50%; }
  100% { background-position: 0 50%; }
}

/* Modal */
.modal-overlay {
  position: fixed; inset: 0; background: rgba(10,10,10,0.8);
  z-index: 60; display: flex; align-items: center; justify-content: center; padding: 1rem;
}
.modal-box {
  background: var(--pearl); color: var(--onyx); max-width: 28rem; width: 100%;
  padding: 2rem; position: relative;
}

/* Admin modal box wider */
.modal-box-wide { max-width: 48rem; width: 100%; background: var(--pearl); color: var(--onyx); max-height: 90vh; overflow-y: auto; }

.admin-input {
  width: 100%; background: var(--pearl); border: 1px solid var(--border);
  padding: 0.5rem 0.75rem; font-size: 0.875rem;
}
.admin-input:focus { outline: none; border-color: var(--gold); }

/* Line clamp fallback */
.line-clamp-2 {
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}

/* Toast */
#toast-root { position: fixed; top: 1rem; left: 50%; transform: translateX(-50%); z-index: 100; display: flex; flex-direction: column; gap: 0.5rem; }
.toast {
  background: var(--onyx); color: var(--pearl); padding: 0.75rem 1.25rem; font-size: 0.85rem;
  border-left: 3px solid var(--gold); box-shadow: 0 10px 30px rgba(0,0,0,.3);
  animation: fade-up .3s ease-out both;
}
.toast.error { border-left-color: #e05252; }
/* Auto-generated utility classes (Tailwind-subset replacement) */
.-mr-2 { margin-right: -0.5rem; }
.-translate-x-1\/2 { transform: translateX(-50%); }
.-translate-y-1\/2 { transform: translateY(-50%); }
.absolute { position:absolute; }
.aspect-\[3\/4\] { aspect-ratio: 3/4; }
.aspect-\[4\/5\] { aspect-ratio: 4/5; }
.aspect-square { aspect-ratio:1/1; }
.backdrop-blur-md { backdrop-filter:blur(8px);-webkit-backdrop-filter:blur(8px); }
.bg-\[var\(--background\)\] { background-color: var(--background); }
.bg-\[var\(--background\)\]\/90 { background-color: color-mix(in srgb, var(--background) 90%, transparent); }
.bg-\[var\(--border\)\] { background-color: var(--border); }
.bg-\[var\(--onyx\)\] { background-color: var(--onyx); }
.bg-background { background-color: var(--background); }
.bg-card { background-color: var(--card); }
.bg-gold { background-color: var(--gold); }
.bg-onyx { background-color: var(--onyx); }
.bg-onyx\/80 { background-color: rgba(10,10,10,0.80); }
.bg-pearl { background-color: var(--pearl); }
.bg-pearl\/10 { background-color: rgba(248,248,248,0.10); }
.bg-secondary { background-color: var(--secondary); }
.bg-secondary\/40 { background-color: rgba(240,239,234,0.40); }
.bg-transparent { background-color: transparent; }
.block { display:block; }
.border { border-width:1px;border-style:solid;border-color:var(--border); }
.border-2 { border-width:2px;border-style:solid; }
.border-\[var\(--border\)\] { border-color: var(--border); }
.border-\[var\(--gold\)\]\/60 { border-color: color-mix(in srgb, var(--gold) 60%, transparent); }
.border-b { border-bottom-width:1px;border-bottom-style:solid;border-color:var(--border); }
.border-b-2 { border-bottom-width:2px;border-bottom-style:solid; }
.border-border { border-color: var(--border); }
.border-dashed { border-style:dashed; }
.border-l-2 { border-left-width:2px;border-left-style:solid; }
.border-pearl\/10 { border-color: rgba(248,248,248,0.10); }
.border-pearl\/20 { border-color: rgba(248,248,248,0.20); }
.border-t { border-top-width:1px;border-top-style:solid;border-color:var(--border); }
.border-transparent { border-color: transparent; }
.border-y { border-top-width:1px;border-bottom-width:1px;border-style:solid;border-color:var(--border); }
.bottom-0 { bottom:0; }
.bottom-1 { bottom:0.25rem; }
.bottom-6 { bottom:1.5rem; }
.break-all { word-break:break-all; }
.col-span-full { grid-column:1 / -1; }
.cursor-pointer { cursor:pointer; }
.divide-border > * + * { border-color:var(--border); }
.divide-y > * + * { border-top-width:1px;border-top-style:solid; }
.duration-500 { transition-duration:.5s; }
.duration-700 { transition-duration:.7s; }
.fixed { position:fixed; }
.flex { display:flex; }
.flex-1 { flex:1 1 0%; }
.flex-col { flex-direction:column; }
.flex-shrink-0 { flex-shrink:0; }
.flex-wrap { flex-wrap:wrap; }
.focus\:border-gold:focus { border-color: var(--gold); }
.focus\:outline-none:focus { outline:none; }
.font-medium { font-weight:500; }
.font-mono { font-family:ui-monospace,monospace; }
.font-sans { font-family:'Inter',system-ui,sans-serif; }
.font-serif { font-family:'Playfair Display','Georgia',serif; }
.gap-1 { gap: 0.25rem; }
.gap-1\.5 { gap: 0.375rem; }
.gap-12 { gap: 3rem; }
.gap-16 { gap: 4rem; }
.gap-2 { gap: 0.5rem; }
.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }
.gap-5 { gap: 1.25rem; }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }
.gap-9 { gap: 2.25rem; }
.gap-px { gap:1px; }
.grid { display:grid; }
.grid-cols-3 { grid-template-columns:repeat(3,minmax(0,1fr)); }
.group:hover .group-hover\:opacity-100 { opacity:1; }
.group:hover .group-hover\:scale-105 { transform:scale(1.05); }
.h-12 { height: 3rem; }
.h-14 { height: 3.5rem; }
.h-16 { height: 4rem; }
.h-20 { height: 5rem; }
.h-24 { height: 6rem; }
.h-full { height:100%; }
.h-px { height:1px; }
.hidden { display:none; }
.hover\:bg-\[var\(--secondary\)\]:hover { background-color: var(--secondary); }
.hover\:border-\[var\(--gold\)\]:hover { border-color: var(--gold); }
.hover\:border-gold:hover { border-color: var(--gold); }
.hover\:scale-105:hover { transform:scale(1.05); }
.hover\:text-\[var\(--foreground\)\]:hover { color: var(--foreground); }
.hover\:text-foreground:hover { color: var(--foreground); }
.hover\:text-gold:hover { color: var(--gold); }
.hover\:text-red-600:hover { color: #dc2626; }
.inline-block { display:inline-block; }
.inline-flex { display:inline-flex; }
.inset-0 { top:0;right:0;bottom:0;left:0; }
.inset-x-0 { left:0;right:0; }
.inset-x-1 { left:0.25rem;right:0.25rem; }
.items-center { align-items:center; }
.items-end { align-items:flex-end; }
.items-start { align-items:flex-start; }
.justify-between { justify-content:space-between; }
.justify-center { justify-content:center; }
.justify-end { justify-content:flex-end; }
.leading-\[1\.08\] { line-height: 1.08; }
.leading-none { line-height:1; }
.leading-relaxed { line-height:1.625; }
.left-1 { left:0.25rem; }
.left-1\/2 { left:50%; }
.left-4 { left:1rem; }
.max-w-2xl { max-width:42rem; }
.max-w-3xl { max-width:48rem; }
.max-w-md { max-width:28rem; }
.max-w-xl { max-width:36rem; }
.mb-10 { margin-bottom: 2.5rem; }
.mb-12 { margin-bottom: 3rem; }
.mb-14 { margin-bottom: 3.5rem; }
.mb-16 { margin-bottom: 4rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 0.75rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.min-h-\[380px\] { min-height: 380px; }
.min-h-\[420px\] { min-height: 420px; }
.min-h-\[560px\] { min-height: 560px; }
.min-h-screen { min-height:100vh; }
.min-w-0 { min-width:0; }
.min-w-\[220px\] { min-width: 220px; }
.ml-2 { margin-left: 0.5rem; }
.ml-3 { margin-left: 0.75rem; }
.mt-0\.5 { margin-top: 0.125rem; }
.mt-1 { margin-top: 0.25rem; }
.mt-10 { margin-top: 2.5rem; }
.mt-14 { margin-top: 3.5rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 0.75rem; }
.mt-32 { margin-top: 8rem; }
.mt-4 { margin-top: 1rem; }
.mt-5 { margin-top: 1.25rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-7 { margin-top: 1.75rem; }
.mt-8 { margin-top: 2rem; }
.mx-auto { margin-left:auto;margin-right:auto; }
.my-2 { margin-top: 0.5rem; margin-bottom: 0.5rem; }
.object-cover { object-fit:cover; }
.opacity-0 { opacity:0; }
.opacity-25 { opacity:.25; }
.opacity-55 { opacity:.55; }
.opacity-60 { opacity:.6; }
.opacity-70 { opacity:.7; }
.opacity-80 { opacity:.8; }
.outline-none { outline:none; }
.overflow-hidden { overflow:hidden; }
.p-1 { padding: 0.25rem; }
.p-10 { padding: 2.5rem; }
.p-2 { padding: 0.5rem; }
.p-4 { padding: 1rem; }
.p-6 { padding: 1.5rem; }
.p-8 { padding: 2rem; }
.pb-12 { padding-bottom: 3rem; }
.pb-20 { padding-bottom: 5rem; }
.pb-5 { padding-bottom: 1.25rem; }
.pb-8 { padding-bottom: 2rem; }
.pl-11 { padding-left: 2.75rem; }
.pl-4 { padding-left: 1rem; }
.pl-5 { padding-left: 1.25rem; }
.pr-4 { padding-right: 1rem; }
.pt-10 { padding-top: 2.5rem; }
.pt-2 { padding-top: 0.5rem; }
.pt-24 { padding-top: 6rem; }
.pt-4 { padding-top: 1rem; }
.pt-8 { padding-top: 2rem; }
.px-1\.5 { padding-left: 0.375rem; padding-right: 0.375rem; }
.px-2 { padding-left: 0.5rem; padding-right: 0.5rem; }
.px-3 { padding-left: 0.75rem; padding-right: 0.75rem; }
.px-4 { padding-left: 1rem; padding-right: 1rem; }
.px-5 { padding-left: 1.25rem; padding-right: 1.25rem; }
.py-0\.5 { padding-top: 0.125rem; padding-bottom: 0.125rem; }
.py-10 { padding-top: 2.5rem; padding-bottom: 2.5rem; }
.py-12 { padding-top: 3rem; padding-bottom: 3rem; }
.py-2 { padding-top: 0.5rem; padding-bottom: 0.5rem; }
.py-20 { padding-top: 5rem; padding-bottom: 5rem; }
.py-24 { padding-top: 6rem; padding-bottom: 6rem; }
.py-28 { padding-top: 7rem; padding-bottom: 7rem; }
.py-3 { padding-top: 0.75rem; padding-bottom: 0.75rem; }
.py-32 { padding-top: 8rem; padding-bottom: 8rem; }
.py-4 { padding-top: 1rem; padding-bottom: 1rem; }
.py-40 { padding-top: 10rem; padding-bottom: 10rem; }
.py-5 { padding-top: 1.25rem; padding-bottom: 1.25rem; }
.py-6 { padding-top: 1.5rem; padding-bottom: 1.5rem; }
.relative { position:relative; }
.right-1 { right:0.25rem; }
.right-6 { right:1.5rem; }
.rounded-full { border-radius:9999px; }
.scroll-mt-24 { scroll-margin-top:6rem; }
.self-center { align-self:center; }
.shadow-2xl { box-shadow:0 25px 50px -12px rgba(0,0,0,.35); }
.shadow-xl { box-shadow:0 20px 25px -5px rgba(0,0,0,.15),0 8px 10px -6px rgba(0,0,0,.1); }
.shrink-0 { flex-shrink:0; }
.space-y-3 > * + * { margin-top: 0.75rem; }
.space-y-4 > * + * { margin-top: 1rem; }
.space-y-5 > * + * { margin-top: 1.25rem; }
.space-y-6 > * + * { margin-top: 1.5rem; }
.space-y-8 > * + * { margin-top: 2rem; }
.sticky { position:sticky; }
.text-2xl { font-size: 1.5rem; line-height: 2rem; }
.text-3xl { font-size: 1.875rem; line-height: 2.25rem; }
.text-4xl { font-size: 2.25rem; line-height: 2.5rem; }
.text-5xl { font-size: 3rem; line-height: 1; }
.text-\[0\.65rem\] { font-size: 0.65rem; }
.text-\[0\.6rem\] { font-size: 0.6rem; }
.text-\[0\.72rem\] { font-size: 0.72rem; }
.text-\[0\.78rem\] { font-size: 0.78rem; }
.text-\[0\.7rem\] { font-size: 0.7rem; }
.text-\[var\(--foreground\)\] { color: var(--foreground); }
.text-\[var\(--muted-foreground\)\] { color: var(--muted-foreground); }
.text-base { font-size: 1rem; line-height: 1.5rem; }
.text-center { text-align:center; }
.text-foreground { color: var(--foreground); }
.text-foreground\/70 { color: rgba(10,10,10,0.70); }
.text-foreground\/80 { color: rgba(10,10,10,0.80); }
.text-gold { color: var(--gold); }
.text-left { text-align:left; }
.text-lg { font-size: 1.125rem; line-height: 1.75rem; }
.text-muted-foreground { color: var(--muted-foreground); }
.text-onyx { color: var(--onyx); }
.text-pearl { color: var(--pearl); }
.text-pearl\/40 { color: rgba(248,248,248,0.40); }
.text-pearl\/50 { color: rgba(248,248,248,0.50); }
.text-pearl\/60 { color: rgba(248,248,248,0.60); }
.text-pearl\/70 { color: rgba(248,248,248,0.70); }
.text-pearl\/80 { color: rgba(248,248,248,0.80); }
.text-sm { font-size: 0.875rem; line-height: 1.25rem; }
.text-xl { font-size: 1.25rem; line-height: 1.75rem; }
.text-xs { font-size: 0.75rem; line-height: 1rem; }
.top-0 { top:0; }
.top-1 { top:0.25rem; }
.top-1\/2 { top:50%; }
.top-full { top:100%; }
.tracking-\[0\.22em\] { letter-spacing: 0.22em; }
.tracking-\[0\.25em\] { letter-spacing: 0.25em; }
.tracking-\[0\.2em\] { letter-spacing: 0.2em; }
.tracking-wider { letter-spacing:0.05em; }
.transition-all { transition:all .3s ease; }
.transition-colors { transition:color .3s ease,background-color .3s ease,border-color .3s ease; }
.transition-opacity { transition:opacity .3s ease; }
.transition-transform { transition:transform .3s ease; }
.truncate { overflow:hidden;text-overflow:ellipsis;white-space:nowrap; }
.uppercase { text-transform:uppercase; }
.w-14 { width: 3.5rem; }
.w-16 { width: 4rem; }
.w-20 { width: 5rem; }
.w-32 { width: 8rem; }
.w-auto { width:auto; }
.w-full { width:100%; }
.z-10 { z-index:10; }
.z-40 { z-index:40; }
.z-50 { z-index:50; }






/* ---- Gradient combinations (hand-mapped, matches exact HTML usage) ---- */
.bg-gradient-to-t.from-onyx.via-onyx\/50.to-transparent { background-image: linear-gradient(to top, #0A0A0A, rgba(10,10,10,.5), transparent); }
.bg-gradient-to-t.from-onyx.via-onyx\/40.to-transparent { background-image: linear-gradient(to top, #0A0A0A, rgba(10,10,10,.4), transparent); }
.bg-gradient-to-r.from-onyx.via-onyx\/60.to-transparent { background-image: linear-gradient(to right, #0A0A0A, rgba(10,10,10,.6), transparent); }
.bg-gradient-to-t.from-onyx.via-transparent.to-transparent { background-image: linear-gradient(to top, #0A0A0A, transparent, transparent); }
.bg-gradient-to-b.from-onyx\/80.via-onyx\/70.to-onyx { background-image: linear-gradient(to bottom, rgba(10,10,10,.8), rgba(10,10,10,.7), #0A0A0A); }
.bg-gradient-to-r.from-onyx.via-onyx\/70.to-transparent { background-image: linear-gradient(to right, #0A0A0A, rgba(10,10,10,.7), transparent); }

/* ---- Group-hover helpers ---- */
.group:hover .group-hover\:opacity-100 { opacity: 1; }
.group:hover .group-hover\:scale-105 { transform: scale(1.05); }
.group:hover .group-hover\:translate-y-0 { transform: translateY(0); }

/* ---- Misc color fix ---- */
.hover\:text-red-600:hover { color: #dc2626; }
.hover\:text-gold:hover { color: var(--gold); }
.hover\:text-foreground:hover { color: var(--foreground); }
.hover\:text-\[var\(--foreground\)\]:hover { color: var(--foreground); }
.hover\:border-gold:hover { border-color: var(--gold); }
.hover\:border-\[var\(--gold\)\]:hover { border-color: var(--gold); }
.hover\:bg-\[var\(--secondary\)\]:hover { background-color: var(--secondary); }

/* ---- object-position / misc ---- */
.gap-1 { gap: 0.25rem; }
.gap-1\.5 { gap: 0.375rem; }

@media (min-width: 640px) {
  .sm\:block { display:block; }
  .sm\:col-span-2 { grid-column:span 2 / span 2; }
  .sm\:flex-row { flex-direction:row; }
  .sm\:gap-4 { gap: 1rem; }
  .sm\:grid-cols-2 { grid-template-columns:repeat(2,minmax(0,1fr)); }
  .sm\:grid-cols-5 { grid-template-columns:repeat(5,minmax(0,1fr)); }
  .sm\:inline { display:inline; }
  .sm\:text-5xl { font-size: 3rem; line-height: 1; }
}
@media (min-width: 768px) {
  .md\:col-span-2 { grid-column:span 2 / span 2; }
  .md\:grid-cols-2 { grid-template-columns:repeat(2,minmax(0,1fr)); }
  .md\:grid-cols-3 { grid-template-columns:repeat(3,minmax(0,1fr)); }
  .md\:grid-cols-4 { grid-template-columns:repeat(4,minmax(0,1fr)); }
  .md\:h-14 { height: 3.5rem; }
  .md\:leading-\[1\.05\] { line-height: 1.05; }
  .md\:min-h-\[55vh\] { min-height: 55vh; }
  .md\:min-h-\[60vh\] { min-height: 60vh; }
  .md\:min-h-\[92vh\] { min-height: 92vh; }
  .md\:mt-6 { margin-top: 1.5rem; }
  .md\:mt-8 { margin-top: 2rem; }
  .md\:pb-16 { padding-bottom: 4rem; }
  .md\:py-24 { padding-top: 6rem; padding-bottom: 6rem; }
  .md\:text-4xl { font-size: 2.25rem; line-height: 2.5rem; }
  .md\:text-5xl { font-size: 3rem; line-height: 1; }
  .md\:text-6xl { font-size: 3.75rem; line-height: 1; }
  .md\:text-xl { font-size: 1.25rem; line-height: 1.75rem; }
}
@media (min-width: 1024px) {
  .lg\:flex { display:flex; }
  .lg\:grid-cols-2 { grid-template-columns:repeat(2,minmax(0,1fr)); }
  .lg\:grid-cols-3 { grid-template-columns:repeat(3,minmax(0,1fr)); }
  .lg\:grid-cols-4 { grid-template-columns:repeat(4,minmax(0,1fr)); }
  .lg\:grid-cols-\[1\.3fr_1fr\] { grid-template-columns: 1.3fr 1fr; }
  .lg\:hidden { display:none; }
  .lg\:mt-10 { margin-top: 2.5rem; }
  .lg\:pb-28 { padding-bottom: 7rem; }
  .lg\:pt-6 { padding-top: 1.5rem; }
  .lg\:text-6xl { font-size: 3.75rem; line-height: 1; }
}
@media (min-width: 1280px) {
  .xl\:grid-cols-4 { grid-template-columns:repeat(4,minmax(0,1fr)); }
  .xl\:max-w-3xl { max-width:48rem; }
  .xl\:text-lg { font-size: 1.125rem; line-height: 1.75rem; }
}
@media (min-width: 1536px) {
  .2xl\:text-7xl { font-size: 4.5rem; line-height: 1; }
}
