﻿:root {
  --site-scale: 0.9;
  --bg: #0e1218;
  --bg-soft: #171d27;
  --surface: #202936;
  --surface-strong: #2b3646;
  --surface-frost: rgba(255, 255, 255, 0.045);
  --text: #f3f7ff;
  --text-soft: #b9c3d1;
  --line: #37455c;
  --line-soft: rgba(255, 255, 255, 0.11);
  --primary: #ff6a00;
  --primary-strong: #ff8a33;
  --accent: #16c2a3;
  --danger: #ff5b5b;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow-soft: 0 8px 26px rgba(0, 0, 0, 0.2);
  --shadow-card: 0 20px 40px rgba(0, 0, 0, 0.28);
  --shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
  --container: min(1120px, calc(100% - 2.5rem));
  --wallpaper-logo: url("../zetta-wallpaper.svg");
  --wallpaper-opacity: 0.09;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  zoom: var(--site-scale);
}

html[data-site-content-state="loading"] header,
html[data-site-content-state="loading"] main,
html[data-site-content-state="loading"] footer {
  visibility: hidden;
}

html[data-site-content-state="loading"] body {
  overflow: hidden;
}

@supports not (zoom: 1) {
  body {
    transform: scale(var(--site-scale));
    transform-origin: top left;
    width: calc(100% / var(--site-scale));
  }
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Barlow", sans-serif;
  line-height: 1.55;
  min-height: 100vh;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
}

:focus-visible {
  outline: 2px solid rgba(255, 154, 63, 0.9);
  outline-offset: 2px;
}

.page-bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 15% 10%, rgba(255, 106, 0, 0.22), transparent 30%),
    radial-gradient(circle at 85% 0%, rgba(22, 194, 163, 0.15), transparent 32%),
    linear-gradient(180deg, #111722 0%, #0b1017 52%, #0a0f15 100%);
}

.page-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.015) 1px, transparent 1px);
  background-size: 48px 48px;
  opacity: 0.35;
  pointer-events: none;
}

.page-bg::after {
  content: "";
  position: absolute;
  inset: 8%;
  background-image: var(--wallpaper-logo);
  background-repeat: no-repeat;
  background-position: center;
  background-size: min(920px, 82vw);
  opacity: var(--wallpaper-opacity);
  pointer-events: none;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.section {
  padding: clamp(3.5rem, 6vw, 6rem) 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 99;
  backdrop-filter: blur(14px);
  background: linear-gradient(180deg, rgba(8, 12, 18, 0.86), rgba(8, 12, 18, 0.72));
  border-bottom: 1px solid transparent;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.2);
  transition: border-color 220ms ease, background-color 220ms ease, box-shadow 220ms ease;
}

.site-header::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 106, 0, 0.65), transparent);
  opacity: 0.65;
  pointer-events: none;
}

.site-header.scrolled {
  border-color: rgba(255, 255, 255, 0.1);
  background: linear-gradient(180deg, rgba(7, 11, 16, 0.95), rgba(7, 11, 16, 0.9));
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.34);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 78px;
  position: relative;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0;
  color: var(--text);
  text-decoration: none;
}

.brand-mark {
  display: none;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, #ff6a00, #ff8a33 52%, #ffd6ab 100%);
  color: #090d12;
  font-weight: 900;
}

.brand-text {
  font-family: "Bebas Neue", sans-serif;
  letter-spacing: 0.07em;
  font-size: 1.95rem;
  line-height: 1;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.35);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.site-nav a:not(.btn) {
  color: var(--text-soft);
  text-decoration: none;
  font-weight: 700;
  padding: 0.42rem 0.62rem;
  border-radius: 8px;
  transition: color 180ms ease, background-color 180ms ease, transform 180ms ease;
}

.site-nav a:not(.btn):hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.065);
  transform: translateY(-1px);
}

.site-nav a:not(.btn).active {
  color: var(--text);
  background: linear-gradient(120deg, rgba(255, 106, 0, 0.16), rgba(255, 146, 59, 0.08));
  border: 1px solid rgba(255, 154, 63, 0.34);
}

.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  padding: 0.35rem;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--text);
  margin: 5px 0;
  transition: transform 220ms ease, opacity 220ms ease;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  border: 1px solid rgba(255, 180, 122, 0.4);
  border-radius: 12px;
  background: linear-gradient(120deg, #ff6a00, #ff8d3a 52%, #ffa65d);
  color: #131920;
  font-weight: 800;
  text-decoration: none;
  padding: 0.78rem 1.15rem;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(255, 106, 0, 0.28);
  transition: transform 160ms ease, box-shadow 160ms ease, filter 160ms ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 26px rgba(255, 106, 0, 0.35);
  filter: saturate(1.06);
}

.btn:active {
  transform: translateY(0);
}

.btn-small {
  padding: 0.5rem 0.9rem;
  font-size: 0.88rem;
  border-radius: 10px;
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.02);
  color: var(--text);
  border: 1px solid rgba(255, 255, 255, 0.28);
  box-shadow: none;
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.52);
}

