/* ============ RESET & BASE ============ */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --green: #16a34a;
  --green-dark: #15803d;
  --green-light: #22c55e;
  --green-neon: #4ade80;
  --orange: #f97316;
  --black: #0a0a0a;
  --gray-900: #111827;
  --gray-800: #1f2937;
  --gray-700: #374151;
  --gray-500: #6b7280;
  --gray-300: #d1d5db;
  --gray-200: #e5e7eb;
  --gray-100: #f3f4f6;
  --white: #ffffff;
  --wa: #25d366;
  --radius: 14px;
  --radius-lg: 20px;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.25);
  --shadow-glow: 0 0 40px rgba(34, 197, 94, 0.35);
  --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  color: var(--gray-900);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
}

/* Selección de texto */
::selection {
  background: var(--green);
  color: var(--white);
}

/* Scrollbar refinado */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: #0a0a0a;
}
::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--green-dark), var(--green));
  border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--green-light);
}

/* Focus accesible */
a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--green-neon);
  outline-offset: 3px;
  border-radius: 4px;
}

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

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

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: transparent;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

h1, h2, h3 {
  font-family: "Bebas Neue", "Inter", sans-serif;
  letter-spacing: 0.5px;
  line-height: 1.05;
  font-weight: 400;
}

h2 {
  font-size: clamp(2.2rem, 4.5vw, 3.5rem);
  margin-bottom: 0.5rem;
}

h3 {
  font-size: 1.6rem;
}

.eyebrow {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--green);
  margin-bottom: 0.75rem;
  position: relative;
  padding-left: 28px;
}

.eyebrow::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 20px;
  height: 2px;
  background: var(--green);
  transform: translateY(-50%);
}

.eyebrow--light {
  color: var(--green-neon);
}

.eyebrow--light::before {
  background: var(--green-neon);
}

.section__head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 3.5rem;
}

.section__head .eyebrow {
  padding-left: 0;
}

.section__head .eyebrow::before {
  display: none;
}

.section__head p {
  color: var(--gray-500);
  font-size: 1.05rem;
  margin-top: 0.75rem;
}

.section__head--light p {
  color: rgba(255, 255, 255, 0.7);
}

.section__head--light h2 {
  color: var(--white);
}

/* ============ REVEAL ANIMATIONS ============ */
.reveal {
  opacity: 0;
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: opacity, transform;
}

.reveal[data-reveal="fade-up"] { transform: translateY(40px); }
.reveal[data-reveal="fade-left"] { transform: translateX(40px); }
.reveal[data-reveal="fade-right"] { transform: translateX(-40px); }
.reveal[data-reveal="zoom-in"] { transform: scale(0.92); }

.reveal.is-visible {
  opacity: 1;
  transform: translate(0, 0) scale(1);
}

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 1rem 1.85rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.3px;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
  cursor: pointer;
  border: none;
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.btn--primary {
  background: linear-gradient(135deg, var(--green) 0%, var(--green-light) 100%);
  color: var(--white);
  box-shadow: 0 10px 25px rgba(22, 163, 74, 0.4);
}

.btn--primary::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.25), transparent);
  transition: left 0.6s ease;
}

.btn--primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(22, 163, 74, 0.55);
}

.btn--primary:hover::after {
  left: 100%;
}

.btn--ghost {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.05);
}

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

.btn--small {
  padding: 0.7rem 1.3rem;
  font-size: 0.85rem;
}

.link {
  color: var(--green);
  font-weight: 600;
  transition: color var(--transition);
}

.link:hover {
  color: var(--green-dark);
}

/* ============ NAV ============ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(10, 10, 10, 0.55);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  transition: background var(--transition), padding var(--transition);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.nav.is-scrolled {
  background: rgba(10, 10, 10, 0.92);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.25rem;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--white);
  transition: transform var(--transition);
}

.nav__logo:hover {
  transform: scale(1.04);
}

.nav__logo-img {
  height: 54px;
  width: auto;
  display: block;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
}

/* Cuando el PNG carga, oculta el SVG fallback */
.nav__logo-img + .nav__logo-fallback {
  display: none;
}

