:root {
  --verde: #cbff0d;
  --negro: #1a1a1a;
  --gris: #4b4b4b;
  --purpura: #432cb1;
  --purpura-mid: #5b3fd4;
  --purpura-claro: #9bb1ff;
  --blanco: #f5f5f2;
  --bg-card: #1c1c1c;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}

body {
  background: var(--negro);
  color: var(--blanco);
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.035'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
  opacity: 0.55;
}

.diagonal-bg {
  background: repeating-linear-gradient(
    -55deg,
    transparent,
    transparent 50px,
    rgba(203, 255, 13, 0.022) 50px,
    rgba(203, 255, 13, 0.022) 51px
  );
}

/* NAV */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(26, 26, 26, 0.94);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(203, 255, 13, 0.1);
  padding: 0 2.5rem;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  overflow: visible;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-mark {
  width: 38px;
  height: 38px;
  background: var(--verde);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  flex-shrink: 0;
}

.logo-mark::after {
  content: "";
  width: 15px;
  height: 15px;
  background: var(--negro);
  border-radius: 50%;
}

.logo-mark::before {
  content: "";
  position: absolute;
  width: 8px;
  height: 3px;
  background: var(--negro);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 2px;
  z-index: 2;
}

.logo-text {
  font-family: "Poppins", sans-serif;
  font-size: 1.55rem;
  letter-spacing: 0.08em;
  color: var(--blanco);
  line-height: 1;
}

.logo-text span {
  color: var(--verde);
}

.logo-img {
  height: 42px;
  width: auto;
}

.fest-img {
  height: 1.2em;
  width: auto;
  vertical-align: middle;
  margin-top: 0.5em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0;
  list-style: none;
}

.nav-links a {
  color: rgba(245, 245, 242, 0.55);
  text-decoration: none;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 0.2s;
  padding: 5px 11px;
}

.nav-links a:hover {
  color: var(--verde);
}
.nav-links a.inactive {
  cursor: default;
  color: rgba(245, 245, 242, 0.28);
  pointer-events: none;
}
 .nav-ctas { display: flex; gap: 8px; flex-shrink: 0; }
.map-dot {
  display: inline-block;
  width: 5px;
  height: 5px;
  background: var(--verde);
  border-radius: 50%;
  margin-left: 3px;
  animation: blink 2s ease-in-out infinite;
  vertical-align: middle;
}

@keyframes blink {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.2;
  }
}

.nav-ctas {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: #cbff0d;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  padding: 10px;
  flex-shrink: 0;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 3px;
  background: #1a1a1a;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.nav-mobile-menu {
  display: none;
  position: fixed;
  top: 70px;
  left: 0;
  right: 0;
  bottom: 0;
  background: #1e1e1e;
  padding: 0.75rem 1.5rem 1.5rem;
  z-index: 99;
}

.nav-mobile-menu.active {
  display: block;
}

.nav-mobile-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.nav-mobile-menu li {
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.nav-mobile-menu a {
  color: var(--blanco);
  text-decoration: none;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-size: 0.9rem;
  padding: 10px 0;
  display: block;
  transition: color 0.2s;
}

.nav-mobile-menu a:hover,
.nav-mobile-menu a:active {
  color: var(--verde);
}

.nav-mobile-menu a.inactive {
  color: rgba(255,255,255,0.3);
  cursor: default;
}

.nav-mobile-menu a.inactive:hover {
  color: rgba(255,255,255,0.3);
}

.nav-mobile-ctas {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 0.75rem;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.nav-mobile-ctas .btn {
  justify-content: center;
  padding: 8px 12px;
  font-size: 0.7rem;
}

.nav-mobile-ctas .btn-primary {
  background: var(--verde);
  color: var(--negro);
  font-weight: 700;
}

.nav-mobile-ctas .btn-outline {
  border: 1px solid var(--verde);
  color: var(--verde);
  background: var(--negro);
}

.nav-mobile-ctas .btn svg {
  display: none;
}

.btn {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 0.7rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 9px 17px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  transition: all 0.22s;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}

.btn-primary {
  background: var(--verde);
  color: var(--negro);
  border: 2px solid var(--negro);
}
.btn-primary:hover {
  background: #d9ff30;
  transform: translateY(-1px);
  box-shadow: 0 5px 18px rgba(203, 255, 13, 0.18);
}

.btn-outline {
  background: var(--negro);
  color: var(--blanco);
  
}
.btn-outline:hover {
  border-color: var(--purpura-claro);
  color: var(--purpura-claro);
  background: rgba(155, 177, 255, 0.05);
}

/* HERO */
.hero {
  min-height: 100vh;
  padding-top: 70px;
  position: relative;
  overflow: hidden;
}

.hero-slider {
  position: relative;
  min-height: calc(100vh - 70px);
}

.slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.9s ease;
}

.slide.active {
  opacity: 1;
}
.slide-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  scale: 1.1;
}

.geo-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(203, 255, 13, 0.06);
  pointer-events: none;
}

.geo-dot {
  position: absolute;
  border-radius: 50%;
  background: var(--verde);
  opacity: 0.12;
  pointer-events: none;
}

.float-tag {
  position: absolute;
  z-index: 3;
  font-family: "Poppins", sans-serif;
  font-size: 0.58rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(245, 245, 242, 0.22);
  border: 1px solid rgba(245, 245, 242, 0.07);
  padding: 5px 10px;
  border-radius: 100px;
  backdrop-filter: blur(6px);
  background: rgba(255, 255, 255, 0.02);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.6s 0.3s;
}