.btn-secondary {
  background: linear-gradient(120deg, #16c2a3, #1ce0bc);
  color: #06201c;
}

.eyebrow {
  margin: 0;
  color: #ffd0ac;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.75rem;
  font-weight: 700;
}

.hero {
  padding-top: clamp(3.2rem, 8vw, 7rem);
  position: relative;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.8fr;
  gap: clamp(1.4rem, 3vw, 2.4rem);
  align-items: start;
}

.hero-grid-single {
  grid-template-columns: 1fr;
}

h1,
h2,
h3,
h4 {
  line-height: 1.1;
  margin: 0;
}

h1,
h2 {
  font-family: "Bebas Neue", sans-serif;
  letter-spacing: 0.035em;
}

h1 {
  font-size: clamp(2.25rem, 5.7vw, 4.4rem);
  margin-top: 0.65rem;
  line-height: 0.98;
}

h2 {
  font-size: clamp(1.75rem, 4vw, 2.6rem);
}

h3 {
  font-size: 1.22rem;
}

.hero-text {
  margin: 1.05rem 0 0;
  color: var(--text-soft);
  max-width: 64ch;
  font-size: 1.05rem;
}

.hero-actions {
  margin-top: 1.4rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.products-support-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(170px, 1fr));
  grid-template-areas:
    "selector selector"
    "quote whatsapp";
  align-items: end;
  column-gap: 0.65rem;
  row-gap: 0.62rem;
  width: min(100%, 560px);
}

.products-support-actions > .whatsapp-selector {
  grid-area: selector;
  width: 100%;
  min-width: 0;
}

.products-support-actions > .btn:not(.btn-ghost) {
  grid-area: quote;
  min-height: 44px;
  width: 100%;
}

.products-support-actions > .btn-ghost {
  grid-area: whatsapp;
  min-height: 44px;
  width: 100%;
}

.products-support-actions > .btn,
.products-support-actions > .btn-ghost {
  justify-content: center;
}

.whatsapp-selector {
  flex: 1 1 270px;
  min-width: min(300px, 100%);
  display: grid;
  gap: 0.34rem;
}

.whatsapp-selector label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #ffd3b0;
  font-weight: 700;
}

.whatsapp-selector select {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 10px;
  background: rgba(8, 13, 21, 0.78);
  color: var(--text);
  padding: 0.62rem 0.72rem;
  font: inherit;
}

.whatsapp-selector select:focus {
  outline: 0;
  border-color: rgba(255, 151, 65, 0.92);
  box-shadow: 0 0 0 3px rgba(255, 106, 0, 0.2);
}

.hero-stats {
  margin: 1.6rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.95rem;
}

.hero-stats li {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 96px;
  background:
    linear-gradient(145deg, rgba(255, 106, 0, 0.2), rgba(17, 24, 36, 0.9) 40%, rgba(22, 194, 163, 0.1));
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 14px;
  padding: 1rem 0.95rem 0.9rem;
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(4px);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease, filter 180ms ease;
}

.hero-stats li::before {
  content: "";
  position: absolute;
  left: 0.7rem;
  top: 0.65rem;
  width: 38px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255, 184, 130, 0.95), rgba(255, 184, 130, 0.2));
  opacity: 0.95;
}

.hero-stats li::after {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  right: -48px;
  top: -58px;
  border-radius: 999px;
  background: radial-gradient(circle at center, rgba(255, 161, 96, 0.28), rgba(255, 161, 96, 0));
  pointer-events: none;
  z-index: 0;
}

.hero-stats li:nth-child(2)::before {
  background: linear-gradient(90deg, rgba(117, 235, 215, 0.92), rgba(117, 235, 215, 0.2));
}

.hero-stats li:nth-child(3)::before {
  background: linear-gradient(90deg, rgba(181, 215, 255, 0.92), rgba(181, 215, 255, 0.2));
}

.hero-stats li > * {
  position: relative;
  z-index: 1;
}

.hero-stats li:hover {
  transform: translateY(-4px);
  filter: saturate(1.08);
  border-color: rgba(255, 179, 120, 0.62);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.28), 0 0 0 1px rgba(255, 153, 78, 0.14) inset;
}

.hero-stats strong {
  display: block;
  font-size: clamp(1.35rem, 2.8vw, 1.9rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.01em;
  text-shadow: 0 4px 14px rgba(0, 0, 0, 0.35);
}

.hero-stats span {
  display: block;
  margin-top: 0.38rem;
  color: var(--text-soft);
  font-size: 0.92rem;
  line-height: 1.35;
}

.hero-panel {
  border-radius: var(--radius);
  background: linear-gradient(160deg, rgba(255, 106, 0, 0.14), rgba(17, 23, 34, 0.96));
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.4rem;
  box-shadow: var(--shadow);
}

.hero-panel p {
  color: var(--text-soft);
}

.hero-panel ul {
  margin: 0 0 1.2rem 1rem;
  padding: 0;
  color: var(--text-soft);
}

.page-hero {
  padding-bottom: 1.8rem;
}

.admin-hero .hero-text {
  max-width: 72ch;
}

.admin-hero-points {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.admin-hero-points span {
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 999px;
  padding: 0.35rem 0.72rem;
  font-size: 0.85rem;
  color: #ffd5b4;
  background: rgba(255, 106, 0, 0.1);
}

.section-head {
  max-width: 820px;
  position: relative;
  padding-bottom: 0.85rem;
}

.section-head h2 {
  margin-top: 0.55rem;
}

.section-head::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: min(140px, 36vw);
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255, 106, 0, 0.9), rgba(255, 218, 156, 0.2));
}

.section-featured-products {
  position: relative;
  overflow: hidden;
}

.section-featured-products::before {
  content: "";
  position: absolute;
  inset: 1.5rem -22% auto -22%;
  height: clamp(160px, 26vw, 280px);
  background: radial-gradient(circle at center, rgba(255, 140, 58, 0.2), rgba(255, 140, 58, 0) 64%);
  filter: blur(2px);
  opacity: 0.55;
  pointer-events: none;
  animation: featuredGlowPulse 6.4s ease-in-out infinite;
}

