:root {
  --primary: #c70000;
  --primary-alt: #f70000;
  --black: #000;
  --dark-1: #111;
  --dark-2: #1a1a1a;
  --dark-3: #222;
  --dark-4: #2f2f2f;
  --gray: #444;
  --light-gray: #cfcfcf;
  --white: #f5f5f5;
  --max-width: 1180px;
  --transition: all 0.3s ease;
}

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

body {
  font-family: "Helvetica Neue", Arial, sans-serif;
  background-color: var(--black);
  color: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background: url("https://openmindbcn.com/images/openmind/fondos/black-logo.png") repeat;
  opacity: 0.22;
  z-index: -3;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  background: radial-gradient(circle at 20% 20%, rgba(199,0,0,0.18), transparent 45%),
              radial-gradient(circle at 80% 0%, rgba(247,0,0,0.12), transparent 40%),
              linear-gradient(160deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.96) 55%, rgba(0,0,0,1) 100%);
  z-index: -2;
}
main {
      margin-top: 60px;  /*Espacio para el header fijo */
      padding: 20px;
      height: 2000px;  /*Contenido largo para scroll */
      background: linear-gradient(to bottom, #f0f0f0, #ddd);*/
    }

header {
background-color: rgba(0,0,0,0.85);
backdrop-filter: blur(6px);
border-bottom: 2px solid var(--primary);
padding: 1.6rem 1.8rem;
position: fixed;
top: 0;
left: 0;
right: 0;
z-index: 20;
transition: transform 0.3s ease, padding 0.3s ease;
}

.header-inner {
max-width: var(--max-width);
margin: 0 auto;
display: flex;
align-items: center;
justify-content: space-between;
gap: 1.5rem;
flex-wrap: wrap;
}
header.hidden {
        transform: translateY(-100%);
        }
        
/* Ajuste para móvil */
@media (max-width: 720px) {
header {
padding: 0.8rem 1rem;
}

.header-inner {
justify-content: center;
text-align: center;
gap: 0.8rem;
}

.brand-block {
flex-direction: row;
gap: 0.8rem;
}

.brand-block img {
width: 70px;
}

.brand-tagline {
font-size: 0.7rem;
}

.language-pill {
font-size: 0.65rem;
padding: 0.25rem 0.6rem;
}

/*.hero {
padding-top: 7rem;
}*/
}

.brand-block {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.brand-block img {
  width: 120px;
  height: auto;
}

.brand-tagline {
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(245,245,245,0.68);
}

.language-toggle {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.language-pill {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.3rem 0.9rem;
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 999px;
  color: rgba(255,255,255,0.7);
}

.hero {
  padding: 10rem 1.8rem 3.5rem;
}

.hero-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  gap: 2.5rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
  align-items: end;
}

.hero-logo-block {
  position: relative;
  background: rgba(0,0,0,0.6);
  border: 1px dashed rgba(255,255,255,0.2);
  border-radius: 18px;
  min-height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.hero-logo-block img {
  max-width: 360px;
  width: 80%;
  height: auto;
}

.hero-logo-block span {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  text-align: center;
  letter-spacing: 0.06em;
}

.hero-copy h1 {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.hero-copy h1 strong {
  color: var(--primary);
}

.hero-subtitle {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.8);
  text-transform: uppercase;
  letter-spacing: 0.24em;
  margin-bottom: 1.5rem;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem 1.5rem;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
}

.hero-meta span {
  background-color: rgba(199,0,0,0.14);
  border: 1px solid rgba(199,0,0,0.4);
  border-radius: 999px;
  padding: 0.5rem 1.1rem;
}

.hero-cta {
  margin-top: 2.4rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

.hero-cta a {
  background: linear-gradient(140deg, var(--primary) 0%, var(--primary-alt) 100%);
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  padding: 1rem 2.8rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition);
  border: 1px solid transparent;
}

.hero-cta a:hover {
  transform: translateY(-3px);
  border-color: rgba(255,255,255,0.35);
}

.promo-callout {
  background: rgba(199,0,0,0.18);
  border: 1px solid rgba(199,0,0,0.5);
  border-radius: 16px;
  padding: 1.5rem;
  margin-top: 1.5rem;
  text-align: center;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  line-height: 1.8;
}

.promo-callout strong {
  display: block;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-bottom: 0.6rem;
  color: rgba(255,255,255,0.95);
}

.section {
  padding: 3.5rem 1.8rem;
}

.section--bordered {
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  background: rgba(0,0,0,0.52);
}

.section-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  gap: 2.5rem;
}

.section-headline {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.section-eyebrow {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  color: rgba(255,255,255,0.5);
}

.section-title {
  font-size: clamp(1.9rem, 4vw, 2.7rem);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.section-title span {
  color: var(--primary);
}

.section-copy {
  color: rgba(245,245,245,0.75);
  max-width: 760px;
  font-size: 1rem;
}

.section-copy strong {
  color: rgba(255,255,255,0.9);
}

.info-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.8rem;
}

.info-card {
  background: rgba(0,0,0,0.75);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 18px;
  padding: 1.8rem;
  display: grid;
  gap: 1rem;
  transition: var(--transition);
}

.info-card:hover {
  border-color: rgba(199,0,0,0.5);
  transform: translateY(-4px);
}

.info-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(199,0,0,0.8);
}

.info-title {
  font-size: 1.45rem;
  letter-spacing: 0.06em;
}

.info-text {
  font-size: 0.95rem;
  color: rgba(245,245,245,0.75);
}

.info-text span {
  display: block;
  font-size: 0.83rem;
  color: rgba(245,245,245,0.6);
  margin-top: 0.6rem;
}

.gallery-grid {
  display: grid;
  gap: 1.8rem;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.gallery-card {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  background: rgba(0,0,0,0.6);
  border: 1px solid rgba(255,255,255,0.06);
  display: grid;
  grid-template-rows: auto 1fr;
}

.gallery-image {
  position: relative;
  background: rgba(25,25,25,0.78);
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  width: 100%;
}

.gallery-image::after {
  content: attr(data-placeholder);
  position: absolute;
  inset: 1px;
  border: 1px dashed rgba(255,255,255,0.16);
  border-radius: 14px;
  display: grid;
  place-items: center;
  padding: 1.4rem;
  color: rgba(255,255,255,0.55);
  font-size: 0.88rem;
  letter-spacing: 0.08em;
  text-align: center;
  pointer-events: none;
}

.gallery-image:has(img)::after {
  display: none;
}

.gallery-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}

.gallery-caption {
  padding: 1.5rem;
  background: linear-gradient(0deg, rgba(0,0,0,0.82) 0%, rgba(0,0,0,0.45) 90%);
  display: grid;
  gap: 0.6rem;
}

.gallery-caption h4 {
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.gallery-caption p {
  font-size: 0.9rem;
  color: rgba(245,245,245,0.7);
}

.lineup-grid,
.hosts-grid {
  display: grid;
  gap: 1.6rem;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.talent-card {
  background: rgba(0,0,0,0.72);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 18px;
  padding: 1.6rem;
  display: grid;
  gap: 1.1rem;
  width: 100%;
}

.talent-photo {
  background: rgba(25,25,25,0.8);
  border: 1px dashed rgba(255,255,255,0.18);
  border-radius: 14px;
  aspect-ratio: 4 / 4;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.talent-photo::after {
  content: "Zona foto";
  position: absolute;
  inset: 10px;
  border-radius: 12px;
  background: rgba(0,0,0,0.45);
  display: grid;
  place-items: center;
  padding: 1rem 1.2rem;
  text-align: center;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.55);
  pointer-events: none;
}

.talent-photo:has(img)::after {
  display: none;
}

.talent-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}

.talent-name {
  font-size: 1.05rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.talent-role {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: rgba(199,0,0,0.9);
}

.talent-notes {
  font-size: 0.9rem;
  color: rgba(245,245,245,0.7);
}

.pricing-wrapper {
  background: rgba(0,0,0,0.7);
  border: 2px solid rgba(199,0,0,0.4);
  border-radius: 24px;
  padding: 2.5rem;
  display: grid;
  gap: 2.5rem;
  text-align: center;
}

.pricing-main {
  display: grid;
  gap: 1.2rem;
}

.pricing-title {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(255,255,255,0.7);
}

.price-display {
  font-size: 4rem;
  letter-spacing: 0.08em;
  font-weight: 700;
}

.price-display sup {
  font-size: 1.6rem;
  vertical-align: top;
  margin-right: 0.3rem;
}

.price-includes {
  font-size: 1.05rem;
  color: rgba(245,245,245,0.8);
}

.policy-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.policy-card {
  background: rgba(0,0,0,0.68);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 18px;
  padding: 1.8rem;
  display: grid;
  gap: 0.9rem;
}

.policy-list {
  list-style: none;
  display: grid;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: rgba(245,245,245,0.74);
}

.policy-list li {
  position: relative;
  padding-left: 1.2rem;
}

.policy-list li::before {
  content: "▸";
  position: absolute;
  left: 0;
  top: 0.1rem;
  color: rgba(199,0,0,0.8);
}

.cta-block {
  text-align: center;
  padding: 3.5rem 1.8rem 4.5rem;
  background: linear-gradient(160deg, rgba(199,0,0,0.25) 0%, rgba(0,0,0,0.92) 70%);
}

.cta-inner {
  max-width: 760px;
  margin: 0 auto;
  display: grid;
  gap: 2rem;
}

.cta-title {
  font-size: clamp(2rem, 4.5vw, 3rem);
  text-transform: uppercase;
  letter-spacing: 0.2em;
}

.cta-text {
  font-size: 1rem;
  color: rgba(245,245,245,0.75);
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  align-items: center;
}

.cta-button {
  display: inline-block;
  background: linear-gradient(140deg, var(--primary) 0%, var(--primary-alt) 100%);
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  padding: 1.1rem 3rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition);
  border: 1px solid transparent;
}

.cta-button:hover {
  transform: translateY(-3px);
  border-color: rgba(255,255,255,0.35);
}

.cta-secondary {
  font-size: 0.88rem;
  color: rgba(245,245,245,0.7);
  letter-spacing: 0.06em;
}

footer {
  background: rgba(0,0,0,0.9);
  border-top: 2px solid rgba(199,0,0,0.4);
  padding: 2.8rem 1.8rem;
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  gap: 1.5rem;
  text-align: center;
  font-size: 0.92rem;
  color: rgba(245,245,245,0.6);
}

.footer-brand {
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.82);
}

.footer-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem 1.6rem;
  justify-content: center;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
}

.footer-meta a {
  color: rgba(199,0,0,0.9);
  text-decoration: none;
  transition: var(--transition);
}

.footer-meta a:hover {
  color: rgba(247,0,0,0.95);
}

.footer-note {
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(245,245,245,0.48);
}

@media (max-width: 720px) {
  .hero {
      padding-top: 4rem;
  }

  .header-inner {
      justify-content: center;
      text-align: center;
  }

  .brand-block {
      flex-direction: column;
      gap: 1rem;
  }

  .brand-block img {
      width: 100px;
  }

  .hero-cta {
      flex-direction: column;
      align-items: stretch;
  }

  .hero-cta a {
      width: 100%;
      text-align: center;
  }

  .cta-actions {
      flex-direction: column;
  }

  .price-display {
      font-size: 3rem;
  }

  .lineup-grid,
  .hosts-grid {
      grid-template-columns: 1fr;
      gap: 1.4rem;
  }

  .gallery-grid {
      grid-template-columns: 1fr;
      gap: 1.5rem;
  }

  .talent-photo,
  .gallery-image {
      width: 100%;
      max-width: 100%;
  }
}
