/* ==========================================================================
   GABUF PRODUCCIONES - ESTILOS GLOBALES
   Tema: Oscura elegante + azul del logo como acento
   Responsive: Sí
   ========================================================================== */

/* =========================
   VARIABLES
   Cambia aquí para ajustar colores y tipografías rápido.
   ========================= */
:root{
  --bg: #0f0f14;
  --bg-2: #14141b;
  --card: rgba(255,255,255,0.04);
  --border: rgba(255,255,255,0.10);
  --text: rgba(255,255,255,0.92);
  --muted: rgba(255,255,255,0.70);
  --muted2: rgba(255,255,255,0.58);

  /* AZUL PRINCIPAL
     Ajusta este valor al azul exacto del logo cuando quieras. */
  --blue: #4f73ff;
  --blue-2: #3b5de6;

  --shadow: 0 18px 60px rgba(0,0,0,0.45);
  --radius: 18px;

  --font-title: "Cormorant Garamond", serif;
  --font-body: "Inter", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;

  --container: 1120px;
}

/* =========================
   RESET BÁSICO
   ========================= */
*{ box-sizing: border-box; }
html, body{ height: 100%; }
body{
  margin: 0;
  font-family: var(--font-body);
  background: radial-gradient(1200px 700px at 20% 10%, rgba(79,115,255,0.12), transparent 55%),
              radial-gradient(900px 600px at 90% 0%, rgba(79,115,255,0.10), transparent 60%),
              var(--bg);
  color: var(--text);
  line-height: 1.55;
}

img{ max-width: 100%; display: block; }
a{ color: inherit; text-decoration: none; }
p{ margin: 0 0 14px; }
h1,h2,h3{ margin: 0; font-family: var(--font-title); letter-spacing: 0.2px; }

.container{
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
}

/* =========================
   HEADER / NAV (REUTILIZABLE)
   ========================= */
.site-header{
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(10px);
  background: rgba(15,15,20,0.72);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.header-inner{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 16px;
}

.brand{
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 220px;
}

.brand-logo{
  width: 38px;
  height: 38px;
  object-fit: contain;
}

.brand-name{
  font-weight: 600;
  letter-spacing: 0.2px;
  font-size: 14px;
  color: var(--text);
  opacity: 0.92;
}

/* Menú desktop */
.nav{
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-link{
  font-size: 14px;
  color: var(--muted);
  padding: 10px 10px;
  border-radius: 12px;
  transition: background 160ms ease, color 160ms ease, transform 160ms ease;
}

.nav-link:hover{
  color: var(--text);
  background: rgba(255,255,255,0.06);
}

.nav-link.is-active{
  color: var(--text);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
}

.nav-cta{
  color: #ffffff;
  background: rgba(79,115,255,0.16);
  border: 1px solid rgba(79,115,255,0.35);
}

.nav-cta:hover{
  background: rgba(79,115,255,0.22);
}

/* Toggle móvil sin JS */
.nav-toggle{ display: none; }
.nav-toggle-btn{
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.04);
  align-items: center;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
}
.nav-toggle-btn span{
  display: block;
  width: 18px;
  height: 2px;
  background: rgba(255,255,255,0.78);
  border-radius: 99px;
}

/* =========================
   BOTONES
   ========================= */
.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 16px;
  border-radius: 14px;
  font-weight: 600;
  font-size: 14px;
  border: 1px solid transparent;
  transition: transform 160ms ease, background 160ms ease, border 160ms ease;
  user-select: none;
}
.btn:active{ transform: translateY(1px); }

.btn-primary{
  background: linear-gradient(180deg, rgba(79,115,255,0.92), rgba(59,93,230,0.92));
  border-color: rgba(79,115,255,0.55);
  color: #fff;
  box-shadow: 0 14px 50px rgba(79,115,255,0.20);
}
.btn-primary:hover{
  background: linear-gradient(180deg, rgba(79,115,255,1), rgba(59,93,230,1));
}

.btn-ghost{
  background: rgba(255,255,255,0.04);
  border-color: rgba(255,255,255,0.10);
  color: var(--text);
}
.btn-ghost:hover{
  background: rgba(255,255,255,0.06);
}

/* =========================
   HERO
   ========================= */
