/* =========================================================
   Jansy Gold Dark — CSS 100% tuyo
   Autor: Jansy Music
   Estilo: Dark + Gold + Glass
========================================================= */

/* =========================================================
   VARIABLES
========================================================= */
:root{
  --gold: #FFB703;
  --gold-soft: rgba(255, 183, 3, .22);

  --bg: #0a0a0a;
  --glass: rgba(12, 12, 12, .55);
  --glass-2: rgba(18, 12, 12, .62);
  --border: rgba(255, 183, 3, .20);

  --text: #f5f5f5;
  --muted: rgba(255,255,255,.68);

  --radius: 14px;
  --radius-sm: 12px;

  --shadow: 0 18px 45px rgba(0,0,0,.35);
  --transition: .25s ease;

  --font: "Segoe UI", system-ui, -apple-system, Arial, sans-serif;
  --shell: 1180px;
}

/* =========================================================
   RESET BASE
========================================================= */
*{ box-sizing:border-box; margin:0; padding:0; }
html, body{ height:100%; }

body{
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
}

a{ color: inherit; text-decoration: none; }
img{ max-width: 100%; display:block; }
ul{ list-style: none; }
button{ font-family: inherit; }

/* =========================================================
   UTILIDADES
========================================================= */
.jm-shell{
  width: min(var(--shell), calc(100% - 40px));
  margin: 0 auto;
}

.jm-em{ color: var(--gold); }

.jm-section-head{ margin-bottom: 26px; }

.jm-section-title{
  font-size: clamp(28px, 3vw, 38px);
  letter-spacing: .3px;
  font-weight: 800;
}

/* =========================================================
   HERO (foto + overlay + texto izquierda)
========================================================= */
.jm-hero{
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  padding: 28px 0 50px;
  overflow: hidden;
  background: url("../imgs/header.webp") no-repeat center center;
  background-size: cover;
}

.jm-hero::before{
  content:"";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg,
    rgba(0,0,0,.78) 0%,
    rgba(0,0,0,.58) 45%,
    rgba(0,0,0,.26) 100%
  );
  pointer-events: none;
}

.jm-hero::after{
  content:"";
  position:absolute;
  inset:-40px;
  background: radial-gradient(700px 420px at 25% 35%, rgba(255,183,3,.12), transparent 60%);
  pointer-events:none;
}

.jm-hero .jm-shell{
  position: relative;
  z-index: 1;
}

/* HERO contenido */
.jm-hero__content{
  max-width: 720px;
  text-align: left;
  background: transparent;
  border: none;
  box-shadow: none;
  padding: 0;
  display: flex;
  flex-direction: column;
}

/* HERO redes */
.jm-hero .jm-social{
  order: 1;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 18px;
  margin-top: -14px;
  margin-bottom: 32px;
  padding: 0;
}

.jm-hero .jm-social__link i{
  font-size: 24px;
  color: rgba(255,255,255,.95);
  transition: transform .25s ease, opacity .25s ease;
}

.jm-hero .jm-social__link:hover i{
  transform: translateY(-2px);
  opacity: .85;
}

/* HERO textos */
.jm-hero__kicker{
  order: 2;
  font-size: 46px;
  font-weight: 300;
  color: var(--gold);
  letter-spacing: .2px;
  margin-top: 0;
}

.jm-hero__title{
  order: 3;
  margin-top: 6px;
  font-size: clamp(66px, 7vw, 118px);
  font-weight: 900;
  line-height: .95;
  color: #fff;
  text-shadow: 0 14px 40px rgba(0,0,0,.55);
}

.jm-hero__tagline{
  order: 4;
  margin-top: 14px;
  font-size: 15px;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: rgba(255,255,255,.80);
  font-weight: 650;
}

/* =========================================================
   NAVBAR (logo grande -> texto al hacer sticky)
========================================================= */
.jm-nav{
  position: relative;
  width: 100%;
  z-index: 50;
  background: #000;
  border-bottom: 1px solid rgba(255,255,255,.08);
  box-shadow: 0 8px 22px rgba(0,0,0,.18);
  padding: 14px 0;
}

/* Sticky */
.jm-nav.is-stuck{
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  z-index: 9999;
}