.section-featured-products::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(110deg, rgba(255, 106, 0, 0.08), transparent 28%, rgba(22, 194, 163, 0.08) 72%, transparent 100%);
  pointer-events: none;
}

.section-featured-products .container {
  position: relative;
  z-index: 1;
}

.section-featured-products .section-head h2 {
  text-shadow: 0 10px 24px rgba(0, 0, 0, 0.38), 0 0 22px rgba(255, 146, 77, 0.12);
}

.section-instagram-highlights {
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(circle at 82% 8%, rgba(22, 194, 163, 0.14), transparent 34%),
    linear-gradient(180deg, rgba(12, 18, 27, 0.86), rgba(10, 15, 23, 0.9));
}

.section-instagram-highlights .instagram-intro {
  margin-top: 1rem;
  max-width: 66ch;
}

.instagram-media-grid {
  margin-top: 1.15rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
}

.instagram-media-card {
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 16px;
  overflow: hidden;
  background:
    linear-gradient(140deg, rgba(255, 106, 0, 0.12), rgba(255, 255, 255, 0.02) 40%),
    rgba(11, 17, 25, 0.88);
  box-shadow: var(--shadow-soft);
  display: grid;
  min-height: 320px;
}

.instagram-media-card-featured {
  grid-column: span 2;
}

.instagram-media-card-featured[data-kind="video"] {
  grid-column: span 1;
}

.instagram-media-frame-wrap {
  position: relative;
  background: rgba(6, 9, 14, 0.72);
  min-height: 240px;
}

.instagram-media-frame {
  width: 100%;
  height: 100%;
  min-height: 240px;
  border: 0;
  display: block;
}

.instagram-media-video {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  object-fit: cover;
  background: #05080f;
}

.instagram-media-image {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  object-fit: cover;
  background: #05080f;
}

.instagram-media-card[data-kind="foto"] {
  min-height: 420px;
}

.instagram-media-card[data-kind="foto"] .instagram-media-frame-wrap {
  min-height: 0;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: #05080f;
}

.instagram-media-card[data-kind="video"] {
  min-height: 300px;
}

.instagram-media-card[data-kind="video"] .instagram-media-frame-wrap {
  min-height: 0;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: #05080f;
  isolation: isolate;
}

.instagram-media-card[data-kind="video"] .instagram-media-frame-wrap::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: clamp(72px, 18%, 110px);
  background: linear-gradient(
    180deg,
    rgba(5, 8, 15, 0),
    rgba(5, 8, 15, 0.94) 38%,
    #05080f 100%
  );
  pointer-events: none;
  z-index: 2;
}

.instagram-media-card[data-kind="video"] .instagram-media-frame-video {
  min-height: 0;
  height: calc(100% + 240px);
  transform: translateY(-64px);
  border: 0;
}

.instagram-media-card[data-kind="foto"] .instagram-media-frame-photo {
  min-height: 0;
  height: calc(100% + 180px);
  transform: translateY(-42px);
  border: 0;
}

.instagram-media-fallback {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 1rem;
  color: #ffd8ba;
  text-decoration: none;
  font-weight: 700;
  background:
    radial-gradient(circle at 18% 16%, rgba(255, 106, 0, 0.26), transparent 40%),
    linear-gradient(130deg, rgba(10, 15, 23, 0.94), rgba(8, 12, 19, 0.92));
}

.instagram-media-info {
  padding: 0.8rem 0.85rem 0.9rem;
  display: grid;
  gap: 0.45rem;
}

.instagram-media-info h3 {
  font-size: 1.02rem;
  line-height: 1.25;
}

.instagram-media-badge {
  display: inline-flex;
  width: fit-content;
  border-radius: 999px;
  padding: 0.2rem 0.58rem;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  background: rgba(255, 106, 0, 0.2);
  color: #ffd0a7;
}

.instagram-media-card[data-kind="video"] .instagram-media-badge {
  background: rgba(22, 194, 163, 0.2);
  color: #aef7e9;
}

.instagram-media-cta {
  color: #ffcfaa;
  text-decoration: none;
  font-weight: 700;
}

.instagram-media-cta:hover {
  color: #ffe6cf;
}

.section-dark {
  background:
    radial-gradient(circle at 92% 6%, rgba(255, 106, 0, 0.14), transparent 35%),
    linear-gradient(180deg, rgba(26, 35, 48, 0.78), rgba(16, 23, 33, 0.8));
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.features-grid {
  margin-top: 1.7rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.feature-card {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  padding: 1.15rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.02));
  box-shadow: var(--shadow-soft);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.feature-card:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 164, 89, 0.35);
  box-shadow: var(--shadow-card);
}

.feature-card p {
  margin: 0.65rem 0 0;
  color: var(--text-soft);
}

.product-grid {
  margin-top: 1.7rem;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.product-card {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.1rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.058), rgba(255, 255, 255, 0.02));
  display: flex;
  flex-direction: column;
  min-height: 200px;
  box-shadow: var(--shadow-soft);
  transition: transform 200ms ease, box-shadow 220ms ease, border-color 220ms ease;
  will-change: transform;
}

.product-card::before {
  content: "";
  position: absolute;
  inset: -38% -42% auto;
  height: 68%;
  background: radial-gradient(circle at center, rgba(255, 161, 88, 0.26), rgba(255, 161, 88, 0) 72%);
  opacity: 0;
  pointer-events: none;
  transition: opacity 280ms ease;
}

