@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@700;800;900&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');

:root {
  --color-principal: #cfa212;
  --color-brillante: #ebd020;
  --color-sombra: #a47c0b;
  --color-oscuro: #13172c;
  --color-degradado: #1c2242;
  --color-texto: #f4f0e6;
  --color-translucido: rgba(28, 34, 66, 0.4);
  --color-borde: rgba(235, 208, 32, 0.15);
  --color-borde-hover: rgba(235, 208, 32, 0.4);
  --fondo-nav: rgba(19, 23, 44, 0.85);

  --glow-principal: rgba(207, 162, 18, 0.22);
  --glow-brillante: rgba(235, 208, 32, 0.32);
  --glass-bg: rgba(16, 20, 48, 0.62);
  --glass-bg-light: rgba(32, 40, 82, 0.45);
  --shimmer: rgba(255, 255, 255, 0.045);
}




/* ++++++++++++++ CONFIGURACION BASE +++++++++++++ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  background-color: var(--color-oscuro);
  background-image:
    radial-gradient(ellipse 80% 60% at 10% 0%, rgba(28, 34, 66, 0.9) 0%, transparent 70%),
    radial-gradient(ellipse 60% 50% at 90% 100%, rgba(20, 16, 50, 0.7) 0%, transparent 65%),
    radial-gradient(ellipse 100% 80% at 50% 50%, var(--color-oscuro) 30%, #0a0d1e 100%);
  color: var(--color-texto);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  line-height: 1.6;
}

.fondo-sitio {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: url('img/fondoweb.jpg') center center / cover no-repeat;
  opacity: 0.08;
}

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

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

.contenedor {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}




/* ++++++++++++++ PORTADA (SPLASH SCREEN) +++++++++++++ */
@keyframes portada-shimmer {
  0%   { background-position: -200% center; }
  100% { background-position: 200% center; }
}

@keyframes logo-glow-pulse {
  0%, 100% { filter: drop-shadow(0 0 12px var(--glow-principal)) drop-shadow(0 4px 16px rgba(0,0,0,0.5)); }
  50%       { filter: drop-shadow(0 0 28px var(--glow-brillante)) drop-shadow(0 4px 16px rgba(0,0,0,0.5)); }
}

@keyframes btn-shimmer {
  0%   { background-position: -300% center; }
  100% { background-position: 300% center; }
}

.portada {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(ellipse 90% 70% at 50% 20%, rgba(28, 34, 66, 0.95) 0%, transparent 70%),
    linear-gradient(180deg, rgba(10, 13, 30, 0.98) 0%, rgba(19, 23, 44, 0.96) 100%);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.7s ease;
  padding: 2.5rem 1.5rem;
  overflow-y: auto;
}

.portada::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 80%, rgba(207, 162, 18, 0.04) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(235, 208, 32, 0.03) 0%, transparent 50%);
  pointer-events: none;
}

.portada.ocultar {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.portada-logo {
  max-width: 320px;
  margin-bottom: 5rem;
  animation: logo-glow-pulse 3s ease-in-out infinite;
}

.portada-banner-container {
  position: relative;
  max-width: 500px;
  width: 100%;
  margin-top: 0;
  margin-bottom: 2rem;
}

.portada-logo-sello {
  display: block;
  margin: 0 auto 1.5rem auto;
  width: 140px;
  height: 140px;
  object-fit: contain;
  animation: logo-glow-pulse 3s ease-in-out infinite;
}

.portada-banner-wrapper {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(235, 208, 32, 0.25);
  box-shadow:
    0 0 0 1px rgba(235, 208, 32, 0.08),
    0 20px 50px rgba(0, 0, 0, 0.65),
    0 0 40px var(--glow-principal) inset;
  width: 100%;
}

.portada-banner {
  display: block;
  width: 100%;
}

.portada-sub {
  font-size: 0.85rem;
  color: rgba(244, 240, 230, 0.5);
  margin-bottom: 2rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.portada-btn {
  background: linear-gradient(
    105deg,
    var(--color-sombra) 0%,
    var(--color-brillante) 35%,
    var(--color-principal) 55%,
    var(--color-brillante) 75%,
    var(--color-sombra) 100%
  );
  background-size: 300% auto;
  color: var(--color-oscuro);
  font-weight: 800;
  padding: 1rem 3rem;
  border-radius: 50px;
  border: none;
  font-size: 0.95rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow:
    0 0 0 1px rgba(235, 208, 32, 0.3),
    0 8px 24px rgba(0, 0, 0, 0.4),
    0 4px 20px var(--glow-principal);
  transition: transform 0.3s ease, box-shadow 0.3s ease, background-position 0.6s ease;
  animation: btn-shimmer 4s linear infinite;
}

.portada-btn:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow:
    0 0 0 1px rgba(235, 208, 32, 0.5),
    0 12px 32px rgba(0, 0, 0, 0.5),
    0 6px 30px var(--glow-brillante);
}




/* ++++++++++++++ CABECERA & NAVEGACION +++++++++++++ */
.cabecera {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(13, 16, 35, 0.88);
  backdrop-filter: blur(20px) saturate(1.5);
  -webkit-backdrop-filter: blur(20px) saturate(1.5);
  border-bottom: 1px solid rgba(235, 208, 32, 0.18);
  padding: 0.75rem 0;
  box-shadow:
    0 1px 0 rgba(235, 208, 32, 0.08),
    0 4px 24px rgba(0, 0, 0, 0.5),
    0 8px 40px rgba(0, 0, 0, 0.3);
}

.navegacion {
  position: relative;
}

.cabecera-pag-contenedor {
  padding: 2rem 0 1rem 0;
  background: linear-gradient(180deg, rgba(19, 23, 44, 0.6) 0%, transparent 100%);
  border-bottom: 1px solid rgba(235, 208, 32, 0.06);
}

.banner-principal-wrapper {
  margin: 0 auto;
  padding: 1rem 0;
  background: linear-gradient(180deg, rgba(19, 23, 44, 0.5) 0%, rgba(19, 23, 44, 0.2) 100%);
  width: 100%;
  max-width: 100%;
}

.banner-principal-wrapper img {
  width: 80%;
  max-width: 600px;
  margin: 0 auto;
}

.banner-principal {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
}

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

.marca {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.marca-logo {
  height: 48px;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.4)) drop-shadow(0 0 16px var(--glow-principal));
  transition: filter 0.3s ease;
}

