/* ═══════════════════════════════════════════
   salsasoulstudio.com — Style (Premium)
   Paleta: negro + dorado (#c9a84c)
   Georgia serif, mobile-first
   ═══════════════════════════════════════════ */

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

:root {
  --gold: #c9a84c;
  --gold-light: #e8c96a;
  --gold-dark: #8a6820;
  --black: #0a0a0a;
  --dark: #111111;
  --dark2: #1a1a1a;
}

body {
  font-family: 'Georgia', serif;
  background: var(--black);
  color: #fff;
}

/* ═══════════ PREMIUM EFFECTS ═══════════ */

/* ── Scroll progress bar ── */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-light));
  z-index: 101;
}

/* ── Noise/grain overlay ── */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 9998;
  pointer-events: none;
  opacity: 0.02;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 256px 256px;
}

/* ── Hero shader canvas ── */
.hero-shader {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0.4;
  z-index: 0;
}

/* ── Card shine on hover ── */
.level-card::after,
.price-card::after,
.pensum-card::after,
.afiche-card::after,
.comunidad-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(201, 168, 76, 0.06), transparent);
  transform: skewX(-15deg);
  transition: left 0.6s ease;
  pointer-events: none;
}
.level-card:hover::after,
.price-card:hover::after,
.pensum-card:hover::after,
.afiche-card:hover::after,
.comunidad-card:hover::after {
  left: 150%;
}

/* ── Spotlight glow on cards (desktop) ── */
.glow-card {
  --glow-x: 50%;
  --glow-y: 50%;
  background-image: radial-gradient(
    300px 300px at var(--glow-x) var(--glow-y),
    rgba(201, 168, 76, 0.08),
    transparent
  );
}

/* ── WhatsApp / Festival button pulse ── */
@keyframes whatsappPulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3); }
  50% { box-shadow: 0 4px 30px rgba(37, 211, 102, 0.5), 0 0 60px rgba(37, 211, 102, 0.2); }
}
.btn-whatsapp,
.btn-festival,
.comunidad-card-wa {
  animation: whatsappPulse 2.5s ease-in-out infinite;
}

