/* --- POSICIÓN DEL BOTÓN CENTRADO (Donde está la línea roja) --- */
.hero-cta-center {
  position: absolute;
  bottom: 25%; /* Ajusta este porcentaje si deseas que el botón suba o baje más */
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
}

/* --- ESTILO DEL BOTÓN TRANSPARENTE --- */
.btn-transparente {
  background: transparent;
  color: var(--white, #f5f5f5);
  border: 1px solid var(--white, #f5f5f5);
  padding: 16px 40px;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}

.btn-transparente:hover {
  background: var(--white, #f5f5f5);
  color: var(--black, #0a0a0a);
}

/* Flechita para el botón transparente si está dentro de un dropdown */
.hero-coleccion-dropdown .btn-transparente::after {
  content: '▾';
  margin-left: 10px;
  font-size: 10px;
  display: inline-block;
  transition: transform 0.3s;
}

.hero-coleccion-dropdown.abierto .btn-transparente::after {
  transform: rotate(180deg);
}

/* CONTACTO / CTA */
.cta {
  background: var(--surface);
  padding: 100px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta::before {
  content: 'VYNTA';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-family: 'Bebas Neue', sans-serif;
  font-size: 200px;
  color: transparent;
  -webkit-text-stroke: 1px rgba(200,200,200,0.04);
  letter-spacing: 20px;
  pointer-events: none;
}

.cta-inner { position: relative; }

.cta h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(48px, 8vw, 96px);
  letter-spacing: 6px;
  color: var(--white);
  margin-bottom: 16px;
}

.cta p {
  font-size: 14px;
  color: var(--muted);
  letter-spacing: 2px;
  margin-bottom: 48px;
  text-transform: uppercase;
}

.cta-buttons {
  display: flex; gap: 16px; justify-content: center;
}

.btn-facebook {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--chrome);
  padding: 18px 48px;
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  text-decoration: none;
  transition: all 0.3s;
  display: inline-flex; 
  align-items: center; 
  gap: 10px;
}

.btn-facebook:hover {
  border-color: var(--chrome);
}

.btn-ig {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--chrome);
  padding: 18px 48px;
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  text-decoration: none;
  transition: all 0.3s;
  display: inline-flex; align-items: center; gap: 10px;
}

.btn-whatsapp {
  background: #2e798cb5;
  color: #0000001a;
  padding: 18px 48px;
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s;
  display: inline-flex; align-items: center; gap: 10px;
}

.btn-whatsapp:hover { background: #5acec8cc; transform: translateY(-2px); }
.btn-ig:hover { border-color: var(--chrome); color: var(--white); }

/* MOBILE */
@media (max-width: 768px) {
  .cta { padding: 60px 20px; }
  .cta h2 { font-size: 36px; }
  .cta-buttons { flex-direction: column; width: 100%; gap: 12px; }
  .btn-facebook, .btn-ig { width: 100%; justify-content: center; }
  .hero-cta-center { bottom: 20%; } /* Ajuste del botón en móvil */
}

/* Contenedor de botones: columna centrada */
.cta-buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
}

/* Instagram — transparente con borde */
.cta-buttons .btn-ig {
  background: transparent;
  border: 1px solid var(--border) ;
  color: var(--chrome) ;
}
.cta-buttons .btn-ig:hover {
  border-color: var(--chrome) ;
  color: var(--white) ;
  transform: translateY(-2px);
}

/* Facebook — transparente con borde */
.cta-buttons .btn-facebook {
  background: transparent ;
  border: 1px solid var(--border) ;
  color: var(--chrome) ;
}
.cta-buttons .btn-facebook:hover {
  border-color: var(--chrome) ;
  color: var(--white) ;
  transform: translateY(-2px);
}

@media (min-width: 601px) {
  .cta-buttons {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    max-width: 700px;
  }
}  

/* HERO */
.hero {
  height: 100vh;
  display: flex; align-items: center; justify-content: center;
  padding: 0 60px;
  position: relative;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0f0f0f 100%);
  overflow: hidden;
}

.hero::before {
  content: 'VYNTA';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(120px, 20vw, 320px);
  color: transparent;
  -webkit-text-stroke: 1px rgba(200,200,200,0.15);
  letter-spacing: 20px;
  white-space: nowrap;
  pointer-events: none;
  z-index: 2;
  mix-blend-mode: overlay;
}

.hero-collage {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: grid;
  grid-template-columns: 30% 70%;
  gap: 4px;
}

.hero-img {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-color: var(--surface, #161616);
  filter: grayscale(35%) brightness(0.75);
  transition: filter 0.6s ease, transform 8s ease;
}

.hero-collage:hover .hero-img {
  filter: grayscale(15%) brightness(0.85);
  transform: scale(1.03);
}

.hero-img-side {
  display: grid;
  grid-template-rows: 58% 42%;
  gap: 4px;
  height: 100%;
}

.hero-img-bottom-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
}

/* --- HERO DE UNA SOLA IMAGEN (usado en el hero masculino) --- */
.hero-single-img {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-size: cover;
  background-position: center;
  background-color: var(--surface, #161616);
  filter: grayscale(35%) brightness(0.75);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(circle at 50% 55%, rgba(124, 128, 132, 0.049) 0%, rgba(6, 6, 6, 0.223) 35%, rgba(6,6,6,0.75) 100%),
    linear-gradient(0deg, rgba(6, 6, 6, 0.278) 0%, rgba(8, 8, 8, 0.357) 45%, rgba(47, 52, 58, 0.128) 100%);
  pointer-events: none;
}

.hero-bg-lines, .hero-particles { z-index: 2; }

.hero-grid {
  display: flex;
  width: 100%;
  height: 100%;
  position: relative;
}

.hero-left {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hero-left h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(70px, 11vw, 150px);
  line-height: 0.92;
  letter-spacing: 2px;
  color: var rgba(233, 228, 217, 0.227);
  margin-bottom: 28px;
}

.hero-left h1 em {
  font-style: italic;
  font-family: 'Playfair Display', serif;
  color: rgba(255, 250, 240, 0.459);
}

.hero-left p {
  font-size: 14px;
  color: var rgba(255, 250, 240, 0.407);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 40px;
  max-width: 420px;
  line-height: 2;
}

.hero-actions { display: flex; gap: 16px; align-items: center; justify-content: center; }

/* --- DROPDOWN "VER COLECCIÓN" (Masculina / Femenina) --- */
.hero-coleccion-dropdown {
  position: relative;
}

.hero-dropdown-menu {
  position: absolute;
  bottom: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 180px;
  background: var(--deep, #131313);
  border: 1px solid var(--border, rgba(255,255,255,0.12));
  list-style: none;
  margin: 0; padding: 6px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.25s ease;
  z-index: 5;
}

.hero-coleccion-dropdown.abierto .hero-dropdown-menu,
.hero-coleccion-dropdown:hover .hero-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.hero-dropdown-menu li a {
  display: block;
  padding: 12px 20px;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--chrome, #c8c8c8);
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s, color 0.2s;
}

.hero-dropdown-menu li a:hover {
  background: var(--chrome-light, #e5e5e5);
  color: var(--black, #0a0a0a);
}

.btn-primary {
  background: var(--chrome-light);
  color: var(--black);
  padding: 16px 40px;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s;
  display: inline-block;
}

.btn-primary:hover { background: var(--white); transform: translateY(-1px); }

.btn-ghost {
  color: var(--chrome);
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  text-decoration: none;
  display: flex; align-items: center; gap: 10px;
  transition: color 0.3s;
}

.btn-ghost:hover { color: var(--white); }
.btn-ghost::after { content: '→'; font-size: 16px; }

/* --- BARRA DE ESTADÍSTICAS (debajo del hero) --- */
.hero-stats-bar {
  background: var(--deep);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 32px 60px;
}

.hero-stats-bar-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
}

.hero-stat {
  text-align: center;
}

.hero-stat .number {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 40px;
  color: var(--chrome);
  letter-spacing: 2px;
  line-height: 1;
}

.hero-stat .label {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 4px;
}

.hero-divider {
  width: 1px; height: 36px;
  background: var(--border);
}

.manifiesto-sub {
  font-size: 12px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--accent);
}

/* --- CONTENEDOR ENVOLVENTE --- */
.manifiesto-wrapper {
  display: flex;
  align-items: flex-end; 
  justify-content: space-between;
  gap: 60px; 
  max-width: 1400px; 
  margin: 0 auto;
  position: relative;
  z-index: 1; 
}

/* --- CONTENEDOR DEL MAPA --- */
.mapa-t-container {
  width: 400px;
  flex-shrink: 0;
  position: relative; 
  cursor: pointer; 
}

.mapa-base {
  width: 100%;
  height: auto;
  display: block;
  transition: filter 0.3s ease;
}

.mapa-t-container:hover .mapa-base {
  filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.2)); 
}

/* --- ESTILO DE LAS BANDERAS --- */
.banderas-centro {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 0; 
  height: 0;
  pointer-events: none;
  z-index: 10;
}

/* --- ESTILO BASE DE LAS BANDERAS --- */
.bandera {
  position: absolute;
  bottom: 0; 
  width: 120px; 
  height: auto;
  opacity: 0;
  transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1); 
}

