:root {
  --bg: #0b0b0b;
  --bg-light: #0b0b0b;
  --ink: #111111;
  --paper: #151515;
  --accent: #8bc540;
  --line: #2a2a2a;
  --muted: #8a8a8a;
  --radius: 2px;
  --font-display: 'Bebas Neue', 'Helvetica Neue', Arial, sans-serif;
  --font-body: 'Inter', 'Helvetica Neue', Arial, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  background: var(--bg-light);
  color: #f0f0f0;
  -webkit-font-smoothing: antialiased;
}

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

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

h1, h2, h3 { font-family: var(--font-display); letter-spacing: .01em; font-weight: 400; }

/* Announce bar */
.announce-bar {
  background: #fff;
  color: #0b0b0b;
  display: flex;
  align-items: center;
  height: 38px;
  overflow: hidden;
  font-size: 12.5px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.announce-track {
  flex: 1;
  display: flex;
  justify-content: center;
}
.announce-item {
  display: none;
  white-space: nowrap;
}
.announce-item.active { display: inline-block; }
.announce-arrow {
  background: none;
  border: none;
  color: #0b0b0b;
  opacity: .55;
  cursor: pointer;
  width: 38px;
  height: 38px;
  font-size: 11px;
}
.announce-arrow:hover { opacity: 1; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(11,11,11,.95);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px;
}
.logo-wrap { display: flex; align-items: center; gap: 10px; }
.logo-img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid #333;
}
.logo-anillo {
  width: 150px;
  height: auto;
  object-fit: contain;
}
.logo-text {
  color: #fff;
  font-weight: 700;
  font-family: var(--font-body);
  font-size: 13px;
  line-height: 1.1;
  letter-spacing: .06em;
}
.main-nav {
  display: flex;
  gap: 28px;
}
.main-nav a {
  color: #ddd;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .1em;
  padding: 6px 0;
  border-bottom: 1px solid transparent;
  transition: border-color .2s, color .2s;
}
.main-nav a:hover, .main-nav a.active { color: var(--accent); border-color: var(--accent); }
.account-icon {
  color: #ddd;
  display: flex;
  align-items: center;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .1em;
  font-weight: 600;
  border: 1px solid #333;
  padding: 8px 16px;
  border-radius: var(--radius);
  white-space: nowrap;
}
.account-icon:hover { color: #111; background: var(--accent); border-color: var(--accent); }

/* Hero (home carousel) */
.hero {
  position: relative;
  height: min(88vh, 720px);
  overflow: hidden;
  background: #000;
}
.hero-track {
  display: flex;
  height: 100%;
  transition: transform .6s ease;
}
.hero-slide {
  min-width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: flex-end;
}
.hero-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0,0,0,.75) 0%, rgba(0,0,0,.15) 55%, rgba(0,0,0,.35) 100%);
}
.hero-caption {
  position: relative;
  z-index: 2;
  color: #fff;
  padding: 56px;
  max-width: 640px;
}
.hero-home .hero-slide:first-child .hero-caption {
  max-width: min(48vw, 640px);
}
.hero-home .hero-slide:first-child h1 {
  font-size: clamp(26px, 3.4vw, 42px);
}
.hero-eyebrow {
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: 12px;
  color: var(--accent);
  margin: 0 0 10px;
  font-family: var(--font-body);
  font-weight: 600;
}
.hero-caption h1, .page-banner-inner h1 {
  font-size: clamp(40px, 7vw, 76px);
  margin: 0 0 14px;
  line-height: .95;
  text-transform: uppercase;
}
.hero-caption p, .page-banner-inner p {
  font-size: 15px;
  color: #eaeaea;
  margin: 0 0 22px;
  max-width: 480px;
}
.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  background: rgba(0,0,0,.35);
  color: #fff;
  border: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 16px;
}
.hero-arrow:hover { background: rgba(0,0,0,.6); }
.hero-arrow-left { left: 18px; }
.hero-arrow-right { right: 18px; }