.product-card::after {
  content: "";
  position: absolute;
  top: -32%;
  left: -82%;
  width: 52%;
  height: 208%;
  transform: rotate(20deg);
  background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.28), rgba(255, 255, 255, 0));
  opacity: 0;
  pointer-events: none;
  transition: left 620ms ease, opacity 300ms ease;
}

.product-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 168, 99, 0.35);
  box-shadow: var(--shadow-card);
}

.product-card:focus-within {
  transform: translateY(-4px);
  border-color: rgba(255, 168, 99, 0.35);
  box-shadow: var(--shadow-card);
}

.product-card:hover::before,
.product-card:focus-within::before {
  opacity: 1;
}

.product-card:hover::after,
.product-card:focus-within::after {
  left: 138%;
  opacity: 0.72;
}

.product-card > * {
  position: relative;
  z-index: 1;
}

.product-image {
  width: 100%;
  height: 170px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 0.75rem;
  transition: transform 320ms ease, filter 280ms ease;
}

.product-card:hover .product-image,
.product-card:focus-within .product-image {
  transform: scale(1.035);
  filter: saturate(1.07) contrast(1.03);
}

.product-card p {
  color: var(--text-soft);
  margin: 0.6rem 0 0;
}

.product-meta {
  font-size: 0.9rem;
  color: #9ec6ff;
}

.product-card a {
  margin-top: auto;
  color: #ffb782;
  text-decoration: none;
  font-weight: 700;
  transition: color 160ms ease, transform 160ms ease;
}

.product-card a:hover {
  color: #ffd4b4;
  transform: translateX(2px);
}

@keyframes featuredGlowPulse {
  0% {
    opacity: 0.35;
    transform: scale(0.97);
  }

  50% {
    opacity: 0.62;
    transform: scale(1.03);
  }

  100% {
    opacity: 0.35;
    transform: scale(0.97);
  }
}

.section-accent {
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.section-accent::before {
  content: "";
  position: absolute;
  inset: -18% 44% -30% -28%;
  background: radial-gradient(circle at center, rgba(22, 194, 163, 0.2), transparent 72%);
  pointer-events: none;
}

.section-accent::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(6, 10, 15, 0.9), rgba(7, 11, 16, 0.72) 52%, rgba(6, 10, 15, 0.84));
  pointer-events: none;
}

.section-accent .container {
  position: relative;
  z-index: 1;
}

.process-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: 2rem;
  align-items: start;
}

.process-grid > .reveal {
  max-width: 34rem;
  padding-top: 0.35rem;
}

.process-grid > .reveal .eyebrow {
  letter-spacing: 0.16em;
  color: #ffd3b2;
}

.process-grid > .reveal h2 {
  margin-top: 0.6rem;
  line-height: 1;
  max-width: 15ch;
  text-shadow: 0 8px 18px rgba(0, 0, 0, 0.35);
}

.process-list {
  position: relative;
  list-style: none;
  margin: 0;
  padding: 0 0 0 0.35rem;
  display: grid;
  gap: 0.9rem;
}

.process-list::before {
  content: "";
  position: absolute;
  left: 1.18rem;
  top: 1rem;
  bottom: 1rem;
  width: 2px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255, 160, 79, 0.74), rgba(255, 160, 79, 0.08));
  pointer-events: none;
}

.process-list li {
  position: relative;
  display: block;
  padding: 1rem 1.05rem 1rem 3.75rem;
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background:
    linear-gradient(120deg, rgba(13, 21, 32, 0.9), rgba(14, 23, 34, 0.68));
  backdrop-filter: blur(4px);
  box-shadow: var(--shadow-soft);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
  color: #e6edf8;
  font-size: 1.06rem;
  line-height: 1.45;
}

.process-list li:hover {
  transform: translateX(4px);
  border-color: rgba(255, 173, 109, 0.42);
  box-shadow: 0 14px 26px rgba(0, 0, 0, 0.28);
}

.process-list span {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  background: linear-gradient(140deg, rgba(255, 126, 34, 0.34), rgba(255, 102, 0, 0.2));
  color: #ffb885;
  font-weight: 700;
  font-size: 1.05rem;
  border: 1px solid rgba(255, 182, 127, 0.4);
  box-shadow: 0 8px 18px rgba(255, 106, 0, 0.22);
}

.faq-wrap,
.faq-list {
  display: grid;
  gap: 0.7rem;
}

.faq-item {
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 12px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.03);
  transition: border-color 160ms ease, transform 160ms ease;
}

.faq-item:hover {
  border-color: rgba(255, 167, 96, 0.35);
  transform: translateY(-1px);
}

.faq-question {
  width: 100%;
  text-align: left;
  border: 0;
  background: transparent;
  color: var(--text);
  font-weight: 700;
  font-size: 1rem;
  padding: 1rem 1.1rem;
  cursor: pointer;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 240ms ease;
}

.faq-answer p {
  margin: 0;
  color: var(--text-soft);
  padding: 0 1.1rem 1rem;
}

.faq-item.open .faq-answer {
  max-height: 120px;
}

.section-cta {
  padding-top: 2rem;
}

