.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--gold);
  padding: 0.4rem 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--surface);
  backdrop-filter: blur(12px);
  margin-bottom: 2rem;
}

.hero-badge .dot {
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
}

.hero-title {
  font-size: clamp(2rem, 5vw, 3rem);
  max-width: 800px;
  margin-bottom: 1.5rem;
  line-height: 1.08;
}

.hero-lead {
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  color: var(--text-secondary);
  max-width: 540px;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

.hero-form {
  display: flex;
  gap: 0;
  max-width: 480px;
  margin-bottom: 1rem;
}

.hero-form input[type="email"] {
  flex: 1;
  padding: 0.85rem 1.25rem;
  background: var(--surface);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  border-right: none;
  border-radius: var(--radius-sm) 0 0 var(--radius-sm);
  font-size: 0.95rem;
  color: var(--cream);
  transition: border-color var(--duration-normal) var(--ease-smooth);
}

.hero-form input[type="email"]:focus {
  border-color: var(--gold);
}

.hero-form input[type="email"]::placeholder {
  color: var(--text-muted);
}

.hero-form button {
  padding: 0.85rem 1.75rem;
  background: var(--gold);
  color: var(--bg-deep);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  transition: background var(--duration-normal) var(--ease-smooth),
              transform var(--duration-fast) var(--ease-spring);
  white-space: nowrap;
}

.hero-form button:hover {
  background: var(--gold-light);
}

.hero-form button:active {
  transform: scale(0.97);
}

.hero-meta {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 3rem;
}

.hero-stats {
  display: flex;
  gap: clamp(1.5rem, 4vw, 3rem);
  flex-wrap: wrap;
}

.stat {
  display: flex;
  flex-direction: column;
  position: relative;
}

.stat::after {
  content: '';
  position: absolute;
  right: calc(clamp(1.5rem, 4vw, 3rem) / -2);
  top: 15%;
  height: 70%;
  width: 1px;
  background: var(--border);
}

.stat:last-child::after {
  display: none;
}

.stat-value {
  font-family: var(--font-display);
  font-size: clamp(1rem, 1.8vw, 2rem);
  color: var(--gold);
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}

.stat-label {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--text-muted);
  margin-top: 0.25rem;
}

.scroll-hint {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  margin-top: 3rem;
  color: var(--text-muted);
  font-family: var(--font-mono);
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
}

.scroll-hint .scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
}

.topic-carousel {
  position: relative;
  overflow: hidden;
}

.topic-track {
  display: flex;
  gap: 1.5rem;
  transition: transform 0.6s var(--ease-out-expo);
  cursor: grab;
}

.topic-track:active {
  cursor: grabbing;
}

.topic-card {
  flex: 0 0 calc(25% - 1.125rem);
  min-width: 250px;
  padding: 2rem 1.5rem;
  background: var(--surface);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  transition: transform var(--duration-slow) var(--ease-out-expo),
              border-color var(--duration-normal) var(--ease-smooth),
              box-shadow var(--duration-slow) var(--ease-out-expo);
  perspective: 600px;
  position: relative;
  overflow: hidden;
}

.topic-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--mx, 50%) var(--my, 50%), var(--gold-dim), transparent 60%);
  opacity: 0;
  transition: opacity var(--duration-slow);
  pointer-events: none;
}

.topic-card:hover::before {
  opacity: 1;
}

.topic-card:hover {
  border-color: var(--border-hover);
  box-shadow: var(--shadow-glow);
}

.topic-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: rgba(201, 169, 97, 0.05);
  color: var(--gold);
  transition: background var(--duration-normal), border-color var(--duration-normal);
}

.topic-card:hover .topic-icon {
  background: var(--gold-dim);
  border-color: var(--border-hover);
}

.topic-icon svg {
  width: 24px;
  height: 24px;
}

.topic-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  margin-bottom: 0.75rem;
}

.topic-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.carousel-controls {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

.carousel-btn {
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  background: var(--surface);
  transition: all var(--duration-normal) var(--ease-smooth);
}

.carousel-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: var(--gold-dim);
}

.carousel-btn:active {
  transform: scale(0.95);
}

.split-visual {
  aspect-ratio: 4/3;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  overflow: hidden;
  position: relative;
}