.slide.active .float-tag {
  opacity: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 2rem;
  max-width: 880px;
}

.hero-eyebrow {
  font-family: "Poppins", sans-serif;
  font-size: 0.66rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--verde);
  margin-bottom: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.hero-eyebrow::before,
.hero-eyebrow::after {
  content: "";
  width: 34px;
  height: 1px;
  background: var(--verde);
  opacity: 0.38;
}

.hero-title {
  font-family: "Poppins", monospace;
  font-size: clamp(4rem, 12.0vw, 10rem);
  line-height: 0.88;
  letter-spacing: -0.01em;
  margin-bottom: 1.4rem;
  scale: 0.7;
}

.hero-title .accent {
  color: var(--verde);
}
.hero-title .purple {
  color: var(--purpura-claro);
}

.hero-subtitle {
  font-size: 0.98rem;
  color: rgba(245, 245, 242, 0.52);
  max-width: 520px;
  margin: 0 auto 1.25rem;
  font-weight: 300;
  line-height: 1.8;
}

.hero-pills {
  display: flex;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 1.75rem;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: "Poppins", sans-serif;
  font-size: 0.58rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(245, 245, 242, 0.45);
  border: 1px solid rgba(245, 245, 242, 0.09);
  padding: 5px 12px;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.025);
}

.hero-pill.accent {
  border-color: rgba(203, 255, 13, 0.28);
  color: var(--verde);
  background: rgba(203, 255, 13, 0.05);
}

.hero-pill::before {
  content: "";
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: currentColor;
  opacity: 0.65;
}

.hero-ctas {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}

.slide-indicators {
  position: absolute;
  bottom: 2.5rem;border: 1px solid rgba(245, 245, 242, 0.18);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}

.slide-ctas {
  position: absolute;
  bottom: 5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 10;
}

.slide-cta {
  display: none;
  gap: 12px;
}

.slide-cta.active {
  display: flex;
}

.indicator {
  width: 28px;
  height: 3px;
  background: rgba(245, 245, 242, 0.12);
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.3s;
}

.indicator.active {
  background: var(--verde);
  width: 50px;
}

/* MAPA */
#mapa-section {
  display: none;
  padding: 5rem 2rem;
  background: #141414;
  border-top: 1px solid rgba(203, 255, 13, 0.08);
}

#mapa-section.visible {
  display: block;
}

.mapa-container {
  max-width: 1200px;
  margin: 2rem auto 0;
  position: relative;
}

.mapa-controls {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 10;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.mapa-btn {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: rgba(26, 26, 26, 0.9);
  border: 1px solid rgba(203, 255, 13, 0.25);
  color: var(--blanco);
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}

.mapa-btn:hover {
  background: var(--verde);
  color: var(--negro);
  border-color: var(--verde);
}

.mapa-viewport {
  width: 100%;
  height: 600px;
  overflow: hidden;
  border: 1px dashed rgba(203, 255, 13, 0.18);
  border-radius: 12px;
  background: rgba(203, 255, 13, 0.015);
  cursor: grab;
  position: relative;
}

.mapa-viewport:active {
  cursor: grabbing;
}

.mapa-wrapper {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  transform-origin: center center;
}

.mapa-img {
  max-width: none;
  max-height: none;
  width: auto;
  height: auto;
  user-select: none;
  pointer-events: none;
}

.mapa-placeholder-fallback {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  color: rgba(245, 245, 242, 0.28);
  text-align: center;
  padding: 2rem;
}

.mapa-placeholder-fallback svg {
  margin-bottom: 1rem;
  opacity: 0.3;
}

.mapa-placeholder-fallback p {
  font-size: 0.88rem;
  font-weight: 300;
}

.mapa-hint {
  text-align: center;
  margin-top: 1rem;
  font-size: 0.75rem;
  color: rgba(245, 245, 242, 0.3);
  font-family: "Poppins", sans-serif;
}

@media (max-width: 768px) {
  .mapa-viewport {
    height: 400px;
  }

  .slide-bg {
  scale: 1.2;
  inset: 0;
  z-index: 0;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
}
 
}

/* INFO BANNER */
.info-banner {
  background: var(--verde);
  padding: 1.2rem 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  position: relative;
  overflow: hidden;
  flex-wrap: wrap;

}

.info-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    90deg,
    transparent,
    transparent 80px,
    rgba(30, 30, 30, 0.04) 80px,
    rgba(30, 30, 30, 0.04) 81px
  );
}

.banner-item {
  display: flex;
  align-items: center;
  gap: 11px;
  position: relative;
  z-index: 1;
}

