*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --black: #0A0A0A;
  --dark: #111111;
  --dark-2: #181818;
  --dark-3: #1E1E1E;
  --dark-4: #252525;
  --blue: #1E88E5;
  --blue-light: #42A5F5;
  --blue-glow: rgba(30, 136, 229, 0.35);
  --blue-glow-soft: rgba(30, 136, 229, 0.12);
  --white: #FFFFFF;
  --gray-1: #F5F5F5;
  --gray-2: #CCCCCC;
  --gray-3: #888888;
  --gray-4: #555555;
  --font: 'Barlow', sans-serif;
  --font-condensed: 'Barlow Condensed', sans-serif;
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.45, 0, 0.55, 1);
  --radius: 12px;
  --radius-lg: 20px;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font);
  background-color: var(--black);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background: url('images/fondo1.jpeg') center / cover no-repeat;
  z-index: -1;
  will-change: transform;
}

::selection {
  background: var(--blue);
  color: var(--white);
}

::-webkit-scrollbar {
  width: 5px;
}

::-webkit-scrollbar-track {
  background: var(--dark);
}

::-webkit-scrollbar-thumb {
  background: var(--blue);
  border-radius: 10px;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 2;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  display: block;
}

/* ---- NAVBAR ---- */

#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0.2rem 0;
  background: rgba(0, 0, 0, 1);
}


.nav-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo img {
  height: 56px;
  width: auto;
  object-fit: contain;
  transition: transform 0.3s;
}

.nav-logo:hover img {
  transform: scale(1.05);
}

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

.nav-links a {
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gray-2);
  transition: color 0.25s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--blue);
  transition: width 0.3s var(--ease-out-expo);
}

.nav-links a:hover {
  color: var(--white);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  background: var(--blue) !important;
  color: var(--white) !important;
  padding: 0.55rem 1.4rem;
  border-radius: 6px;
  font-size: 0.85rem !important;
  transition: background 0.3s, box-shadow 0.3s, transform 0.2s !important;
}

.nav-cta::after {
  display: none !important;
}

.nav-links a.active {
  color: var(--white);
}

.nav-links a.active::after {
  width: 100%;
}

.nav-cta:hover {
  background: var(--blue-light) !important;
  box-shadow: 0 0 20px var(--blue-glow);
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.35s var(--ease-out-expo), opacity 0.25s;
}

.nav-toggle.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ---- HERO ---- */

#inicio {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  overflow: visible;
  background: transparent;
  z-index: 1;
}

.hero-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 100vh;
  background: linear-gradient(
    135deg,
    rgba(10, 10, 10, 0.82) 0%,
    rgba(10, 10, 10, 0.45) 50%,
    rgba(10, 10, 10, 0.65) 100%
  );
  z-index: 1;
  pointer-events: none;
}

.hero-overlay::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 260px;
  background: linear-gradient(to bottom, transparent, var(--dark));
}

.hero-content {
  position: fixed;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  z-index: 2;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
  pointer-events: none;
  transition: opacity 0.1s linear;
}

.hero-content a,
.hero-content button {
  pointer-events: auto;
}

.hero-content.hero-hidden {
  opacity: 0;
  pointer-events: none;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(30, 136, 229, 0.15);
  border: 1px solid rgba(30, 136, 229, 0.4);
  color: var(--blue-light);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.45rem 1rem;
  border-radius: 100px;
  margin-bottom: 1.5rem;
}

.hero-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--blue);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--blue);
}

.hero-content h1 {
  font-family: var(--font-condensed);
  font-size: clamp(3.2rem, 7vw, 6.5rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
}

.hero-content h1 span {
  background: linear-gradient(90deg, var(--blue), var(--blue-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: 1.15rem;
  color: var(--gray-2);
  font-weight: 300;
  max-width: 480px;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--blue);
  color: var(--white);
  font-family: var(--font);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 0.9rem 2rem;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: background 0.3s, box-shadow 0.3s, transform 0.2s;
  text-transform: uppercase;
}

.btn-primary:hover {
  background: var(--blue-light);
  box-shadow: 0 8px 30px var(--blue-glow);
  transform: translateY(-2px);
}

.btn-full {
  width: 100%;
  justify-content: center;
  font-size: 1rem;
  padding: 1rem 2rem;
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--gray-2);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 0.9rem 2rem;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.15);
  cursor: pointer;
  transition: color 0.3s, border-color 0.3s, background 0.3s, transform 0.2s;
  text-transform: uppercase;
}