/* --- BANDERA IZQUIERDA (Trujillo) --- */
.bandera.izq {
  right: 0; 
  margin-right: -15px; 
  transform-origin: bottom right; 
  transform: rotate(-90deg) scale(0.3); 
}

/* --- BANDERA DERECHA (VYNTA) --- */
.bandera.der {
  left: 0; 
  margin-left: -15px; 
  transform-origin: bottom left; 
  transform: rotate(90deg) scale(0.3); 
}

/* --- EFECTO AL HACER CLIC (Cruce Perfecto) --- */
.mapa-t-container.mostrar-banderas .bandera.izq {
  opacity: 1;
  transform: rotate(-25deg) scale(1);
}

.mapa-t-container.mostrar-banderas .bandera.der {
  opacity: 1;
  transform: rotate(25deg) scale(1);
}

/* === MEJORA: HERO DINÁMICO === */
.hero-bg-lines {
  position: absolute; inset: 0; z-index: 2; pointer-events: none;
  overflow: hidden;
}
.hero-bg-lines span {
  position: absolute;
  background: linear-gradient(90deg, transparent, rgba(200,200,200,0.08), transparent);
  height: 1px; width: 140%;
  left: -20%;
  animation: hero-line-move 14s linear infinite;
}
.hero-bg-lines span:nth-child(1) { top: 18%; animation-duration: 16s; }
.hero-bg-lines span:nth-child(2) { top: 42%; animation-duration: 22s; animation-direction: reverse; }
.hero-bg-lines span:nth-child(3) { top: 67%; animation-duration: 18s; }
.hero-bg-lines span:nth-child(4) { top: 85%; animation-duration: 26s; animation-direction: reverse; }