.hero{
  padding: 56px 0 26px;
}

.hero-inner{
  display: grid;
  grid-template-columns: 1.25fr 0.9fr;
  gap: 26px;
  align-items: start;
}

.kicker{
  color: var(--muted2);
  font-size: 13px;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.hero-title{
  font-size: clamp(38px, 4.3vw, 64px);
  line-height: 1.02;
  margin-bottom: 12px;
}

.hero-subtitle{
  color: var(--muted);
  font-size: 16px;
  max-width: 60ch;
}

/* Sello Punto de Cultura */
.badge{
  margin-top: 18px;
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 12px;
  align-items: start;
  padding: 14px;
  border-radius: var(--radius);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(79,115,255,0.30);
}

.badge-icon{
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  color: var(--blue);
  background: rgba(79,115,255,0.12);
  border: 1px solid rgba(79,115,255,0.22);
}

.badge-text strong{
  display: block;
  font-size: 14px;
  margin-bottom: 2px;
}

.badge-text span{
  display: block;
  color: var(--muted);
  font-size: 13px;
  margin-bottom: 6px;
}

.badge-link{
  font-size: 13px;
  color: var(--blue);
}
.badge-link:hover{
  text-decoration: underline;
}

.hero-actions{
  display: flex;
  gap: 12px;
  margin-top: 18px;
  flex-wrap: wrap;
}

/* Stats */
.hero-stats{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 18px;
}
.stat{
  padding: 14px;
  border-radius: var(--radius);
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
}
.stat-number{
  font-family: var(--font-title);
  font-size: 22px;
  font-weight: 700;
  color: var(--text);
}
.stat-label{
  margin-top: 6px;
  color: var(--muted);
  font-size: 13px;
}

/* Lado visual */
.hero-visual .visual-card{
  position: relative;
  overflow: hidden;
  border-radius: calc(var(--radius) + 6px);
  background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
  border: 1px solid rgba(255,255,255,0.10);
  box-shadow: var(--shadow);
  min-height: 320px;
}

.visual-glow{
  position: absolute;
  inset: -80px -120px auto auto;
  width: 360px;
  height: 360px;
  background: radial-gradient(circle at 30% 30%, rgba(79,115,255,0.32), transparent 60%);
  filter: blur(0.5px);
}

.visual-content{
  position: relative;
  padding: 22px;
}

.visual-title{
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 28px;
  margin: 0 0 6px;
}

.visual-sub{
  color: var(--muted);
  margin: 0 0 14px;
}

.visual-tags{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tag{
  font-size: 12px;
  color: var(--text);
  background: rgba(79,115,255,0.10);
  border: 1px solid rgba(79,115,255,0.20);
  padding: 8px 10px;
  border-radius: 999px;
}

/* =========================
   SECCIONES GENERALES
   ========================= */
.section{
  padding: 46px 0;
}

.section-alt{
  background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.00));
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.section-header{
  max-width: 70ch;
  margin-bottom: 18px;
}

.section-header h2{
  font-size: clamp(28px, 3vw, 40px);
  margin-bottom: 8px;
}

.section-header p{
  color: var(--muted);
}

/* Cards */
.cards{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.card{
  padding: 18px;
  border-radius: var(--radius);
  background: var(--card);
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 10px 40px rgba(0,0,0,0.25);
}

.card h3{
  font-size: 22px;
  margin-bottom: 8px;
}

.card p{
  color: var(--muted);
  margin: 0;
}

/* Split */
.split{
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 18px;
  align-items: start;
}

.list{
  margin: 14px 0 18px;
  padding-left: 18px;
  color: var(--muted);
}

.quote{
  padding: 18px;
  border-radius: var(--radius);
  background: rgba(79,115,255,0.08);
  border: 1px solid rgba(79,115,255,0.22);
}

.quote p{
  margin: 0 0 10px;
  font-family: var(--font-title);
  font-size: 22px;
  line-height: 1.25;
}

.quote span{
  color: rgba(255,255,255,0.78);
  font-size: 13px;
}

/* CTA final */
.cta{
  padding: 42px 0;
}

.cta-inner{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px;
  border-radius: calc(var(--radius) + 8px);
  background: linear-gradient(180deg, rgba(79,115,255,0.12), rgba(255,255,255,0.03));
  border: 1px solid rgba(79,115,255,0.18);
  box-shadow: var(--shadow);
}

.cta h2{
  font-size: clamp(24px, 2.5vw, 34px);
  margin-bottom: 6px;
}

.cta p{
  color: var(--muted);
  margin: 0;
}

.cta-actions{
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* =========================
   FOOTER (REUTILIZABLE)
   ========================= */
.site-footer{
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 28px 0;
  background: rgba(10,10,14,0.70);
}

.footer-inner{
  display: grid;
  grid-template-columns: 1.1fr 0.9fr 1fr;
  gap: 18px;
  align-items: start;
}

.footer-title{
  font-family: var(--font-title);
  font-size: 22px;
  font-weight: 700;
}

.footer-desc{
  color: var(--muted);
  margin: 8px 0 0;
}

.footer-links{
  display: grid;
  gap: 10px;
}

.footer-links a{
  color: var(--muted);
  font-size: 14px;
}
.footer-links a:hover{
  color: var(--text);
}

.footer-meta{
  display: grid;
  gap: 10px;
  justify-items: end;
  text-align: right;
}

.footer-pill{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 10px 12px;
  background: rgba(79,115,255,0.10);
  border: 1px solid rgba(79,115,255,0.20);
  color: var(--text);
  font-size: 13px;
}

.footer-copy{
  color: var(--muted2);
  font-size: 13px;
  margin: 0;
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */

/* Tablets */
@media (max-width: 980px){
  .hero-inner{ grid-template-columns: 1fr; }
  .hero-visual .visual-card{ min-height: 260px; }
  .cards{ grid-template-columns: 1fr; }
  .split{ grid-template-columns: 1fr; }
  .footer-inner{ grid-template-columns: 1fr; }
  .footer-meta{ justify-items: start; text-align: left; }
}

/* Móvil */
@media (max-width: 760px){
  .brand-name{ display: none; }

  /* Mostrar botón hamburguesa */
  .nav-toggle-btn{ display: inline-flex; }

  /* Nav como panel */
  .nav{
    position: fixed;
    inset: 70px 14px auto 14px;
    display: grid;
    gap: 8px;
    padding: 12px;
    border-radius: 18px;
    background: rgba(15,15,20,0.92);
    border: 1px solid rgba(255,255,255,0.10);
    box-shadow: var(--shadow);
    transform: translateY(-10px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 160ms ease, transform 160ms ease;
  }

  /* Activación con checkbox */
  .nav-toggle:checked ~ .nav{
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .nav-link{ padding: 12px 12px; }
  .hero{ padding-top: 34px; }
  .hero-stats{ grid-template-columns: 1fr; }

  .cta-inner{
    flex-direction: column;
    align-items: flex-start;
  }
}


/* =========================
   MEDIA FRAMES (IMÁGENES)
   ========================= */
.media-frame{
  border-radius: calc(var(--radius) + 6px);
  overflow: hidden;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.10);
  box-shadow: var(--shadow);
  position: relative;
}

.media-frame-tall{
  min-height: 320px;
}

.media-img{
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  min-height: 280px;
  filter: saturate(1.05) contrast(1.02);
}

.media-caption{
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(15,15,20,0.72);
  border: 1px solid rgba(255,255,255,0.10);
  color: rgba(255,255,255,0.86);
  font-size: 13px;
  backdrop-filter: blur(8px);
}

/* Placeholder por si aún no tienes imágenes */
.media-placeholder{
  min-height: 320px;
  border-radius: calc(var(--radius) + 6px);
  background: rgba(255,255,255,0.03);
  border: 1px dashed rgba(79,115,255,0.35);
  display: grid;
  place-items: center;
  text-align: center;
  padding: 16px;
}
.media-placeholder p{
  margin: 0;
  font-weight: 700;
  color: rgba(255,255,255,0.88);
}
.media-placeholder small{
  color: var(--muted);
}

/* =========================
   CARDS CON IMAGEN
   ========================= */
.card-media{
  padding: 0;
  overflow: hidden;
}
.card-media-top{
  height: 170px;
  background: rgba(255,255,255,0.03);
}
.card-img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.card-body{
  padding: 18px;
}

/* =========================
   BLOQUE IMPACTO CON IMAGEN
   ========================= */
.impact-visual{
  display: grid;
  gap: 14px;
}

/* Ajuste en móvil para que las imágenes no queden gigantes */
@media (max-width: 760px){
  .media-img{
    min-height: 220px;
  }
  .card-media-top{
    height: 150px;
  }
}


/* =========================
   MONTAJES REALIZADOS - GRID
   ========================= */

.montajes-grid{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
}

.montaje-card{
  padding: 16px 18px;
  border-radius: 16px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  transition: all 160ms ease;
  cursor: default;
}

.montaje-card span{
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
}

.montaje-card:hover{
  background: rgba(79,115,255,0.12);
  border: 1px solid rgba(79,115,255,0.35);
  transform: translateY(-2px);
}

.note{
  margin-top: 10px;
  color: var(--muted2);
  font-size: 13px;
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
}

/* =========================
   AUDIOVISUAL SIN IMÁGENES
   ========================= */

.audiovisual-grid{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
}

.audiovisual-card{
  padding: 22px;
  border-radius: 18px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  transition: all 160ms ease;
}

.audiovisual-card:hover{
  border: 1px solid rgba(79,115,255,0.35);
  background: rgba(79,115,255,0.08);
}

.audiovisual-tag{
  display: inline-block;
  font-size: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(79,115,255,0.12);
  border: 1px solid rgba(79,115,255,0.25);
  margin-bottom: 12px;
  color: var(--text);
}

.audiovisual-card h3{
  margin-bottom: 8px;
  font-family: var(--font-title);
}

/* =========================
   NOSOTROS - HERO
   ========================= */
.about-hero{
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 22px;
  align-items: start;
}
.about-hero-media .media-img{
  min-height: 320px;
}

@media (max-width: 980px){
  .about-hero{
    grid-template-columns: 1fr;
  }
  .about-hero-media .media-img{
    min-height: 240px;
  }
}

/* =========================
   CONTACTO
   ========================= */

.contact-grid{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px,1fr));
  gap: 20px;
}

.contact-card{
  padding: 22px;
  border-radius: 18px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
}

.contact-card h3{
  margin-bottom: 10px;
}

.contact-btn{
  margin-top: 12px;
  display: inline-block;
}

.social-links{
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.social-links a{
  color: var(--text);
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  padding-bottom: 4px;
  transition: all 0.2s ease;
}

.social-links a:hover{
  color: #4f73ff;
  border-color: #4f73ff;
}

/* FORMULARIO */

.contact-form{
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-group{
  display: flex;
  flex-direction: column;
  gap: 6px;
}

input, textarea{
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.03);
  color: var(--text);
  font-family: inherit;
}

input:focus, textarea:focus{
  outline: none;
  border-color: #4f73ff;
}

/* =========================
   BANNER CONTACTO
   ========================= */

.contact-banner{
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: center;
  background: url("assets/img/contacto-banner.jpg") center/cover no-repeat;
}

.contact-banner-overlay{
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10,10,15,0.75),
    rgba(10,10,15,0.85)
  );
}

.contact-banner-content{
  position: relative;
  z-index: 2;
  max-width: 700px;
}

.contact-banner h1{
  font-size: clamp(40px,5vw,64px);
  margin-bottom: 12px;
}

.contact-banner p{
  font-size: 18px;
  margin-bottom: 20px;
  color: var(--muted);
}

/* Responsive */
@media (max-width: 768px){
  .contact-banner{
    min-height: 320px;
  }
}

/* =========================
   FIX CARDS CON IMAGEN
   ========================= */

.card.card-media{
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.card-media-top{
  position: relative;
  width: 100%;
  height: 220px;
  overflow: hidden;
}

.card-media-top img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Deja el texto siempre debajo y con fondo propio */
.card.card-media .card-body{
  position: relative;
  padding: 16px 18px 18px;
  background: rgba(10,10,15,0.55);
  border-top: 1px solid rgba(255,255,255,0.08);
}

/* Opcional: oscurece un poco la parte baja de la foto para que se sienta más pro */
.card-media-top::after{
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
    rgba(0,0,0,0.00) 40%,
    rgba(0,0,0,0.45) 100%
  );
  pointer-events: none;
}


/* =========================
   REDES SOCIALES INDEX
   ========================= */

.social-section{
  text-align: center;
}

.social-grid{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px,1fr));
  gap: 18px;
  margin-top: 20px;
}