.marca:hover .marca-logo {
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.4)) drop-shadow(0 0 24px var(--glow-brillante));
}

.sitio-titulo-h1 {
  font-family: 'Cinzel', serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: linear-gradient(135deg, var(--color-brillante) 0%, var(--color-principal) 50%, var(--color-sombra) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin: 0;
  line-height: 1.2;
  text-shadow: none;
}

.cabecera-pag {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 3rem;
}

.menu {
  display: flex;
  gap: 1.5rem;
  list-style: none;
}

.menu-item a {
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  padding: 0.5rem 0;
  transition: color 0.3s ease, text-shadow 0.3s ease;
  position: relative;
}

.menu-item a:hover,
.menu-item.activo a {
  color: var(--color-brillante);
  text-shadow: 0 0 14px var(--glow-brillante);
}

.menu-item a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--color-brillante), transparent);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease;
  border-radius: 2px;
  box-shadow: 0 0 6px var(--glow-brillante);
}

.menu-item a:hover::after,
.menu-item.activo a::after {
  transform: scaleX(1);
  transform-origin: left;
}

.btn-menu {
  display: none;
  background: transparent;
  border: none;
  color: var(--color-texto);
  font-size: 1.75rem;
  cursor: pointer;
  padding: 0.25rem;
}




/* ++++++++++++++ REPRODUCTOR DE RADIO FLOTANTE +++++++++++++ */
@keyframes pulso {
  0%   { transform: scale(1);   box-shadow: 0 0 0 0   rgba(255, 59, 48, 0.7); }
  70%  { transform: scale(1.12); box-shadow: 0 0 0 12px rgba(255, 59, 48, 0); }
  100% { transform: scale(1);   box-shadow: 0 0 0 0   rgba(255, 59, 48, 0); }
}

@keyframes glow-radio {
  0%, 100% { box-shadow: 0 0 0 0 rgba(207, 162, 18, 0.4), 0 0 8px var(--glow-principal); }
  50%       { box-shadow: 0 0 0 8px rgba(207, 162, 18, 0), 0 0 18px var(--glow-brillante); }
}

.reproductor-barra {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 1001;
  background:
    linear-gradient(180deg, rgba(10, 13, 30, 0.92) 0%, rgba(13, 16, 38, 0.96) 100%);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  border-top: 1px solid rgba(235, 208, 32, 0.2);
  padding: 0.85rem 0;
  box-shadow:
    0 -1px 0 rgba(235, 208, 32, 0.08),
    0 -8px 32px rgba(0, 0, 0, 0.55),
    0 -2px 60px rgba(0, 0, 0, 0.3);
}