/* Page banner (indoor / socios) */
.page-banner {
  position: relative;
  height: min(80vh, 680px);
  min-height: 420px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
}
.page-banner-tall { height: min(88vh, 760px); min-height: 480px; }
.page-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0,0,0,.8) 0%, rgba(0,0,0,.2) 60%);
}
.page-banner-inner {
  position: relative;
  z-index: 2;
  color: #fff;
  max-width: 720px;
  padding: 48px;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 13px 26px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-weight: 600;
  border-radius: var(--radius);
  border: 1px solid transparent;
  transition: all .2s;
  cursor: pointer;
}
.btn-light { background: #fff; color: #111; }
.btn-light:hover { background: var(--accent); color: #111; }
.btn-outline { background: transparent; border-color: rgba(255,255,255,.5); color: #fff; }
.btn-outline:hover { background: #fff; color: #111; }

/* Sections */
.section { max-width: 1200px; margin: 0 auto; padding: 80px 20px; }
.section-dark { background: var(--bg); color: #fff; max-width: none; }
.section-dark .section-head p { color: #bbb; }
.section-dark a { color: #fff; }
.section-dark > * { max-width: 1200px; margin-left: auto; margin-right: auto; }

.section-head { max-width: 640px; margin-bottom: 44px; }
.section-head h2 {
  font-size: clamp(28px, 4vw, 44px);
  margin: 0 0 12px;
  text-transform: uppercase;
}
.section-head p { color: #999; margin: 0; line-height: 1.6; font-size: 14.5px; }
.section-dark .section-head { text-align: center; margin-left: auto; margin-right: auto; }

/* Product grid */
.grid-products {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 24px;
}
.product-card {
  background: var(--paper);
  border: 1px solid #262626;
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .25s ease, box-shadow .25s ease;
}
.product-card:hover { transform: translateY(-4px); box-shadow: 0 16px 30px rgba(0,0,0,.08); }
.product-img {
  aspect-ratio: 4/5;
  background-size: cover;
  background-position: center;
}
.product-body { padding: 20px; display: flex; flex-direction: column; gap: 6px; flex: 1; }
.product-body h3 { margin: 0; font-size: 20px; text-transform: uppercase; }
.product-tag {
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: .08em;
  color: var(--accent);
  font-weight: 700;
  margin: 0;
  font-family: var(--font-body);
}
.product-body p:not(.product-tag) { color: #aaa; font-size: 13.5px; line-height: 1.5; flex: 1; margin: 0 0 14px; }
.product-body .btn { align-self: flex-start; }

/* Gallery */
.grid-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px;
}
.gallery-img {
  aspect-ratio: 1/1;
  background-size: cover;
  background-position: center;
  transition: transform .3s ease;
}
.gallery-img:hover { transform: scale(1.03); }

/* Novedades / posts */
.posts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 26px;
}
.post-card {
  background: var(--paper);
  border: 1px solid #262626;
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.post-img {
  aspect-ratio: 16/10;
  background-size: cover;
  background-position: center;
}
.post-body { padding: 22px; display: flex; flex-direction: column; gap: 6px; }
.post-body h3 { margin: 2px 0 0; font-size: 19px; text-transform: uppercase; }
.post-date { color: var(--muted); font-size: 12px; margin: 0 0 8px; }
.post-body p:not(.product-tag):not(.post-date) { color: #aaa; font-size: 13.5px; line-height: 1.55; margin: 0 0 12px; }
.post-body .btn { align-self: flex-start; }

.empty-state {
  grid-column: 1 / -1;
  text-align: center;
  color: var(--muted);
  padding: 40px 0;
}

/* CTA band */
.cta-band {
  background: var(--ink);
  color: #fff;
  padding: 40px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  flex-wrap: wrap;
  text-align: center;
}
.cta-band p { margin: 0; font-size: 16px; }

/* Contacto directo (socios) */
.contact-band {
  padding-top: 90px;
  padding-bottom: 70px;
}
.contact-inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.contact-logo {
  width: 120px;
  height: 120px;
  object-fit: contain;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: #000;
  padding: 10px;
}
.contact-logo-wide {
  width: 260px;
  height: auto;
  object-fit: contain;
  margin: 0 auto 22px;
}
.contact-inner .hero-eyebrow { justify-content: center; }
.contact-inner h1 {
  font-size: clamp(34px, 5vw, 56px);
  margin: 0 0 14px;
  text-transform: uppercase;
}
.contact-lead { color: #bbb; margin: 0 0 34px; }
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 18px;
  width: 100%;
}
.contact-card {
  background: #151515;
  border: 1px solid #262626;
  border-radius: var(--radius);
  padding: 26px 22px;
  transition: border-color .2s, transform .2s;
}
.contact-card:hover { border-color: var(--accent); transform: translateY(-3px); }
.contact-icon { width: 34px; height: 34px; object-fit: contain; display: block; margin: 0 auto 12px; border-radius: 8px; }
.contact-card h3 { margin: 8px 0 8px; font-size: 17px; text-transform: uppercase; color: #fff; }
.contact-card p { margin: 0; color: #aaa; font-size: 13px; line-height: 1.5; }
.contact-card-whatsapp { border-color: #2f5a3d; background: #10201a; }
.contact-card-whatsapp:hover { border-color: #4bd07a; }

/* Hooks grid (socios) */
.hooks-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 22px;
}
.hook-card {
  background: #151515;
  border: 1px solid #262626;
  border-radius: var(--radius);
  padding: 28px 24px;
}
.hook-icon { font-size: 28px; display: block; margin-bottom: 14px; }
.hook-card h3 { margin: 0 0 8px; font-size: 18px; text-transform: uppercase; }
.hook-card p { margin: 0; color: #aaa; font-size: 13.5px; line-height: 1.55; }

/* Steps */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 22px;
}
.step-card { border-top: 2px solid #fff; padding-top: 16px; }
.step-num { font-family: var(--font-display); font-size: 34px; color: var(--accent); }
.step-card h3 { margin: 6px 0 8px; font-size: 17px; text-transform: uppercase; }
.step-card p { margin: 0; color: #aaa; font-size: 13.5px; line-height: 1.55; }

/* Socios form */
.socios-form {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.socios-form label {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: #ccc;
}
.form-full { grid-column: 1 / -1; }
.socios-form input, .socios-form textarea {
  background: #151515;
  border: 1px solid #2a2a2a;
  color: #fff;
  padding: 12px 14px;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 14px;
  resize: vertical;
}
.socios-form input:focus, .socios-form textarea:focus { outline: none; border-color: var(--accent); }
.socios-form .btn { align-self: flex-start; margin-top: 6px; }
.form-note { font-size: 12.5px; color: #999; margin: 4px 0 0; }
.form-note a { color: var(--accent); }

/* Footer */
.site-footer {
  background: #060606;
  color: #ccc;
  padding: 60px 20px 30px;
}
.footer-cols {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid #1e1e1e;
}
.footer-col h4 {
  color: #fff;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .1em;
  margin: 0 0 14px;
  font-family: var(--font-body);
}
.footer-col a, .footer-col p {
  display: block;
  font-size: 13px;
  color: #999;
  margin-bottom: 8px;
  line-height: 1.5;
}
.footer-col a:hover { color: var(--accent); }
.footer-credits {
  max-width: 1200px;
  margin: 20px auto 0;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 11.5px;
  color: #666;
}
.footer-powered a {
  color: #bbb;
  font-weight: 600;
  transition: color .2s ease;
}
.footer-powered a:hover { color: #fff; }

@media (max-width: 720px) {
  .main-nav { gap: 16px; }
  .main-nav a { font-size: 11px; }
  .grid-gallery { grid-template-columns: repeat(2, 1fr); }
  .hero-caption, .page-banner-inner { padding: 26px; }
  .form-row { grid-template-columns: 1fr; }
}

/* ---------- quiénes somos ---------- */
.quienes {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.35fr) minmax(0, 1fr);
  align-items: center;
  gap: 40px;
  max-width: 1360px;
  margin: 0 auto;
  padding: 96px 40px 104px;
}
.quienes-foto { margin: 0; }
.quienes-foto img {
  display: block;
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
}
.quienes-texto { text-align: center; padding: 0 12px; }
.quienes-texto h2 {
  font-family: var(--font-display);
  font-size: clamp(38px, 5vw, 58px);
  letter-spacing: .02em;
  line-height: 1;
  margin: 0 0 26px;
  color: #fff;
}
.quienes-texto p {
  font-size: 15px;
  line-height: 1.75;
  color: #b9b9b9;
  margin: 0 0 18px;
}
.quienes-texto p:last-child { margin-bottom: 0; }
.quienes-firma {
  margin-top: 28px !important;
  font-size: 12.5px !important;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: #fff !important;
}

@media (max-width: 980px) {
  .quienes {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    padding: 64px 24px 72px;
  }
  .quienes-texto {
    grid-column: 1 / -1;
    grid-row: 1;
    padding: 0;
  }
  .quienes-foto-izq { grid-row: 2; }
  .quienes-foto-der { grid-row: 2; }
}
@media (max-width: 560px) {
  .quienes { padding: 48px 20px 56px; gap: 16px; }
  .quienes-texto p { font-size: 14.5px; }
}