/* Footer: el logo debe ser un poco más pequeño */
.footer__brand .nav__logo-img {
  height: 48px;
}

.nav__logo-fallback {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.nav__logo-mark {
  width: 38px;
  height: 38px;
  animation: spin 12s linear infinite;
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.nav__logo-text {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.75rem;
  letter-spacing: 2px;
  line-height: 1;
}

.nav__logo-text span {
  color: var(--green-neon);
}

.nav__menu {
  display: flex;
  gap: 2.2rem;
}

.nav__menu a {
  color: rgba(255, 255, 255, 0.78);
  font-weight: 500;
  font-size: 0.92rem;
  transition: color var(--transition);
  position: relative;
  padding: 0.25rem 0;
}

.nav__menu a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--green-neon);
  transition: width var(--transition), left var(--transition);
}

.nav__menu a:hover,
.nav__menu a.is-active {
  color: var(--white);
}

.nav__menu a:hover::after,
.nav__menu a.is-active::after {
  width: 100%;
  left: 0;
}

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: none;
  cursor: pointer;
}

.nav__toggle span {
  width: 26px;
  height: 2px;
  background: var(--white);
  transition: var(--transition);
}

/* ============ HERO ============ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background:
    linear-gradient(120deg, rgba(5, 5, 5, 0.72) 0%, rgba(10, 35, 18, 0.45) 50%, rgba(5, 5, 5, 0.78) 100%),
    url("assets/hero.jpg?v=2") center/cover no-repeat;
  color: var(--white);
  overflow: hidden;
  padding-top: 80px;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 80%, rgba(34, 197, 94, 0.15) 0%, transparent 50%),
    linear-gradient(to bottom, transparent 60%, rgba(0, 0, 0, 0.6) 100%);
  pointer-events: none;
}

.hero__pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 1px 1px, rgba(255, 255, 255, 0.08) 1px, transparent 0);
  background-size: 32px 32px;
  pointer-events: none;
  opacity: 0.5;
}

.hero__content {
  position: relative;
  z-index: 2;
  padding: 4rem 1.25rem;
}

.hero__tag {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--green-neon);
  margin-bottom: 1.5rem;
  padding: 0.5rem 1.1rem;
  border: 1px solid rgba(74, 222, 128, 0.4);
  border-radius: 50px;
  background: rgba(34, 197, 94, 0.12);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.hero__title {
  font-size: clamp(3rem, 8vw, 6.5rem);
  margin-bottom: 1.5rem;
  max-width: 880px;
  text-shadow: 0 8px 40px rgba(0, 0, 0, 0.6);
  font-weight: 400;
  letter-spacing: 1px;
}

.hero__title span {
  background: linear-gradient(120deg, var(--green-neon) 0%, var(--green-light) 50%, var(--white) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
  filter: drop-shadow(0 4px 20px rgba(34, 197, 94, 0.4));
}

.hero__subtitle {
  font-size: 1.15rem;
  max-width: 600px;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 4rem;
}

.hero__stats {
  display: flex;
  gap: 3rem;
  flex-wrap: wrap;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.hero__stats > div {
  display: flex;
  flex-direction: column;
}

.hero__stats strong {
  font-family: "Bebas Neue", sans-serif;
  font-size: 3rem;
  background: linear-gradient(135deg, var(--green-neon), var(--green-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.hero__stats span {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: rgba(255, 255, 255, 0.65);
  margin-top: 0.5rem;
}

.hero__scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  width: 28px;
  height: 48px;
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-radius: 50px;
  z-index: 3;
  display: flex;
  justify-content: center;
  padding-top: 8px;
}

.hero__scroll span {
  display: block;
  width: 4px;
  height: 8px;
  background: var(--white);
  border-radius: 2px;
  animation: scrollHint 2s infinite;
}

@keyframes scrollHint {
  0% { transform: translateY(0); opacity: 1; }
  100% { transform: translateY(18px); opacity: 0; }
}

/* ============ ABOUT ============ */
.about {
  padding: 7rem 0;
  background: var(--gray-100);
  position: relative;
}