.reproductor-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.radio-info {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.radio-pulso {
  width: 12px;
  height: 12px;
  background-color: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  box-shadow: none;
  transition: all 0.4s ease;
  flex-shrink: 0;
}

.radio-pulso.disponible {
  background-color: var(--color-principal);
  box-shadow: 0 0 8px var(--glow-principal), 0 0 0 3px rgba(207, 162, 18, 0.12);
  animation: glow-radio 2.5s ease-in-out infinite;
}

.radio-pulso.transmitiendo {
  background-color: #ff3b30;
  box-shadow: 0 0 10px rgba(255, 59, 48, 0.8), 0 0 0 3px rgba(255, 59, 48, 0.15);
  animation: pulso 1.5s infinite;
}

.radio-texto h4 {
  font-family: 'Cinzel', serif;
  font-size: 0.88rem;
  letter-spacing: 0.06em;
  color: rgba(244, 240, 230, 0.35);
  transition: color 0.3s ease, text-shadow 0.3s ease;
}

.radio-texto h4.disponible {
  color: rgba(244, 240, 230, 0.7);
}

.radio-texto h4.vivo {
  color: var(--color-brillante);
  text-shadow: 0 0 10px var(--glow-brillante);
}

.radio-texto h4.sin-senal {
  color: rgba(244, 240, 230, 0.25);
}

.radio-texto p {
  font-size: 0.72rem;
  color: rgba(244, 240, 230, 0.4);
  letter-spacing: 0.03em;
}

.controles {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.control-btn {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--color-texto);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.control-btn:hover {
  background: rgba(235, 208, 32, 0.08);
  border-color: rgba(235, 208, 32, 0.4);
  color: var(--color-brillante);
  transform: scale(1.08);
  box-shadow: 0 0 12px var(--glow-principal);
}

.control-btn.play-btn {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--color-brillante) 0%, var(--color-principal) 100%);
  color: var(--color-oscuro);
  border: none;
  box-shadow: 0 4px 20px var(--glow-principal), 0 0 0 2px rgba(235, 208, 32, 0.15);
}

.control-btn.play-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px var(--glow-brillante), 0 0 0 3px rgba(235, 208, 32, 0.25);
}

.control-btn svg {
  width: 20px;
  height: 20px;
}

.control-btn.play-btn svg {
  width: 24px;
  height: 24px;
  margin-left: 2px;
}

.control-btn.play-btn.pausado svg {
  margin-left: 0;
}




/* ++++++++++++++ GRID DE PUBLICACIONES & SECCIONES +++++++++++++ */
.cuerpo-principal {
  flex-grow: 1;
  padding: 3rem 0 6rem 0;
}

.seccion-header {
  margin-bottom: 2.5rem;
}

.seccion-titulo {
  font-family: 'Cinzel', serif;
  font-size: clamp(1.2rem, 3vw, 1.8rem);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(244, 240, 230, 0.9);
  margin-bottom: 0.25rem;
  position: relative;
  display: inline-block;
}

.seccion-subtitulo {
  font-size: 1rem;
  color: rgba(244, 240, 230, 0.5);
}

.grid-publicaciones {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2rem;
}

.tarjeta-post {
  background: linear-gradient(
    160deg,
    rgba(35, 42, 82, 0.65) 0%,
    rgba(16, 20, 48, 0.72) 100%
  );
  border: 1px solid rgba(235, 208, 32, 0.14);
  border-top: 1px solid rgba(235, 208, 32, 0.28);
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow:
    0 4px 6px rgba(0, 0, 0, 0.2),
    0 12px 35px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(255, 255, 255, 0.03) inset,
    0 1px 0 rgba(255, 255, 255, 0.06) inset;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s ease, box-shadow 0.45s ease;
  position: relative;
}

.tarjeta-post::before {
  content: '';
  position: absolute;
  top: 0;
  left: -60%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    105deg,
    transparent 0%,
    var(--shimmer) 50%,
    transparent 100%
  );
  transform: skewX(-15deg);
  transition: left 0.7s ease;
  pointer-events: none;
  z-index: 1;
}

.tarjeta-post:hover::before {
  left: 130%;
}

.tarjeta-post:hover {
  transform: translateY(-8px);
  border-color: rgba(235, 208, 32, 0.35);
  border-top-color: rgba(235, 208, 32, 0.55);
  box-shadow:
    0 6px 12px rgba(0, 0, 0, 0.25),
    0 20px 50px rgba(0, 0, 0, 0.5),
    0 0 30px rgba(207, 162, 18, 0.08),
    0 0 0 1px rgba(255, 255, 255, 0.04) inset,
    0 1px 0 rgba(255, 255, 255, 0.08) inset;
}

.tarjeta-banner-link {
  display: block;
  width: 100%;
  aspect-ratio: 16/10;
  overflow: hidden;
  position: relative;
  background: rgba(0, 0, 0, 0.25);
}

.tarjeta-banner-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 40%;
  background: linear-gradient(to top, rgba(16, 20, 48, 0.6) 0%, transparent 100%);
  pointer-events: none;
}

.tarjeta-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
}

.tarjeta-post:hover .tarjeta-img {
  transform: scale(1.06);
}

.tarjeta-cuerpo {
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  position: relative;
  z-index: 2;
}

.tarjeta-titulo {
  font-family: 'Cinzel', serif;
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.4;
  color: var(--color-brillante);
  margin-bottom: 0.75rem;
  transition: color 0.3s ease, text-shadow 0.3s ease;
}

.tarjeta-titulo:hover {
  color: var(--color-texto);
  text-shadow: 0 0 16px rgba(244, 240, 230, 0.2);
}

.tarjeta-detalles {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin-bottom: 1rem;
  font-size: 0.83rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding-bottom: 0.8rem;
}

.detalle-item {
  display: flex;
  gap: 0.5rem;
}

.detalle-etiqueta {
  color: var(--color-principal);
  font-weight: 600;
}

.detalle-valor {
  color: rgba(244, 240, 230, 0.75);
}