.banner-icon {
  width: 38px;
  height: 38px;
  background: var(--negro);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.banner-label {
  font-family: "Poppins", sans-serif;
  font-size: 0.58rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(30, 30, 30, 0.5);
  display: block;
  margin-bottom: 1px;
}

.banner-value {
  font-family: "Poppins", sans-serif;
  font-size: 1.2rem;
  letter-spacing: 0.06em;
  color: var(--negro);
  line-height: 1;
}

.banner-sep {
  width: 1px;
  height: 36px;
  background: rgba(30, 30, 30, 0.16);
}

/* SECTIONS */
section {
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-tag {
  font-family: "Poppins", sans-serif;
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--verde);
  margin-bottom: 0.85rem;
  display: block;
}

.section-title {
  font-family: "Poppins", sans-serif;
  font-size: clamp(2.8rem, 7vw, 5.2rem);
  line-height: 0.92;
  letter-spacing: 0.01em;
}

.accent-line {
  height: 3px;
  background: linear-gradient(90deg, var(--purpura), var(--verde));
  width: 56px;
  border-radius: 2px;
  margin: 1rem auto 0;
}

/* MARCAS */
.marcas-section {
  padding: 6rem 2rem;
  background: #161616;
  position: relative;
  overflow: hidden;
}

.marcas-section::before {
  content: "";
  position: absolute;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  border: 1px solid rgba(67, 44, 177, 0.08);
  top: -220px;
  right: -200px;
  pointer-events: none;
}

.brands-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.04);
  max-width: 1100px;
  margin: 0 auto;
  border-radius: 8px;
  overflow: hidden;
}

.brand-cell {
  background: #161616;
  padding: 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
  flex-direction: column;
  min-height: 160px;
}

.brand-cell::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(0, 0, 0, 0.7) 100%
  );
  opacity: 0;
  transition: opacity 0.3s;
  z-index: 1;
}

.brand-cell:hover::before {
  opacity: 1;
}

.brand-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: grayscale(100%) brightness(0.4);
  transition: all 0.3s;
}

.brand-cell:hover .brand-bg {
  filter: grayscale(100%) brightness(0.6);
  transform: scale(1.05);
}

.brand-cell:hover .brand-name {
  color: var(--blanco);
}

.brand-cell:hover .brand-cat {
  color: var(--verde);
}

.brand-cell:not(:has(.brand-bg)) {
  background: linear-gradient(135deg, #1a1a1a 0%, #0d0d0d 100%);
  padding: 2.5rem 1.25rem;
  justify-content: center;
}

.brand-cell:not(:has(.brand-bg))::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(67, 44, 177, 0.08), rgba(203, 255, 13, 0.03));
  opacity: 0;
  transition: opacity 0.3s;
}

.brand-cell:not(:has(.brand-bg)):hover::before {
  opacity: 1;
}

.brand-name {
  font-family: "Poppins", sans-serif;
  font-size: 1.42rem;
  letter-spacing: 0.1em;
  color: rgba(245, 245, 242, 0.7);
  transition: color 0.3s;
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 10px 10px;
  width: 100%;
}

.brand-cat {
  font-size: 0.65rem;
  font-family: "Poppins", sans-serif;
  color: rgba(245, 245, 242, 0.4);
  text-align: center;
  transition: color 0.3s;
  position: relative;
  z-index: 2;
  padding-bottom: 12px;
  width: 100%;
}

.brand-cat {
  font-size: 0.58rem;
  font-family: "Poppins", sans-serif;
  color: rgba(245, 245, 242, 0.18);
  text-align: center;
  transition: color 0.3s;
  position: relative;
  z-index: 1;
}

/* CTA */
.cta-section {
  padding: 8rem 2rem;
  background: var(--negro);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.75rem;
  overflow: hidden;
  position: relative;
}

.cta-section::before {
  content: "";
  position: absolute;
  width: 680px;
  height: 680px;
  border-radius: 50%;
  border: 1px solid rgba(203, 255, 13, 0.05);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.cta-section::after {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  border: 1px solid rgba(67, 44, 177, 0.09);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.cta-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(67, 44, 177, 0.16);
  border: 1px solid rgba(155, 177, 255, 0.2);
  color: var(--purpura-claro);
  padding: 7px 18px;
  border-radius: 100px;
  font-size: 0.66rem;
  font-family: "Poppins", sans-serif;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  position: relative;
  z-index: 1;
}

.cta-badge::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--purpura-claro);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.35;
    transform: scale(0.7);
  }
}

.cta-title {
  font-family: "Poppins", sans-serif;
  font-size: clamp(3.2rem, 9vw, 7rem);
  line-height: 0.92;
  position: relative;
  z-index: 1;
}

.cta-title em {
  font-style: normal;
  color: var(--verde);
}

.cta-desc {
  font-size: 0.98rem;
  color: rgba(245, 245, 242, 0.48);
  max-width: 450px;
  font-weight: 300;
  line-height: 1.78;
  position: relative;
  z-index: 1;
}

.email-cta-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  max-width: 540px;
  width: 100%;
  position: relative;
  z-index: 1;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(203, 255, 13, 0.22);
}

.email-cta-wrap input {
  flex: 1 1 calc(50% - 4px);
  min-width: 140px;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.04);
  border: none;
  color: var(--blanco);
  font-family: "Poppins", sans-serif;
  font-size: 0.88rem;
  outline: none;
}

.email-cta-wrap input::placeholder {
  color: rgba(245, 245, 242, 0.28);
}

.email-cta-wrap button {
  padding: 14px 20px;
  background: var(--verde);
  color: var(--negro);
  font-family: "Poppins", sans-serif;
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
  white-space: nowrap;
}

.email-cta-wrap button:hover {
  background: #d9ff30;
}

.feature-strip {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.feature-pill {
  display: flex;
  align-items: center;
  gap: 7px;
  font-family: "Poppins", sans-serif;
  font-size: 0.58rem;
  letter-spacing: 0.1em;
  color: rgba(245, 245, 242, 0.28);
  text-transform: uppercase;
}

.feature-pill::before {
  content: "";
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--verde);
  opacity: 0.5;
}