.issue-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.issue-item {
  display: grid;
  grid-template-columns: 80px 100px 1fr auto;
  gap: 1.5rem;
  align-items: baseline;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--border);
  transition: background var(--duration-normal), padding-left var(--duration-normal) var(--ease-out-expo);
}

.issue-item:hover {
  background: rgba(201, 169, 97, 0.03);
  padding-left: 0.75rem;
}

.issue-number {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--gold);
  letter-spacing: 0.1em;
}

.issue-date {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}

.issue-content h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  margin-bottom: 0.35rem;
  transition: color var(--duration-normal);
}

.issue-item:hover .issue-content h3 {
  color: var(--gold-light);
}

.issue-content p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.issue-tag {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gold);
  padding: 0.25rem 0.75rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  white-space: nowrap;
  align-self: center;
  transition: background var(--duration-normal), border-color var(--duration-normal);
}

.issue-item:hover .issue-tag {
  background: var(--gold-dim);
  border-color: var(--border-hover);
}

.service-card {
  padding: 2.5rem 2rem;
  background: var(--surface);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  transition: transform var(--duration-slow) var(--ease-out-expo),
              border-color var(--duration-normal),
              box-shadow var(--duration-slow);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--mx, 50%) var(--my, 50%), var(--gold-dim), transparent 60%);
  opacity: 0;
  transition: opacity var(--duration-slow);
  pointer-events: none;
}

.service-card:hover::before {
  opacity: 1;
}

.service-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform: scaleX(0);
  transition: transform 0.6s var(--ease-out-expo);
}

.service-card:hover {
  border-color: var(--border-hover);
  box-shadow: var(--shadow-glow-lg);
}

.service-card:hover::after {
  transform: scaleX(1);
}

.service-card .service-icon {
  width: 56px;
  height: 56px;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  border-radius: 50%;
  background: rgba(201, 169, 97, 0.05);
  color: var(--gold);
  transition: all var(--duration-slow) var(--ease-out-expo);
}

.service-card:hover .service-icon {
  background: var(--gold-dim);
  border-color: var(--gold);
  transform: scale(1.08);
}

.service-icon svg {
  width: 24px;
  height: 24px;
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.service-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.parallax-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 1.5rem;
}

.parallax-item {
  position: relative;
  height: 320px;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: border-color var(--duration-normal);
}

.parallax-item:hover {
  border-color: var(--border-hover);
}

.parallax-item:first-child {
  grid-row: 1 / 3;
}

.parallax-img {
  position: absolute;
  inset: -20%;
  width: 140%;
  height: 140%;
  background-size: cover;
  background-position: center;
  will-change: transform;
}

.parallax-item .parallax-label {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--cream);
  background: rgba(10, 8, 5, 0.7);
  backdrop-filter: blur(8px);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-sm);
  z-index: 2;
  transition: transform var(--duration-normal) var(--ease-out-expo);
}

.parallax-item:hover .parallax-label {
  transform: translateY(-4px);
}

.testimonial-card {
  padding: 2.5rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  backdrop-filter: blur(12px);
  margin-top: 2rem;
  transition: border-color var(--duration-normal), box-shadow var(--duration-slow);
}

.testimonial-card:hover {
  border-color: var(--border-hover);
  box-shadow: var(--shadow-glow);
}

.testimonial-card blockquote {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  font-style: italic;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  color: var(--cream);
}

.testimonial-author {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gold);
}

.location-map {
  aspect-ratio: 1;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.location-map iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: grayscale(0.8) brightness(0.6) sepia(0.3);
}

.location-circles {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  justify-content: center;
}

.location-circle {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.25rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--surface);
  backdrop-filter: blur(12px);
  transition: all var(--duration-slow) var(--ease-out-expo);
  cursor: default;
}

.location-circle:hover {
  border-color: var(--primary);
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 18px 42px rgba(31, 147, 255, 0.28);
  background: rgba(31, 147, 255, 0.06);
}

.location-circle .circle-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 1px solid var(--gold-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: rgba(201, 169, 97, 0.05);
  transition: all var(--duration-slow) var(--ease-out-expo);
  color: var(--gold);
}

.location-circle:hover .circle-icon {
  background: var(--gold-dim);
  border-color: var(--gold);
  transform: rotate(-10deg) scale(1.14);
  animation: circleIconPop 0.6s ease;
}

@keyframes circleIconPop {
  0% { transform: rotate(0) scale(1); }
  45% { transform: rotate(-14deg) scale(1.22); }
  100% { transform: rotate(-10deg) scale(1.14); }
}