.tarjeta-descripcion {
  font-size: 0.88rem;
  color: rgba(244, 240, 230, 0.62);
  margin-bottom: 1.5rem;
  flex-grow: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 1.65;
}

.tarjeta-pie {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 1rem;
}

.tarjeta-fecha {
  font-size: 0.73rem;
  color: rgba(244, 240, 230, 0.35);
  letter-spacing: 0.03em;
}

.tarjeta-enlace {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-brillante);
  border: 1px solid rgba(235, 208, 32, 0.25);
  padding: 0.5rem 1.25rem;
  border-radius: 30px;
  transition: all 0.3s ease;
  background: rgba(235, 208, 32, 0.04);
}

.tarjeta-enlace:hover {
  background: var(--color-brillante);
  color: var(--color-oscuro);
  border-color: var(--color-brillante);
  box-shadow: 0 4px 16px var(--glow-brillante);
}




/* ++++++++++++++ PAGINACION & PIE DE PAGINA +++++++++++++ */
.paginacion {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  margin-top: 3.5rem;
}

.pag-item, .pag-nav {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 0.5rem;
  border-radius: 8px;
  border: 1px solid rgba(235, 208, 32, 0.12);
  background: rgba(16, 20, 48, 0.5);
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  cursor: pointer;
  backdrop-filter: blur(8px);
}

.pag-item:hover, .pag-nav:hover {
  border-color: rgba(235, 208, 32, 0.4);
  color: var(--color-brillante);
  box-shadow: 0 0 10px var(--glow-principal);
  background: rgba(235, 208, 32, 0.06);
}

.pag-item.actual {
  background: linear-gradient(135deg, var(--color-brillante) 0%, var(--color-principal) 100%);
  color: var(--color-oscuro);
  border-color: var(--color-brillante);
  box-shadow: 0 4px 14px var(--glow-brillante);
  font-weight: 800;
}

.pie {
  background:
    linear-gradient(180deg, transparent 0%, rgba(10, 13, 30, 0.7) 100%),
    var(--fondo-nav);
  border-top: 1px solid rgba(235, 208, 32, 0.12);
  padding: 0 0 8rem 0;
  text-align: center;
  margin-top: auto;
}

.pie::before {
  content: '';
  display: block;
  width: 120px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-brillante), transparent);
  margin: 0 auto 2rem auto;
  opacity: 0.4;
}

.pie-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}

.pie-logo {
  height: 150px;
  opacity: 0.9;
  filter: drop-shadow(0 4px 20px var(--glow-principal));
}

.pie-texto {
  font-size: 0.82rem;
  color: rgba(244, 240, 230, 0.4);
  letter-spacing: 0.03em;
}

.pie-enlace {
  font-weight: 600;
  color: var(--color-principal);
  transition: color 0.3s ease, text-shadow 0.3s ease;
}

.pie-enlace:hover {
  color: var(--color-brillante);
  text-shadow: 0 0 10px var(--glow-brillante);
}




/* ++++++++++++++ DETALLE DE PUBLICACION +++++++++++++ */
.detalle-post {
  background: linear-gradient(
    155deg,
    rgba(32, 40, 80, 0.68) 0%,
    rgba(14, 18, 44, 0.75) 100%
  );
  border: 1px solid rgba(235, 208, 32, 0.12);
  border-top: 1px solid rgba(235, 208, 32, 0.26);
  border-radius: 24px;
  padding: 2.5rem;
  box-shadow:
    0 4px 6px rgba(0, 0, 0, 0.15),
    0 20px 50px rgba(0, 0, 0, 0.45),
    0 0 0 1px rgba(255, 255, 255, 0.03) inset;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  margin-top: 1.5rem;
}

.volver-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--color-brillante);
  margin-bottom: 2rem;
  transition: transform 0.3s ease, color 0.3s ease, text-shadow 0.3s ease;
}

.volver-btn:hover {
  color: var(--color-texto);
  transform: translateX(-5px);
  text-shadow: 0 0 12px rgba(244, 240, 230, 0.2);
}

.post-header {
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(235, 208, 32, 0.1);
}

.post-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 0.75rem;
  font-size: 0.82rem;
  color: var(--color-principal);
}

.meta-badge {
  background: rgba(235, 208, 32, 0.06);
  padding: 0.3rem 0.85rem;
  border-radius: 20px;
  border: 1px solid rgba(235, 208, 32, 0.12);
  backdrop-filter: blur(4px);
  letter-spacing: 0.02em;
}

.post-banner-wrapper {
  width: 92%;
  max-width: 460px;
  margin: 0 auto 2.5rem auto;
}

.post-banner {
  max-width: 100%;
  max-height: 460px;
  min-width: 30vw;
  width: auto;
  height: auto;
  display: block;
  margin: 0 auto;
  border-radius: 16px;
  border: 1px solid rgba(235, 208, 32, 0.14);
  box-shadow:
    0 10px 30px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(255, 255, 255, 0.03) inset;
}