/* REGISTRO */
.registro-section {
  padding: 6rem 2rem;
  background: #121212;
  position: relative;
  overflow: hidden;
}

.registro-section::before {
  content: "";
  position: absolute;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(67, 44, 177, 0.08) 0%,
    transparent 70%
  );
  bottom: -80px;
  left: -80px;
  pointer-events: none;
}

.tabs {
  display: flex;
  max-width: 680px;
  margin: 0 auto 2.5rem;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 8px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.02);
}

.tab-btn {
  flex: 1;
  padding: 14px 16px;
  background: transparent;
  border: none;
  color: rgba(245, 245, 242, 0.32);
  font-family: "Poppins", sans-serif;
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.25s;
  border-right: 1px solid rgba(255, 255, 255, 0.06);
}

.tab-btn:last-child {
  border-right: none;
}
.tab-btn.active {
  background: var(--purpura-mid);
  color: var(--blanco);
}
.tab-btn:not(.active):hover {
  background: rgba(255, 255, 255, 0.04);
  color: rgba(245, 245, 242, 0.6);
}

.tab-panel {
  display: none;
  max-width: 680px;
  margin: 0 auto;
  background: #1c1c1c;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 12px;
  padding: 2.5rem;
}

.tab-panel.active {
  display: block;
}

.panel-header {
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.panel-title {
  font-family: "Poppins", sans-serif;
  font-size: 2rem;
  letter-spacing: 0.04em;
  color: var(--blanco);
}

.panel-tag {
  font-family: "Poppins", sans-serif;
  font-size: 0.58rem;
  letter-spacing: 0.15em;
  color: var(--purpura-claro);
  text-transform: uppercase;
  background: rgba(155, 177, 255, 0.07);
  border: 1px solid rgba(155, 177, 255, 0.14);
  padding: 4px 10px;
  border-radius: 4px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.form-group.full {
  grid-column: 1 / -1;
}

label {
  font-size: 0.65rem;
  font-family: "Poppins", sans-serif;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(245, 245, 242, 0.38);
}

input[type="text"],
input[type="email"],
input[type="tel"],
select,
textarea {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 6px;
  color: var(--blanco);
  font-family: "Poppins", sans-serif;
  font-size: 0.9rem;
  padding: 12px 14px;
  transition:
    border-color 0.2s,
    background 0.2s;
  width: 100%;
  appearance: none;
  -webkit-appearance: none;
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: rgba(203, 255, 13, 0.45);
  background: rgba(203, 255, 13, 0.025);
}

select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%234B4B4B' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
  cursor: pointer;
}

select option {
  background: #1a1a1a;
}
textarea {
  resize: vertical;
  min-height: 80px;
}

.upload-zone {
  border: 1px dashed rgba(203, 255, 13, 0.18);
  border-radius: 8px;
  padding: 2rem;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s;
  background: rgba(203, 255, 13, 0.012);
}

.upload-zone:hover {
  border-color: rgba(203, 255, 13, 0.4);
  background: rgba(203, 255, 13, 0.035);
}
.upload-icon {
  width: 32px;
  height: 32px;
  margin: 0 auto 0.7rem;
  opacity: 0.3;
}
.upload-text {
  font-size: 0.8rem;
  color: rgba(245, 245, 242, 0.32);
}
.upload-text strong {
  color: var(--verde);
  font-weight: 600;
}

.battery-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 1.75rem;
}

.battery-label {
  font-family: "Poppins", sans-serif;
  font-size: 0.56rem;
  color: rgba(245, 245, 242, 0.28);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  flex-shrink: 0;
}

.battery-track {
  flex: 1;
  height: 3px;
  background: rgba(255, 255, 255, 0.07);
  border-radius: 3px;
  overflow: hidden;
}

.battery-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--purpura-claro), var(--verde));
  border-radius: 3px;
  width: 0%;
  transition: width 0.4s;
}

.battery-pct {
  font-family: "Poppins", sans-serif;
  font-size: 0.6rem;
  color: var(--verde);
  flex-shrink: 0;
  min-width: 30px;
  text-align: right;
}

.form-submit {
  margin-top: 1.75rem;
  width: 100%;
  padding: 15px;
  font-size: 0.82rem;
  border-radius: 8px;
}

.checkbox-group {
  margin-top: 1.5rem;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  margin-bottom: 1rem;
  font-size: 0.75rem;
  font-weight: 300;
  color: rgba(245, 245, 242, 0.7);
  line-height: 1.4;
}

.checkbox-label input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--verde);
  flex-shrink: 0;
  margin-top: 2px;
}

.checkbox-divider {
  height: 1px;
  background: var(--verde);
  margin: 1.5rem 0;
}

.checkbox-disclaimer {
  font-size: 0.7rem;
  color: rgba(245, 245, 242, 0.5);
  line-height: 1.5;
  text-align: center;
  margin-bottom: 1rem;
}

.checkbox-disclaimer a {
  color: var(--verde);
  text-decoration: underline;
}

.checkbox-disclaimer a:hover {
  text-decoration: none;
}

.success-msg {
  display: none;
  text-align: center;
  padding: 3rem 1.5rem;
}

.success-icon {
  width: 62px;
  height: 62px;
  background: rgba(203, 255, 13, 0.07);
  border: 1px solid rgba(203, 255, 13, 0.22);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 1.7rem;
  color: var(--verde);
}

.categories {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 0.25rem;
}