.cta-box {
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background:
    radial-gradient(circle at 12% 12%, rgba(255, 154, 62, 0.23), transparent 35%),
    linear-gradient(135deg, rgba(255, 106, 0, 0.13), rgba(255, 255, 255, 0.04));
  padding: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  box-shadow: var(--shadow-soft);
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.section-home-cta .cta-actions-home {
  display: grid;
  grid-template-columns: minmax(190px, auto) minmax(280px, 1fr) minmax(126px, auto);
  grid-template-areas: "quote selector whatsapp";
  align-items: end;
  column-gap: 0.65rem;
  row-gap: 0.55rem;
  width: min(100%, 980px);
  min-width: 0;
}

.section-home-cta .cta-actions-home > .btn:not(.btn-ghost) {
  grid-area: quote;
  min-height: 44px;
}

.section-home-cta .cta-actions-home > .btn-ghost {
  grid-area: whatsapp;
  min-height: 44px;
}

.section-home-cta .cta-actions-home > .btn,
.section-home-cta .cta-actions-home > .btn-ghost {
  justify-content: center;
}

.section-home-cta .cta-actions-home > .whatsapp-selector {
  grid-area: selector;
  min-width: 0;
  width: 100%;
}

.section-about-cta .cta-box {
  align-items: center;
  gap: 1rem;
}

.section-about-cta .cta-box > div:first-child {
  flex: 1 1 640px;
  min-width: 260px;
}

.section-about-cta .cta-actions-about {
  flex: 0 0 230px;
  min-width: 220px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.62rem;
}

.section-about-cta .cta-actions-about .btn {
  width: 100%;
  min-height: 44px;
  justify-content: center;
}

.catalog-grid {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.catalog-grid::before {
  content: "";
  position: absolute;
  inset: -1.2rem 8% auto;
  height: clamp(130px, 18vw, 220px);
  background: radial-gradient(circle at center, rgba(255, 140, 58, 0.16), rgba(255, 140, 58, 0) 68%);
  pointer-events: none;
  z-index: 0;
  animation: catalogAmbientPulse 7.2s ease-in-out infinite;
}

.catalog-grid::after {
  content: "";
  position: absolute;
  inset: auto -10% -12% -10%;
  height: clamp(140px, 20vw, 240px);
  background: radial-gradient(circle at center, rgba(22, 194, 163, 0.12), rgba(22, 194, 163, 0) 72%);
  pointer-events: none;
  z-index: 0;
}

.catalog-card {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.11);
  background:
    radial-gradient(circle at 14% 0%, rgba(255, 147, 70, 0.14), transparent 42%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
  padding: 1.2rem;
  box-shadow: var(--shadow-soft);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
  z-index: 1;
}

.catalog-card::before {
  content: "";
  position: absolute;
  inset: -45% -35% auto;
  height: 72%;
  background: radial-gradient(circle at center, rgba(255, 164, 92, 0.2), rgba(255, 164, 92, 0) 70%);
  opacity: 0;
  pointer-events: none;
  transition: opacity 260ms ease;
}

.catalog-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(255, 106, 0, 0.06), transparent 34%, rgba(22, 194, 163, 0.07) 80%, transparent);
  opacity: 0.85;
  pointer-events: none;
}

.catalog-card:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 170, 103, 0.35);
  box-shadow: var(--shadow-card);
}

.catalog-card:hover::before,
.catalog-card:focus-within::before {
  opacity: 1;
}

.catalog-card > * {
  position: relative;
  z-index: 1;
}

.catalog-card header {
  display: flex;
  gap: 0.7rem;
  align-items: center;
  justify-content: space-between;
}

.catalog-card p {
  color: var(--text-soft);
  margin: 0.7rem 0 0;
}

.catalog-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 10px;
  margin-top: 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(6, 9, 14, 0.5);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.24);
}

.catalog-meta {
  font-size: 0.9rem;
  color: #9ec6ff;
}

.catalog-card ul {
  margin: 0.8rem 0 0 1rem;
  color: var(--text-soft);
}

.catalog-card h2 {
  font-size: 1.55rem;
}

@keyframes catalogAmbientPulse {
  0% {
    opacity: 0.4;
    transform: scale(0.98);
  }

  50% {
    opacity: 0.75;
    transform: scale(1.03);
  }

  100% {
    opacity: 0.4;
    transform: scale(0.98);
  }
}

.badge {
  border-radius: 999px;
  padding: 0.2rem 0.6rem;
  font-size: 0.72rem;
  background: rgba(255, 106, 0, 0.22);
  color: #ffcd9f;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.catalog-status {
  margin: 1rem 0 0;
  color: var(--text-soft);
  min-height: 1.3rem;
}

.catalog-status.error {
  color: #ff9696;
}

.table-wrap {
  overflow-x: auto;
  margin-top: 1rem;
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 700px;
}

th,
td {
  border: 1px solid rgba(255, 255, 255, 0.13);
  text-align: left;
  padding: 0.72rem;
}

th {
  background: rgba(255, 255, 255, 0.07);
  font-size: 0.9rem;
}

td {
  color: var(--text-soft);
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.about-card {
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.11);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.02));
  padding: 1.1rem;
  box-shadow: var(--shadow-soft);
  transition: transform 160ms ease, border-color 160ms ease;
}

.about-card:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 164, 89, 0.35);
}

.about-card p {
  margin: 0.6rem 0 0;
  color: var(--text-soft);
}

.history-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
  align-items: start;
}

.timeline {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.7rem;
}

.timeline li {
  border-left: 3px solid rgba(255, 106, 0, 0.55);
  padding: 0.3rem 0 0.3rem 0.75rem;
  color: var(--text-soft);
}

.quality-grid {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
}

.quality-grid article {
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 12px;
  padding: 0.95rem;
  background: rgba(255, 255, 255, 0.03);
  box-shadow: var(--shadow-soft);
  transition: transform 160ms ease, border-color 160ms ease;
}

.quality-grid article:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 164, 89, 0.35);
}

