/* ═══════════════════════════════════════════
   NEWGYMCENTER — styles.css
   ═══════════════════════════════════════════ */

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

:root {
  --red: #E8231A;
  --orange: #FF6B1A;
  --black: #0A0A0A;
  --dark: #111111;
  --card: #181818;
  --white: #F5F5F0;
  --muted: #888;
  --green: #22C55E;
}

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--white);
  font-family: 'Barlow', sans-serif;
  font-weight: 300;
  overflow-x: hidden;
}

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

/* ── NAV ── */
nav {
  position: fixed; top: 0; width: 100%; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.7rem 4vw;
  background: linear-gradient(to bottom, rgba(10,10,10,.97), transparent);
  backdrop-filter: blur(6px);
}
.nav-logo-img {
  height: 50px; width: 50px; border-radius: 50%;
  object-fit: cover; border: 2px solid rgba(232,35,26,.4);
  transition: border-color .2s, transform .2s;
}
.nav-logo-img:hover { border-color: var(--red); transform: scale(1.05); }
.nav-right { display: flex; align-items: center; gap: 1.5rem; }
.nav-links { display: flex; gap: 1.8rem; list-style: none; }
.nav-links a {
  color: var(--white); text-decoration: none; font-size: .8rem;
  letter-spacing: .12em; text-transform: uppercase; font-weight: 600;
  opacity: .7; transition: opacity .2s;
}
.nav-links a:hover { opacity: 1; }
.nav-social { display: flex; gap: .6rem; align-items: center; }
.nav-social-btn {
  display: flex; align-items: center; justify-content: center;
  width: 34px; height: 34px; border-radius: 8px;
  transition: transform .2s, box-shadow .2s; text-decoration: none;
}
.nav-social-btn svg { width: 17px; height: 17px; fill: white; }
.nav-ig { background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.nav-ig:hover { transform: scale(1.1); box-shadow: 0 4px 20px rgba(220,39,67,.5); }
.nav-fb { background: #1877F2; }
.nav-fb:hover { transform: scale(1.1); box-shadow: 0 4px 20px rgba(24,119,242,.5); }
.nav-wa { background: #25D366; }
.nav-wa:hover { transform: scale(1.1); box-shadow: 0 4px 20px rgba(37,211,102,.5); }

/* ── HERO ── */
#hero {
  min-height: 100vh; display: flex; flex-direction: column;
  justify-content: center; padding: 10vh 8vw 6vh;
  position: relative; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 60% at 70% 50%, rgba(232,35,26,.18) 0%, transparent 70%),
    radial-gradient(ellipse 40% 70% at 20% 80%, rgba(255,107,26,.1) 0%, transparent 60%),
    var(--black);
}
.hero-line {
  position: absolute; top: 0; right: 22vw; width: 1px; height: 100%;
  background: linear-gradient(to bottom, transparent, rgba(232,35,26,.4), transparent);
}
.hero-label {
  font-size: .75rem; letter-spacing: .25em; text-transform: uppercase;
  color: var(--orange); font-weight: 600; margin-bottom: 1.5rem;
  opacity: 0; animation: fadeUp .6s ease .2s forwards;
}
h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3.5rem, 9vw, 8.5rem);
  line-height: .95; letter-spacing: .02em; max-width: 12ch;
  opacity: 0; animation: fadeUp .7s ease .4s forwards;
}
h1 span {
  background: linear-gradient(135deg, var(--red) 30%, var(--orange));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.hero-sub {
  max-width: 46ch; margin-top: 2rem;
  font-size: clamp(1rem, 1.5vw, 1.15rem); line-height: 1.7;
  color: rgba(245,245,240,.65);
  opacity: 0; animation: fadeUp .7s ease .6s forwards;
}
.hero-cta {
  margin-top: 3rem; display: flex; gap: 1rem; flex-wrap: wrap;
  opacity: 0; animation: fadeUp .7s ease .8s forwards;
}
.hero-scroll {
  position: absolute; bottom: 2.5rem; left: 8vw;
  font-size: .7rem; letter-spacing: .2em; text-transform: uppercase;
  color: var(--muted); display: flex; align-items: center; gap: .8rem;
}
.hero-scroll::before { content: ''; display: block; width: 40px; height: 1px; background: var(--muted); }
.stat-row {
  position: absolute; bottom: 2.5rem; right: 8vw;
  display: flex; gap: 3rem;
  opacity: 0; animation: fadeUp .7s ease 1s forwards;
}
.stat { text-align: right; }
.stat-num {
  font-family: 'Bebas Neue', sans-serif; font-size: 2.2rem;
  background: linear-gradient(135deg, var(--red), var(--orange));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.stat-label { font-size: .7rem; letter-spacing: .15em; text-transform: uppercase; color: var(--muted); }

/* ── SHARED ── */
section { padding: 7rem 8vw; }
.section-tag {
  display: inline-block; font-size: .7rem; letter-spacing: .25em; text-transform: uppercase;
  color: var(--orange); font-weight: 700; margin-bottom: 1rem;
  border-left: 2px solid var(--orange); padding-left: .8rem;
}
h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.5rem, 5vw, 4.5rem); line-height: 1; letter-spacing: .03em;
}
h2 em { font-style: normal; color: var(--red); }