.circle-icon svg {
  width: 22px;
  height: 22px;
}

.location-circle h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.location-circle p {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 0;
  padding-left: 1rem;
  text-align: left;
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--cream);
  transition: color var(--duration-normal);
  min-height: 44px;
}

.faq-question:hover {
  color: var(--gold);
}

.faq-icon {
  font-size: 1.25rem;
  color: var(--gold);
  transition: transform var(--duration-slow) var(--ease-out-expo);
  flex-shrink: 0;
  margin-left: 1rem;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s var(--ease-out-expo);
}

.faq-answer-inner {
  padding: 0 0 1.5rem 1rem;
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

.toast {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.75rem;
  background: var(--surface-solid);
  border: 1px solid var(--gold);
  border-radius: var(--radius-md);
  backdrop-filter: blur(20px);
  font-size: 0.9rem;
  color: var(--gold);
  z-index: 10000;
  transform: translateY(120%) scale(0.95);
  opacity: 0;
  transition: all 0.5s var(--ease-out-expo);
  pointer-events: none;
}

.toast.visible {
  transform: translateY(0) scale(1);
  opacity: 1;
}

.toast-icon {
  display: flex;
  flex-shrink: 0;
}

.cta-form {
  display: flex;
  gap: 0;
  max-width: 420px;
}

.cta-form input[type="email"] {
  flex: 1;
  padding: 0.75rem 1rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-right: none;
  border-radius: var(--radius-sm) 0 0 var(--radius-sm);
  font-size: 0.9rem;
  color: var(--cream);
  transition: border-color var(--duration-normal);
}

.cta-form input[type="email"]:focus {
  border-color: var(--gold);
}

.cta-form input[type="email"]::placeholder {
  color: var(--text-muted);
}

.cta-form button {
  padding: 0.75rem 1.5rem;
  background: var(--gold);
  color: var(--bg-deep);
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  transition: background var(--duration-normal),
              transform var(--duration-fast) var(--ease-spring);
  white-space: nowrap;
}

.cta-form button:hover {
  background: var(--gold-light);
}

.cta-form button:active {
  transform: scale(0.97);
}

/* .section-divider {
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
  margin: 1.5rem 0;
} */

/* ===== NAV DROPDOWN ===== */
.nav-dropdown {
  position: absolute;
  top: calc(var(--nav-height) - 8px);
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  min-width: 320px;
  background: var(--surface-solid);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid var(--border-hover);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card), var(--shadow-glow);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity var(--duration-normal) var(--ease-out-expo),
              transform var(--duration-normal) var(--ease-out-expo),
              visibility var(--duration-normal);
  z-index: var(--z-dropdown);
}

.nav-dropdown::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--grad-brand);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.nav-item.open .nav-dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.dropdown-inner {
  padding: 1.5rem;
}

.dropdown-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 120px;
  color: var(--text-muted);
  font-family: var(--font-display);
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  border: 1px dashed var(--border);
  border-radius: var(--radius-md);
  text-align: center;
  padding: 1rem;
}

/* ===== MEGA MENU (Productos) ===== */
.mega-dropdown {
  position: fixed;
  top: var(--nav-height);
  left: 0;
  right: 0;
  width: 100%;
  min-width: 0;
  border-radius: 0;
  border-left: none;
  border-right: none;
  border-top: 1px solid var(--border-hover);
  transform: translateY(12px);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.55);
}

.nav-item.open .mega-dropdown {
  transform: translateY(0);
}

.mega-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2.5rem) 2rem;
}

.mega-tabs {
  display: flex;
  gap: 0.25rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
}

.mega-tab {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.7rem;
  padding: 1rem 0.4rem 1.25rem;
  border-radius: var(--radius-md);
  color: var(--text-secondary);
  position: relative;
  transition: color var(--duration-normal) var(--ease-smooth);
}

.mega-tab-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  font-size: 1.55rem;
  color: var(--primary);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  transition: transform var(--duration-normal) var(--ease-spring),
              background var(--duration-normal),
              border-color var(--duration-normal),
              box-shadow var(--duration-normal),
              color var(--duration-normal);
}

.mega-tab-label {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-align: center;
  line-height: 1.2;
}

.mega-tab:hover,
.mega-tab.active {
  color: var(--text);
}