.btn-ghost:hover {
  color: var(--white);
  border-color: rgba(255,255,255,0.35);
  background: rgba(255,255,255,0.05);
  transform: translateY(-2px);
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-scroll-indicator span {
  display: block;
  width: 1.5px;
  height: 50px;
  background: linear-gradient(to bottom, var(--blue), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ---- SECTION COMMONS ---- */

.section-label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 1rem;
}

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

.section-header h2 {
  font-family: var(--font-condensed);
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  line-height: 1.05;
  margin-bottom: 1rem;
}

.section-header h2 span {
  color: var(--blue);
}

.section-sub {
  color: var(--gray-3);
  font-size: 1.05rem;
  max-width: 500px;
  margin: 0 auto;
}

/* ---- ABOUT ---- */

#nosotros {
  padding: 10rem 0;
  background: var(--dark);
  position: relative;
  overflow: hidden;
  z-index: 3;
}

#nosotros::after {
  content: '';
  position: absolute;
  top: 50%;
  right: -200px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(30,136,229,0.07) 0%, transparent 70%);
  transform: translateY(-50%);
  pointer-events: none;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-text h2 {
  font-family: var(--font-condensed);
  font-size: clamp(2.5rem, 4vw, 4rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 1.8rem;
}

.about-text h2 span {
  color: var(--blue);
}

.about-desc {
  color: var(--gray-2);
  font-size: 1.05rem;
  line-height: 1.75;
  margin-bottom: 3rem;
  font-weight: 300;
}

.about-stats {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.stat strong {
  display: block;
  font-family: var(--font-condensed);
  font-size: 2rem;
  font-weight: 900;
  color: var(--blue-light);
  line-height: 1;
}

.stat span {
  display: block;
  font-size: 0.78rem;
  color: var(--gray-3);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 4px;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--dark-4);
}

.about-visual {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.about-card {
  background: var(--dark-2);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: transform 0.4s var(--ease-out-expo), border-color 0.4s, box-shadow 0.4s;
}

.about-card:hover {
  transform: translateY(-4px);
  border-color: rgba(30,136,229,0.25);
  box-shadow: 0 12px 40px rgba(0,0,0,0.4), 0 0 0 1px rgba(30,136,229,0.1);
}

.about-card.accent {
  background: linear-gradient(135deg, rgba(30,136,229,0.12), rgba(66,165,245,0.06));
  border-color: rgba(30,136,229,0.2);
}

.ac-icon {
  width: 44px;
  height: 44px;
  background: rgba(30,136,229,0.15);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  color: var(--blue-light);
}

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

.about-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.about-card p {
  font-size: 0.9rem;
  color: var(--gray-3);
  line-height: 1.6;
}

/* ---- SERVICES ---- */

#servicios {
  padding: 10rem 0;
  background: transparent;
  position: relative;
  z-index: 3;
}

#servicios::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    var(--dark) 0%,
    rgba(10, 10, 10, 0.68) 12%,
    rgba(10, 10, 10, 0.68) 88%,
    var(--dark) 100%
  );
  z-index: 0;
  pointer-events: none;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(600px, 1fr));
  gap: 1.5rem;
}



.service-card {
  background: var(--dark-2);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.4s var(--ease-out-expo), border-color 0.4s, box-shadow 0.4s;
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(30,136,229,0.3);
  box-shadow: 0 20px 60px rgba(0,0,0,0.6), 0 0 0 1px rgba(30,136,229,0.15), inset 0 1px 0 rgba(255,255,255,0.05);
}

.sc-image-wrap {
  aspect-ratio: 16/9;
  overflow: hidden;
  position: relative;
}

.service-card--wide .sc-image-wrap {
  aspect-ratio: auto;
  height: 100%;
}

.sc-collage {
  width: 100%;
  height: 100%;
  display: grid;
  gap: 3px;
  min-height: 210px;
  background: var(--dark-3);
}

.sc-collage--3 {
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
}

.sc-collage--3 .sc-collage-main {
  grid-row: 1 / -1;
}

.sc-collage--2 {
  grid-template-columns: 1fr 1fr;
}

.sc-collage--wide {
  grid-template-columns: repeat(3, 1fr);
}

.sc-collage-img {
  overflow: hidden;
  position: relative;
}

.sc-collage-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), filter 0.6s;
  filter: brightness(0.85) saturate(0.9);
}