.cat-chip {
  padding: 6px 13px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 100px;
  font-size: 0.72rem;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  color: rgba(245, 245, 242, 0.36);
  cursor: pointer;
  transition: all 0.2s;
  user-select: none;
}

.cat-chip.selected {
  border-color: var(--verde);
  color: var(--negro);
  background: var(--verde);
}
.cat-chip:not(.selected):hover {
  border-color: rgba(203, 255, 13, 0.28);
  color: rgba(245, 245, 242, 0.65);
}

.radio-group {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 4px;
}

.radio-opt {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 6px;
  cursor: pointer;
  font-size: 0.8rem;
  color: rgba(245, 245, 242, 0.42);
  transition: all 0.2s;
  font-family: "Poppins", sans-serif;
}

.radio-opt input {
  display: none;
}
.radio-opt:has(input:checked) {
  border-color: var(--purpura-claro);
  color: var(--purpura-claro);
  background: rgba(155, 177, 255, 0.06);
}

/* FOOTER */
footer {
  background: #0d0d0d;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 4.5rem 2rem 2rem;
}

.insta-header {
  text-align: center;
  margin-bottom: 1.75rem;
}
.insta-header p {
  font-family: "Poppins", sans-serif;
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(245, 245, 242, 0.28);
  margin-bottom: 0.4rem;
}
.insta-header h3 {
  font-family: "Poppins", sans-serif;
  font-size: 2.4rem;
  color: var(--blanco);
}

.insta-feed {
  max-width: 100%;
  margin: 0 auto 4.5rem;
}

.insta-feed iframe.lightwidget-widget {
  width: 100%;
  min-height: 350px;
  border: none;
  overflow: hidden;
  display: block;
}

.insta-tile {
  aspect-ratio: 1;
  background: #181818;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.25s;
  overflow: hidden;
}

.insta-tile:hover {
  background: rgba(67, 44, 177, 0.32);
}
.tile-icon {
  font-size: 1.6rem;
  opacity: 0.11;
  transition: opacity 0.2s;
}
.insta-tile:hover .tile-icon {
  opacity: 0.38;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  max-width: 1100px;
  margin: 0 auto 3rem;
}

.footer-brand p {
  font-size: 0.86rem;
  color: rgba(245, 245, 242, 0.35);
  margin: 1rem 0 1.75rem;
  max-width: 240px;
  line-height: 1.78;
  font-weight: 300;
}

.social-links {
  display: flex;
  gap: 8px;
}

.social-link {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(245, 245, 242, 0.32);
  text-decoration: none;
  font-size: 0.68rem;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  transition: all 0.2s;
}

.social-link:hover {
  border-color: var(--verde);
  color: var(--verde);
  background: rgba(203, 255, 13, 0.05);
}

.footer-col h4 {
  font-family: "Poppins", sans-serif;
  font-size: 0.58rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(245, 245, 242, 0.22);
  margin-bottom: 1.25rem;
}
.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-col a {
  font-size: 0.86rem;
  color: rgba(245, 245, 242, 0.42);
  text-decoration: none;
  transition: color 0.2s;
  font-weight: 300;
}
.footer-col a:hover {
  color: var(--verde);
}

.footer-bottom {
  max-width: 1100px;
  margin: 0 auto;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p {
  font-size: 0.7rem;
  color: rgba(245, 245, 242, 0.18);
  font-family: "Poppins", sans-serif;
}
.hashtag {
  font-family: "Poppins", sans-serif;
  font-size: 0.76rem;
  color: var(--purpura-claro);
  font-weight: 700;
}

/* ALERTAS PERSONALIZADAS */
.custom-alert {
    position: fixed;
    top: 90px;
    right: 20px;
    padding: 14px 20px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.85rem;
    z-index: 1000;
    transform: translateX(120%);
    transition: transform 0.3s ease;
    max-width: 340px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}

.custom-alert.show {
    transform: translateX(0);
}

.custom-alert.alert-success {
    background: rgba(30, 30, 30, 0.95);
    border: 1px solid var(--verde);
    color: var(--blanco);
}

.custom-alert.alert-error {
    background: rgba(30, 30, 30, 0.95);
    border: 1px solid #ff4444;
    color: var(--blanco);
}

.alert-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: bold;
    flex-shrink: 0;
}

.alert-success .alert-icon {
    background: var(--verde);
    color: var(--negro);
}

.alert-error .alert-icon {
    background: #ff4444;
    color: white;
}

.alert-message {
    flex: 1;
}

.alert-close {
    background: none;
    border: none;
    color: rgba(245, 245, 242, 0.5);
    font-size: 1.2rem;
    cursor: pointer;
    padding: 0;
    line-height: 1;
}

.alert-close:hover {
    color: var(--blanco);
}

/* ESCARAPELA VIRTUAL */
.escarapela {
  background: linear-gradient(145deg, #1c1c1c 0%, #141414 100%);
  border: 1px solid rgba(203, 255, 13, 0.15);
  border-radius: 16px;
  overflow: hidden;
  width: 100%;
  max-width: 340px;
  margin: 0 auto 1.5rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), 0 0 40px rgba(203, 255, 13, 0.05);
}