.mega-tab:hover .mega-tab-icon,
.mega-tab.active .mega-tab-icon {
  transform: translateY(-5px) scale(1.06);
  background: var(--primary-dim);
  border-color: var(--primary);
  color: var(--primary-light);
  box-shadow: var(--shadow-glow);
}

.mega-tab.active::after {
  content: '';
  position: absolute;
  left: 20%;
  right: 20%;
  bottom: -1px;
  height: 2px;
  background: var(--grad-brand);
  border-radius: 2px;
}

.mega-panels {
  padding-top: 1.75rem;
  min-height: 220px;
}

.mega-panel {
  display: none;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 2rem;
}

.mega-panel.active {
  display: grid;
  animation: megaFade 0.35s var(--ease-out-expo);
}

.mega-col h5 {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--text-muted);
  margin-bottom: 1rem;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid var(--border);
}

.mega-col a {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.55rem 0;
  font-size: 0.92rem;
  color: var(--text-secondary);
  transition: color var(--duration-normal), transform var(--duration-normal) var(--ease-out-expo);
}

.mega-col a i {
  width: 22px;
  text-align: center;
  font-size: 0.95rem;
  color: var(--primary);
  transition: color var(--duration-normal);
}

.mega-col a:hover {
  color: var(--text);
  transform: translateX(5px);
}

.mega-col a:hover i {
  color: var(--accent);
}

.mega-note {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  align-self: start;
  padding: 1.5rem;
  background: var(--grad-brand-soft);
  border: 1px solid var(--border-hover);
  border-radius: var(--radius-md);
}

.mega-note p {
  display: flex;
  gap: 0.6rem;
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.55;
}

.mega-note p i {
  color: var(--primary);
  margin-top: 0.2rem;
  flex-shrink: 0;
}

.mega-wa-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  align-self: flex-start;
  padding: 0.7rem 1.3rem;
  background: #25d366;
  color: #062012;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  border-radius: var(--radius-md);
  transition: transform var(--duration-fast) var(--ease-spring),
              box-shadow var(--duration-normal);
}

.mega-wa-btn i {
  font-size: 1.15rem;
}

.mega-wa-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35);
}

/* ===== SERVICES DROPDOWN ===== */
.services-dropdown {
  min-width: 420px;
}

.services-list {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.service-link {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.85rem 0.9rem;
  border-radius: var(--radius-md);
  transition: background var(--duration-normal) var(--ease-smooth);
}

.service-link:hover {
  background: var(--surface-hover);
}

.service-link-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  flex-shrink: 0;
  font-size: 1.15rem;
  color: var(--primary);
  background: var(--primary-dim);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  transition: background var(--duration-normal), color var(--duration-normal),
              border-color var(--duration-normal), transform var(--duration-normal) var(--ease-spring);
}

.service-link:hover .service-link-icon {
  background: var(--grad-brand);
  color: #fff;
  border-color: transparent;
  transform: scale(1.06);
}

.service-link.is-wa .service-link-icon {
  color: #25d366;
  background: rgba(37, 211, 102, 0.14);
  border-color: rgba(37, 211, 102, 0.3);
}

.service-link.is-wa:hover .service-link-icon {
  background: #25d366;
  color: #062012;
}

.service-link-text {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  flex: 1;
  min-width: 0;
}

.service-link-text strong {
  font-family: var(--font-display);
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--text);
  letter-spacing: 0.01em;
}

.service-link-text small {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.35;
}

.service-link-arrow {
  font-size: 0.75rem;
  color: var(--text-muted);
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity var(--duration-normal), transform var(--duration-normal) var(--ease-out-expo),
              color var(--duration-normal);
}

.service-link:hover .service-link-arrow {
  opacity: 1;
  transform: translateX(0);
  color: var(--accent);
}

.service-link.is-wa:hover .service-link-arrow {
  color: #25d366;
}

/* ===== SCROLLING SLIDESHOW ===== */
.scroll-slideshow {
  position: relative;
  height: 320vh;
  background: transparent;
}

.ss-viewport {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.ss-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(ellipse at 72% 38%, rgba(255, 140, 26, 0.2), transparent 46%),
    radial-gradient(ellipse at 28% 72%, rgba(31, 147, 255, 0.2), transparent 52%),
    linear-gradient(160deg, #0c1f3d 0%, #060d1c 100%);
}

.ss-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(233, 238, 246, 0.07) 1px, transparent 1px);
  background-size: 42px 42px;
  opacity: 0.6;
}