.social-card{
  padding: 22px;
  border-radius: 18px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  text-decoration: none;
  color: var(--text);
  transition: all 0.2s ease;
}

.social-card:hover{
  background: rgba(79,115,255,0.08);
  border: 1px solid rgba(79,115,255,0.35);
  transform: translateY(-3px);
}

.social-name{
  display: block;
  font-size: 18px;
  margin-bottom: 6px;
  font-family: var(--font-title);
}

.social-handle{
  font-size: 14px;
  color: var(--muted);
}

/* =========================
   BLOQUE REDES STRIP
   ========================= */

.social-strip{
  padding: 40px 0;
  background: linear-gradient(
    to right,
    rgba(79,115,255,0.10),
    rgba(10,10,15,0.95)
  );
  border-top: 1px solid rgba(255,255,255,0.06);
}

.social-strip-inner{
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.social-strip-text h3{
  margin-bottom: 6px;
  font-family: var(--font-title);
}

.social-strip-text p{
  color: var(--muted);
  font-size: 14px;
}

.social-strip-links{
  display: flex;
  gap: 24px;
}

.social-strip-links a{
  text-decoration: none;
  color: var(--text);
  font-weight: 500;
  position: relative;
  transition: all 0.2s ease;
}

.social-strip-links a::after{
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: #4f73ff;
  transition: width 0.2s ease;
}

.social-strip-links a:hover{
  color: #4f73ff;
}

.social-strip-links a:hover::after{
  width: 100%;
}

/* Responsive */
@media (max-width: 768px){
  .social-strip-inner{
    flex-direction: column;
    text-align: center;
  }
}

/* =========================
   FOOTER SOCIAL
   ========================= */

.footer-social{
  display: flex;
  gap: 20px;
  margin-top: 10px;
  flex-wrap: wrap;
}

.footer-social a{
  text-decoration: none;
  color: var(--muted);
  font-size: 14px;
  transition: all 0.2s ease;
  position: relative;
}

.footer-social a:hover{
  color: #4f73ff;
}

/* Asegura buen espaciado general */
.footer-inner{
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: space-between;
}


/* =========================
   NOVEDADES
   ========================= */

.posts-grid{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px,1fr));
  gap: 24px;
}