.service-card:hover .sc-collage-img img {
  transform: scale(1.06);
  filter: brightness(1) saturate(1);
}

.service-card--wide .sc-collage {
  min-height: 100%;
}

.sc-body {
  padding: 1.8rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 0.8rem;
}

.sc-number {
  font-family: var(--font-condensed);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--blue);
  opacity: 0.7;
}

.sc-body h3 {
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.3;
}

.sc-body p {
  font-size: 0.9rem;
  color: var(--gray-3);
  line-height: 1.65;
  flex: 1;
}

.sc-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--blue-light);
  transition: gap 0.25s, color 0.25s;
  margin-top: 0.5rem;
}

.sc-link svg {
  width: 14px;
  height: 14px;
  transition: transform 0.25s;
}

.sc-link:hover {
  color: var(--white);
}

.sc-link:hover svg {
  transform: translateX(4px);
}

/* ---- BRANDS ---- */

#marcas {
  padding: 8rem 0;
  background: var(--dark);
  position: relative;
  overflow: hidden;
  z-index: 3;
}

.brands-strip {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1.2rem;
  margin-bottom: 1.5rem;
}

.brand-logo {
  background: var(--dark-3);
  border: 1px solid rgba(255,255,255,0.04);
  border-radius: var(--radius);
  aspect-ratio: 2/1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  transition: border-color 0.3s, background 0.3s, transform 0.3s;
}

.brand-logo:hover {
  border-color: rgba(30,136,229,0.2);
  background: var(--dark-4);
  transform: translateY(-4px);
}

.brand-logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  opacity: 1;
  transition: filter 0.3s, opacity 0.3s;
}



/* ---- TIENDA ---- */

#tienda {
  padding: 8rem 0;
  background: transparent;
  position: relative;
  z-index: 3;
}

#tienda::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    var(--dark) 0%,
    rgba(10, 10, 10, 0.72) 14%,
    rgba(10, 10, 10, 0.72) 86%,
    var(--dark) 100%
  );
  z-index: 0;
  pointer-events: none;
}

.store-wrap {
  position: relative;
  z-index: 2;
  background: rgba(24, 24, 24, 0.75);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(30,136,229,0.2);
  border-radius: var(--radius-lg);
  padding: 6rem 3rem;
  text-align: center;
  overflow: hidden;
}

.store-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(30,136,229,0.1) 0%, transparent 65%);
  pointer-events: none;
}

.store-content {
  position: relative;
  z-index: 1;
  max-width: 560px;
  margin: 0 auto;
}

.store-icon {
  width: 72px;
  height: 72px;
  background: rgba(30,136,229,0.12);
  border: 1px solid rgba(30,136,229,0.3);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: var(--blue-light);
}

.store-icon svg {
  width: 36px;
  height: 36px;
}

.store-badges {
  display: flex;
  gap: 0.6rem;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.store-tag {
  background: rgba(30,136,229,0.12);
  border: 1px solid rgba(30,136,229,0.25);
  color: var(--blue-light);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.35rem 0.9rem;
  border-radius: 100px;
}

.store-wrap h2 {
  font-family: var(--font-condensed);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

.store-wrap p {
  color: var(--gray-2);
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 2.5rem;
}

.store-progress {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
}

.sp-bar {
  width: 100%;
  max-width: 320px;
  height: 4px;
  background: rgba(255,255,255,0.06);
  border-radius: 100px;
  overflow: hidden;
}

.sp-fill {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--blue), var(--blue-light));
  border-radius: 100px;
  transition: width 2s var(--ease-out-expo);
  box-shadow: 0 0 10px var(--blue-glow);
}

.sp-fill.animated {
  width: 65%;
}

.store-progress span {
  font-size: 0.75rem;
  color: var(--gray-4);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ---- CONTACT ---- */

#contacto {
  padding: 10rem 0;
  background: var(--dark);
  position: relative;
  overflow: hidden;
  z-index: 3;
}

.contacto-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(ellipse at 0% 50%, rgba(30,136,229,0.07) 0%, transparent 60%),
    radial-gradient(ellipse at 100% 50%, rgba(30,136,229,0.04) 0%, transparent 60%);
  pointer-events: none;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
  position: relative;
}