.about__grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about__text p {
  color: var(--gray-700);
  margin: 1.25rem 0 1.75rem;
  font-size: 1.05rem;
  line-height: 1.75;
}

.about__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.about__list li {
  color: var(--gray-700);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.check {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green), var(--green-light));
  color: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 800;
  flex-shrink: 0;
}

.about__image {
  position: relative;
  aspect-ratio: 4 / 5;
}

.about__image-frame {
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  background-color: #166534;
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.about__image-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(22, 163, 74, 0.35), rgba(10, 10, 10, 0.45));
}

.about__image-frame::after {
  content: "⚽";
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 7rem;
  opacity: 0.18;
}

.about__badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--white);
  padding: 1.5rem 1.75rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 1rem;
  z-index: 2;
}

.about__badge strong {
  font-family: "Bebas Neue", sans-serif;
  font-size: 3.5rem;
  background: linear-gradient(135deg, var(--green), var(--green-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.about__badge span {
  font-size: 0.85rem;
  color: var(--gray-700);
  font-weight: 600;
  line-height: 1.3;
}

/* ============ GALERÍA ============ */
.fields {
  padding: 7rem 0;
  background: var(--white);
}

.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 210px;
  gap: 1rem;
  margin-bottom: 3rem;
}

.gallery__item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  background: linear-gradient(135deg, #14532d, #166534);
  cursor: zoom-in;
  display: block;
  padding: 0;
  border: none;
  grid-row: span 1;
  grid-column: span 1;
}

.gallery__item--tall {
  grid-row: span 2;
}

.gallery__item--wide {
  grid-column: span 2;
}

.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
  display: block;
}

.gallery__item:hover img {
  transform: scale(1.08);
}

.gallery__item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.55) 0%, transparent 50%);
  opacity: 0;
  transition: opacity var(--transition);
  z-index: 1;
  pointer-events: none;
}

.gallery__item:hover::before {
  opacity: 1;
}

.gallery__zoom {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  color: var(--gray-900);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 700;
  opacity: 0;
  transform: scale(0.7) rotate(-45deg);
  transition: all var(--transition);
  z-index: 2;
  box-shadow: var(--shadow);
}

.gallery__item:hover .gallery__zoom {
  opacity: 1;
  transform: scale(1) rotate(0deg);
}

.gallery__item.is-placeholder img {
  display: none;
}

.gallery__item.is-placeholder::after {
  content: "📷 Foto pendiente";
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.7);
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  background:
    linear-gradient(135deg, rgba(22, 163, 74, 0.25), rgba(10, 10, 10, 0.5)),
    repeating-linear-gradient(
      90deg,
      #14532d 0px,
      #14532d 40px,
      #166534 40px,
      #166534 80px
    );
}

.fields__cta {
  text-align: center;
}

/* ============ LIGHTBOX ============ */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 200;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  padding: 2rem;
}

.lightbox.is-open {
  opacity: 1;
  visibility: visible;
}

.lightbox__img {
  max-width: 92vw;
  max-height: 86vh;
  border-radius: 8px;
  box-shadow: 0 20px 80px rgba(0, 0, 0, 0.5);
  animation: lbZoom 0.4s ease;
}

@keyframes lbZoom {
  from { transform: scale(0.85); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.lightbox__close,
.lightbox__nav {
  position: absolute;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition), transform var(--transition);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.lightbox__close:hover,
.lightbox__nav:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1.08);
}

.lightbox__close {
  top: 1.5rem;
  right: 1.5rem;
}