.post-card{
  border-radius: 18px;
  overflow: hidden;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  transition: all 0.2s ease;
}

.post-card:hover{
  transform: translateY(-4px);
  border-color: rgba(79,115,255,0.4);
}

.post-card-link{
  text-decoration: none;
  color: inherit;
  display: block;
}

.post-card-image{
  height: 220px;
  overflow: hidden;
}

.post-card-image img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.post-card-body{
  padding: 18px;
}

.post-category{
  font-size: 12px;
  text-transform: uppercase;
  color: #4f73ff;
  letter-spacing: 0.5px;
}

.post-date{
  font-size: 13px;
  color: var(--muted);
  margin: 6px 0 8px;
}

.post-excerpt{
  font-size: 14px;
  color: var(--muted);
}

/* =========================
   POST INDIVIDUAL
   ========================= */

.post-hero{
  position: relative;
  height: 480px;
  overflow: hidden;
}

.post-hero-img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.post-hero-overlay{
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.5),
    rgba(0,0,0,0.85)
  );
}

.post-hero-content{
  margin-left: 10rem;
  position: absolute;
  bottom: 40px;
  color: white;
  z-index: 2;
}

.post-content{
  max-width: 800px;
  margin: 0 auto;
  font-size: 18px;
  line-height: 1.7;
}

.post-content h2{
  margin-top: 40px;
  margin-bottom: 12px;
}

.post-inline-image{
  margin: 30px 0;
}

.post-inline-image img{
  width: 100%;
  border-radius: 14px;
}

@media (max-width: 768px){
  .post-hero{
    height: 360px;
  }
}

.btn-back {
  background-color: #4f73ff; /* rojo teatro */
  color: white;
  padding: 12px 22px;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s ease;
}

.btn-back:hover {
  background-color: #1f3bad;
}