.ss-slides {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
}

.ss-slide {
  position: absolute;
  inset: 0;
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: clamp(2rem, 5vw, 4rem);
  padding: calc(var(--nav-height) + 1.5rem) clamp(1rem, 4vw, 2.5rem) 3rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.6s var(--ease-smooth);
}

.ss-slide.is-active {
  opacity: 1;
  pointer-events: auto;
}

.ss-slide--reverse .ss-text { order: 2; }
.ss-slide--reverse .ss-media { order: 1; }

.ss-text,
.ss-media {
  opacity: 0;
  transition: opacity 0.7s var(--ease-out-expo), transform 0.7s var(--ease-out-expo);
}

.ss-text { transform: translateY(40px); }
.ss-media { transform: translateX(60px) scale(0.96); }
.ss-slide--reverse .ss-media { transform: translateX(-60px) scale(0.96); }

.ss-slide.is-active .ss-text,
.ss-slide.is-active .ss-media {
  opacity: 1;
  transform: none;
  transition-delay: 0.15s;
}

.ss-title {
  font-size: clamp(2.2rem, 5vw, 4rem);
  text-transform: uppercase;
  line-height: 1.05;
  margin-bottom: 1.25rem;
}

.ss-desc {
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  color: var(--text-secondary);
  max-width: 460px;
  line-height: 1.7;
}

.ss-media {
  position: relative;
  height: 60vh;
  max-height: 520px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-hover);
  background: var(--grad-brand-soft);
  box-shadow: var(--shadow-glow-lg);
}

.ss-media::after {
  content: '\f03e';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: var(--primary);
  opacity: 0.35;
}

.ss-media img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out-expo);
}

.ss-media:hover img {
  transform: scale(1.08);
}

.ss-media img.img-fallback {
  opacity: 0;
}

.ss-dots {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.6rem;
  z-index: 3;
}

.ss-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(233, 238, 246, 0.25);
  transition: all var(--duration-normal) var(--ease-out-expo);
}

.ss-dot.is-active {
  width: 28px;
  border-radius: 6px;
  background: var(--grad-brand);
}

@media (max-width: 900px) {
  .ss-slide {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 1.5rem;
    align-content: center;
  }

  .ss-slide--reverse .ss-text { order: 2; }
  .ss-slide--reverse .ss-media { order: 1; }

  .ss-text { order: 2; }
  .ss-media { order: 1; height: 38vh; }

  .ss-desc { margin-left: auto; margin-right: auto; }
}

/* ===== FEATURED / CARRUSEL 3D COVERFLOW ===== */
.featured-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.featured-head .section-title {
  margin-bottom: 0;
}

.featured-tabs {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.ftab {
  padding: 0.5rem 1.1rem;
  border: 1px solid var(--border-hover);
  border-radius: 999px;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--text-secondary);
  transition: all var(--duration-normal) var(--ease-smooth);
}

.ftab:hover {
  color: var(--text);
  border-color: var(--primary);
}

.ftab.is-active {
  background: var(--grad-brand);
  border-color: transparent;
  color: #fff;
}

.featured-grid {
  display: grid;
  grid-template-columns: 250px 1fr 250px;
  gap: 1.5rem;
  align-items: stretch;
}

/* Paneles laterales */
.side-panel {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1.25rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(12px);
}

.side-title {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-secondary);
  margin-bottom: 0.25rem;
}

.side-title i { color: var(--accent); }

.side-item {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  padding: 0.6rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  transition: border-color var(--duration-normal), transform var(--duration-normal) var(--ease-out-expo), background var(--duration-normal);
}

.side-item:hover {
  border-color: var(--border-hover);
  background: var(--surface-hover);
  transform: translateX(3px);
}

.side-thumb {
  width: 52px;
  height: 52px;
  flex-shrink: 0;
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--bg-elev-2);
  position: relative;
}

.side-thumb img { width: 100%; height: 100%; object-fit: cover; position: relative; z-index: 1; }
.side-thumb img.img-fallback { opacity: 0; }
.side-thumb::after {
  content: '\f03e';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  inset: 0;
  z-index: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  opacity: 0.3;
}