/* ── BUTTONS ── */
.btn-primary {
  display: inline-flex; align-items: center; gap: .6rem;
  background: var(--green); color: #0a0a0a;
  font-family: 'Barlow', sans-serif; font-weight: 700; font-size: 1rem;
  letter-spacing: .05em; text-transform: uppercase; padding: 1rem 2rem;
  border-radius: 4px; text-decoration: none; transition: transform .2s, box-shadow .2s;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(34,197,94,.4); }
.btn-secondary {
  display: inline-flex; align-items: center; gap: .6rem;
  border: 1px solid rgba(245,245,240,.2); color: var(--white);
  font-family: 'Barlow', sans-serif; font-weight: 600; font-size: 1rem;
  letter-spacing: .05em; text-transform: uppercase; padding: 1rem 2rem;
  border-radius: 4px; text-decoration: none; transition: border-color .2s, background .2s;
}
.btn-secondary:hover { border-color: var(--orange); background: rgba(255,107,26,.08); }
.btn-instagram {
  display: inline-flex; align-items: center; gap: .7rem;
  background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  color: white; font-family: 'Barlow', sans-serif; font-weight: 700;
  font-size: 1rem; letter-spacing: .05em; text-transform: uppercase;
  padding: .9rem 1.8rem; border-radius: 6px; text-decoration: none;
  transition: transform .2s, box-shadow .2s;
}
.btn-instagram:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(220,39,67,.5); }
.btn-instagram svg { width: 20px; height: 20px; fill: white; flex-shrink: 0; }
.btn-facebook {
  display: inline-flex; align-items: center; gap: .7rem;
  background: #1877F2; color: white; font-family: 'Barlow', sans-serif; font-weight: 700;
  font-size: 1rem; letter-spacing: .05em; text-transform: uppercase;
  padding: .9rem 1.8rem; border-radius: 6px; text-decoration: none;
  transition: transform .2s, box-shadow .2s;
}
.btn-facebook:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(24,119,242,.5); }
.btn-facebook svg { width: 20px; height: 20px; fill: white; flex-shrink: 0; }