.hero-particles { position: absolute; inset: 0; z-index: 2; pointer-events: none; }
.hero-particles span {
  position: absolute;
  width: 3px; height: 3px;
  background: rgba(200,200,200,0.25);
  border-radius: 50%;
  animation: hero-particle-float linear infinite;
}

.hero-grid, .hero::before { will-change: transform; }
.hero-grid { position: relative; z-index: 3; }

.hero-left h1 .letra {
  display: inline-block;
  opacity: 0;
  transform: translateY(30px);
  animation: letra-in 0.6s cubic-bezier(.2,.8,.2,1) forwards;
}

/* MOBILE */
@media (max-width: 768px) {
  .hero { padding: 0 24px; }
  .hero-collage { grid-template-columns: 1fr; grid-template-rows: 58% 42%; }
  .hero-img-side { grid-template-rows: 1fr 1fr; }
  .hero-stats-bar { padding: 24px; }
  .hero-stats-bar-inner { gap: 24px; flex-wrap: wrap; }
}

/* ==========================================================
    AGREGUE CSS PARA LA SECCION DE PETICIONES PERSONALIZADAS
   ========================================================== */
.seccion-peticiones {
  background: var(--black);
  padding: 100px 60px;
  border-top: 1px solid var(--border);
}

.peticiones-contenedor {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.peticiones-tag {
  font-size: 10px;
  letter-spacing: 4px;
  color: var(--accent);
  text-transform: uppercase;
  font-weight: 600;
}

.peticiones-info h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(36px, 4vw, 56px);
  letter-spacing: 3px;
  margin: 16px 0;
  color: var(--white);
  text-transform: uppercase;
}