.post-atributos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  justify-content: center;
  gap: 0.85rem;
  margin-bottom: 2.5rem;
  background: rgba(10, 13, 30, 0.4);
  padding: 1.5rem;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(8px);
}

.post-atributo-item {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  background: rgba(255, 255, 255, 0.025);
  padding: 0.85rem 1rem;
  border-radius: 10px;
  border: 1px solid rgba(235, 208, 32, 0.06);
  border-top: 1px solid rgba(235, 208, 32, 0.12);
  transition: border-color 0.3s ease, background 0.3s ease;
}

.post-atributo-item:hover {
  background: rgba(235, 208, 32, 0.03);
  border-color: rgba(235, 208, 32, 0.1);
  border-top-color: rgba(235, 208, 32, 0.22);
}

.post-atributo-label {
  font-size: 0.72rem;
  color: var(--color-principal);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.post-atributo-value {
  font-size: 0.95rem;
  color: var(--color-texto);
  font-weight: 500;
}

.podcast-player-card {
  background: linear-gradient(
    145deg,
    rgba(12, 15, 38, 0.85) 0%,
    rgba(20, 25, 58, 0.75) 100%
  );
  border: 1px solid rgba(235, 208, 32, 0.18);
  border-top: 1px solid rgba(235, 208, 32, 0.32);
  border-radius: 16px;
  padding: 1.75rem;
  margin-bottom: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  box-shadow:
    0 8px 28px rgba(0, 0, 0, 0.35),
    0 0 30px rgba(207, 162, 18, 0.04) inset;
  backdrop-filter: blur(12px);
}

.podcast-player-header {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.podcast-badge {
  background: linear-gradient(135deg, var(--color-brillante) 0%, var(--color-principal) 100%);
  color: var(--color-oscuro);
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.25rem 0.65rem;
  border-radius: 6px;
  box-shadow: 0 2px 8px var(--glow-principal);
}

.podcast-player-header h4 {
  font-family: 'Cinzel', serif;
  font-size: 0.95rem;
  color: var(--color-brillante);
  letter-spacing: 0.03em;
}

.podcast-player-card audio {
  width: 100%;
  outline: none;
  background: transparent;
}

.post-contenido {
  font-size: 1.05rem;
  line-height: 1.85;
  color: rgba(244, 240, 230, 0.88);
  letter-spacing: 0.01em;
}

.post-subtitulo {
  font-family: 'Cinzel', serif;
  color: var(--color-brillante);
  font-size: 1.35rem;
  margin: 2.5rem 0 1rem 0;
  border-bottom: 1px solid rgba(235, 208, 32, 0.15);
  padding-bottom: 0.5rem;
  text-shadow: 0 0 20px var(--glow-principal);
}

.texto-resaltado {
  color: var(--color-brillante);
  font-weight: 600;
  text-shadow: 0 0 10px var(--glow-brillante);
}




/* ++++++++++++++ BARRA DE BUSQUEDA +++++++++++++ */
.buscar-form {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 320px;
  background: rgba(10, 13, 30, 0.65);
  border: 1px solid rgba(235, 208, 32, 0.14);
  border-radius: 30px;
  padding: 0.3rem 0.5rem 0.3rem 1.1rem;
  transition: all 0.3s ease;
  margin: 0;
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
}

.buscar-form:focus-within {
  border-color: rgba(235, 208, 32, 0.4);
  box-shadow: 0 0 14px var(--glow-principal), 0 4px 20px rgba(0, 0, 0, 0.3);
  background: rgba(12, 16, 38, 0.8);
}

.buscar-input {
  width: 100%;
  background: transparent;
  border: none;
  outline: none;
  color: var(--color-texto);
  font-family: inherit;
  font-size: 0.88rem;
}

.buscar-input::placeholder {
  color: rgba(244, 240, 230, 0.3);
}

.buscar-btn {
  background: transparent;
  border: none;
  color: rgba(244, 240, 230, 0.5);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.4rem;
  transition: color 0.3s ease;
}

.buscar-btn:hover {
  color: var(--color-brillante);
}

.buscar-btn svg {
  width: 18px;
  height: 18px;
}




/* ++++++++++++++ SECCION DONACIONES +++++++++++++ */
.donaciones-intro {
  margin-bottom: 2.5rem;
  background: linear-gradient(155deg, rgba(32, 40, 82, 0.6) 0%, rgba(16, 20, 50, 0.65) 100%);
  border: 1px solid rgba(235, 208, 32, 0.12);
  border-top: 1px solid rgba(235, 208, 32, 0.25);
  padding: 2rem;
  border-radius: 18px;
  text-align: center;
  backdrop-filter: blur(12px);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.3);
}

.donaciones-gracias {
  font-family: 'Cinzel', serif;
  font-size: 1.2rem;
  color: var(--color-brillante);
  margin-top: 1rem;
  letter-spacing: 0.12em;
  font-weight: 700;
  text-shadow: 0 0 18px var(--glow-brillante);
}

.donaciones-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.75rem;
  margin-bottom: 3rem;
}