.lightbox__nav--prev {
  left: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 2rem;
}

.lightbox__nav--prev:hover {
  transform: translateY(-50%) scale(1.08);
}

.lightbox__nav--next {
  right: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 2rem;
}

.lightbox__nav--next:hover {
  transform: translateY(-50%) scale(1.08);
}

/* ============ VIDEO ============ */
.video-section {
  padding: 7rem 0;
  background: linear-gradient(135deg, #050505 0%, #0f2818 50%, #050505 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.video-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(34, 197, 94, 0.12) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(34, 197, 94, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.video-wrap {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(34, 197, 94, 0.2);
  background: #000;
  aspect-ratio: 16 / 9;
  z-index: 2;
}

.video-wrap::after {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--green-neon), transparent, var(--green-neon));
  z-index: -1;
  opacity: 0.4;
  filter: blur(20px);
}

.video-wrap video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.video-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: rgba(34, 197, 94, 0.95);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 3;
  box-shadow: 0 12px 40px rgba(34, 197, 94, 0.5);
  transition: transform 0.3s ease, opacity 0.3s ease, background 0.3s ease;
  border: 3px solid rgba(255, 255, 255, 0.25);
}

.video-play::before {
  content: "";
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 2px solid rgba(34, 197, 94, 0.4);
  animation: videoPulse 2s infinite;
}

@keyframes videoPulse {
  0% { transform: scale(1); opacity: 1; }
  100% { transform: scale(1.4); opacity: 0; }
}

.video-play svg {
  margin-left: 4px;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
}

.video-play:hover {
  transform: translate(-50%, -50%) scale(1.08);
  background: var(--green-light);
}

.video-play.is-hidden {
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -50%) scale(0.5);
}

/* ============ TIENDA ============ */
.store {
  padding: 8rem 0;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(22, 163, 74, 0.18) 0%, transparent 55%),
    linear-gradient(180deg, #050505 0%, #0a0f0a 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.store::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 1px 1px, rgba(255, 255, 255, 0.04) 1px, transparent 0);
  background-size: 24px 24px;
  pointer-events: none;
  opacity: 0.6;
}

.brands {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
  position: relative;
  z-index: 1;
  margin-bottom: 3rem;
}

.brand {
  padding: 3rem 2rem 2.5rem;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.01) 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: transform var(--transition-slow), border-color var(--transition), box-shadow var(--transition-slow), background var(--transition-slow);
  position: relative;
  text-align: center;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  overflow: hidden;
}

.brand::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, var(--brand-glow, rgba(34, 197, 94, 0.15)) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--transition-slow);
  pointer-events: none;
}

.brand:hover {
  transform: translateY(-10px);
  border-color: var(--brand-color, rgba(34, 197, 94, 0.5));
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5), 0 0 0 1px var(--brand-color, transparent);
}

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

.brand--featured {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.02) 100%);
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.35);
}

.brand__badge {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  margin: 0 auto 1.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  box-shadow: 0 12px 30px var(--badge-shadow, rgba(0, 0, 0, 0.3)), inset 0 -2px 8px rgba(0, 0, 0, 0.2);
}

.brand__badge::after {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 1px solid var(--brand-color, rgba(255, 255, 255, 0.15));
  opacity: 0.4;
}

.brand__initial {
  font-family: "Bebas Neue", sans-serif;
  font-size: 3rem;
  color: var(--white);
  letter-spacing: 2px;
  line-height: 1;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.25);
}