/* ── Pricing featured shimmer border ── */
@property --border-angle {
  syntax: '<angle>';
  initial-value: 0deg;
  inherits: false;
}
@keyframes rotateBorder {
  to { --border-angle: 360deg; }
}
.price-card.featured {
  border: 2px solid transparent;
  background:
    linear-gradient(160deg, #1a1200, #241900) padding-box,
    conic-gradient(from var(--border-angle), var(--gold), transparent 30%, transparent 70%, var(--gold)) border-box;
  animation: rotateBorder 4s linear infinite;
}

/* ── Active nav link ── */
.nav-links a.active {
  color: var(--gold) !important;
}
.nav-links a {
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.nav-links a.active::after {
  transform: scaleX(1);
}

/* ── Footer link underline animation ── */
footer a {
  position: relative;
}
footer a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
footer a:hover::after {
  transform: scaleX(1);
}

/* ── Reduced motion ── */
@media (prefers-reduced-motion: reduce) {
  .btn-whatsapp, .btn-festival, .comunidad-card-wa { animation: none; }
  .price-card.featured { animation: none; border: 1px solid var(--gold); }
  .hero-shader { display: none; }
  .scroll-progress { display: none; }
  body::after { display: none; }
  .level-card::after, .price-card::after, .pensum-card::after,
  .afiche-card::after, .comunidad-card::after { display: none; }
}

/* ═══════════ NAV STICKY ═══════════ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(201, 168, 76, 0.15);
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 56px;
  transform: translateY(-100%);
  transition: transform 0.3s ease;
}

.nav.visible {
  transform: translateY(0);
}

.nav-logo {
  height: 36px;
}

.nav-links {
  display: flex;
  gap: 28px;
  list-style: none;
}

.nav-links a {
  color: #ccc;
  text-decoration: none;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--gold);
}

@media (max-width: 600px) {
  .nav-links { gap: 16px; }
  .nav-links a { font-size: 0.72rem; letter-spacing: 1px; }
  .nav-logo { height: 28px; }
}

/* ═══════════ HERO ═══════════ */
.hero {
  position: relative;
  width: 100%;
  height: 600px;
  background: #000;
  overflow: hidden;
  text-align: center;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('foto-show.jpeg');
  background-size: cover;
  background-position: center 25%;
  filter: brightness(0.55);
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(to bottom, rgba(0,0,0,0.45) 0%, rgba(0,0,0,0.1) 40%, rgba(0,0,0,0.65) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.hero .logo {
  width: 600px;
  max-width: 88%;
  mix-blend-mode: multiply;
  margin-bottom: 16px;
}

.hero-text h1 {
  font-size: 2.2rem;
  color: var(--gold);
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.hero-text .tagline {
  color: #ddd;
  font-style: italic;
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.hero-text .location {
  color: var(--gold-light);
  font-size: 0.95rem;
}

/* ═══════════ LOGO SECTION ═══════════ */
.logo-section {
  background: #000;
  padding: 60px 20px;
  text-align: center;
}

.logo-big {
  width: 300px;
  max-width: 88%;
}

/* ═══════════ DIVIDER ═══════════ */
.divider {
  width: 90px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 24px auto;
  border-radius: 2px;
}

/* ═══════════ SECTIONS ═══════════ */
.section {
  max-width: 980px;
  margin: 0 auto;
  padding: 60px 24px;
}

.section h2 {
  text-align: center;
  color: var(--gold);
  font-size: 1.6rem;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.section .subtitle {
  text-align: center;
  color: #888;
  font-style: italic;
  margin-top: 6px;
  font-size: 0.95rem;
}

/* ═══════════ CLASES ═══════════ */
.levels {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 24px;
  margin-top: 36px;
}

.level-card {
  background: var(--dark2);
  border: 1px solid var(--gold-dark);
  border-radius: 6px;
  padding: 30px 26px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}

.level-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-light), var(--gold-dark));
}

.level-card:hover {
  transform: translateY(-4px);
  border-color: var(--gold);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

.level-card h3 {
  color: var(--gold);
  font-size: 1.05rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 22px;
}

.schedule-item {
  margin-bottom: 16px;
}

.schedule-item .day {
  color: var(--gold-light);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: bold;
  margin-bottom: 3px;
}

.schedule-item .classes {
  color: #d0d0d0;
  font-size: 0.92rem;
  padding-left: 10px;
  line-height: 1.7;
}

.classes-note {
  text-align: center;
  color: #666;
  font-style: italic;
  font-size: 0.88rem;
  margin-top: 28px;
}

/* ═══════════ AFICHES ═══════════ */
.afiches-wrapper {
  background: var(--dark);
  border-top: 1px solid #222;
  border-bottom: 1px solid #222;
}

.afiches-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 36px;
}

@media (max-width: 600px) {
  .afiches-grid {
    grid-template-columns: 1fr;
  }
}

.afiche-card {
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--gold-dark);
  cursor: pointer;
  transition: transform 0.3s, border-color 0.3s;
  position: relative;
}

.afiche-card:hover {
  transform: scale(1.02);
  border-color: var(--gold);
}

.afiche-card img {
  width: 100%;
  display: block;
}

/* ═══════════ LIGHTBOX ═══════════ */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(0, 0, 0, 0.92);
  align-items: center;
  justify-content: center;
  padding: 20px;
  cursor: pointer;
}

.lightbox.active {
  display: flex;
}

.lightbox img {
  max-width: 90%;
  max-height: 90vh;
  border-radius: 8px;
  box-shadow: 0 0 40px rgba(201, 168, 76, 0.2);
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 28px;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
  opacity: 0.7;
  transition: opacity 0.2s;
}

.lightbox-close:hover {
  opacity: 1;
}

/* ═══════════ PENSUM ═══════════ */
.pensum-section {
  position: relative;
  overflow: hidden;
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pensum-bg {
  position: absolute;
  inset: 0;
  background-image: url('foto-pensum.jpg');
  background-size: cover;
  background-position: center;
  filter: brightness(0.3);
}

.pensum-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 60px 24px;
  max-width: 800px;
}

.pensum-content h2 {
  color: var(--gold);
  font-size: 1.8rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.pensum-content .subtitle {
  color: #ccc;
  font-style: italic;
  font-size: 1rem;
  margin-bottom: 36px;
}

.pensum-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 500px;
  margin: 0 auto;
}

@media (max-width: 600px) {
  .pensum-cards {
    grid-template-columns: 1fr;
    max-width: 280px;
  }
}

.pensum-card {
  background: rgba(26, 26, 26, 0.85);
  border: 1px solid var(--gold-dark);
  border-radius: 8px;
  padding: 32px 20px;
  text-align: center;
  text-decoration: none;
  transition: transform 0.3s, border-color 0.3s, background 0.3s;
  position: relative;
  overflow: hidden;
}

.pensum-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-light), var(--gold-dark));
}

.pensum-card:hover {
  transform: translateY(-4px);
  border-color: var(--gold);
  background: rgba(26, 26, 26, 0.95);
}

.pensum-card .card-img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  border-radius: 4px;
  margin-bottom: 14px;
  filter: brightness(0.85);
  transition: filter 0.3s;
}