.peticiones-info p { 
  color: var(--muted);
  line-height: 1.8;
  font-size: 14px;
}

.peticiones-form {
  background: var(--deep);
  padding: 40px;
  border-radius: 0;
  border: 1px solid var(--border);
}

.form-grupo {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}

.form-grupo-row {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 20px;
}

.form-grupo label {
  font-size: 10px;
  color: var(--chrome);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.form-grupo input, 
.form-grupo select, 
.form-grupo textarea {
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--white);
  padding: 12px 16px;
  border-radius: 0;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 300;
  transition: border-color 0.3s;
}

.form-grupo input:focus, 
.form-grupo select:focus, 
.form-grupo textarea:focus {
  outline: none;
  border-color: var(--chrome);
}

.btn-peticion {
  background: var(--chrome-light);
  color: var(--black);
  border: none;
  padding: 16px;
  width: 100%;
  border-radius: 0;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s;
  margin-top: 10px;
}

.btn-peticion:hover { 
  background: var(--white);
  transform: translateY(-1px);
}

@media (max-width: 768px) {
  .seccion-peticiones { padding: 60px 24px; }
  .peticiones-contenedor { grid-template-columns: 1fr; gap: 40px; }
  .peticiones-form { padding: 30px 20px; }
  .form-grupo-row { grid-template-columns: 1fr; gap: 0; }
}

/* ==========================================================
   SECCIÓN: WEEKLY LIMITED DROP (KITS COMPLETOS)
   ========================================================== */
.seccion-drop-semanal {
  background: var(--deep) !important;
  padding: 120px 60px !important;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  display: block;
  width: 100%;
  box-sizing: border-box;
}

.drop-contenedor {
  max-width: 1100px;
  margin: 0 auto;
  display: grid !important;
  grid-template-columns: 1fr 1.2fr !important;
  gap: 60px !important;
  align-items: center;
}

