/* ============================================
   Ritmo Vivo — Main Stylesheet
   Tribal/neon aesthetic, dark theme, responsive
   ============================================ */

/* ===== RESET & BASE ===== */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: #0a0a0f;
  color: #e8e8f0;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
}

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

/* ===== SECTION ===== */
.section {
  padding: 100px 0;
}

.section__header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}

.section__title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.section__desc {
  font-size: 1.1rem;
  color: #a0a0b8;
  line-height: 1.7;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 14px 28px;
  border-radius: 10px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.btn--small {
  padding: 8px 18px;
  font-size: 0.85rem;
  border-radius: 8px;
}

.btn--lg {
  padding: 16px 36px;
  font-size: 1.05rem;
}

.btn--primary {
  background: #ff2d78;
  color: #fff;
  border-color: #ff2d78;
}

.btn--primary:hover {
  background: #e61a66;
  border-color: #e61a66;
  transform: translateY(-2px);
}

.btn--outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.25);
}

.btn--outline:hover {
  border-color: #ff2d78;
  color: #ff2d78;
  transform: translateY(-2px);
}

/* ===== NAV ===== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(10, 10, 15, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  height: 70px;
  display: flex;
  align-items: center;
}

.nav__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: 1.25rem;
  color: #fff;
  letter-spacing: 0.05em;
}

.nav__logo-icon {
  color: #ff2d78;
  font-size: 1.4rem;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav__link {
  font-size: 0.9rem;
  font-weight: 500;
  color: #a0a0b8;
  transition: color 0.3s;
  position: relative;
}

.nav__link:hover {
  color: #fff;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: #ff2d78;
  transition: width 0.3s;
}

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

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav__toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s;
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 70px;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(255, 45, 120, 0.15) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 30%, rgba(0, 212, 170, 0.1) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 100%, rgba(10, 10, 15, 0.8) 0%, transparent 40%);
  z-index: 1;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    repeating-linear-gradient(
      45deg,
      transparent,
      transparent 2px,
      rgba(255, 45, 120, 0.03) 2px,
      rgba(255, 45, 120, 0.03) 4px
    );
}

.hero__container {
  position: relative;
  z-index: 2;
  width: 100%;
}

.hero__content {
  max-width: 800px;
}

.hero__badge {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 600;
  color: #ff2d78;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 24px;
  padding: 6px 16px;
  border: 1px solid rgba(255, 45, 120, 0.3);
  border-radius: 50px;
}

.hero__title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.05;
  margin-bottom: 24px;
  letter-spacing: -0.03em;
}

.hero__subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: #a0a0b8;
  line-height: 1.7;
  max-width: 640px;
  margin-bottom: 40px;
}

.hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* ===== VALOR ===== */
.valor {
  background: linear-gradient(180deg, #0a0a0f 0%, #0d0d18 100%);
}

.valor__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 32px;
}

.valor__item {
  text-align: center;
  padding: 32px 20px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: all 0.3s;
}

.valor__item:hover {
  background: rgba(255, 45, 120, 0.06);
  border-color: rgba(255, 45, 120, 0.15);
  transform: translateY(-4px);
}

.valor__icon {
  font-size: 2rem;
  margin-bottom: 16px;
  color: #ff2d78;
}

.valor__title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}

.valor__text {
  font-size: 0.9rem;
  color: #a0a0b8;
  line-height: 1.6;
}

/* ===== CLASES ===== */
.clases {
  background: #0d0d18;
}

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

.clase-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  padding: 32px 28px;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

.clase-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--accent, #ff2d78);
}

.clase-card:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.12);
  transform: translateY(-4px);
}

.clase-card--more {
  background: linear-gradient(135deg, rgba(255, 45, 120, 0.08), rgba(0, 212, 170, 0.08));
  border-color: rgba(255, 45, 120, 0.15);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.clase-card__icon {
  font-size: 2rem;
  margin-bottom: 16px;
  color: var(--accent, #ff2d78);
}

.clase-card__title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}

.clase-card__desc {
  font-size: 0.9rem;
  color: #a0a0b8;
  line-height: 1.6;
  margin-bottom: 20px;
}

.clase-card__cta {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent, #ff2d78);
  padding: 8px 0;
  position: relative;
  transition: all 0.3s;
}

.clase-card__cta::after {
  content: '→';
  margin-left: 6px;
  transition: margin-left 0.3s;
}

.clase-card__cta:hover::after {
  margin-left: 12px;
}

/* ===== AUDIENCIA ===== */
.audiencia {
  background: #0a0a0f;
}

.audiencia__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
}

.audiencia__item {
  text-align: center;
  padding: 32px 20px;
  background: rgba(0, 212, 170, 0.04);
  border: 1px solid rgba(0, 212, 170, 0.1);
  border-radius: 16px;
  transition: all 0.3s;
}

.audiencia__item:hover {
  background: rgba(0, 212, 170, 0.08);
  border-color: rgba(0, 212, 170, 0.2);
  transform: translateY(-4px);
}