.pensum-card:hover .card-img {
  filter: brightness(1);
}

.pensum-card .name {
  color: var(--gold);
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 8px;
}

.pensum-card .desc {
  color: #aaa;
  font-size: 0.82rem;
  line-height: 1.5;
}

/* ═══════════ COMUNIDAD ═══════════ */
.comunidad-section {
  position: relative;
  overflow: hidden;
}

.comunidad-hero {
  background: var(--black);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 32px;
  padding: 60px 24px;
  max-width: 1100px;
  margin: 0 auto;
}

.comunidad-foto {
  flex: 0 0 auto;
  max-width: 420px;
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
  position: relative;
}
.comunidad-foto img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
  transition: transform 0.6s ease, filter 0.6s ease;
}
.comunidad-foto:hover img {
  transform: scale(1.05);
  filter: brightness(1.1);
}
.comunidad-foto::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 12px;
  border: 2px solid transparent;
  background: linear-gradient(135deg, var(--gold), transparent, var(--gold-dark)) border-box;
  -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.comunidad-content {
  flex: 1;
  min-width: 280px;
  text-align: left;
  max-width: 500px;
}

.comunidad-content h2 {
  color: var(--gold);
  font-size: 1.8rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.comunidad-content .subtitle {
  color: #ccc;
  font-style: italic;
  font-size: 1rem;
  margin-bottom: 32px;
}

.comunidad-preview {
  background: var(--dark);
  padding: 48px 24px;
}

.comunidad-preview-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.comunidad-preview h3 {
  color: var(--gold);
  font-size: 1.2rem;
  text-align: center;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.comunidad-carousel {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 16px;
  scrollbar-width: thin;
  scrollbar-color: var(--gold-dark) var(--dark2);
}

.comunidad-carousel::-webkit-scrollbar {
  height: 6px;
}
.comunidad-carousel::-webkit-scrollbar-track {
  background: var(--dark2);
  border-radius: 3px;
}
.comunidad-carousel::-webkit-scrollbar-thumb {
  background: var(--gold-dark);
  border-radius: 3px;
}

.comunidad-card {
  flex: 0 0 280px;
  scroll-snap-align: start;
  background: var(--dark2);
  border: 1px solid #222;
  border-radius: 12px;
  padding: 20px;
  transition: border-color 0.3s, transform 0.3s;
  position: relative;
  overflow: hidden;
}
.comunidad-card:hover {
  border-color: var(--gold-dark);
  transform: translateY(-4px);
}

.comunidad-card-foto {
  width: 100%;
  height: 200px;
  object-fit: cover;
  object-position: center 20%;
  border-radius: 8px;
  margin-bottom: 12px;
}

.comunidad-card-name {
  color: #fff;
  font-size: 1rem;
  margin-bottom: 4px;
}

.comunidad-card-cat {
  display: inline-block;
  font-size: 0.7rem;
  color: var(--gold);
  background: #1f1a0e;
  padding: 2px 8px;
  border-radius: 4px;
  margin-bottom: 8px;
}

.comunidad-card-servicio {
  color: #ccc;
  font-size: 0.85rem;
  margin-bottom: 8px;
  line-height: 1.4;
}

.comunidad-card-wa {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: #25D366;
  color: #fff;
  border-radius: 6px;
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 600;
}
.comunidad-card-wa:hover { background: #1da851; }

.comunidad-ver-todos {
  text-align: center;
  margin-top: 24px;
}

.comunidad-loading {
  text-align: center;
  color: #666;
  padding: 32px;
  font-style: italic;
  line-height: 1.6;
}

.btn-gold {
  display: inline-block;
  padding: 14px 36px;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: #fff;
  text-decoration: none;
  border-radius: 4px;
  font-size: 0.95rem;
  font-weight: bold;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: opacity 0.2s, transform 0.2s;
}

.btn-gold:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

/* ═══════════ FESTIVAL ═══════════ */
.festival-wrapper {
  background: linear-gradient(180deg, #0a0000 0%, #1a0a0a 50%, #0a0000 100%);
  border-top: 1px solid #331111;
  border-bottom: 1px solid #331111;
}

.festival-inner {
  max-width: 980px;
  margin: 0 auto;
  padding: 60px 24px;
  display: flex;
  align-items: center;
  gap: 48px;
}

.festival-poster {
  flex: 0 0 300px;
  border-radius: 10px;
  overflow: hidden;
  border: 2px solid var(--gold-dark);
  box-shadow: 0 8px 32px rgba(201, 168, 76, 0.15);
  cursor: pointer;
  transition: transform 0.3s, border-color 0.3s;
}

.festival-poster:hover {
  transform: scale(1.03);
  border-color: var(--gold);
}

.festival-poster img {
  width: 100%;
  display: block;
}

.festival-info {
  flex: 1;
  text-align: left;
}

.festival-info .badge {
  display: inline-block;
  background: linear-gradient(135deg, #8b0000, #cc3333);
  color: #fff;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 5px 14px;
  border-radius: 3px;
  margin-bottom: 16px;
}

.festival-info h2 {
  color: var(--gold);
  font-size: 1.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-align: left;
  margin-bottom: 8px;
}

.festival-info .fecha {
  color: #e8c96a;
  font-size: 1.1rem;
  margin-bottom: 20px;
}

.festival-info .detalles {
  color: #ccc;
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 24px;
}

.festival-info .detalles strong {
  color: #fff;
}

.btn-festival {
  display: inline-block;
  padding: 14px 36px;
  background: #25D366;
  color: #fff;
  text-decoration: none;
  border-radius: 4px;
  font-size: 0.95rem;
  font-weight: bold;
  letter-spacing: 1px;
  transition: opacity 0.2s, transform 0.2s;
}

.btn-festival:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

@media (max-width: 600px) {
  .festival-inner {
    flex-direction: column;
    gap: 28px;
    text-align: center;
  }
  .festival-poster {
    flex: none;
    width: 260px;
    max-width: 100%;
  }
  .festival-info h2 {
    text-align: center;
    font-size: 1.4rem;
  }
  .festival-info {
    text-align: center;
  }
}

/* ═══════════ PRECIOS ═══════════ */
.pricing-wrapper {
  background: var(--dark);
  border-top: 1px solid #222;
  border-bottom: 1px solid #222;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 36px;
}

.price-card {
  border: 1px solid var(--gold-dark);
  border-radius: 6px;
  padding: 28px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}

.price-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

.price-card .label {
  color: var(--gold-light);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 12px;
}

.price-card .amount {
  font-size: 1.7rem;
  color: #fff;
  font-weight: bold;
  margin-bottom: 8px;
}

.price-card .unit {
  color: #888;
  font-size: 0.8rem;
}

.price-card .desc {
  color: #aaa;
  font-size: 0.82rem;
  margin-top: 8px;
  line-height: 1.5;
}

.promo-banner {
  background: linear-gradient(135deg, #161000, #221800);
  border: 1px solid var(--gold-dark);
  border-radius: 6px;
  padding: 22px 28px;
  text-align: center;
  margin-top: 28px;
  color: #ccc;
  font-size: 0.95rem;
  line-height: 1.6;
}

.promo-banner strong {
  color: var(--gold-light);
}

/* ═══════════ CONTACTO ═══════════ */
.contact-section {
  text-align: center;
}

.contact-info {
  color: #aaa;
  line-height: 2.2;
  margin: 28px 0;
  font-size: 0.95rem;
}

.contact-info a {
  color: var(--gold-light);
  text-decoration: none;
}

.contact-info a:hover {
  text-decoration: underline;
}

.buttons {
  margin-top: 16px;
}

.btn {
  display: inline-block;
  padding: 13px 32px;
  border-radius: 4px;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: bold;
  letter-spacing: 0.5px;
  transition: opacity 0.2s, transform 0.2s;
  margin: 8px;
}

.btn:hover {
  opacity: 0.85;
  transform: translateY(-2px);
}

.btn-whatsapp {
  background: #25D366;
  color: #fff;
}

.btn-instagram {
  background: linear-gradient(135deg, #833ab4 0%, #fd1d1d 50%, #fcb045 100%);
  color: #fff;
}

/* ═══════════ ILUSTRACION ═══════════ */
.illustration {
  display: block;
  width: 220px;
  margin: 0 auto 10px;
  opacity: 0.85;
}

/* ═══════════ FOOTER ═══════════ */
footer {
  background: #000;
  border-top: 1px solid #1f1600;
  text-align: center;
  padding: 32px 20px;
  color: #444;
  font-size: 0.82rem;
}

footer .gold { color: var(--gold); }

footer a {
  color: #666;
  text-decoration: none;
  margin: 0 10px;
  transition: color 0.2s;
}

footer a:hover {
  color: var(--gold);
}

/* ═══════════ RESPONSIVE ═══════════ */
@media (max-width: 600px) {
  .hero-text h1 { font-size: 1.6rem; letter-spacing: 2px; }
  .hero-photo { height: 260px; }
  .price-card.featured { transform: none; }
  .pensum-content h2, .comunidad-content h2 { font-size: 1.4rem; }
  .comunidad-hero { padding: 40px 16px; }
  .comunidad-content { text-align: center; }
}