.brand__badge--coke {
  background: linear-gradient(135deg, #e60026 0%, #b8001f 100%);
  --brand-color: #e60026;
  --brand-glow: rgba(230, 0, 38, 0.2);
  --badge-shadow: rgba(230, 0, 38, 0.4);
}

.brand__badge--bavaria {
  background: linear-gradient(135deg, #fbbf24 0%, #d97706 100%);
  --brand-color: #fbbf24;
  --brand-glow: rgba(251, 191, 36, 0.2);
  --badge-shadow: rgba(251, 191, 36, 0.4);
}

.brand__badge--postobon {
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
  --brand-color: #3b82f6;
  --brand-glow: rgba(37, 99, 235, 0.2);
  --badge-shadow: rgba(37, 99, 235, 0.4);
}

.brand--featured .brand__badge--coke,
.brand--featured .brand__badge--bavaria,
.brand--featured .brand__badge--postobon {
  transform: scale(1.05);
}

.brand:has(.brand__badge--coke) {
  --brand-color: rgba(230, 0, 38, 0.6);
  --brand-glow: rgba(230, 0, 38, 0.18);
}

.brand:has(.brand__badge--bavaria) {
  --brand-color: rgba(251, 191, 36, 0.6);
  --brand-glow: rgba(251, 191, 36, 0.18);
}

.brand:has(.brand__badge--postobon) {
  --brand-color: rgba(59, 130, 246, 0.6);
  --brand-glow: rgba(59, 130, 246, 0.18);
}

.brand__name {
  font-size: 2rem;
  color: var(--white);
  margin-bottom: 0.5rem;
  letter-spacing: 1px;
}

.brand__desc {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.95rem;
  margin-bottom: 1.75rem;
  min-height: 3rem;
}

.brand__products {
  list-style: none;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  position: relative;
  z-index: 1;
}

.brand__products li {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.3px;
  position: relative;
  padding-left: 18px;
}

.brand__products li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 8px;
  height: 8px;
  background: var(--brand-color, var(--green));
  border-radius: 50%;
  transform: translateY(-50%);
  opacity: 0.85;
}

.store__note {
  display: flex;
  align-items: center;
  gap: 1rem;
  justify-content: center;
  padding: 1.5rem 2rem;
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.1), rgba(34, 197, 94, 0.04));
  border: 1px solid rgba(34, 197, 94, 0.25);
  border-radius: 50px;
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.store__note-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.store__note p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.95rem;
  margin: 0;
}

.store__note strong {
  color: var(--green-neon);
  font-weight: 700;
}

/* ============ UBICACIÓN ============ */
.location {
  padding: 7rem 0;
  background: var(--gray-100);
}

.location__grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 2.5rem;
  align-items: stretch;
}

.location__info {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.location__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

.location__list li {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  background: var(--white);
  padding: 1.2rem 1.4rem;
  border-radius: var(--radius);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: transform var(--transition), box-shadow var(--transition);
  border: 1px solid var(--gray-200);
}

.location__list li:hover {
  transform: translateX(4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  border-color: var(--green-light);
}

.location__list li div {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  flex: 1;
}

.location__list li strong {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--green);
  font-weight: 800;
}

.location__list li span,
.location__list li a {
  color: var(--gray-900);
  font-size: 1rem;
  font-weight: 600;
}

.location__list li a {
  color: var(--green-dark);
  text-decoration: none;
  transition: color var(--transition);
}

.location__list li a:hover {
  color: var(--green);
}

.location__icon {
  font-size: 1.6rem;
  line-height: 1;
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.15), rgba(22, 163, 74, 0.08));
  display: flex;
  align-items: center;
  justify-content: center;
}

.location__map {
  position: relative;
  min-height: 480px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.location__map iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 480px;
}

.location__map-badge {
  position: absolute;
  left: 1.25rem;
  bottom: 1.25rem;
  background: var(--white);
  padding: 1.1rem 1.4rem;
  border-radius: 14px;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  text-decoration: none;
  color: var(--gray-900);
  max-width: 290px;
  transition: transform var(--transition), box-shadow var(--transition);
  border-left: 4px solid var(--green);
}

.location__map-badge:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.28);
}

.location__map-badge strong {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.4rem;
  letter-spacing: 1px;
  color: var(--gray-900);
}