.side-info { display: flex; flex-direction: column; gap: 0.15rem; min-width: 0; }
.side-brand {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
}
.side-name {
  font-size: 0.8rem;
  color: var(--text);
  line-height: 1.25;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.side-price {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--primary-light);
}
.side-price s { font-size: 0.7rem; color: var(--text-muted); font-weight: 400; margin-left: 0.25rem; }

/* Coverflow */
.coverflow {
  position: relative;
  z-index: 1;
  height: 560px;
  perspective: 1800px;
}

.cf-stage {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
}

.cf-card {
  position: absolute;
  top: 0;
  left: 50%;
  width: 366px;
  margin-left: -183px;
  background: #f3f6fb;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.55);
  transition: transform 0.6s var(--ease-out-expo), opacity 0.6s var(--ease-out-expo);
  will-change: transform, opacity;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  opacity: 0;
  pointer-events: none;
}

.cf-card.is-active { pointer-events: auto; }

.cf-media {
  position: relative;
  height: 200px;
  background: #dbe2ec;
  overflow: hidden;
}
.cf-media img { width: 100%; height: 100%; object-fit: cover; position: relative; z-index: 1; }
.cf-media img.img-fallback { opacity: 0; }
.cf-media::after {
  content: '\f03e';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  inset: 0;
  z-index: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: #9fb2c9;
}

.cf-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 2;
  padding: 0.3rem 0.8rem;
  border-radius: 999px;
  background: var(--grad-brand);
  color: #fff;
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.cf-badge--off { background: #e23b3b; }
.cf-badge--new { background: #1f93ff; }

.cf-fav {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 2;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  color: #444;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color var(--duration-normal), transform var(--duration-fast) var(--ease-spring);
}
.cf-fav:hover { color: #e23b3b; transform: scale(1.1); }
.cf-fav.is-fav { color: #e23b3b; }
.cf-fav.is-fav i { font-weight: 900; }

.cf-body { padding: 1.25rem 1.5rem 1.5rem; }
.cf-brand {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--primary-dark);
}
.cf-name {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: #0c1424;
  line-height: 1.2;
  margin: 0.25rem 0 0.4rem;
  min-height: 3em;
}
.cf-model {
  font-size: 0.82rem;
  color: #5a6b80;
  margin-bottom: 0.6rem;
}
.cf-rating {
  font-size: 0.8rem;
  color: #5a6b80;
  margin-bottom: 0.75rem;
}
.cf-rating i { color: #f5a623; }
.cf-rating span { color: #8a99ab; }

.cf-price {
  display: flex;
  align-items: baseline;
  gap: 0.6rem;
  flex-wrap: wrap;
  margin-bottom: 0.5rem;
}
.cf-price-now {
  font-family: var(--font-display);
  font-size: 1.9rem;
  font-weight: 700;
  color: #0a0e16;
}
.cf-price-old { font-size: 0.85rem; color: #98a4b3; text-decoration: line-through; }
.cf-price-off {
  font-size: 0.72rem;
  font-weight: 700;
  color: #fff;
  background: #e23b3b;
  padding: 0.15rem 0.5rem;
  border-radius: 999px;
}

.cf-stock {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  color: #1aa251;
  margin-bottom: 1rem;
}

.cf-actions { display: flex; flex-direction: column; gap: 0.6rem; }

.btn-wa-product {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem;
  border-radius: var(--radius-md);
  background: #25d366;
  color: #042412;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
  transition: transform var(--duration-fast) var(--ease-spring), box-shadow var(--duration-normal);
}
.btn-wa-product:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4); }

.btn-add-cart {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem;
  border-radius: var(--radius-md);
  background: rgba(31, 147, 255, 0.12);
  border: 1px solid rgba(31, 147, 255, 0.4);
  color: var(--primary-dark);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
  transition: background var(--duration-normal), transform var(--duration-fast) var(--ease-spring);
}
.btn-add-cart:hover { background: rgba(31, 147, 255, 0.2); }
.btn-add-cart:active { transform: scale(0.97); }

/* Flechas y dots */
.cf-arrow {
  position: absolute;
  top: 42%;
  z-index: 10;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: #2a3a4f;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35);
  transition: transform var(--duration-fast) var(--ease-spring), background var(--duration-normal);
}
.cf-arrow:hover { transform: scale(1.1); background: #fff; }
.cf-prev { left: 0; }
.cf-next { right: 0; }

.cf-dots {
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
  z-index: 10;
}
.cf-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(233, 238, 246, 0.3);
  cursor: pointer;
  transition: all var(--duration-normal) var(--ease-out-expo);
}
.cf-dot.is-active { width: 26px; border-radius: 6px; background: var(--grad-brand); }

@media (max-width: 1100px) {
  .featured-grid { grid-template-columns: 1fr; }
  .side-panel { flex-direction: row; flex-wrap: wrap; }
  .side-panel .side-title { width: 100%; }
  .side-item { flex: 1 1 260px; }
}

@media (max-width: 560px) {
  .coverflow { height: 580px; }
  .cf-card { width: 280px; margin-left: -140px; }
  .side-item { flex-basis: 100%; }
}

/* ===== AURORA BG (Ubícanos) ===== */
#ubicanos {
  position: relative;
  overflow: hidden;
}

#ubicanos > .container {
  position: relative;
  z-index: 1;
}

.aurora-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  background: linear-gradient(180deg, #05101f 0%, #06182e 55%, #04101e 100%);
}

.aurora {
  position: absolute;
  top: -40%;
  height: 180%;
  width: 36%;
  border-radius: 50%;
  filter: blur(18px);
  opacity: 0.55;
  /* Estático: se rasteriza una sola vez, sin costo por frame (evita el lag al entrar a Ubícanos) */
}

.aurora-1 {
  left: -6%;
  background: linear-gradient(180deg, transparent, #56b0ff 45%, #1f93ff 62%, transparent);
}
.aurora-2 {
  left: 28%;
  background: linear-gradient(180deg, transparent, #1f93ff 40%, #0a6fd6 66%, transparent);
}
.aurora-3 {
  left: 58%;
  background: linear-gradient(180deg, transparent, #56b0ff 45%, #1f93ff 62%, transparent);
}
.aurora-4 {
  left: 80%;
  width: 26%;
  opacity: 0.32;
  background: linear-gradient(180deg, transparent, #ff8c1a 46%, #ff8c1a 60%, transparent);
}

/* ===== SCRIM ===== */
.scrim {
  position: fixed;
  inset: 0;
  background: rgba(3, 6, 13, 0.7);
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--duration-normal) var(--ease-smooth),
              visibility var(--duration-normal);
  z-index: var(--z-overlay);
}

.scrim.visible {
  opacity: 1;
  visibility: visible;
}

/* ===== LOGIN MODAL ===== */
.login-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -48%) scale(0.96);
  width: min(420px, calc(100vw - 2rem));
  background: var(--surface-solid);
  border: 1px solid var(--border-hover);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card), var(--shadow-glow);
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--duration-normal) var(--ease-out-expo),
              transform var(--duration-normal) var(--ease-spring),
              visibility var(--duration-normal);
  z-index: var(--z-modal);
  overflow: hidden;
}

.login-modal::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--grad-brand);
}