.drop-visual {
  position: relative;
  aspect-ratio: 1 / 1;
  background: var(--surface);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.drop-placeholder-img {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.drop-icon { font-size: 64px; opacity: 0.2; display: block; }
.drop-label-set { font-family: 'Bebas Neue', sans-serif; font-size: 16px; letter-spacing: 4px; color: rgba(255,255,255,0.3); }

.drop-badge-alerta {
  position: absolute; top: 20px; left: 20px;
  background: #b5443a; color: var(--white);
  font-size: 10px; letter-spacing: 2px;
  text-transform: uppercase; padding: 6px 14px;
  font-weight: 600; z-index: 2;
}

.drop-tag { font-size: 10px; letter-spacing: 4px; color: var(--accent); text-transform: uppercase; font-weight: 600; display: block; }

.drop-detalles h2 { font-family: 'Bebas Neue', sans-serif; font-size: clamp(32px, 5vw, 48px); letter-spacing: 2px; margin: 12px 0 20px; color: var(--white); text-transform: uppercase; }

.drop-descripcion { color: var(--chrome); font-size: 14px; line-height: 1.8; margin-bottom: 30px; }

.contador-container { background: var(--surface) !important; border: 1px solid var(--border) !important; padding: 24px !important; margin-bottom: 30px; display: block; }

.contador-titulo { font-size: 10px; letter-spacing: 3px; color: var(--muted); display: block; margin-bottom: 8px; }

.fecha-limite-texto { font-family: 'Bebas Neue', sans-serif; font-size: 32px; color: var(--white); letter-spacing: 2px; line-height: 1.2; }
.fecha-limite-texto span { color: var(--accent); }

.stock-alerta { font-size: 9px; letter-spacing: 1.5px; color: #b5443a; display: block; margin-top: 6px; font-weight: 600; }

.drop-tallas-container { margin-bottom: 30px; }
.tallas-label { font-size: 10px; color: var(--chrome); letter-spacing: 2px; display: block; margin-bottom: 12px; }
.drop-tallas-opciones { display: flex; gap: 10px; }

.talla-set-btn { border: 1px solid var(--border) !important; background: transparent !important; color: var(--white) !important; width: 45px; height: 45px; font-family: 'Inter', sans-serif; font-size: 12px; cursor: pointer; transition: all 0.3s; display: flex; align-items: center; justify-content: center; }

.talla-set-btn:hover { border-color: var(--chrome) !important; }
.talla-set-btn.seleccionada { background: var(--chrome-light) !important; border-color: var(--chrome-light) !important; color: var(--black) !important; font-weight: 600; }

.btn-adquirir-set { background: var(--white) !important; color: var(--black) !important; border: none !important; padding: 18px !important; width: 100%; font-family: 'Inter', sans-serif; font-weight: 600; font-size: 12px; letter-spacing: 3px; text-transform: uppercase; cursor: pointer; transition: all 0.3s; }

.btn-adquirir-set:hover { background: var(--chrome-light) !important; }

@media (max-width: 768px) {
  .seccion-drop-semanal { padding: 60px 24px !important; }
  .drop-contenedor { grid-template-columns: 1fr !important; gap: 40px !important; }
}

@media (max-width: 992px) {
  .manifiesto-wrapper { flex-direction: column; align-items: center; gap: 40px; }
  .mapa-t-container { width: 100%; max-width: 350px; margin: 0 auto; margin-top: 20px; }
  .bandera { width: 90px; }
  .bandera.izq { margin-right: -10px; }
  .bandera.der { margin-left: -10px; }
}
/* Hero solo-móvil */
.hero-solo-movil {
  display: none;
}

.hero-movil-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 14px;
  padding: 0 24px;
}

.hero-movil-label {
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--chrome, #c8c8c8);
}

.hero-movil-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(48px, 16vw, 84px);
  letter-spacing: 4px;
  line-height: 1;
  margin: 0;
  color: var(--white, #f5f5f5);
  text-shadow: 0 2px 20px rgba(208, 199, 199, 0.456);
}

.hero-movil-text {
  font-size: 13px;
  letter-spacing: 1px;
  color: var(#f5f5f57b);
  margin: 0 0 10px 0;
  max-width: 320px;
  line-height: 1.6;

}

@media (max-width: 768px) {
  /* Ocultar los hero estándar (desktop) en móvil */
  .hero-desktop {
    display: none !important;
  }

  /* Mostrar hero solo-móvil */
  .hero-solo-movil {
    display: flex;
  }

  /* El grid interior ocupa toda la pantalla y centra su contenido */
  .hero-solo-movil .hero-grid {
    position: relative;
    z-index: 3;
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  /* Anulamos el posicionamiento absoluto/inferior heredado para centrar */
  .hero-solo-movil .hero-cta-center {
    position: relative;
    top: auto;
    bottom: auto;
    left: auto;
    right: auto;
    transform: none;
    width: 100%;
    max-width: none;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  /* Oscurecemos un poco más el fondo para que el texto resalte
     sobre la marca de agua "VYNTA" */
  .hero-solo-movil .hero-overlay {
    background: rgba(10, 10, 10, 0.55);
  }
}