.escarapela-header {
  background: linear-gradient(135deg, var(--purpura) 0%, #2a1a6b 100%);
  padding: 1.5rem 1.25rem;
  text-align: center;
  border-bottom: 1px solid rgba(203, 255, 13, 0.1);
}

.escarapela-logo {
  height: 48px;
  width: auto;
  filter: brightness(0) invert(1);
}

.escarapela-body {
  padding: 1.5rem 1.25rem;
  text-align: center;
}

.escarapela-nombre {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.75rem;
  letter-spacing: 0.05em;
  color: var(--blanco);
  margin-bottom: 0.3rem;
  line-height: 1.1;
}

.escarapela-correo {
  font-family: 'Space Mono', monospace;
  font-size: 0.65rem;
  color: rgba(245, 245, 242, 0.45);
  margin-bottom: 1rem;
  letter-spacing: 0.02em;
  word-break: break-all;
}

.escarapela-qr {
  display: inline-block;
  background: white;
  padding: 8px;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  line-height: 0;
}

.escarapela-qr canvas,
.escarapela-qr img,
.escarapela-qr table {
  display: block !important;
  width: 140px !important;
  height: 140px !important;
}

.escarapela-qr img {
  object-fit: contain;
}

.escarapela-footer {
  background: rgba(203, 255, 13, 0.04);
  border-top: 1px solid rgba(203, 255, 13, 0.1);
  padding: 1rem 1.25rem;
  text-align: center;
}

.escarapela-footer p {
  font-size: 0.7rem;
  color: rgba(245, 245, 242, 0.6);
  font-weight: 400;
  margin-bottom: 0.3rem;
  line-height: 1.4;
}

.escarapela-footer span {
  font-family: 'Space Mono', monospace;
  font-size: 0.58rem;
  color: var(--verde);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.escarapela-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.72rem;
  color: rgba(245, 245, 242, 0.35);
  padding: 0 0.5rem;
}

.escarapela-note svg {
  opacity: 0.5;
}

@media (max-width: 480px) {
  .escarapela {
    max-width: calc(100vw - 1rem);
    margin-left: auto;
    margin-right: auto;
  }
  
  .success-msg {
    padding-left: 0.01rem;
    padding-right: 0.01rem;
  }
  
  .escarapela-header {
    padding: 1rem 0.75rem;
  }
  
  .escarapela-logo {
    height: 40px;
  }
  
  .escarapela-body {
    padding: 1rem 0.75rem;
  }
  
  .escarapela-nombre {
    font-size: 1.4rem;
  }
  
  .escarapela-qr {
    padding: 5px;
  }
  
  .escarapela-qr canvas,
  .escarapela-qr img,
  .escarapela-qr table {
    width: 110px !important;
    height: 110px !important;
  }
  
  .escarapela-footer {
    padding: 0.75rem 0.75rem;
  }
  
  .escarapela-footer p {
    font-size: 0.62rem;
  }
  
  .escarapela-footer span {
    font-size: 0.5rem;
  }
  
  .escarapela-note {
    font-size: 0.62rem;
  }
}

/* SPINNER */
@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.spinner {
  animation: spin 1s linear infinite;
}

/* BUSCAR ESCARAPELA */
.escarapela-section {
  padding: 6rem 2rem;
  background: #0f0f0f;
  position: relative;
  overflow: hidden;
}

.escarapela-section::before {
  content: "";
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  border: 1px solid rgba(67, 44, 177, 0.08);
  top: -200px;
  left: -200px;
  pointer-events: none;
}

.buscar-escarapela {
  max-width: 500px;
  margin: 0 auto 3rem;
  text-align: center;
}

.buscar-desc {
  font-size: 0.9rem;
  color: rgba(245, 245, 242, 0.5);
  margin-bottom: 1.5rem;
  font-weight: 300;
}

.buscar-form {
  display: flex;
  gap: 10px;
  max-width: 420px;
  margin: 0 auto;
}

.buscar-form input {
  flex: 1;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: var(--blanco);
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
}

.buscar-form input::placeholder {
  color: rgba(245, 245, 242, 0.3);
}

.buscar-form input:focus {
  outline: none;
  border-color: rgba(203, 255, 13, 0.4);
  background: rgba(203, 255, 13, 0.03);
}

.buscar-form .btn {
  white-space: nowrap;
}

.escarapela-resultado {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.escarapela-no-encontrada {
  text-align: center;
  max-width: 400px;
  margin: 0 auto;
  padding: 2.5rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
}

.no-encontrada-icon {
  width: 60px;
  height: 60px;
  background: rgba(203, 255, 13, 0.08);
  border: 1px solid rgba(203, 255, 13, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  font-size: 1.8rem;
  color: var(--verde);
  font-family: 'Bebas Neue', sans-serif;
}

.escarapela-no-encontrada h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.8rem;
  color: var(--blanco);
  margin-bottom: 0.5rem;
  letter-spacing: 0.03em;
}

.escarapela-no-encontrada p {
  font-size: 0.85rem;
  color: rgba(245, 245, 242, 0.45);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

@media (max-width: 480px) {
  .buscar-form {
    flex-direction: column;
  }
  
  .buscar-form .btn {
    justify-content: center;
  }
}

/* MODAL MARCA */
.modal-marca {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 200;
    align-items: center;
    justify-content: center;
}

.modal-marca.show {
    display: flex;
}

.modal-marca-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
}

.modal-marca-content {
    position: relative;
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    width: 100%;
    max-width: 480px;
    max-height: 90vh;
    overflow-y: auto;
    padding: 2rem;
}

.modal-marca-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    color: rgba(245, 245, 242, 0.5);
    font-size: 1.5rem;
    cursor: pointer;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.2s;
}

.modal-marca-close:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--blanco);
}