.donacion-card {
  background: linear-gradient(
    155deg,
    rgba(32, 40, 82, 0.65) 0%,
    rgba(14, 18, 44, 0.72) 100%
  );
  border: 1px solid rgba(235, 208, 32, 0.12);
  border-top: 1px solid rgba(235, 208, 32, 0.26);
  border-radius: 20px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  box-shadow:
    0 10px 32px rgba(0, 0, 0, 0.3),
    0 0 0 1px rgba(255, 255, 255, 0.03) inset;
  backdrop-filter: blur(12px);
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}

.donacion-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(235, 208, 32, 0.4), transparent);
}

.donacion-card:hover {
  transform: translateY(-5px);
  border-color: rgba(235, 208, 32, 0.3);
  box-shadow:
    0 16px 45px rgba(0, 0, 0, 0.4),
    0 0 20px rgba(207, 162, 18, 0.06),
    0 0 0 1px rgba(255, 255, 255, 0.04) inset;
}

.donacion-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding-bottom: 1rem;
}

.donacion-header h3 {
  font-family: 'Cinzel', serif;
  font-size: 1.15rem;
  color: var(--color-brillante);
}

.donacion-badge {
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.25rem 0.65rem;
  border-radius: 6px;
  background: linear-gradient(135deg, var(--color-brillante) 0%, var(--color-principal) 100%);
  color: var(--color-oscuro);
  box-shadow: 0 2px 8px var(--glow-principal);
}

.donacion-badge.BBVA {
  background: #004481;
  color: #fff;
  box-shadow: 0 2px 8px rgba(0, 68, 129, 0.4);
}

.donacion-badge.Santander {
  background: #ec0000;
  color: #fff;
  box-shadow: 0 2px 8px rgba(236, 0, 0, 0.3);
}

.donacion-badge.Bancoppel {
  background: #002d72;
  color: #f6a704;
  box-shadow: 0 2px 8px rgba(0, 45, 114, 0.4);
}

.donacion-detalles {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: auto;
}

.donacion-detalles p {
  font-size: 0.9rem;
}

.donacion-detalles strong {
  color: var(--color-principal);
}

.clabe-number {
  font-family: monospace;
  font-size: 1rem;
  background: rgba(0, 0, 0, 0.35);
  padding: 0.25rem 0.6rem;
  border-radius: 6px;
  display: inline-block;
  letter-spacing: 0.06em;
  color: var(--color-texto);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.donar-btn {
  display: inline-block;
  text-align: center;
  background: linear-gradient(135deg, var(--color-brillante) 0%, var(--color-principal) 100%);
  color: var(--color-oscuro);
  font-weight: 800;
  padding: 0.8rem 1.5rem;
  border-radius: 30px;
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-top: auto;
  box-shadow: 0 4px 18px var(--glow-principal);
  transition: all 0.3s ease;
}

.donar-btn:hover {
  transform: scale(1.04);
  box-shadow: 0 6px 24px var(--glow-brillante);
}




/* ++++++++++++++ SECCION CONTACTO +++++++++++++ */
.contacto-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
}

.contacto-canales {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.contacto-canal-card {
  background: linear-gradient(
    155deg,
    rgba(32, 40, 82, 0.62) 0%,
    rgba(14, 18, 44, 0.70) 100%
  );
  border: 1px solid rgba(235, 208, 32, 0.1);
  border-top: 1px solid rgba(235, 208, 32, 0.22);
  border-radius: 20px;
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(12px);
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}

.contacto-canal-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(235, 208, 32, 0.3), transparent);
}

.contacto-canal-card:hover {
  border-color: rgba(235, 208, 32, 0.25);
  transform: translateY(-3px);
  box-shadow: 0 14px 38px rgba(0, 0, 0, 0.35);
}

.canal-icono {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  color: var(--color-oscuro);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.contacto-canal-card:hover .canal-icono {
  transform: scale(1.08);
}

.canal-icono.wa {
  background: #25d366;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.35);
}

.canal-icono.call {
  background: linear-gradient(135deg, var(--color-brillante) 0%, var(--color-principal) 100%);
  box-shadow: 0 4px 16px var(--glow-principal);
}

.canal-icono.maps {
  background: #ea4335;
  color: #fff;
  box-shadow: 0 4px 16px rgba(234, 67, 53, 0.35);
}

.canal-icono svg {
  width: 24px;
  height: 24px;
}

.contacto-canal-card h4 {
  font-family: 'Cinzel', serif;
  font-size: 1.05rem;
  color: var(--color-brillante);
  margin-bottom: 0.5rem;
}

.canal-btn {
  display: inline-block;
  background: rgba(235, 208, 32, 0.05);
  border: 1px solid rgba(235, 208, 32, 0.18);
  color: var(--color-texto);
  font-weight: 600;
  padding: 0.5rem 1.5rem;
  border-radius: 20px;
  font-size: 0.85rem;
  margin-top: 0.75rem;
  transition: all 0.3s ease;
}

.canal-btn:hover {
  background: var(--color-brillante);
  color: var(--color-oscuro);
  border-color: var(--color-brillante);
  box-shadow: 0 4px 14px var(--glow-brillante);
}

.canal-nota {
  font-size: 0.72rem;
  color: rgba(244, 240, 230, 0.35);
  margin-top: 0.5rem;
}

.canal-dir {
  font-size: 0.88rem;
  color: rgba(244, 240, 230, 0.75);
  margin-bottom: 0.5rem;
}

.contacto-formulario {
  background: linear-gradient(
    155deg,
    rgba(28, 36, 76, 0.68) 0%,
    rgba(12, 16, 42, 0.75) 100%
  );
  border: 1px solid rgba(235, 208, 32, 0.1);
  border-top: 1px solid rgba(235, 208, 32, 0.24);
  border-radius: 24px;
  padding: 2.5rem;
  box-shadow:
    0 15px 45px rgba(0, 0, 0, 0.35),
    0 0 0 1px rgba(255, 255, 255, 0.025) inset;
  backdrop-filter: blur(14px);
  position: relative;
  overflow: hidden;
}

.contacto-formulario::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(235, 208, 32, 0.35), transparent);
}