/* Inner */
.jm-nav__inner{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Menu (desktop) */
.jm-nav__menu{
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Listas */
.jm-nav__list{
  display: flex;
  align-items: center;
  gap: 34px;
}

/* Links del nav */
.jm-nav__link{
  font-weight: 800;
  font-size: 16px;
  letter-spacing: .2px;
  color: #fff;
  transition: color .2s ease, opacity .2s ease;
}

.jm-nav__link:hover{ color: var(--gold); }

/* Brand centro */
.jm-brand{
  position: relative;
  text-align: center;
  min-width: 260px;
}

.jm-brand__img{
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 170px;
  height: 170px;
  border-radius: 50%;
  object-fit: cover;
  border: 10px solid #000;
  box-shadow: 0 5px 1px rgba(128, 128, 128, 0.13);
  z-index: 2;
  transition: .5s ease;
}

.jm-brand__text{
  position: relative;
  bottom: -20px;
  opacity: 0;
  z-index: 1;
  transition: 1s ease;
}

.jm-brand__title{
  font-size: 20px;
  font-weight: 900;
  color: var(--gold);
  line-height: 1.1;
}

.jm-brand__subtitle{
  font-size: 14px;
  color: #fff;
  margin-top: 2px;
}

/* Sticky: aparece texto y se va el logo */
.jm-nav.is-stuck .jm-brand__text{
  bottom: 0;
  opacity: 1;
}

.jm-nav.is-stuck .jm-brand__img{
  top: -10px;
  opacity: 0;
}

/* Botones Comprar Beats / Sorteos (desktop) */
.jm-nav__list--right .jm-nav__item:nth-last-child(-n+2) .jm-nav__link{
  padding: 10px 18px;
  border: 2px solid var(--gold);
  border-radius: 999px;
  background: transparent;
  color: var(--gold);
  font-weight: 800;
  transition: background .25s ease, color .25s ease, transform .2s ease, box-shadow .2s ease;
}

.jm-nav__list--right .jm-nav__item:nth-last-child(-n+2) .jm-nav__link:hover{
  background: var(--gold);
  color: #000;
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(0,0,0,.25);
}

/* Toggle hamburguesa */
.jm-nav__toggle{
  display: none;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.06);
  cursor:pointer;
  transition: transform .2s ease, background .2s ease;
}

.jm-nav__toggle:hover{
  background: rgba(255,255,255,.10);
  transform: translateY(-1px);
}

.jm-nav__toggle-line{
  display:block;
  width: 22px;
  height: 2px;
  margin: 6px auto;
  background: #fff;
  border-radius: 10px;
}

/* =========================================================
   STATS (blanco, negro, divisores)
========================================================= */
.jm-stats{
  background: #fff;
  padding: 70px 0;
}

.jm-stats__grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
  gap: 0;
}

.jm-stat{
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 22px 30px;
  min-height: 120px;
  position: relative;
}

.jm-stat:not(:last-child)::after{
  content:"";
  position: absolute;
  right: 0;
  top: 18px;
  bottom: 18px;
  width: 1px;
  background: rgba(0,0,0,.22);
}

.jm-stat__icon{
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
}

.jm-stat__icon i{
  font-size: 62px;
  color: #000;
  opacity: .92;
}