/* ── SOBRE ── */
#sobre {
  display: grid; grid-template-columns: 1fr 1fr; gap: 5rem;
  align-items: center; background: var(--dark);
  border-top: 1px solid rgba(255,255,255,.05);
}
.sobre-text p { margin-top: 1.5rem; font-size: 1.05rem; line-height: 1.8; color: rgba(245,245,240,.6); max-width: 46ch; }
.sobre-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: rgba(255,255,255,.06); border-radius: 6px; overflow: hidden; }
.sobre-card { background: var(--card); padding: 2rem; transition: background .2s; }
.sobre-card:hover { background: #1e1e1e; }
.sobre-card .icon { font-size: 1.8rem; margin-bottom: .8rem; }
.sobre-card h3 { font-family: 'Bebas Neue', sans-serif; font-size: 1.3rem; letter-spacing: .05em; margin-bottom: .4rem; color: var(--white); }
.sobre-card p { font-size: .85rem; color: var(--muted); line-height: 1.6; }

/* ── HORARIOS ── */
#horarios { border-top: 1px solid rgba(255,255,255,.05); }
.horarios-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; margin-top: 3rem; }
.horarios-table { width: 100%; border-collapse: collapse; }
.horarios-table tr { border-bottom: 1px solid rgba(255,255,255,.06); transition: background .2s; }
.horarios-table tr:hover { background: rgba(255,255,255,.03); }
.horarios-table td { padding: 1rem .5rem; font-size: .95rem; }
.horarios-table td:first-child { font-weight: 700; letter-spacing: .05em; color: var(--white); width: 55%; }
.horarios-table td:last-child { color: var(--orange); font-weight: 600; text-align: right; }
.horarios-table .closed { color: var(--muted) !important; }
.today-row { background: rgba(232,35,26,.07) !important; border-left: 3px solid var(--red); }
.today-row td:first-child { color: var(--red) !important; }
.horarios-badge {
  display: inline-flex; align-items: center; gap: .5rem;
  background: rgba(34,197,94,.12); border: 1px solid rgba(34,197,94,.3);
  color: var(--green); font-size: .75rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase; padding: .4rem .9rem;
  border-radius: 20px; margin-top: 1rem;
}
.horarios-badge::before {
  content: ''; display: block; width: 7px; height: 7px;
  border-radius: 50%; background: var(--green); animation: pulse 1.5s infinite;
}
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.5;transform:scale(1.3)} }
.horarios-info { background: var(--card); border: 1px solid rgba(255,255,255,.07); border-radius: 10px; padding: 2rem; }
.horarios-info h3 { font-family: 'Bebas Neue', sans-serif; font-size: 1.6rem; letter-spacing: .05em; margin-bottom: 1.2rem; }
.horarios-extra { display: flex; flex-direction: column; gap: .8rem; margin-top: 1rem; }
.horarios-extra-item { display: flex; align-items: center; gap: .8rem; font-size: .88rem; color: rgba(245,245,240,.65); }
.horarios-extra-item span:first-child { font-size: 1.1rem; }

/* ── PRECIOS ── */
#precios { background: var(--dark); border-top: 1px solid rgba(255,255,255,.05); }
.precios-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 3rem; }
.precio-card {
  border: 1px solid rgba(255,255,255,.08); border-radius: 10px;
  padding: 2.5rem 2rem; position: relative; overflow: hidden;
  transition: border-color .25s, transform .25s; background: var(--card);
}
.precio-card.featured {
  border-color: var(--red);
  background: linear-gradient(135deg, rgba(232,35,26,.08), rgba(255,107,26,.04));
  transform: scale(1.03);
}
.precio-card:hover { border-color: rgba(232,35,26,.5); transform: translateY(-4px); }
.precio-card.featured:hover { transform: scale(1.03) translateY(-4px); }
.precio-badge { position: absolute; top: 1rem; right: 1rem; background: var(--red); color: white; font-size: .65rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; padding: .3rem .7rem; border-radius: 3px; }
.precio-tipo { font-size: .7rem; letter-spacing: .2em; text-transform: uppercase; color: var(--orange); font-weight: 700; margin-bottom: .8rem; }
.precio-valor { font-family: 'Bebas Neue', sans-serif; font-size: 3.5rem; line-height: 1; letter-spacing: .02em; color: var(--white); margin-bottom: .3rem; }
.precio-valor span { font-size: 1.4rem; vertical-align: top; margin-top: .6rem; display: inline-block; color: var(--muted); }
.precio-periodo { font-size: .8rem; color: var(--muted); margin-bottom: 1.8rem; }
.precio-features { list-style: none; display: flex; flex-direction: column; gap: .7rem; margin-bottom: 2rem; }
.precio-features li { display: flex; align-items: center; gap: .7rem; font-size: .88rem; color: rgba(245,245,240,.7); }
.precio-features li::before { content: '✓'; color: var(--green); font-weight: 700; flex-shrink: 0; }
.precio-features li.no::before { content: '×'; color: var(--muted); }
.precio-features li.no { color: var(--muted); }
.btn-precio { display: block; text-align: center; padding: .85rem; border-radius: 5px; font-family: 'Barlow', sans-serif; font-weight: 700; font-size: .9rem; letter-spacing: .08em; text-transform: uppercase; text-decoration: none; transition: transform .2s, box-shadow .2s; }
.btn-precio-outline { border: 1px solid rgba(232,35,26,.4); color: var(--red); }
.btn-precio-outline:hover { background: rgba(232,35,26,.1); border-color: var(--red); }
.btn-precio-solid { background: var(--red); color: white; box-shadow: 0 4px 20px rgba(232,35,26,.3); }
.btn-precio-solid:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(232,35,26,.5); }
.precios-nota { text-align: center; margin-top: 1.5rem; font-size: .82rem; color: var(--muted); }