.contact-text h2 {
  font-family: var(--font-condensed);
  font-size: clamp(2.5rem, 4vw, 4rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 1.5rem;
}

.contact-text h2 span {
  color: var(--blue);
}

.contact-text > p {
  color: var(--gray-2);
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 2.5rem;
  font-weight: 300;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.ci-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.ci-icon {
  width: 44px;
  height: 44px;
  background: rgba(30,136,229,0.12);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue-light);
  flex-shrink: 0;
}

.ci-icon--border {
  border: 1px solid rgba(30,136,229,0.25);
  background: transparent;
}

.ci-icon svg {
  width: 20px;
  height: 20px;
}

.ci-item strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
}

.ci-item span {
  font-size: 0.8rem;
  color: var(--gray-3);
}

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 700;
  padding: 0.9rem 2rem;
  border-radius: 8px;
  transition: background 0.3s, box-shadow 0.3s, transform 0.2s;
  letter-spacing: 0.03em;
}

.btn-whatsapp svg {
  width: 20px;
  height: 20px;
}

.btn-whatsapp:hover {
  background: #1EB858;
  box-shadow: 0 8px 30px rgba(37,211,102,0.3);
  transform: translateY(-2px);
}

.contact-form-wrap {
  background: var(--dark-2);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
}

.contact-form h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 2rem;
}

.form-group {
  position: relative;
  margin-bottom: 1.4rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  background: var(--dark-3);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 8px;
  padding: 1rem 1.1rem;
  color: var(--white);
  font-family: var(--font);
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.3s, box-shadow 0.3s, background 0.3s;
  -webkit-appearance: none;
  appearance: none;
}

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23888'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 16px;
  padding-right: 2.5rem;
  cursor: pointer;
}

.form-group select option {
  background: var(--dark-3);
  color: var(--white);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--gray-4);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(30,136,229,0.12);
  background: rgba(30,136,229,0.04);
}

.form-group label {
  position: absolute;
  top: -0.5rem;
  left: 0.85rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray-4);
  background: var(--dark-2);
  padding: 0 4px;
  transition: color 0.3s;
  pointer-events: none;
}

.form-group input:focus ~ label,
.form-group textarea:focus ~ label,
.form-group select:focus ~ label {
  color: var(--blue-light);
}

.form-note {
  text-align: center;
  font-size: 0.78rem;
  color: var(--gray-4);
  margin-top: 1rem;
  line-height: 1.5;
}

/* ---- WHATSAPP FLOAT ---- */

.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 900;
  width: 58px;
  height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  box-shadow: 0 8px 30px rgba(37,211,102,0.4);
  transition: transform 0.3s var(--ease-out-expo), box-shadow 0.3s;
}

.whatsapp-float svg {
  width: 28px;
  height: 28px;
  position: relative;
  z-index: 1;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 40px rgba(37,211,102,0.5);
}

.wf-pulse {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: rgba(37,211,102,0.3);
  animation: wfPulse 2.5s ease-out infinite;
}

@keyframes wfPulse {
  0% { transform: scale(1); opacity: 0.7; }
  80%, 100% { transform: scale(1.75); opacity: 0; }
}

/* ---- FOOTER ---- */

footer {
  background: var(--black);
  border-top: 1px solid rgba(255,255,255,0.05);
  padding-top: 5rem;
  position: relative;
  z-index: 3;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 4rem;
}

.footer-brand img {
  height: 50px;
  width: auto;
  object-fit: contain;
  margin-bottom: 1rem;
  filter: brightness(1.1);
}