.modal-marca-header {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.modal-marca-logo {
    width: 72px;
    height: 72px;
    object-fit: contain;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 8px;
}

.modal-marca-info {
    flex: 1;
}

.modal-marca-nombre {
    font-family: "Poppins", sans-serif;
    font-size: 1.8rem;
    letter-spacing: 0.02em;
    margin-bottom: 0.25rem;
}

.modal-marca-stand {
    display: inline-block;
    font-family: "Poppins", sans-serif;
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    background: var(--verde);
    color: var(--negro);
    padding: 4px 10px;
    border-radius: 4px;
}

.modal-marca-body {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.modal-marca-detail {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.detail-label {
    font-family: "Poppins", sans-serif;
    font-size: 0.6rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(245, 245, 242, 0.35);
}

.modal-marca-detail span:not(.detail-label) {
    font-size: 0.9rem;
    color: var(--blanco);
}

.modal-whatsapp {
    color: var(--verde);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s;
}

.modal-whatsapp:hover {
    color: var(--purpura-claro);
}

.modal-categorias {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.modal-categorias span {
    font-size: 0.75rem;
    padding: 4px 10px;
    border: 1px solid rgba(203, 255, 13, 0.25);
    border-radius: 100px;
    color: var(--verde);
}

/* REVEAL */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  nav {
    padding: 0 1rem;
  }
  .nav-links, .nav-ctas {
    display: none;
  }
  .menu-toggle {
    display: flex;
    position: fixed;
    top: 13px;
    right: 15px;
    z-index: 9999;
  }
  .nav-mobile-menu.active {
    display: block;
  }
}

/* MÓVIL - TODOS LOS ELEMENTOS */
@media (max-width: 768px) {
  
  /* NAV MÓVIL */
  nav {
    padding: 0 1rem;
    height: 60px;
  }
  
  .logo-img {
    height: 32px;
  }
  
  .nav-links, .nav-ctas {
    display: none !important;
  }
  
  .menu-toggle {
    display: flex;
    position: fixed;
    top: 10px;
    right: 1rem;
    z-index: 9999;
    width: 40px;
    height: 40px;
    padding: 8px;
  }
  
  .nav-mobile-menu {
    display: none;
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    bottom: 0;
    background: #1a1a1a;
    padding: 1rem;
    z-index: 99;
    overflow-y: auto;
  }
  
  .nav-mobile-menu.active {
    display: block;
  }
  
  .nav-mobile-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
  }
  
  .nav-mobile-menu li {
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }
  
  .nav-mobile-menu a {
    display: block;
    padding: 1rem 0;
    color: var(--blanco);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
  }
  
  .nav-mobile-ctas {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255,255,255,0.1);
  }
  
  .nav-mobile-ctas .btn {
    justify-content: center;
    padding: 14px;
    font-size: 0.85rem;
  }
  
  /* HERO MÓVIL */
  .hero {
    min-height: auto;
    overflow: hidden;
    padding-top: 60px;
  }
  
  .hero-slider {
    position: relative;
    width: 100%;
    height: calc(100vh - 60px);
  }
  
  .slide {
    position: absolute;
    inset: 0;
    opacity: 1;
    display: none;
    flex-direction: column;
  }
  
  .slide.active {
    display: flex;
  }
  
  .slide-bg {
    margin-top: 10%;
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
  }
  
  .hero-content {
    display: none;
  }
  
  .hero-ctas {
    display: none;
  }
  
  .slide-indicators {
    position: absolute;
    bottom: 1rem;
    left: 0;
    right: 0;
    transform: none;
    justify-content: center;
    padding: 0 1rem;
    border: none;
    z-index: 10;
  }
  
  .slide-ctas {
    position: absolute;
    bottom: 2rem;
    left: 0;
    right: 0;
    transform: none;
    justify-content: center;
    padding: 0 1rem;
    flex-direction: row;
    gap: 10px;
    z-index: 10;
  }
  
  .slide-cta {
    display: none;
  }
  
  .slide-cta.active {
    display: flex;
  }
  
  .slide-cta .btn {
    padding: 12px 20px;
    font-size: 0.75rem;
  }
  
  /* INFO BANNER MÓVIL */
  .info-banner {
    flex-direction: column;
    padding: 1.5rem 1rem;
    gap: 1rem;
  }
  
  .banner-item {
    width: 100%;
    justify-content: flex-start;
    padding: 0.5rem 0;
  }
  
  .banner-sep {
    display: none;
  }
  
  .banner-value {
    font-size: 1rem;
  }
  
  /* SECCIONES MÓVIL */
  section {
    padding: 3rem 1.25rem;
  }
  
  .section-header {
    margin-bottom: 2rem;
  }
  
  .section-title {
    font-size: clamp(2rem, 8vw, 3rem);
  }
  
  .section-tag {
    font-size: 0.55rem;
  }
  
  /* MARCAS MÓVIL */
  .marcas-section {
    padding: 3rem 1.25rem;
  }
  
  .brands-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2px;
  }
  
  .brand-cell {
    min-height: 120px;
    padding: 1rem;
  }
  
  .brand-name {
    font-size: 1rem;
  }
  
  .brand-cat {
    font-size: 0.55rem;
  }
  
  /* CTA MÓVIL */
  .cta-section {
    padding: 4rem 1.25rem;
  }
  
  .cta-badge {
    font-size: 0.6rem;
    padding: 6px 14px;
  }
  
  .cta-title {
    font-size: clamp(2.5rem, 10vw, 4rem);
  }
  
  .cta-desc {
    font-size: 0.9rem;
    padding: 0 0.5rem;
  }
  
  .email-cta-wrap {
    flex-direction: column;
    border-radius: 12px;
    overflow: hidden;
  }
  
  .email-cta-wrap input {
    padding: 16px;
    font-size: 1rem;
  }
  
  .email-cta-wrap button {
    padding: 16px;
    font-size: 0.8rem;
  }
  
  .feature-strip {
    flex-direction: column;
    gap: 0.75rem;
    align-items: center;
  }
  
  .feature-pill {
    font-size: 0.7rem;
  }
  
  /* REGISTRO MÓVIL */
  .registro-section {
    padding: 3rem 1.25rem;
  }
  
  .tabs {
    flex-direction: column;
    border-radius: 12px;
    margin-bottom: 1.5rem;
  }
  
  .tab-btn {
    width: 100%;
    padding: 14px;
    font-size: 0.8rem;
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    text-align: center;
  }
  
  .tab-btn:last-child {
    border-bottom: none;
  }
  
  .tab-panel {
    padding: 1.5rem;
    border-radius: 12px;
  }
  
  .panel-title {
    font-size: 1.5rem;
  }
  
  .panel-tag {
    font-size: 0.55rem;
  }
  
  /* FORMULARIOS MÓVIL */
  .form-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .form-group {
    margin-bottom: 0.5rem;
  }
  
  label {
    font-size: 0.7rem;
    margin-bottom: 0.4rem;
  }
  
  input[type="text"],
  input[type="email"],
  input[type="tel"],
  select,
  textarea {
    padding: 14px 12px;
    font-size: 1rem;
    border-radius: 8px;
  }
  
  textarea {
    min-height: 100px;
  }
  
  .categories {
    gap: 8px;
  }
  
  .cat-chip {
    padding: 8px 14px;
    font-size: 0.75rem;
  }
  
  .radio-group {
    flex-direction: column;
    gap: 8px;
  }
  
  .radio-opt {
    padding: 12px;
    font-size: 0.85rem;
  }
  
  .upload-zone {
    padding: 2rem 1rem;
  }
  
  .form-submit {
    padding: 16px;
    font-size: 0.85rem;
    margin-top: 1.5rem;
  }
  
  /* BOTONES MÓVIL */
  .btn {
    padding: 14px 20px;
    font-size: 0.8rem;
    border-radius: 10px;
    width: 100%;
    justify-content: center;
  }
  
  .btn-primary {
    background: var(--verde);
    color: var(--negro);
  }
  
  .btn-outline {
    border: 2px solid var(--verde);
    color: var(--verde);
    background: rgba(0, 0, 0, 0.);
  }
  
  /* ESCARAPELA MÓVIL */
  .escarapela-section {
    padding: 3rem 1.25rem;
  }
  
  .buscar-escarapela {
    padding: 0 0.5rem;
  }
  
  .buscar-form {
    flex-direction: column;
    gap: 12px;
  }
  
  .buscar-form input {
    padding: 16px;
    font-size: 1rem;
  }
  
  .escarapela {
    border-radius: 16px;
  }
  
  .escarapela-header {
    padding: 1.25rem 1rem;
  }
  
  .escarapela-logo {
    height: 40px;
  }
  
  .escarapela-body {
    padding: 1.25rem 1rem;
  }
  
  .escarapela-nombre {
    font-size: 1.5rem;
  }
  
  .escarapela-correo {
    font-size: 0.7rem;
  }
  
  .escarapela-qr canvas,
  .escarapela-qr img {
    width: 130px !important;
    height: 130px !important;
  }
  
  .escarapela-footer {
    padding: 1rem;
  }
  
  .escarapela-footer p {
    font-size: 0.7rem;
  }
  
  .escarapela-note {
    font-size: 0.7rem;
    flex-direction: column;
    text-align: center;
  }
  
  /* MODAL MÓVIL */
  .modal-marca-content {
    max-width: 95%;
    max-height: 85vh;
    padding: 1.5rem;
    border-radius: 16px;
    margin: 1rem;
  }
  
  .modal-marca-logo {
    width: 56px;
    height: 56px;
  }
  
  .modal-marca-nombre {
    font-size: 1.4rem;
  }
  
  /* FOOTER MÓVIL */
  footer {
    padding: 3rem 1.25rem 2rem;
  }
  
  .insta-header h3 {
    font-size: 1.75rem;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }
  
  .footer-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .footer-brand p {
    text-align: center;
    max-width: 100%;
  }
  
  .social-links {
    justify-content: center;
  }
  
  .footer-col h4 {
    font-size: 0.7rem;
  }
  
  .footer-col ul {
    gap: 8px;
  }
  
  .footer-col a {
    font-size: 0.85rem;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 0.75rem;
    padding-top: 1.5rem;
  }
  
  .footer-bottom p {
    font-size: 0.65rem;
  }
  /* INSTA FEED MÓVIL */
 
  /* ALERTAS MÓVIL */
  .custom-alert {
    top: 70px;
    right: 10px;
    left: 10px;
    max-width: none;
    padding: 12px 16px;
  }
  
  /* SUCCESS MESSAGES */
  .success-msg {
    padding: 2rem 0.5rem;
  }
  
  .success-icon {
    width: 56px;
    height: 56px;
  }
}