/* ── EQUIPO ── */
#equipo { border-top: 1px solid rgba(255,255,255,.05); }
.equipo-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.5rem; margin-top: 3rem; }
.coach-card { background: var(--card); border: 1px solid rgba(255,255,255,.07); border-radius: 10px; overflow: hidden; transition: border-color .25s, transform .25s; }
.coach-card:hover { border-color: rgba(232,35,26,.4); transform: translateY(-4px); }
.coach-avatar { width: 100%; height: 180px; background: linear-gradient(135deg, #1a1a1a, #222); display: flex; align-items: center; justify-content: center; font-size: 4rem; position: relative; overflow: hidden; }
.coach-avatar::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to bottom, transparent 60%, rgba(10,10,10,.8)); }
.coach-info { padding: 1.5rem; }
.coach-nombre { font-family: 'Bebas Neue', sans-serif; font-size: 1.4rem; letter-spacing: .05em; margin-bottom: .3rem; }
.coach-rol { font-size: .75rem; letter-spacing: .15em; text-transform: uppercase; color: var(--orange); font-weight: 700; margin-bottom: .6rem; }
.coach-bio { font-size: .83rem; color: var(--muted); line-height: 1.6; }

/* ── TESTIMONIOS ── */
#testimonios { background: var(--dark); border-top: 1px solid rgba(255,255,255,.05); overflow: hidden; }
.test-header { margin-bottom: 3rem; }
.test-track { display: flex; gap: 1.5rem; animation: scroll-left 30s linear infinite; width: max-content; }
.test-track:hover { animation-play-state: paused; }
.test-wrap { overflow: hidden; position: relative; }
.test-wrap::before, .test-wrap::after { content: ''; position: absolute; top: 0; bottom: 0; width: 80px; z-index: 2; pointer-events: none; }
.test-wrap::before { left: 0; background: linear-gradient(to right, var(--dark), transparent); }
.test-wrap::after { right: 0; background: linear-gradient(to left, var(--dark), transparent); }
@keyframes scroll-left { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }
.test-card { background: var(--card); border: 1px solid rgba(255,255,255,.07); border-radius: 10px; padding: 1.8rem; min-width: 300px; max-width: 300px; flex-shrink: 0; transition: border-color .2s; }
.test-card:hover { border-color: rgba(232,35,26,.3); }
.test-stars { color: #FFB800; font-size: 1rem; margin-bottom: .8rem; letter-spacing: .1em; }
.test-texto { font-size: .9rem; line-height: 1.7; color: rgba(245,245,240,.75); margin-bottom: 1.2rem; font-style: italic; }
.test-autor { display: flex; align-items: center; gap: .8rem; }
.test-avatar { width: 38px; height: 38px; border-radius: 50%; background: linear-gradient(135deg, var(--red), var(--orange)); display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: .9rem; color: white; flex-shrink: 0; }
.test-nombre { font-weight: 700; font-size: .88rem; }
.test-desde { font-size: .75rem; color: var(--muted); }

/* ── RUTINAS ── */
#rutinas { border-top: 1px solid rgba(255,255,255,.05); }
.rutinas-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 3.5rem; flex-wrap: wrap; gap: 1rem; }
.rutinas-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.5rem; }
.rutina-card { border: 1px solid rgba(255,255,255,.07); border-radius: 6px; padding: 2rem; position: relative; overflow: hidden; transition: border-color .25s, transform .25s; cursor: default; display: flex; flex-direction: column; }
.rutina-card::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(232,35,26,.07), transparent); opacity: 0; transition: opacity .25s; }
.rutina-card:hover { border-color: rgba(232,35,26,.4); transform: translateY(-4px); }
.rutina-card:hover::before { opacity: 1; }
.rutina-level { display: inline-block; font-size: .65rem; letter-spacing: .18em; text-transform: uppercase; font-weight: 700; padding: .3rem .7rem; border-radius: 3px; margin-bottom: 1.2rem; align-self: flex-start; }
.level-init  { background: rgba(34,197,94,.15);  color: #22C55E; }
.level-inter { background: rgba(255,107,26,.15); color: var(--orange); }
.level-avanz { background: rgba(232,35,26,.15);  color: var(--red); }
.rutina-card h3 { font-family: 'Bebas Neue', sans-serif; font-size: 1.6rem; letter-spacing: .04em; margin-bottom: .6rem; }
.rutina-card p { font-size: .88rem; color: var(--muted); line-height: 1.6; }
.rutina-tags { display: flex; flex-wrap: wrap; gap: .4rem; margin-top: 1.2rem; }
.tag { font-size: .65rem; letter-spacing: .1em; text-transform: uppercase; border: 1px solid rgba(255,255,255,.1); padding: .2rem .55rem; border-radius: 3px; color: rgba(245,245,240,.45); }
.rutina-card-footer { margin-top: auto; padding-top: 1.4rem; }
.btn-download-pdf { display: inline-flex; align-items: center; gap: .55rem; background: transparent; border: 1px solid rgba(232,35,26,.4); color: var(--red); font-family: 'Barlow', sans-serif; font-weight: 700; font-size: .72rem; letter-spacing: .15em; text-transform: uppercase; padding: .55rem 1.1rem; border-radius: 4px; cursor: pointer; width: 100%; justify-content: center; transition: background .2s, border-color .2s, color .2s, transform .15s; position: relative; z-index: 1; }
.btn-download-pdf:hover { background: rgba(232,35,26,.12); border-color: var(--red); color: var(--white); transform: translateY(-1px); }
.btn-download-pdf svg { width: 13px; height: 13px; flex-shrink: 0; }

/* ── MAQUINARIA ── */
#maquinaria { background: var(--dark); border-top: 1px solid rgba(255,255,255,.05); }
.maq-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 3.5rem; flex-wrap: wrap; gap: 1rem; }
.maq-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 1.2rem; }
.maq-card { border: 1px solid rgba(255,255,255,.07); border-radius: 8px; overflow: hidden; background: var(--card); transition: border-color .25s, transform .25s; cursor: default; display: flex; flex-direction: column; }
.maq-card:hover { border-color: rgba(232,35,26,.5); transform: translateY(-5px); }
.maq-img-wrap { width: 100%; aspect-ratio: 3/4; overflow: hidden; background: #0d0d0d; }
.maq-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; display: block; }
.maq-card:hover .maq-img-wrap img { transform: scale(1.04); }
.maq-label { padding: .85rem 1rem; font-family: 'Bebas Neue', sans-serif; font-size: 1.05rem; letter-spacing: .06em; color: var(--white); text-align: center; background: var(--card); border-top: 1px solid rgba(255,255,255,.06); }
.maq-card:hover .maq-label { color: var(--orange); }