.location__map-badge span {
  font-size: 0.85rem;
  color: var(--gray-700);
}

.location__map-link {
  margin-top: 0.5rem;
  color: var(--green) !important;
  font-weight: 800;
  font-size: 0.8rem !important;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ============ CTA ============ */
.cta {
  padding: 7rem 0;
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green) 50%, var(--green-light) 100%);
  color: var(--white);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 50%, rgba(255, 255, 255, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 70% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.cta__inner {
  position: relative;
  z-index: 1;
}

.cta h2 {
  margin-bottom: 1rem;
  font-size: clamp(2.5rem, 5vw, 4rem);
}

.cta p {
  font-size: 1.15rem;
  margin-bottom: 2.5rem;
  opacity: 0.95;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
}

.cta__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.cta .btn--primary {
  background: var(--white);
  color: var(--green-dark);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
}

.cta .btn--primary:hover {
  background: var(--gray-100);
}

/* ============ FOOTER ============ */
.footer {
  background: var(--black);
  color: rgba(255, 255, 255, 0.7);
  padding: 4rem 0 2rem;
}

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

.footer__brand .nav__logo {
  margin-bottom: 0.75rem;
}

.footer__brand p {
  margin-top: 0.5rem;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.5);
  max-width: 320px;
}

.footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: flex-end;
}

.footer__links a {
  color: rgba(255, 255, 255, 0.75);
  transition: color var(--transition);
  font-size: 0.95rem;
}

.footer__links a:hover {
  color: var(--green-neon);
}

.footer__copy {
  grid-column: 1 / -1;
  text-align: center;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.4);
  padding-top: 2rem;
  margin-top: 2.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

/* ============ FLOATING WHATSAPP ============ */
.wa-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--wa);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.5);
  z-index: 90;
  transition: transform var(--transition);
}

.wa-float::before {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  background: var(--wa);
  opacity: 0.4;
  animation: pulse 2s infinite;
  z-index: -1;
}

@keyframes pulse {
  0% { transform: scale(1); opacity: 0.5; }
  100% { transform: scale(1.6); opacity: 0; }
}

.wa-float:hover {
  transform: scale(1.1);
}

/* ============ RESPONSIVE ============ */
@media (max-width: 980px) {
  .gallery {
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 180px;
  }

  .gallery__item--tall {
    grid-row: span 2;
  }

  .gallery__item--wide {
    grid-column: span 2;
  }
}

@media (max-width: 860px) {
  .brands {
    grid-template-columns: 1fr;
    gap: 1.25rem;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 2rem;
  }

  .brand--featured {
    transform: none;
  }

  .store__note {
    flex-direction: column;
    text-align: center;
    border-radius: var(--radius);
    padding: 1.25rem 1.5rem;
  }

  .nav__menu {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: rgba(10, 10, 10, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 2rem 1.5rem;
    gap: 1.25rem;
    transform: translateY(-150%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .nav__menu.is-open {
    transform: translateY(0);
  }

  .nav__toggle {
    display: flex;
  }

  .about__grid,
  .location__grid,
  .footer__inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .footer__links {
    justify-content: flex-start;
  }

  .hero__stats {
    gap: 2rem;
  }

  .hero__stats strong {
    font-size: 2.3rem;
  }

  .gallery {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 160px;
  }

  .gallery__item--wide {
    grid-column: span 2;
  }

  .gallery__item--tall {
    grid-row: span 2;
  }

  .about__badge {
    bottom: -10px;
    right: 50%;
    transform: translateX(50%);
  }
}

@media (max-width: 480px) {
  .hero__cta {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    width: 100%;
  }

  .cta__buttons {
    flex-direction: column;
  }

  .lightbox__close {
    top: 1rem;
    right: 1rem;
    width: 44px;
    height: 44px;
  }

  .lightbox__nav {
    width: 44px;
    height: 44px;
  }
}