.quality-grid p {
  margin: 0.55rem 0 0;
  color: var(--text-soft);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 1rem;
}

.contact-info,
.contact-form {
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.11);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.02));
  padding: 1.2rem;
  box-shadow: var(--shadow-soft);
}

.contact-info p {
  margin: 0.52rem 0;
  color: var(--text-soft);
}

.contact-info {
  display: grid;
  align-content: start;
  gap: 0.35rem;
}

.contact-info .whatsapp-selector {
  margin: 0;
}

.contact-info .contact-whatsapp-actions {
  margin-top: 0.55rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  background: linear-gradient(160deg, rgba(7, 11, 17, 0.84), rgba(8, 13, 21, 0.66));
  padding: 0.78rem;
  display: grid;
  gap: 0.62rem;
}

.contact-info .contact-whatsapp-actions .btn {
  width: 100%;
  min-height: 44px;
}

.contact-info .contact-whatsapp-actions .whatsapp-selector label {
  color: #ffce9e;
}

.contact-info .contact-whatsapp-actions .whatsapp-selector select {
  border-color: rgba(255, 164, 88, 0.6);
  background: rgba(4, 9, 16, 0.92);
}

.contact-form {
  display: grid;
  gap: 0.5rem;
}

.contact-form h2 {
  margin-bottom: 0.35rem;
}

.contact-form label {
  font-weight: 600;
  font-size: 0.92rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(4, 7, 12, 0.62);
  color: var(--text);
  border-radius: 10px;
  padding: 0.72rem 0.75rem;
  font: inherit;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: 0;
  border-color: rgba(255, 106, 0, 0.9);
  box-shadow: 0 0 0 3px rgba(255, 106, 0, 0.2);
}

[aria-invalid=\"true\"] {
  border-color: var(--danger) !important;
}

.form-feedback {
  min-height: 1.2rem;
  margin: 0.45rem 0 0;
  color: #7ef0da;
  font-weight: 600;
}

.form-feedback.error {
  color: #ff9696;
}

.admin-shell {
  display: grid;
  gap: 1rem;
}

.admin-panel {
  display: grid;
  gap: 1rem;
}

.admin-grid {
  display: grid;
  grid-template-columns: 0.94fr 1.06fr;
  gap: 1rem;
}

.admin-card {
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.11);
  background: rgba(255, 255, 255, 0.03);
  padding: 1.2rem;
}

.admin-card h2 {
  font-size: 2rem;
}

.admin-toolbar {
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
  padding: 0.9rem 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.8rem;
}

.admin-toolbar p {
  margin: 0;
  color: var(--text-soft);
}

.admin-toolbar-note {
  display: block;
  margin-top: 0.2rem;
  color: #9bb2cc;
  font-size: 0.83rem;
}

.admin-toolbar-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.admin-main-tabs {
  display: flex;
  gap: 0.55rem;
  flex-wrap: wrap;
}

.admin-workspace {
  display: grid;
  gap: 1rem;
}

.admin-form {
  display: grid;
  gap: 0.55rem;
}

.admin-form label {
  font-weight: 600;
  font-size: 0.92rem;
}

.admin-form input,
.admin-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(4, 7, 12, 0.62);
  color: var(--text);
  border-radius: 10px;
  padding: 0.72rem 0.75rem;
  font: inherit;
}

.admin-form textarea {
  resize: vertical;
}

.admin-form input:focus,
.admin-form textarea:focus {
  outline: 0;
  border-color: rgba(255, 106, 0, 0.9);
  box-shadow: 0 0 0 3px rgba(255, 106, 0, 0.2);
}

.admin-hint {
  margin: -0.2rem 0 0.35rem;
  color: #95a9c3;
  font-size: 0.85rem;
}

.admin-image-preview {
  position: relative;
  overflow: hidden;
  border: 1px dashed rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  min-height: 92px;
  padding: 0.65rem;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 12% 10%, rgba(255, 142, 61, 0.15), transparent 40%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.015));
}

.admin-image-preview::before {
  content: "";
  position: absolute;
  inset: auto -18% -65% -18%;
  height: 120px;
  background: radial-gradient(circle at center, rgba(22, 194, 163, 0.14), rgba(22, 194, 163, 0) 70%);
  pointer-events: none;
}

.admin-image-preview > * {
  position: relative;
  z-index: 1;
}

.admin-image-preview img {
  width: 100%;
  max-height: 200px;
  object-fit: cover;
  border-radius: 8px;
}

.admin-image-preview p {
  margin: 0;
  color: #9eb0c8;
  font-size: 0.87rem;
}

.admin-checkbox {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin-top: 0.4rem;
}

.admin-checkbox input {
  width: auto;
  margin: 0;
}

.admin-form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 0.45rem;
}

.admin-list-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.admin-content-card {
  background:
    radial-gradient(circle at 100% -10%, rgba(255, 106, 0, 0.16), transparent 40%),
    rgba(255, 255, 255, 0.03);
}

.admin-content-form {
  gap: 0.9rem;
}

.admin-content-fields {
  display: grid;
  gap: 0.75rem;
}

.admin-content-group {
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.02);
  overflow: hidden;
}

.admin-content-group > summary {
  list-style: none;
  cursor: pointer;
  padding: 0.82rem 0.9rem;
  font-weight: 700;
  font-size: 0.95rem;
  background: rgba(255, 255, 255, 0.03);
  border-bottom: 1px solid transparent;
}

.admin-content-group[open] > summary {
  border-bottom-color: rgba(255, 255, 255, 0.08);
}