.login-modal.open {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, -50%) scale(1);
}

.modal-close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
  color: var(--text-secondary);
  font-size: 1.1rem;
  transition: color var(--duration-normal), background var(--duration-normal);
}

.modal-close:hover {
  color: var(--text);
  background: var(--surface-hover);
}

.login-modal-inner {
  padding: 2.5rem 2rem 2rem;
}

.login-modal-header {
  text-align: center;
  margin-bottom: 1.5rem;
}

.login-brand {
  font-family: var(--font-accent);
  font-size: 1.4rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  background: var(--grad-brand);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.login-brand span {
  -webkit-text-fill-color: var(--text-muted);
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  margin-left: 0.3rem;
}

.login-modal-header p {
  margin-top: 0.75rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.login-modal-body {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding: 2.5rem 1rem;
  border: 1px dashed var(--border);
  border-radius: var(--radius-md);
  text-align: center;
}

.login-modal-body i {
  font-size: 2.25rem;
  color: var(--primary);
}

.login-modal-body p {
  font-size: 0.85rem;
  color: var(--text-muted);
  max-width: 260px;
}

/* ===== CART DRAWER ===== */
.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  height: 100%;
  width: min(400px, 100vw);
  display: flex;
  flex-direction: column;
  background: var(--surface-solid);
  border-left: 1px solid var(--border-hover);
  box-shadow: -8px 0 40px rgba(0, 0, 0, 0.5);
  transform: translateX(100%);
  visibility: hidden;
  transition: transform var(--duration-slow) var(--ease-out-expo),
              visibility var(--duration-slow);
  z-index: var(--z-drawer);
}

.cart-drawer.open {
  transform: translateX(0);
  visibility: visible;
}

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

.cart-header h3 {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.cart-header h3 i {
  color: var(--primary);
}

.cart-close {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
  color: var(--text-secondary);
  font-size: 1.2rem;
  transition: color var(--duration-normal), background var(--duration-normal);
}

.cart-close:hover {
  color: var(--text);
  background: var(--surface-hover);
}

.cart-body {
  flex: 1;
  overflow-y: auto;
  padding: 1.5rem;
}

.cart-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  height: 100%;
  text-align: center;
  color: var(--text-muted);
}

.cart-empty i {
  font-size: 3rem;
  color: var(--primary);
  opacity: 0.7;
}

.cart-empty p {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-secondary);
  letter-spacing: 0.03em;
}