.formulario-titulo {
  font-family: 'Cinzel', serif;
  font-size: 1.25rem;
  color: var(--color-brillante);
  margin-bottom: 2rem;
  text-align: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding-bottom: 1rem;
  letter-spacing: 0.04em;
}

.form-grupo {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.form-grupo label {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--color-principal);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.form-input, .form-textarea {
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(235, 208, 32, 0.1);
  border-radius: 10px;
  padding: 0.8rem 1rem;
  color: var(--color-texto);
  font-family: inherit;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.form-input:focus, .form-textarea:focus {
  outline: none;
  border-color: rgba(235, 208, 32, 0.4);
  background: rgba(0, 0, 0, 0.45);
  box-shadow: 0 0 14px var(--glow-principal);
}

.form-textarea {
  min-height: 120px;
  resize: vertical;
}

.form-submit-btn {
  width: 100%;
  background: linear-gradient(135deg, var(--color-brillante) 0%, var(--color-principal) 100%);
  color: var(--color-oscuro);
  font-weight: 800;
  padding: 0.9rem;
  border-radius: 30px;
  border: none;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  cursor: pointer;
  box-shadow: 0 5px 18px var(--glow-principal);
  transition: all 0.3s ease;
  margin-top: 1rem;
}

.form-submit-btn:hover {
  transform: scale(1.02);
  box-shadow: 0 8px 28px var(--glow-brillante);
}

#targetLayer {
  margin-bottom: 1.5rem;
  padding: 1rem;
  border-radius: 10px;
  font-weight: 600;
  text-align: center;
  display: none;
}

#exito {
  color: #25d366;
  background: rgba(37, 211, 102, 0.08);
  border: 1px solid rgba(37, 211, 102, 0.2);
  padding: 0.75rem;
  border-radius: 8px;
}

#error {
  color: #ff3b30;
  background: rgba(255, 59, 48, 0.08);
  border: 1px solid rgba(255, 59, 48, 0.2);
  padding: 0.75rem;
  border-radius: 8px;
}

.contacto-redes {
  text-align: center;
  background: linear-gradient(
    155deg,
    rgba(28, 36, 76, 0.62) 0%,
    rgba(12, 16, 42, 0.70) 100%
  );
  border: 1px solid rgba(235, 208, 32, 0.1);
  border-top: 1px solid rgba(235, 208, 32, 0.22);
  padding: 2.5rem;
  border-radius: 24px;
  backdrop-filter: blur(12px);
}

.contacto-redes h3 {
  font-family: 'Cinzel', serif;
  font-size: 1.2rem;
  color: var(--color-brillante);
  margin-bottom: 1.5rem;
  letter-spacing: 0.04em;
}

.redes-iconos {
  display: flex;
  justify-content: center;
  gap: 1.25rem;
}

.red-social-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(235, 208, 32, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-texto);
  transition: all 0.3s ease;
  backdrop-filter: blur(6px);
}

.red-social-btn:hover {
  background: var(--color-brillante);
  color: var(--color-oscuro);
  border-color: var(--color-brillante);
  transform: translateY(-4px);
  box-shadow: 0 6px 20px var(--glow-brillante);
}




/* ++++++++++++++ SECCION POLITICAS (TABS) +++++++++++++ */
.politicas-tabs {
  background: linear-gradient(
    155deg,
    rgba(28, 36, 76, 0.65) 0%,
    rgba(12, 16, 42, 0.72) 100%
  );
  border: 1px solid rgba(235, 208, 32, 0.1);
  border-top: 1px solid rgba(235, 208, 32, 0.22);
  border-radius: 24px;
  overflow: hidden;
  box-shadow:
    0 15px 45px rgba(0, 0, 0, 0.35),
    0 0 0 1px rgba(255, 255, 255, 0.025) inset;
  backdrop-filter: blur(14px);
  margin-top: 1.5rem;
}