.footer-brand p {
  font-size: 0.9rem;
  color: var(--gray-3);
  line-height: 1.7;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links strong {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 0.3rem;
}

.footer-links a {
  font-size: 0.88rem;
  color: var(--gray-3);
  transition: color 0.25s;
}

.footer-links a:hover {
  color: var(--blue-light);
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-contact strong {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 0.3rem;
}

.footer-contact a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.88rem;
  color: var(--gray-3);
  transition: color 0.25s;
}

.footer-contact a:hover {
  color: #25D366;
}

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

.footer-bottom p {
  font-size: 0.82rem;
  color: var(--gray-4);
}

.footer-bottom a {
  color: var(--blue-light);
  font-weight: 700;
  transition: color 0.25s;
}

.footer-bottom a:hover {
  color: var(--white);
}

/* ---- ANIMATIONS ---- */

.reveal-up,
.reveal-left,
.reveal-right,
.reveal-scale,
.reveal-right-delay,
.reveal-rotate,
.reveal-blur,
.reveal-clip {
  opacity: 0;
  transition: opacity 0.9s var(--ease-out-expo), transform 0.9s var(--ease-out-expo), filter 0.9s var(--ease-out-expo), clip-path 0.9s var(--ease-out-expo);
}

.reveal-up {
  transform: translateY(50px);
}

.reveal-left {
  transform: translateX(-50px);
}

.reveal-right {
  transform: translateX(50px);
}

.reveal-right-delay {
  transform: translateX(50px);
  transition-delay: 0.15s;
}

.reveal-scale {
  transform: scale(0.88) translateY(30px);
}

.reveal-rotate {
  transform: perspective(800px) rotateY(8deg) translateX(-30px);
}

.reveal-blur {
  transform: translateY(30px);
  filter: blur(12px);
}

.reveal-clip {
  clip-path: inset(100% 0 0 0);
  transform: translateY(20px);
}

.delay-1 { transition-delay: 0.12s; }
.delay-2 { transition-delay: 0.24s; }
.delay-3 { transition-delay: 0.36s; }
.delay-4 { transition-delay: 0.48s; }

.reveal-up.visible,
.reveal-left.visible,
.reveal-right.visible,
.reveal-scale.visible,
.reveal-right-delay.visible,
.reveal-rotate.visible,
.reveal-blur.visible,
.reveal-clip.visible {
  opacity: 1;
  transform: none;
  filter: none;
  clip-path: inset(0 0 0 0);
}

/* Ensure clip-path degrades gracefully */
@supports not (clip-path: inset(0)) {
  .reveal-clip {
    clip-path: none;
    transform: translateY(40px);
  }
  .reveal-clip.visible {
    clip-path: none;
  }
}

.stagger-children > * {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s var(--ease-out-expo), transform 0.7s var(--ease-out-expo);
}

.stagger-children.visible > *:nth-child(1) { transition-delay: 0s; opacity: 1; transform: none; }
.stagger-children.visible > *:nth-child(2) { transition-delay: 0.08s; opacity: 1; transform: none; }
.stagger-children.visible > *:nth-child(3) { transition-delay: 0.16s; opacity: 1; transform: none; }
.stagger-children.visible > *:nth-child(4) { transition-delay: 0.24s; opacity: 1; transform: none; }
.stagger-children.visible > *:nth-child(5) { transition-delay: 0.32s; opacity: 1; transform: none; }
.stagger-children.visible > *:nth-child(6) { transition-delay: 0.40s; opacity: 1; transform: none; }

@keyframes floatGlow {
  0%, 100% { box-shadow: 0 0 20px var(--blue-glow-soft); transform: translateY(0); }
  50% { box-shadow: 0 0 35px var(--blue-glow); transform: translateY(-6px); }
}

@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

.hero-badge {
  animation: floatGlow 3s ease-in-out infinite;
}

.sc-number {
  background: linear-gradient(90deg, var(--blue), var(--blue-light), var(--blue));
  background-size: 200% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 3s linear infinite;
}

/* ---- RESPONSIVE ---- */

@media (max-width: 1024px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-card--wide {
    grid-column: span 2;
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }

  .brands-strip {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(320px, 80vw);
    background: rgba(14, 14, 14, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 2rem;
    gap: 2rem;
    transform: translateX(100%);
    transition: transform 0.45s var(--ease-out-expo);
    border-left: 1px solid rgba(255,255,255,0.06);
  }

  .nav-links.open {
    transform: translateX(0);
  }

  .nav-links a {
    font-size: 1.1rem;
  }

  .nav-cta {
    width: 100%;
    text-align: center;
    justify-content: center;
    padding: 0.8rem 1.5rem !important;
  }

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

  .service-card--wide {
    grid-column: span 1;
    grid-template-columns: 1fr;
  }

  .service-card--wide .sc-collage {
    min-height: 200px;
  }

  .sc-collage--wide {
    grid-template-columns: repeat(3, 1fr);
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .brands-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .about-stats {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.2rem;
  }

  .stat-divider {
    width: 40px;
    height: 1px;
  }

  .store-wrap {
    padding: 4rem 1.5rem;
  }

  #nosotros, #servicios, #contacto {
    padding: 6rem 0;
  }

  #marcas, #tienda {
    padding: 5rem 0;
  }
}

@media (max-width: 480px) {
  .hero-content h1 {
    font-size: clamp(2.5rem, 11vw, 3.5rem);
  }

  .hero-actions {
    flex-direction: column;
  }

  .btn-primary, .btn-ghost {
    width: 100%;
    justify-content: center;
  }

  .brands-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-form-wrap {
    padding: 1.5rem;
  }
}