.cart-empty span {
  font-size: 0.8rem;
  max-width: 240px;
}

.cart-footer {
  padding: 1.25rem 1.5rem;
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.btn-whatsapp {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.9rem 1rem;
  background: #25d366;
  color: #062012;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  border-radius: var(--radius-md);
  transition: transform var(--duration-fast) var(--ease-spring),
              box-shadow var(--duration-normal);
}

.btn-whatsapp i {
  font-size: 1.2rem;
}

.btn-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35);
}

.btn-keep-shopping {
  padding: 0.85rem 1rem;
  background: transparent;
  border: 1px solid var(--border-hover);
  color: var(--text-secondary);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  border-radius: var(--radius-md);
  transition: color var(--duration-normal), border-color var(--duration-normal),
              background var(--duration-normal);
}

.btn-keep-shopping:hover {
  color: var(--text);
  border-color: var(--primary);
  background: var(--primary-dim);
}

@media (max-width: 900px) {
  .issue-item {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }

  .issue-tag {
    justify-self: start;
  }

  .parallax-grid {
    grid-template-columns: 1fr;
  }

  .parallax-item:first-child {
    grid-row: auto;
  }

  .topic-card {
    flex: 0 0 calc(50% - 0.75rem);
    min-width: 200px;
  }

  .stat::after {
    display: none;
  }
}

@media (max-width: 500px) {
  .hero-form {
    flex-direction: column;
  }

  .hero-form input[type="email"] {
    border-right: 1px solid var(--border);
    border-radius: var(--radius-sm);
  }

  .hero-form button {
    border-radius: var(--radius-sm);
    min-height: 44px;
  }

  .cta-form {
    flex-direction: column;
  }

  .cta-form input[type="email"] {
    border-right: 1px solid var(--border);
    border-radius: var(--radius-sm);
  }

  .cta-form button {
    border-radius: var(--radius-sm);
    min-height: 44px;
  }

  .hero-stats {
    gap: 1.5rem;
  }

  .topic-card {
    flex: 0 0 85%;
  }
}

/* -------- Brands -------- */
.brands{padding:40px 0;background:#fff;border-top:1px solid var(--border);border-bottom:1px solid var(--border)}
.brands__label{text-align:center;color:var(--text-muted);font-size:.85rem;letter-spacing:1px;text-transform:uppercase;margin-bottom:20px;font-weight:600}
/* .brands__list{display:flex;justify-content:space-around;align-items:center;flex-wrap:wrap;gap:24px}
.brands__list span{font-family:'Outfit',sans-serif;font-weight:800;font-size:1.4rem;color:#94A3B8;letter-spacing:-.5px;transition:color .2s}
.brands__list span:hover{color:var(--primary)} */
/* -------- BRANDS: Marquee infinito -------- */
.brands__marquee{
  overflow:hidden;
  padding:12px 0;
}
.brands__track{
  display:flex;gap:48px;
  align-items:center;
  width:max-content;
  animation:marquee 60s linear infinite;
  will-change:transform;backface-visibility:hidden;
}

.brands__track span{
  font-family:'Outfit',sans-serif;font-weight:800;font-size:1.6rem;
  color:#94A3B8;letter-spacing:-.5px;white-space:nowrap;
  transition:color .25s,transform .25s;
}
.brands__track span:hover{color:var(--primary);transform:scale(1.05)}
@keyframes marquee{from{transform:translate3d(0,0,0)}to{transform:translate3d(-50%,0,0)}}