.jm-stat__body{
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.jm-stat__number{
  font-size: 52px;
  font-weight: 900;
  letter-spacing: .2px;
  line-height: 1;
  color: #000;
}

.jm-stat__label{
  font-size: 15px;
  font-weight: 800;
  letter-spacing: .6px;
  color: rgba(0,0,0,.65);
}

/* =========================================================
   RESPONSIVE
========================================================= */

/* =========================================================
   MOBILE NAV (MENÚ STRIP QUE EMPUJA CONTENIDO)
   - NO modal
   - NO absolute
   - El menú ocupa espacio y empuja STATS hacia abajo
========================================================= */
@media (max-width: 991px){

  /* ocultar brand del centro */
  .jm-brand{ display:none; }

  /* mostrar toggle */
  .jm-nav__toggle{ display:block; }

  /* el nav puede crecer */
  .jm-nav__inner{
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
  }

  /* el menú pasa a ser desplegable dentro del flujo */
  .jm-nav__menu{
    width: 100%;
    position: static;

    /* cerrado */
    max-height: 0;
    opacity: 0;
    overflow: hidden;

    margin-top: 12px;
    background: #fff;
    color: #111;
    border: 1px solid rgba(0,0,0,.10);
    border-radius: 14px;
    box-shadow: 0 14px 30px rgba(0,0,0,.12);

    transform: translateY(-6px);
    transition: max-height .35s ease, opacity .25s ease, transform .25s ease;
  }

  /* abierto con .is-open */
  .jm-nav.is-open .jm-nav__menu{
    max-height: 520px;
    opacity: 1;
    transform: translateY(0);
  }

  /* listas en columna */
  .jm-nav__list{
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 10px 16px;
  }

  .jm-nav__item{ width: 100%; }

  /* links tipo lista */
  .jm-nav__link{
    width: 100%;
    display: block;
    padding: 14px 10px;
    font-size: 18px;
    font-weight: 900;
    color: #111;
    border-bottom: 1px solid rgba(0,0,0,.08);
  }

  .jm-nav__link:hover{ color:#000; }

  /* quitar separador al final de cada lista */
  .jm-nav__list--left .jm-nav__item:last-child .jm-nav__link{ border-bottom:none; }
  .jm-nav__list--right .jm-nav__item:last-child .jm-nav__link{ border-bottom:none; }

  /* Botones (Comprar Beats / Sorteos) en móvil */
  .jm-nav__list--right .jm-nav__item:nth-last-child(-n+2) .jm-nav__link{
    margin-top: 10px;
    border-bottom: none;

    padding: 12px 14px;
    border-radius: 12px;
    border: 2px solid #111;

    background: transparent;
    color: #111;
    text-align: center;

    transition: background .25s ease, color .25s ease, transform .2s ease;
  }

  .jm-nav__list--right .jm-nav__item:nth-last-child(-n+2) .jm-nav__link:hover{
    background: #111;
    color: #fff;
    transform: translateY(-1px);
  }

  /* stats 2x2 */
  .jm-stats__grid{ grid-template-columns: repeat(2, 1fr); }
  .jm-stat:nth-child(2)::after{ display:none; }

  /* en 2x2, quita también el separador del 4to (por si acaso) */
  .jm-stat:nth-child(4)::after{ display:none; }
}

/* móvil */
@media (max-width: 768px){
  .jm-hero{
    min-height: 78vh;
    padding: 22px 0 40px;
  }

  .jm-hero .jm-social{
    margin-top: -10px;
    margin-bottom: 26px;
    gap: 16px;
  }

  .jm-hero__kicker{ font-size: 36px; }
  .jm-hero__title{ font-size: clamp(46px, 10vw, 78px); }
  .jm-hero__tagline{ letter-spacing: 3px; }

  /* stats un poco más compactos */
  .jm-stat{
    padding: 18px 20px;
    min-height: 110px;
  }

  .jm-stat__icon i{ font-size: 56px; }
  .jm-stat__number{ font-size: 46px; }
}

/* ultra pequeño: stats 1 columna */
@media (max-width: 520px){
  .jm-stats__grid{ grid-template-columns: 1fr; }
  .jm-stat::after{ display:none; }
}


/* =========================
   ABOUT — Jansy Gold Dark
========================= */
.jm-about{
  padding: 90px 0;
}

.jm-shell{
  width: min(1180px, calc(100% - 40px));
  margin: auto;
}

.jm-about__grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

/* PANEL GLASS */
.jm-panel{
  background: rgba(12,12,12,.55);
  border: 1px solid rgba(255,183,3,.20);
  border-radius: 14px;
  padding: 26px;
  box-shadow: 0 18px 45px rgba(0,0,0,.35);
}

.jm-panel__head{
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 12px;
}

.jm-panel__title{
  font-size: 18px;
  font-weight: 900;
  color: #fff;
}

.jm-panel__line{
  flex: 1;
  height: 1px;
  background: rgba(255,183,3,.30);
}

.jm-panel__subtitle{
  color: #FFB703;
  font-weight: 800;
  margin-bottom: 10px;
}

.jm-panel__text{
  color: rgba(255,255,255,.75);
  line-height: 1.7;
}

/* BOTÓN */
.jm-btn{
  display: inline-flex;
  gap: 10px;
  align-items: center;
  margin-top: 18px;
  padding: 12px 16px;
  border-radius: 12px;
  font-weight: 900;
}

.jm-btn--outline{
  border: 2px solid #FFB703;
  color: #FFB703;
}

/* INFO */
.jm-info{
  display: grid;
  gap: 10px;
  color: rgba(255,255,255,.85);
}

.jm-social{
  display: flex;
  gap: 14px;
  margin-top: 16px;
  color: #FFB703;
  font-size: 18px;
}

/* =========================================================
   ABOUT — MY EXPERTISE
   (SOLO dentro de .jm-about)
========================================================= */

.jm-about .jm-services{
  display: flex;
  flex-direction: column;
}

/* item */
.jm-about .jm-service{
  display: flex;
  gap: 16px;
  padding: 18px 0;
}

.jm-about .jm-service + .jm-service{
  border-top: 1px solid rgba(255,255,255,.12);
}

/* icono */
.jm-about .jm-service__icon{
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  border: 1px solid rgba(255,183,3,.35);
  background: rgba(255,183,3,.08);
}

.jm-about .jm-service__icon i{
  color: var(--gold);
  font-size: 22px;
}

/* texto */
.jm-about .jm-service__content h4{
  margin: 0;
  color: #fff;
  font-weight: 900;
}

.jm-about .jm-service__content p{
  margin-top: 6px;
  color: rgba(255,255,255,.70);
  font-size: 14px;
  line-height: 1.6;
}

/* =========================================================
   ✅ RESPONSIVE — ABOUT (sin tocar estilos base)
   Pegar al final del archivo
========================================================= */

/* Evita overflow en grid y contenido largo */
.jm-about__grid{
  min-width: 0;
}
.jm-panel,
.jm-panel__text,
.jm-panel__title,
.jm-panel__subtitle{
  min-width: 0;
  overflow-wrap: anywhere;
  word-break: break-word;
}

/* ====== <= 1100px: 2 columnas ====== */
@media (max-width: 1100px){
  .jm-about{ padding: 70px 0; }

  .jm-shell{
    width: min(1180px, calc(100% - 28px));
  }

  .jm-about__grid{
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .jm-panel{
    padding: 22px;
  }
}

/* ====== <= 768px: 1 columna ====== */
@media (max-width: 768px){
  .jm-about{ padding: 56px 0; }

  .jm-shell{
    width: min(1180px, calc(100% - 22px));
  }

  .jm-about__grid{
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .jm-panel{
    padding: 20px;
    border-radius: 14px;
  }

  .jm-panel__head{
    gap: 12px;
    flex-wrap: wrap;
  }

  .jm-panel__title{
    font-size: 17px;
  }

  .jm-panel__line{
    width: 100%;
    flex: 0 0 100%;
  }

  .jm-btn{
    width: 100%;
    justify-content: center;
  }

  .jm-social{
    flex-wrap: wrap;
    gap: 12px;
  }

  /* services */
  .jm-about .jm-service{
    gap: 14px;
    padding: 16px 0;
  }

  .jm-about .jm-service__icon{
    width: 48px;
    height: 48px;
    border-radius: 12px;
  }

  .jm-about .jm-service__icon i{
    font-size: 20px;
  }
}

/* ====== <= 480px: compacto ====== */
@media (max-width: 480px){
  .jm-about{ padding: 46px 0; }

  .jm-shell{
    width: min(1180px, calc(100% - 18px));
  }

  .jm-panel{
    padding: 16px;
    border-radius: 12px;
  }

  .jm-panel__title{
    font-size: 16px;
  }

  .jm-panel__text{
    font-size: 14px;
    line-height: 1.65;
  }

  .jm-about .jm-service{
    gap: 12px;
  }

  .jm-about .jm-service__content p{
    font-size: 13.5px;
  }
}


/* =========================================================
   SERVICIOS — CARDS BLANCAS (AISLADO TOTAL)
========================================================= */

section.jm-services{
  background: #fff;
  color: #111;
  padding: 90px 0;
}

/* título */
section.jm-services .jm-section-title{
  color: #111;
  position: relative;
  padding-bottom: 10px;
}

section.jm-services .jm-section-title::after{
  content:"";
  position:absolute;
  left: 0;
  bottom: 0;
  width: 34px;
  height: 3px;
  background: var(--gold);
  border-radius: 3px;
}

section.jm-services .jm-em{
  color: var(--gold);
}

/* grid */
section.jm-services .jm-cardgrid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

/* card */
section.jm-services .jm-card{
  position: relative;
  background: #fff;
  border: 1px solid rgba(0,0,0,.12);
  padding: 26px 22px 22px;
  min-height: 220px;
  box-shadow: 0 12px 28px rgba(0,0,0,.06);
  transition: transform .22s ease, border-color .25s ease;
}

section.jm-services .jm-card:hover{
  transform: translateY(-3px);
  border-color: rgba(255,183,3,.55);
}

/* icono SIEMPRE visible */
section.jm-services .jm-card__icon{
  position: absolute;
  left: 18px;
  top: 14px;
  opacity: 1;
  visibility: visible;
}

section.jm-services .jm-card__icon i{
  font-size: 34px;
  color: var(--gold);
  opacity: 1;
  visibility: visible;
}

/* texto */
section.jm-services .jm-card__title{
  margin-top: 28px;
  font-size: 20px;
  font-weight: 900;
  color: #111;
}

section.jm-services .jm-card__text{
  margin-top: 12px;
  color: rgba(0,0,0,.68);
  font-size: 14px;
  line-height: 1.75;
}

/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1100px){
  section.jm-services .jm-cardgrid{
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 650px){
  section.jm-services .jm-cardgrid{
    grid-template-columns: 1fr;
  }
}


/* =========================================================
   ARTISTAS — Jansy Gold Dark
   Foto pequeña izquierda + descripción derecha
========================================================= */

.jm-artists{
  padding: 90px 0;
}

/* grid general */
.jm-artistgrid{
  display: flex;
  flex-direction: column;
  gap: 26px;
}

/* card artista */
.jm-artist{
  display: flex;
  align-items: flex-start;
  gap: 26px;

  background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.02));
  border: 1px solid rgba(255,183,3,.18);
  border-radius: 14px;
  padding: 24px;

  box-shadow: 0 18px 45px rgba(0,0,0,.35);
  transition: transform .25s ease, border-color .25s ease;
}

.jm-artist:hover{
  transform: translateY(-3px);
  border-color: rgba(255,183,3,.35);
}

/* =========================
   FOTO
========================= */
.jm-artist__media{
  flex: 0 0 120px;
  height: 120px;

  border-radius: 14px;
  overflow: hidden;

  border: 2px solid rgba(255,183,3,.30);
  background: #000;
}

.jm-artist__media img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* =========================
   CONTENIDO
========================= */
.jm-artist__body{
  flex: 1;
  display: flex;
  flex-direction: column;
}

.jm-artist__name{
  font-size: 22px;
  font-weight: 900;
  color: #fff;
  margin-bottom: 8px;
}

/* textos */
.jm-artist__text{
  color: rgba(255,255,255,.75);
  line-height: 1.75;
  font-size: 14.5px;
  margin-bottom: 10px;
}

/* link */
.jm-link{
  margin-top: 6px;
  align-self: flex-start;

  color: var(--gold);
  font-weight: 800;
  letter-spacing: .2px;
  font-size: 14px;

  display: inline-flex;
  align-items: center;
  gap: 6px;

  transition: gap .2s ease, opacity .2s ease;
}

.jm-link i{
  font-size: 13px;
}

.jm-link:hover{
  gap: 10px;
  opacity: .85;
}

/* =========================================================
   RESPONSIVE
========================================================= */

/* tablet */
@media (max-width: 900px){
  .jm-artist{
    gap: 20px;
    padding: 20px;
  }

  .jm-artist__media{
    flex-basis: 100px;
    height: 100px;
  }

  .jm-artist__name{
    font-size: 20px;
  }
}

/* móvil */
@media (max-width: 600px){
  .jm-artist{
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .jm-artist__media{
    width: 110px;
    height: 110px;
  }

  .jm-artist__body{
    align-items: center;
  }

  .jm-link{
    align-self: center;
  }
}


/* =========================================================
   CONTACTO — estilo como referencia (BLANCO + NEGRO)
   - Fondo blanco
   - Textos negros
   - Botón negro ancho
========================================================= */

.jm-contact{
  position: relative;
  padding: 90px 0;
  background: #fff;
  color: #111;
}

/* si usas un "map" decorativo arriba */
.jm-contact__map{
  display: none; /* si quieres mostrarlo luego, lo activamos */
}

/* grid 2 columnas */
.jm-contact__grid{
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 44px;
  align-items: start;
}

/* panel wrapper (no glass aquí) */
.jm-contact__panel{
  background: transparent;
}

/* tarjetas blancas (limpias) */
.jm-formcard,
.jm-infocard{
  background: #fff;
  border: 1px solid rgba(0,0,0,.10);
  border-radius: 10px;
  padding: 28px;
  box-shadow: 0 12px 28px rgba(0,0,0,.06);
}

/* títulos con rayita roja como la referencia */
.jm-formcard__title,
.jm-infocard__title{
  font-size: 22px;
  font-weight: 800;
  color: #111;
  margin-bottom: 18px;
  position: relative;
  padding-bottom: 10px;
}

.jm-formcard__title::after,
.jm-infocard__title::after{
  content:"";
  position:absolute;
  left: 0;
  bottom: 0;
  width: 32px;
  height: 3px;
  background: #000000; /* acento tipo plantilla */
  border-radius: 3px;
  opacity: .95;
}

/* formulario */
.jm-form{
  display: grid;
  gap: 14px;
}

.jm-field{
  display: grid;
  gap: 8px;
}

.jm-label{
  font-weight: 700;
  font-size: 13px;
  color: rgba(0,0,0,.70);
}

/* inputs estilo limpio */
.jm-input,
.jm-textarea{
  width: 100%;
  border: 1px solid rgba(0,0,0,.18);
  background: #fff;
  color: #111;
  border-radius: 6px;
  padding: 12px 14px;
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease;
}

.jm-textarea{
  resize: vertical;
  min-height: 170px; /* como la referencia */
}

/* focus */
.jm-input:focus,
.jm-textarea:focus{
  border-color: rgba(0,0,0,.55);
  box-shadow: 0 0 0 3px rgba(0,0,0,.08);
}

/* botón negro ancho */
.jm-btn.jm-btn--solid{
  width: 100%;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 10px;

  border: 0;
  background: #111;
  color: #fff;
  padding: 14px 18px;
  border-radius: 6px;
  font-weight: 800;
  letter-spacing: .2px;

  cursor: pointer;
  transition: transform .15s ease, opacity .2s ease;
}

.jm-btn.jm-btn--solid:hover{
  transform: translateY(-1px);
  opacity: .92;
}

.jm-btn.jm-btn--solid:active{
  transform: translateY(0);
  opacity: .86;
}

/* =========================
   INFO RIGHT (Get in touch)
========================= */
.jm-infoline{
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 0;
}

.jm-infoline + .jm-infoline{
  border-top: 1px solid rgba(0,0,0,.10);
}

.jm-infoline__icon{
  width: 42px;
  height: 42px;
  border: 1px solid rgba(0,0,0,.12);
  border-radius: 8px;
  display: grid;
  place-items: center;
  background: #fff;
}

.jm-infoline__icon i{
  color: #111;
  font-size: 16px;
}

.jm-infoline__text h6{
  margin: 0;
  font-size: 14px;
  font-weight: 900;
  color: #111;
}

.jm-infoline__text p{
  margin-top: 6px;
  margin-bottom: 0;
  color: rgba(0,0,0,.70);
  line-height: 1.5;
  font-size: 14px;
}

/* social del contacto en negro */
.jm-social--dark{
  margin-top: 18px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  padding: 0;
}

.jm-social--dark .jm-social__link{
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  border: 1px solid rgba(0,0,0,.12);
  background: #fff;
  transition: transform .15s ease, background .2s ease;
}

.jm-social--dark .jm-social__link i{
  color: #111;
  font-size: 16px;
}

.jm-social--dark .jm-social__link:hover{
  transform: translateY(-2px);
  background: rgba(0,0,0,.04);
}

/* =========================================================
   RESPONSIVE
========================================================= */
@media (max-width: 991px){
  .jm-contact__grid{
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .jm-formcard,
  .jm-infocard{
    padding: 22px;
  }
}

@media (max-width: 520px){
  .jm-textarea{ min-height: 150px; }
}

/* =========================================================
   FOOTER — Negro puro, limpio y centrado
========================================================= */

.jm-footer{
  background: #000;          /* negro total */
  padding: 28px 0;
}

.jm-footer .jm-shell{
  display: flex;
  justify-content: center;
  align-items: center;
}

/* texto */
.jm-footer__text{
  margin: 0;
  text-align: center;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255,255,255,.75);
  letter-spacing: .2px;
}

/* corazón */
.jm-footer__text i.fa-heart{
  color: var(--gold);
  margin: 0 4px;
}

/* link */
.jm-footer__link{
  color: var(--gold);
  font-weight: 700;
  transition: opacity .2s ease;
}

.jm-footer__link:hover{
  opacity: .85;
}

/* responsive */
@media (max-width: 480px){
  .jm-footer__text{
    font-size: 13px;
    padding: 0 10px;
  }
}


/* =========================================================
   ZONA DE SUERTE – LANDING
   Estilo: Dark / Gold / Glass
   Jansy Beat 2025
========================================================= */

/* =====================
   VARIABLES
===================== */
:root{
  --zs-gold: #FFB703;
  --zs-gold-soft: rgba(255,183,3,.25);

  --zs-bg-main: #0a0a0a;
  --zs-bg-glass: rgba(15,15,15,.55);
  --zs-border-glass: rgba(255,255,255,.15);

  --zs-text: #f5f5f5;
  --zs-muted: rgba(255,255,255,.65);

  --zs-radius: 16px;
  --zs-radius-sm: 12px;

  --zs-shadow: 0 20px 45px rgba(0,0,0,.35);
  --zs-transition: .25s ease;
}

/* =====================
   CONTAINER
===================== */
.zs-container{
  width: 100%;
  max-width: 1200px;
  margin: auto;
  padding: 0 22px;
}

/* =====================
   HERO
===================== */
.zs-hero{
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;

  background-image: url("../imgs/fondo.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}




.zs-hero-content{
  text-align: center;
}

.zs-hero-title{
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 700;
  color: var(--zs-text);
  margin-bottom: 20px;
}

.zs-hero-title span{
  color: var(--zs-gold);
}

.zs-hero-title i{
  color: var(--zs-gold);
  margin-right: 10px;
}

.zs-hero-text{
  max-width: 720px;
  margin: 0 auto 35px;
  font-size: 1.05rem;
  color: var(--zs-muted);
  line-height: 1.6;
}

.zs-hero-text i{
  color: var(--zs-gold);
  margin-right: 6px;
}

.zs-hero-actions{
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}

/* =====================
   BOTONES
===================== */
.zs-btn{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: var(--zs-transition);
  box-shadow: var(--zs-shadow);
}

.zs-btn i{
  font-size: 1rem;
}

.zs-btn-gold{
  background: var(--zs-gold);
  color: #000;
}

.zs-btn-gold:hover{
  transform: translateY(-2px);
  box-shadow: 0 0 25px var(--zs-gold-soft);
}

.zs-btn-outline{
  border: 1px solid var(--zs-gold);
  color: var(--zs-gold);
  background: transparent;
}

.zs-btn-outline:hover{
  background: var(--zs-gold);
  color: #000;
}

/* =====================
   SECCIONES
===================== */
.zs-section{
  padding: 90px 0;
  background: var(--zs-bg-main);
}

.zs-section-dark{
  background: linear-gradient(to bottom, #080808, #050505);
}

.zs-section-title{
  text-align: center;
  font-size: 2rem;
  margin-bottom: 55px;
  color: var(--zs-text);
}

.zs-section-title i{
  color: var(--zs-gold);
  margin-right: 10px;
}

/* =====================
   CARDS
===================== */
.zs-cards{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px,1fr));
  gap: 24px;
}

.zs-card{
  background: var(--zs-bg-glass);
  border: 1px solid var(--zs-border-glass);
  border-radius: var(--zs-radius);
  padding: 28px 22px;
  text-align: center;
  transition: var(--zs-transition);
}

.zs-card:hover{
  transform: translateY(-6px);
  border-color: var(--zs-gold-soft);
  box-shadow: 0 0 30px rgba(0,0,0,.45);
}

.zs-card-title{
  font-size: 1.25rem;
  margin-bottom: 12px;
  color: var(--zs-text);
}

.zs-card-title i{
  display: block;
  font-size: 1.6rem;
  margin-bottom: 10px;
  color: var(--zs-gold);
}

.zs-card-text{
  color: var(--zs-muted);
  font-size: .95rem;
  line-height: 1.5;
}

/* =====================
   PASOS
===================== */
.zs-steps{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px,1fr));
  gap: 22px;
}

.zs-step{
  background: var(--zs-bg-glass);
  border: 1px solid var(--zs-border-glass);
  border-radius: var(--zs-radius-sm);
  padding: 26px 20px;
  text-align: center;
}

.zs-step-number{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 52px;
  height: 52px;
  margin-bottom: 12px;
  border-radius: 50%;
  background: var(--zs-gold);
  color: #000;
  font-weight: 700;
}

.zs-step-number i{
  font-size: .9rem;
}

.zs-step-text{
  color: var(--zs-muted);
  font-size: .95rem;
}

/* =====================
   TÉRMINOS
===================== */
.zs-terms{
  padding: 45px 0;
  background: #050505;
  border-top: 1px solid var(--zs-border-glass);
}

.zs-terms-content{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  text-align: center;
}

.zs-terms-icon{
  font-size: 1.6rem;
  color: var(--zs-gold);
}

.zs-terms-text{
  color: var(--zs-muted);
  font-size: .95rem;
}

.zs-terms-link{
  color: var(--zs-gold);
  text-decoration: none;
  font-weight: 600;
}

.zs-terms-link:hover{
  text-decoration: underline;
}

/* =====================
   RESPONSIVE
===================== */
@media (max-width: 768px){
  .zs-hero{
    min-height: auto;
    padding: 120px 0 80px;
  }

  .zs-hero-title{
    font-size: 2rem;
  }
}


/* =========================================================
   ANIMACIONES SIMPLES — Jansy Gold Dark / Zona de Suerte
   (Pegar al final del CSS)
========================================================= */

/* ✅ Respeta accesibilidad: si el usuario desactiva animaciones */
@media (prefers-reduced-motion: reduce){
  *{
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}

/* =========================================================
   KEYFRAMES
========================================================= */
@keyframes jm-fadeUp{
  from{ opacity: 0; transform: translateY(14px); }
  to{ opacity: 1; transform: translateY(0); }
}

@keyframes jm-fadeIn{
  from{ opacity: 0; }
  to{ opacity: 1; }
}

@keyframes jm-float{
  0%,100%{ transform: translateY(0); }
  50%{ transform: translateY(-6px); }
}

@keyframes jm-glow{
  0%,100%{ box-shadow: 0 0 0 rgba(255,183,3,0); }
  50%{ box-shadow: 0 0 26px rgba(255,183,3,.18); }
}

/* =========================================================
   HERO — entrada suave
========================================================= */
.jm-hero::before{
  animation: jm-fadeIn .8s ease both;
}

.jm-hero__kicker{
  animation: jm-fadeUp .7s ease .05s both;
}

.jm-hero__title{
  animation: jm-fadeUp .8s ease .12s both;
}

.jm-hero__tagline{
  animation: jm-fadeUp .75s ease .22s both;
}

.jm-hero .jm-social{
  animation: jm-fadeUp .7s ease .28s both;
}

/* Brillo leve del radial */
.jm-hero::after{
  animation: jm-glow 6s ease-in-out infinite;
}

/* =========================================================
   NAV — micro animaciones
========================================================= */
.jm-nav{
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}

.jm-nav.is-stuck{
  animation: jm-fadeDown .22s ease both;
}

@keyframes jm-fadeDown{
  from{ transform: translateY(-10px); opacity: .96; }
  to{ transform: translateY(0); opacity: 1; }
}

/* Links con subrayado animado */
.jm-nav__link{
  position: relative;
}

.jm-nav__link::after{
  content:"";
  position:absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: var(--gold);
  border-radius: 999px;
  transition: width .25s ease;
  opacity: .95;
}

.jm-nav__link:hover::after{
  width: 100%;
}

/* Toggle (hamburguesa) rebote leve */
.jm-nav__toggle:active{
  transform: scale(.98);
}

/* =========================================================
   STATS — hover simple (sin cambiar tu diseño blanco)
========================================================= */
.jm-stat{
  transition: transform .22s ease;
}

.jm-stat:hover{
  transform: translateY(-2px);
}

/* =========================================================
   ABOUT / ARTISTAS — hover + entrada suave
========================================================= */
.jm-panel,
.jm-artist{
  animation: jm-fadeUp .6s ease both;
}

/* un poquito de delay por orden (efecto cascada simple) */
.jm-about__grid > *:nth-child(1){ animation-delay: .05s; }
.jm-about__grid > *:nth-child(2){ animation-delay: .12s; }
.jm-about__grid > *:nth-child(3){ animation-delay: .19s; }

.jm-artistgrid > *:nth-child(1){ animation-delay: .06s; }
.jm-artistgrid > *:nth-child(2){ animation-delay: .14s; }
.jm-artistgrid > *:nth-child(3){ animation-delay: .22s; }

/* Botón outline con glow leve en hover */
.jm-btn--outline{
  transition: transform .2s ease, box-shadow .25s ease, background .25s ease, color .25s ease;
}

.jm-btn--outline:hover{
  transform: translateY(-1px);
  box-shadow: 0 0 22px rgba(255,183,3,.18);
}

/* =========================================================
   SERVICIOS (cards blancas) — ya tienes hover,
   le damos “tap feedback” y un glow suave
========================================================= */
section.jm-services .jm-card{
  transition: transform .22s ease, border-color .25s ease, box-shadow .25s ease;
}

section.jm-services .jm-card:active{
  transform: translateY(-1px);
}

section.jm-services .jm-card:hover{
  box-shadow: 0 14px 34px rgba(0,0,0,.10);
}

/* =========================================================
   CONTACTO — focus/hover suave
========================================================= */
.jm-infocard,
.jm-formcard{
  transition: transform .22s ease, box-shadow .25s ease;
}

.jm-infocard:hover,
.jm-formcard:hover{
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(0,0,0,.08);
}

/* =========================================================
   ZONA DE SUERTE (zs) — entrada + detalles
========================================================= */
.zs-hero::before{
  content:"";
  position:absolute;
  inset:0;
  background: radial-gradient(800px 420px at 30% 30%, rgba(255,183,3,.10), transparent 55%);
  pointer-events:none;
  animation: jm-glow 7s ease-in-out infinite;
}

.zs-hero-content{
  position: relative;
  z-index: 1;
  animation: jm-fadeUp .75s ease both;
}

.zs-card,
.zs-step{
  animation: jm-fadeUp .55s ease both;
}

/* cascada en cards/steps */
.zs-cards > *:nth-child(1){ animation-delay:.06s; }
.zs-cards > *:nth-child(2){ animation-delay:.12s; }
.zs-cards > *:nth-child(3){ animation-delay:.18s; }
.zs-cards > *:nth-child(4){ animation-delay:.24s; }

.zs-steps > *:nth-child(1){ animation-delay:.06s; }
.zs-steps > *:nth-child(2){ animation-delay:.12s; }
.zs-steps > *:nth-child(3){ animation-delay:.18s; }
.zs-steps > *:nth-child(4){ animation-delay:.24s; }

/* Botones zs: brillo al pasar */
.zs-btn{
  position: relative;
  overflow: hidden;
}

.zs-btn::after{
  content:"";
  position:absolute;
  inset: -2px;
  background: radial-gradient(120px 60px at 20% 20%, rgba(255,183,3,.22), transparent 60%);
  opacity: 0;
  transition: opacity .25s ease;
  pointer-events:none;
}

.zs-btn:hover::after{
  opacity: 1;
}

/* Número de step: flotación suave */
.zs-step-number{
  animation: jm-float 3.8s ease-in-out infinite;
}