.admin-content-group > summary::-webkit-details-marker {
  display: none;
}

.admin-content-group-body {
  padding: 0.82rem;
  display: grid;
  gap: 0.75rem;
}

.admin-content-group-description {
  margin: 0;
  color: #9eb0c8;
  font-size: 0.88rem;
}

.admin-content-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.72rem;
}

.admin-field {
  display: grid;
  gap: 0.32rem;
}

.admin-field label {
  font-size: 0.88rem;
  font-weight: 600;
}

.admin-field-hint {
  color: #93a8c2;
  font-size: 0.77rem;
  margin: -0.1rem 0 0;
}

.admin-view-tabs {
  margin-top: 0.8rem;
  display: flex;
  gap: 0.5rem;
}

.admin-list-toolbar {
  margin-top: 0.8rem;
  display: grid;
  grid-template-columns: 1.2fr repeat(3, minmax(0, 1fr));
  gap: 0.6rem;
}

.admin-list-toolbar input,
.admin-list-toolbar select,
.admin-bulk-bar select {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(4, 7, 12, 0.62);
  color: var(--text);
  border-radius: 10px;
  padding: 0.62rem 0.72rem;
  font: inherit;
}

.admin-list-toolbar input:focus,
.admin-list-toolbar select:focus,
.admin-bulk-bar select:focus {
  outline: 0;
  border-color: rgba(255, 106, 0, 0.9);
  box-shadow: 0 0 0 3px rgba(255, 106, 0, 0.2);
}

.admin-bulk-bar {
  margin-top: 0.65rem;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 10px;
  padding: 0.6rem;
  display: grid;
  grid-template-columns: auto 1fr minmax(190px, 0.9fr) auto;
  align-items: center;
  gap: 0.6rem;
  background: rgba(255, 255, 255, 0.02);
}

.admin-bulk-bar p {
  margin: 0;
  color: var(--text-soft);
  font-size: 0.9rem;
}

.admin-select-all {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-soft);
  font-size: 0.9rem;
}

.admin-products {
  margin-top: 1rem;
  display: grid;
  gap: 0.75rem;
}

.admin-product {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
  padding: 0.8rem;
  display: grid;
  grid-template-columns: 30px 130px 1fr auto;
  gap: 0.75rem;
  align-items: start;
}

.admin-product-selector {
  display: grid;
  place-items: center;
  margin-top: 0.2rem;
}

.admin-product-selector input {
  width: 17px;
  height: 17px;
  margin: 0;
}

.admin-product-media {
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  min-height: 92px;
  display: grid;
  place-items: center;
  color: #a9b9cd;
  font-size: 0.88rem;
}

.admin-product-media img {
  width: 100%;
  height: 100%;
  min-height: 92px;
  border-radius: 10px;
  object-fit: cover;
}

.admin-product-content h3 {
  margin: 0;
}

.admin-product-content p {
  margin: 0.45rem 0 0;
  color: var(--text-soft);
}

.admin-product-meta {
  color: #9ec6ff !important;
  font-size: 0.88rem;
}

.admin-product-actions {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.admin-product-actions .btn {
  min-width: 110px;
}

.admin-chips {
  margin-top: 0.5rem;
  display: flex;
  gap: 0.45rem;
  flex-wrap: wrap;
}

.admin-chip {
  border-radius: 999px;
  padding: 0.2rem 0.6rem;
  font-size: 0.74rem;
  background: rgba(255, 255, 255, 0.12);
}

.admin-chip-featured {
  background: rgba(255, 106, 0, 0.2);
  color: #ffd4ad;
}

.admin-chip-trash {
  background: rgba(255, 91, 91, 0.2);
  color: #ffc5c5;
}

.site-footer {
  position: relative;
  overflow: hidden;
  margin-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  background:
    radial-gradient(circle at 12% -22%, rgba(255, 106, 0, 0.24), transparent 36%),
    radial-gradient(circle at 82% -26%, rgba(22, 194, 163, 0.2), transparent 38%),
    linear-gradient(180deg, rgba(9, 13, 20, 0.98), rgba(7, 11, 17, 0.98));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(255, 106, 0, 0.08), transparent 34%, rgba(22, 194, 163, 0.08) 78%),
    repeating-linear-gradient(
      0deg,
      rgba(255, 255, 255, 0.012) 0,
      rgba(255, 255, 255, 0.012) 1px,
      transparent 1px,
      transparent 30px
    );
  pointer-events: none;
}

.site-footer::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 171, 106, 0.78), transparent);
  pointer-events: none;
}

.footer-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.15rem;
  padding: 1.9rem 0 1.6rem;
}

.footer-grid > div {
  position: relative;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background:
    linear-gradient(165deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02) 42%, rgba(255, 255, 255, 0.01)),
    rgba(10, 15, 23, 0.8);
  box-shadow:
    0 16px 30px rgba(0, 0, 0, 0.24),
    inset 0 0 0 1px rgba(255, 255, 255, 0.03);
  padding: 0.95rem 1rem;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.footer-grid > div::before {
  content: "";
  position: absolute;
  left: 1rem;
  top: 0.72rem;
  width: 44px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255, 172, 108, 0.95), rgba(255, 172, 108, 0.12));
}

.footer-grid > div:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 188, 130, 0.48);
  box-shadow:
    0 20px 34px rgba(0, 0, 0, 0.28),
    inset 0 0 0 1px rgba(255, 255, 255, 0.06);
}

.footer-grid h3,
.footer-grid h4 {
  margin: 0;
  color: #f9fbff;
  letter-spacing: 0.01em;
}