/* ── ALIMENTACION ── */
#alimentacion { border-top: 1px solid rgba(255,255,255,.05); display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; }
.alim-list { margin-top: 2.5rem; display: flex; flex-direction: column; gap: 1.2rem; }
.alim-item { display: flex; gap: 1.2rem; align-items: flex-start; padding: 1.2rem; border-radius: 6px; border: 1px solid rgba(255,255,255,.06); transition: border-color .2s; }
.alim-item:hover { border-color: rgba(255,107,26,.3); }
.alim-icon { flex-shrink: 0; width: 42px; height: 42px; border-radius: 6px; background: linear-gradient(135deg, var(--red), var(--orange)); display: flex; align-items: center; justify-content: center; font-size: 1.1rem; }
.alim-item h4 { font-family: 'Barlow', sans-serif; font-weight: 700; font-size: .95rem; letter-spacing: .03em; margin-bottom: .25rem; }
.alim-item p { font-size: .82rem; color: var(--muted); line-height: 1.5; }
.alim-cta { margin-top: 2.5rem; }
.alim-visual { border-radius: 8px; overflow: hidden; background: var(--card); border: 1px solid rgba(255,255,255,.06); padding: 2.5rem; }
.macro-title { font-family: 'Bebas Neue', sans-serif; font-size: 1.4rem; letter-spacing: .08em; color: var(--muted); margin-bottom: 2rem; }
.macro-bar { margin-bottom: 1.5rem; }
.macro-bar-label { display: flex; justify-content: space-between; font-size: .78rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; margin-bottom: .5rem; color: rgba(245,245,240,.6); }
.macro-bar-track { height: 6px; background: rgba(255,255,255,.07); border-radius: 3px; overflow: hidden; }
.macro-bar-fill { height: 100%; border-radius: 3px; animation: barGrow 1.4s ease forwards; }
@keyframes barGrow { from{width:0} }
.bar-p { background: linear-gradient(90deg, var(--red), var(--orange)); width: 55%; }
.bar-c { background: linear-gradient(90deg, #3B82F6, #60A5FA); width: 30%; }
.bar-g { background: linear-gradient(90deg, #A855F7, #C084FC); width: 15%; }

/* ── CONTACTO ── */
#contacto { background: var(--dark); border-top: 1px solid rgba(255,255,255,.05); }
.contacto-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; margin-top: 3rem; align-items: start; }
.contacto-form { display: flex; flex-direction: column; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: .4rem; }
.form-group label { font-size: .75rem; letter-spacing: .12em; text-transform: uppercase; font-weight: 600; color: var(--muted); }
.form-group input, .form-group textarea, .form-group select {
  background: var(--card); border: 1px solid rgba(255,255,255,.1); border-radius: 5px;
  color: var(--white); font-family: 'Barlow', sans-serif; font-size: .95rem; font-weight: 300;
  padding: .85rem 1rem; outline: none; transition: border-color .2s; width: 100%;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { border-color: var(--red); }
.form-group textarea { resize: vertical; min-height: 110px; }
.form-group select option { background: #1a1a1a; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.btn-form { background: var(--red); color: white; border: none; font-family: 'Barlow', sans-serif; font-weight: 700; font-size: 1rem; letter-spacing: .08em; text-transform: uppercase; padding: 1rem 2rem; border-radius: 5px; cursor: pointer; transition: transform .2s, box-shadow .2s; width: 100%; margin-top: .5rem; }
.btn-form:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(232,35,26,.4); }
.contacto-info { display: flex; flex-direction: column; gap: 1.5rem; }
.contacto-info-item { display: flex; gap: 1.2rem; align-items: flex-start; padding: 1.4rem; border-radius: 8px; border: 1px solid rgba(255,255,255,.07); background: var(--card); transition: border-color .2s; }
.contacto-info-item:hover { border-color: rgba(232,35,26,.3); }
.contacto-icon { width: 44px; height: 44px; border-radius: 8px; background: linear-gradient(135deg, var(--red), var(--orange)); display: flex; align-items: center; justify-content: center; font-size: 1.2rem; flex-shrink: 0; }
.contacto-info-item h4 { font-weight: 700; font-size: .9rem; margin-bottom: .3rem; }
.contacto-info-item p { font-size: .85rem; color: var(--muted); line-height: 1.5; }
.form-success { display: none; text-align: center; padding: 3rem 2rem; border: 1px solid rgba(34,197,94,.3); border-radius: 10px; background: rgba(34,197,94,.05); }
.form-success .ok-icon { font-size: 3rem; margin-bottom: 1rem; }
.form-success h3 { font-family: 'Bebas Neue', sans-serif; font-size: 2rem; margin-bottom: .5rem; color: var(--green); }
.form-success p { color: var(--muted); font-size: .9rem; }

/* ── UBICACION ── */
#ubicacion { border-top: 1px solid rgba(255,255,255,.05); text-align: center; }
#ubicacion h2 { margin: .5rem auto 1.5rem; }
#ubicacion > p { max-width: 52ch; margin: 0 auto 2.5rem; color: rgba(245,245,240,.55); font-size: 1.05rem; line-height: 1.7; }
.map-frame { max-width: 760px; margin: 0 auto 2rem; border-radius: 12px; overflow: hidden; border: 1px solid rgba(255,255,255,.08); box-shadow: 0 8px 40px rgba(0,0,0,.6); }
.map-frame iframe { display: block; width: 100%; height: 360px; border: none; filter: grayscale(30%) contrast(1.1); }
.ubicacion-info { display: inline-flex; align-items: center; gap: .7rem; background: var(--card); border: 1px solid rgba(255,255,255,.08); border-radius: 8px; padding: .9rem 1.5rem; margin-bottom: 2rem; font-size: .9rem; color: var(--muted); }
.ubicacion-info span { color: var(--white); font-weight: 600; }
.ubicacion-btns { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; align-items: center; }

/* ── CTA ── */
#cta { background: var(--dark); border-top: 1px solid rgba(255,255,255,.05); text-align: center; position: relative; overflow: hidden; }
#cta::before { content: ''; position: absolute; top: -50%; left: 50%; transform: translateX(-50%); width: 600px; height: 600px; border-radius: 50%; background: radial-gradient(circle, rgba(232,35,26,.12), transparent 70%); pointer-events: none; }
#cta h2 { max-width: 18ch; margin: .5rem auto 1.2rem; font-size: clamp(2.8rem, 5.5vw, 5rem); }
#cta > p { max-width: 46ch; margin: 0 auto 2.5rem; color: rgba(245,245,240,.5); font-size: 1.05rem; line-height: 1.7; }
.cta-btn { display: inline-flex; align-items: center; gap: .8rem; background: var(--green); color: #0a0a0a; font-family: 'Barlow', sans-serif; font-weight: 800; font-size: 1.15rem; letter-spacing: .06em; text-transform: uppercase; padding: 1.1rem 2.5rem; border-radius: 5px; text-decoration: none; box-shadow: 0 0 40px rgba(34,197,94,.25); transition: transform .2s, box-shadow .2s; }
.cta-btn:hover { transform: translateY(-3px) scale(1.02); box-shadow: 0 12px 50px rgba(34,197,94,.45); }
.cta-sub { margin-top: 1.2rem; font-size: .82rem; color: var(--muted); letter-spacing: .05em; }

/* ── FOOTER ── */
footer { padding: 2rem 8vw; border-top: 1px solid rgba(255,255,255,.06); display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem; }
.footer-left { display: flex; align-items: center; gap: 1rem; }
.footer-logo-img { height: 40px; width: 40px; border-radius: 50%; object-fit: cover; border: 1px solid rgba(232,35,26,.3); }
.footer-name { font-family: 'Bebas Neue', sans-serif; font-size: 1.4rem; letter-spacing: .1em; background: linear-gradient(135deg, var(--red), var(--orange)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.footer-social { display: flex; gap: .5rem; }
.footer-social-btn { display: flex; align-items: center; justify-content: center; width: 30px; height: 30px; border-radius: 7px; transition: transform .2s; }
.footer-social-btn:hover { transform: scale(1.1); }
.footer-social-btn svg { width: 15px; height: 15px; fill: white; }
.f-ig { background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.f-fb { background: #1877F2; }
.f-wa { background: #25D366; }

/* ── POPUP BIENVENIDA ── */
.popup-overlay { position: fixed; inset: 0; background: rgba(0,0,0,.8); z-index: 9000; display: flex; align-items: center; justify-content: center; opacity: 0; animation: fadeIn .4s ease .8s forwards; backdrop-filter: blur(4px); }
@keyframes fadeIn { to{opacity:1} }
.popup-box { background: var(--dark); border: 1px solid rgba(232,35,26,.3); border-radius: 12px; padding: 3rem 2.5rem; max-width: 460px; width: 90%; text-align: center; position: relative; transform: translateY(20px); animation: popUp .4s ease .8s forwards; }
@keyframes popUp { to{transform:translateY(0)} }
.popup-close { position: absolute; top: 1rem; right: 1rem; background: none; border: none; color: var(--muted); font-size: 1.4rem; cursor: pointer; transition: color .2s; line-height: 1; }
.popup-close:hover { color: var(--white); }
.popup-badge { display: inline-block; background: rgba(232,35,26,.15); color: var(--red); font-size: .7rem; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; padding: .35rem .8rem; border-radius: 3px; margin-bottom: 1.2rem; }
.popup-title { font-family: 'Bebas Neue', sans-serif; font-size: 2.6rem; line-height: 1.05; margin-bottom: 1rem; }
.popup-title em { font-style: normal; color: var(--green); }
.popup-text { font-size: .9rem; color: rgba(245,245,240,.6); line-height: 1.6; margin-bottom: 2rem; }
.popup-btn { display: block; background: var(--green); color: #0a0a0a; font-family: 'Barlow', sans-serif; font-weight: 800; font-size: 1rem; letter-spacing: .06em; text-transform: uppercase; padding: 1rem; border-radius: 5px; text-decoration: none; transition: transform .2s, box-shadow .2s; box-shadow: 0 4px 20px rgba(34,197,94,.3); }
.popup-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(34,197,94,.5); }
.popup-skip { margin-top: .8rem; font-size: .78rem; color: var(--muted); cursor: pointer; background: none; border: none; display: block; width: 100%; text-align: center; }
.popup-skip:hover { color: var(--white); }

/* ── WHATSAPP FLOTANTE ── */
.wa-float { position: fixed; bottom: 2rem; right: 2rem; z-index: 500; display: flex; flex-direction: column; align-items: flex-end; gap: .6rem; }
.wa-float-btn { width: 58px; height: 58px; border-radius: 50%; background: #25D366; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 20px rgba(37,211,102,.4); transition: transform .2s, box-shadow .2s; text-decoration: none; animation: waAppear .5s ease 1.5s both; position: relative; }
@keyframes waAppear { from{opacity:0;transform:scale(0)} to{opacity:1;transform:scale(1)} }
.wa-float-btn:hover { transform: scale(1.1); box-shadow: 0 8px 30px rgba(37,211,102,.6); }
.wa-float-btn svg { width: 30px; height: 30px; fill: white; }
.wa-float-tooltip { background: var(--dark); color: var(--white); font-size: .8rem; font-weight: 600; padding: .5rem .9rem; border-radius: 6px; white-space: nowrap; border: 1px solid rgba(255,255,255,.1); opacity: 0; transform: translateX(10px); transition: opacity .2s, transform .2s; pointer-events: none; }
.wa-float:hover .wa-float-tooltip { opacity: 1; transform: translateX(0); }
.wa-float-pulse { position: absolute; top: 0; right: 0; width: 14px; height: 14px; border-radius: 50%; background: var(--red); border: 2px solid var(--black); animation: waPulse 2s infinite; }
@keyframes waPulse { 0%,100%{transform:scale(1)} 50%{transform:scale(1.3)} }

/* ── ANIMACIONES ── */
@keyframes fadeUp { from{opacity:0;transform:translateY(28px)} to{opacity:1;transform:translateY(0)} }
.reveal { opacity: 0; transform: translateY(30px); transition: opacity .65s ease, transform .65s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .precios-grid { grid-template-columns: 1fr; max-width: 380px; margin-left: auto; margin-right: auto; }
  .precio-card.featured { transform: none; }
  .precio-card.featured:hover { transform: translateY(-4px); }
  .maq-grid { grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); }
}
@media (max-width: 768px) {
  #sobre, #alimentacion, .horarios-wrap, .contacto-wrap { grid-template-columns: 1fr; gap: 3rem; }
  .stat-row { display: none; }
  nav { padding: .7rem 5vw; }
  .nav-links { display: none; }
  section { padding: 5rem 6vw; }
  .ubicacion-btns { flex-direction: column; align-items: center; }
  .maq-grid { grid-template-columns: repeat(2, 1fr); gap: .7rem; }
  .form-row { grid-template-columns: 1fr; }
  .wa-float { bottom: 1.2rem; right: 1.2rem; }
}