.politicas-tabs-nav {
  display: flex;
  background: rgba(0, 0, 0, 0.25);
  border-bottom: 1px solid rgba(235, 208, 32, 0.1);
}

.tab-nav-btn {
  flex: 1;
  background: transparent;
  border: none;
  color: rgba(244, 240, 230, 0.45);
  font-family: 'Cinzel', serif;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 1.25rem;
  cursor: pointer;
  transition: all 0.3s ease;
  border-bottom: 2px solid transparent;
  text-align: center;
}

.tab-nav-btn:hover {
  color: rgba(244, 240, 230, 0.8);
  background: rgba(255, 255, 255, 0.025);
}

.tab-nav-btn.activo {
  color: var(--color-brillante);
  border-bottom-color: var(--color-brillante);
  background: rgba(235, 208, 32, 0.04);
  text-shadow: 0 0 12px var(--glow-brillante);
}

.politicas-tabs-content {
  padding: 2.5rem;
}

.tab-pane {
  display: none;
}

.tab-pane.activo {
  display: block;
  animation: fadeInPane 0.4s ease;
}

@keyframes fadeInPane {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: translateY(0); }
}

.politica-cuerpo {
  font-size: 0.93rem;
  line-height: 1.85;
  color: rgba(244, 240, 230, 0.75);
}




/* ++++++++++++++ COMPARTIR PUBLICACION +++++++++++++ */
.share-barra {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
  padding: 1.25rem 1.5rem;
  background: linear-gradient(
    145deg,
    rgba(12, 15, 38, 0.7) 0%,
    rgba(20, 25, 58, 0.65) 100%
  );
  border: 1px solid rgba(235, 208, 32, 0.12);
  border-top: 1px solid rgba(235, 208, 32, 0.26);
  border-radius: 16px;
  backdrop-filter: blur(10px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.share-etiqueta {
  font-family: 'Cinzel', serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-principal);
  white-space: nowrap;
}

.share-iconos {
  display: grid;
  grid-template-columns: repeat(6, 42px);
  gap: 0.5rem;
  width: max-content;
}

.share-btn {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-brillante) 0%, var(--color-principal) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px;
  box-shadow: 0 3px 12px var(--glow-principal);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  border: none;
  overflow: hidden;
}

.share-btn:hover {
  transform: translateY(-3px) scale(1.1);
  box-shadow: 0 6px 20px var(--glow-brillante);
}

.share-btn img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
}




/* ++++++++++++++ MEDIA QUERY RESPONSIVA +++++++++++++ */
@media (max-width: 768px) {
  .detalle-post {
    padding: 1.5rem;
  }

  .post-atributos {
    grid-template-columns: 1fr;
    padding: 1rem;
  }

  .btn-menu {
    display: block;
  }

  @keyframes menu-slide-down {
    from {
      opacity: 0;
      transform: translateY(-10px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(10, 13, 30, 0.96);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(235, 208, 32, 0.15);
    flex-direction: column;
    padding: 1.5rem;
    gap: 1rem;
    display: none;
    z-index: 1000;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.5);
  }

  .menu.activo {
    display: flex;
    animation: menu-slide-down 0.28s cubic-bezier(0.16, 1, 0.3, 1) both;
  }

  .menu-item a {
    display: block;
    width: 100%;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  }

  .portada-logo {
    max-width: 200px;
  }

  .portada-banner-container {
    max-width: 90%;
    margin-top: 0;
  }

  .portada-logo-sello {
    width: 110px;
    height: 110px;
  }

  .reproductor-barra {
    padding: 0.5rem 0;
  }

  .reproductor-inner {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 0.5rem;
  }

  .radio-info {
    flex-direction: row;
    align-items: center;
    gap: 0.5rem;
  }

  .radio-texto h4 {
    font-size: 1rem;
  }

  .radio-texto p {
    font-size: 0.68rem;
  }

  .control-btn {
    width: 36px;
    height: 36px;
  }

  .control-btn.play-btn {
    width: 42px;
    height: 42px;
  }

  .control-btn svg {
    width: 16px;
    height: 16px;
  }

  .control-btn.play-btn svg {
    width: 20px;
    height: 20px;
    margin-left: 1px;
  }

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

  .seccion-titulo {
    font-size: 1.6rem;
  }

  /* ++++++++++++++ RESPONSIVO DONACIONES Y CONTACTO +++++++++++++ */
  .cabecera-pag {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    text-align: center;
  }

  .buscar-form {
    max-width: 100%;
    width: 100%;
    margin: 0;
  }

  .contacto-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

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

  .contacto-formulario {
    padding: 1.5rem;
  }

  .politicas-tabs-content {
    padding: 1.5rem;
  }

  .tab-nav-btn {
    padding: 1rem 0.5rem;
    font-size: 0.82rem;
  }

  .pie {
    padding-bottom: 6rem;
  }

  .share-barra {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }

  .share-iconos {
    grid-template-columns: repeat(6, 1fr);
    width: 100%;
  }

  .share-btn {
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
  }

}