.footer-grid h3 {
  font-size: 1.22rem;
}

.footer-grid h4 {
  font-size: 1.04rem;
}

.footer-grid p {
  color: var(--text-soft);
  margin: 0.48rem 0 0;
  line-height: 1.45;
}

.footer-social-link {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.56rem;
  width: 100%;
  max-width: 100%;
  margin-top: 0.72rem;
  padding: 0.58rem 0.86rem 0.58rem 0.66rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.035);
  color: #d7e2f1;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.91rem;
  line-height: 1.22;
  overflow-wrap: anywhere;
  word-break: break-word;
  letter-spacing: 0.02em;
  box-shadow:
    0 10px 18px rgba(0, 0, 0, 0.2),
    inset 0 0 0 1px rgba(255, 255, 255, 0.06);
  transition:
    transform 170ms ease,
    box-shadow 170ms ease,
    border-color 170ms ease,
    background-color 170ms ease,
    color 170ms ease;
}

.footer-social-link::before {
  content: "";
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 26px;
  height: 26px;
  border-radius: 999px;
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23d7e2f1' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='2' y='2' width='20' height='20' rx='5' ry='5'/%3E%3Cpath d='M16 11.37a4 4 0 1 1-4.63-4.63 4 4 0 0 1 4.63 4.63z'/%3E%3Cline x1='17.5' y1='6.5' x2='17.51' y2='6.5'/%3E%3C/svg%3E")
      center / 13px 13px no-repeat,
    linear-gradient(135deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.04));
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.14);
}

.footer-social-link::after {
  content: ">";
  margin-left: auto;
  color: rgba(199, 213, 230, 0.78);
  font-weight: 700;
  font-size: 0.92rem;
  line-height: 1;
  transform: translateY(-1px);
  opacity: 0.92;
}

.footer-social-link:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.055);
  color: #f3f8ff;
  box-shadow:
    0 14px 24px rgba(0, 0, 0, 0.24),
    inset 0 0 0 1px rgba(255, 255, 255, 0.09);
}

.footer-social-link:focus-visible {
  outline: 2px solid rgba(179, 198, 223, 0.9);
  outline-offset: 2px;
}

.footer-copy {
  position: relative;
  z-index: 1;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  text-align: center;
  padding: 0.88rem 1rem;
  color: #9fb0c8;
  font-size: 0.9rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0));
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 540ms ease, transform 540ms ease;
}

.reveal.show {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1024px) {
  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-grid,
  .history-grid,
  .contact-grid,
  .process-grid,
  .admin-grid {
    grid-template-columns: 1fr;
  }

  .process-grid > .reveal {
    max-width: 100%;
  }

  .about-grid,
  .catalog-grid,
  .features-grid,
  .instagram-media-grid,
  .quality-grid,
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .instagram-media-card-featured {
    grid-column: span 2;
  }

  .admin-list-toolbar {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .admin-bulk-bar {
    grid-template-columns: 1fr 1fr;
  }

  .admin-content-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .menu-toggle {
    display: inline-block;
  }

  .site-nav {
    position: absolute;
    top: 74px;
    right: 1rem;
    left: 1rem;
    background: rgba(12, 17, 25, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 0.8rem;
    display: grid;
    gap: 0.65rem;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .site-nav.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav .btn-small {
    width: 100%;
  }

  .hero-stats {
    grid-template-columns: 1fr;
  }

  .about-grid,
  .catalog-grid,
  .features-grid,
  .instagram-media-grid,
  .product-grid,
  .quality-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid > div {
    padding: 0.85rem 0.9rem;
  }

  .instagram-media-card-featured {
    grid-column: span 1;
  }

  .cta-box {
    flex-direction: column;
    align-items: flex-start;
  }

  .section-home-cta .cta-actions-home {
    width: 100%;
    grid-template-columns: 1fr;
    grid-template-areas:
      "quote"
      "whatsapp"
      "selector";
  }

  .section-home-cta .cta-actions-home > .btn,
  .section-home-cta .cta-actions-home > .btn-ghost {
    width: 100%;
  }

  .section-about-cta .cta-actions-about {
    width: 100%;
    min-width: 0;
    flex-basis: 100%;
  }

  .process-list li {
    padding: 0.95rem 0.95rem 0.95rem 3.45rem;
  }

  .process-list::before {
    left: 1.06rem;
    top: 0.9rem;
    bottom: 0.9rem;
  }

  .admin-list-toolbar,
  .admin-bulk-bar {
    grid-template-columns: 1fr;
  }

  .admin-product {
    grid-template-columns: 1fr;
  }

  .admin-product-selector {
    justify-content: flex-start;
    margin-top: 0;
  }

  .admin-product-actions {
    flex-direction: row;
  }

  .admin-main-tabs,
  .admin-toolbar-actions {
    width: 100%;
  }

  .admin-toolbar-actions .btn {
    flex: 1 1 auto;
  }

  .page-bg::after {
    inset: 12% 4%;
    background-size: 94vw;
    opacity: 0.08;
  }

  h1 {
    font-size: clamp(2rem, 11vw, 3rem);
  }

  .products-support-actions {
    width: 100%;
    grid-template-columns: 1fr;
    grid-template-areas:
      "selector"
      "quote"
      "whatsapp";
    align-items: stretch;
  }

  .products-support-actions > .whatsapp-selector {
    width: 100%;
    min-width: 0;
  }

  .products-support-actions > .btn,
  .products-support-actions > .btn-ghost {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition: none !important;
    animation: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