.audiencia__emoji {
  font-size: 2.5rem;
  display: block;
  margin-bottom: 16px;
}

.audiencia__title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}

.audiencia__text {
  font-size: 0.9rem;
  color: #a0a0b8;
  line-height: 1.6;
}

/* ===== COMUNIDAD ===== */
.comunidad {
  background:
    linear-gradient(135deg, rgba(255, 45, 120, 0.08), rgba(0, 212, 170, 0.08)),
    #0d0d18;
  position: relative;
  overflow: hidden;
}

.comunidad::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: repeating-conic-gradient(
    rgba(255, 45, 120, 0.03) 0% 25%,
    transparent 0% 50%
  );
  animation: rotate 60s linear infinite;
}

@keyframes rotate {
  to { transform: rotate(360deg); }
}

.comunidad__content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}

.comunidad__badge {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 600;
  color: #00d4aa;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 20px;
  padding: 6px 16px;
  border: 1px solid rgba(0, 212, 170, 0.3);
  border-radius: 50px;
}

.comunidad__title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 24px;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.comunidad__text {
  font-size: 1.05rem;
  color: #b8b8d0;
  line-height: 1.8;
  margin-bottom: 20px;
}

/* ===== HORARIOS ===== */
.horarios {
  background: #0a0a0f;
}

.horarios__placeholder {
  text-align: center;
  max-width: 560px;
  margin: 0 auto;
  padding: 48px 32px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px dashed rgba(255, 255, 255, 0.1);
  border-radius: 20px;
}

.horarios__icon {
  font-size: 3rem;
  margin-bottom: 20px;
}

.horarios__placeholder-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
}

.horarios__placeholder-text {
  font-size: 0.95rem;
  color: #a0a0b8;
  line-height: 1.7;
  margin-bottom: 28px;
}

/* ===== RESEÑAS ===== */
.resenas {
  background: #0d0d18;
}

.resenas__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-bottom: 40px;
}

.resena-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  padding: 32px 28px;
  transition: all 0.3s;
}

.resena-card:hover {
  background: rgba(255, 255, 255, 0.06);
  transform: translateY(-4px);
}

.resena-card__stars {
  color: #ffb800;
  font-size: 1.2rem;
  margin-bottom: 14px;
  letter-spacing: 2px;
}

.resena-card__text {
  font-size: 0.95rem;
  color: #c8c8e0;
  line-height: 1.7;
  margin-bottom: 16px;
  font-style: italic;
}

.resena-card__author {
  font-size: 0.85rem;
  color: #a0a0b8;
  font-weight: 500;
}

.resenas__cta {
  text-align: center;
}

/* ===== GALERIA ===== */
.galeria {
  background: #0a0a0f;
}

.galeria__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 48px;
}

.galeria__item {
  aspect-ratio: 1;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
}

.galeria__item--placeholder {
  background: linear-gradient(135deg, rgba(255, 45, 120, 0.1), rgba(0, 212, 170, 0.1));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.06);
  gap: 12px;
}

.galeria__icon {
  font-size: 2.5rem;
  opacity: 0.5;
}

.galeria__label {
  font-size: 0.85rem;
  font-weight: 600;
  color: #a0a0b8;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.galeria__socials {
  text-align: center;
}

.galeria__socials-text {
  font-size: 1rem;
  color: #a0a0b8;
  margin-bottom: 20px;
}

.galeria__socials-links {
  display: flex;
  justify-content: center;
  gap: 24px;
}

.social-link {
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  padding: 10px 24px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.3s;
}

.social-link:hover {
  background: rgba(255, 45, 120, 0.1);
  border-color: #ff2d78;
  color: #ff2d78;
  transform: translateY(-2px);
}

/* ===== UBICACION ===== */
.ubicacion {
  background: #0d0d18;
}

.ubicacion__content {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 40px;
  align-items: start;
}

.ubicacion__info {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.ubicacion__label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: #ff2d78;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 6px;
}

.ubicacion__value {
  font-size: 1.1rem;
  color: #fff;
  font-weight: 500;
}

.ubicacion__map-embed {
  width: 100%;
  border: 0;
  border-radius: 12px;
}

.ubicacion__detail {
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

/* ===== CONTACTO ===== */
.contacto {
  background:
    linear-gradient(180deg, rgba(255, 45, 120, 0.08), transparent),
    #0a0a0f;
}

.contacto__content {
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
}

.contacto__title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.contacto__text {
  font-size: 1.1rem;
  color: #b8b8d0;
  line-height: 1.7;
  margin-bottom: 36px;
}

.contacto__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===== FOOTER ===== */
.footer {
  background: #07070d;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 60px 0 30px;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer__logo {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: 1.2rem;
  color: #fff;
  letter-spacing: 0.05em;
  display: block;
  margin-bottom: 16px;
}

.footer__desc {
  font-size: 0.9rem;
  color: #a0a0b8;
  line-height: 1.7;
  margin-bottom: 12px;
}

.footer__nap {
  font-size: 0.85rem;
  color: #808098;
}

.footer__heading {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
}

.footer__links,
.footer__social,
.footer__contact {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer__links a,
.footer__social a,
.footer__contact a {
  font-size: 0.9rem;
  color: #a0a0b8;
  transition: color 0.3s;
}

.footer__links a:hover,
.footer__social a:hover,
.footer__contact a:hover {
  color: #ff2d78;
}

.footer__social-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 24px;
  text-align: center;
}

.footer__bottom p {
  font-size: 0.85rem;
  color: #606078;
}

/* ===== WHATSAPP FAB ===== */
.whatsapp-fab {
  display: none;
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: all 0.3s;
}

.whatsapp-fab:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.5);
}

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

/* Tablet: 768px-1023px */
@media (max-width: 1023px) {
  .footer__grid {
    grid-template-columns: 1fr 1fr;
  }

  .ubicacion__content {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 80px 0;
  }
}

/* Mobile: up to 767px */
@media (max-width: 767px) {
  .container {
    padding: 0 20px;
  }

  .section {
    padding: 64px 0;
  }

  .section__header {
    margin-bottom: 40px;
  }

  /* Nav */
  .nav__links {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: rgba(10, 10, 15, 0.98);
    flex-direction: column;
    padding: 24px;
    gap: 16px;
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s;
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }

  .nav__links.nav__links--open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }

  .nav__link {
    font-size: 1.05rem;
  }

  .nav__cta {
    display: none;
  }

  .nav__toggle {
    display: flex;
  }

  /* Hero */
  .hero {
    min-height: 90vh;
  }

  .hero__actions {
    flex-direction: column;
  }

  .hero__actions .btn {
    width: 100%;
    text-align: center;
  }

  /* Valor grid */
  .valor__grid {
    grid-template-columns: 1fr;
  }

  /* Clases grid */
  .clases__grid {
    grid-template-columns: 1fr;
  }

  /* Audiencia grid */
  .audiencia__grid {
    grid-template-columns: 1fr;
  }

  /* Reseñas grid */
  .resenas__grid {
    grid-template-columns: 1fr;
  }

  /* Galería grid */
  .galeria__grid {
    grid-template-columns: 1fr;
  }

  .galeria__socials-links {
    flex-direction: column;
    align-items: center;
  }

  .social-link {
    width: 100%;
    text-align: center;
  }

  /* Contacto */
  .contacto__actions {
    flex-direction: column;
  }

  .contacto__actions .btn {
    width: 100%;
    text-align: center;
  }

  /* Footer */
  .footer__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  /* WhatsApp FAB visible on mobile */
  .whatsapp-fab {
    display: flex;
  }
}

/* Small mobile: 375px and below */
@media (max-width: 420px) {
  .hero__title {
    font-size: 2rem;
  }

  .hero__subtitle {
    font-size: 0.95rem;
  }

  .btn--lg {
    padding: 14px 24px;
    font-size: 0.95rem;
  }

  .section__title {
    font-size: 1.6rem;
  }
}

/* ===== IMAGERY REFRESH ===== */
.hero__container {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.72fr);
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}

.hero__content {
  max-width: 680px;
}

.hero__visual {
  position: relative;
  width: 100%;
  max-width: 440px;
  justify-self: end;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.42);
}

.hero__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero__visual::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  box-shadow: inset 0 0 0 1px rgba(255, 45, 120, 0.08);
}

.comunidad__layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.72fr);
  gap: clamp(36px, 6vw, 84px);
  align-items: center;
}

.comunidad__content {
  text-align: left;
  max-width: none;
  margin: 0;
}

.comunidad__media {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.35);
}

.comunidad__media img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.comunidad__media figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 44px 20px 20px;
  color: #fff;
  font-size: 0.9rem;
  line-height: 1.5;
  background: linear-gradient(transparent, rgba(7, 7, 13, 0.88));
}

.galeria__item {
  aspect-ratio: 4 / 5;
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.24);
}

.galeria__item img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.galeria__item:hover img {
  transform: scale(1.035);
}

.galeria__caption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: grid;
  gap: 4px;
  padding: 64px 18px 18px;
  color: #fff;
  background: linear-gradient(transparent, rgba(7, 7, 13, 0.92));
}

.galeria__caption strong {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1rem;
}

.galeria__caption span {
  color: #d1d1df;
  font-size: 0.8rem;
}

.ubicacion__studio {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

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

@media (max-width: 1023px) {
  .hero__container,
  .comunidad__layout {
    grid-template-columns: 1fr;
  }

  .hero__visual {
    justify-self: center;
    max-width: 520px;
  }

  .comunidad__media {
    max-width: 520px;
    justify-self: center;
  }
}

@media (max-width: 767px) {
  .hero {
    min-height: auto;
    padding-bottom: 64px;
  }

  .hero__visual {
    width: 100%;
    margin-top: 8px;
    border-radius: 22px;
  }

  .comunidad__content {
    text-align: center;
  }

  .comunidad__media {
    width: 100%;
  }
}
