/* ===============================
   RESET / BASE GLOBAL
============================== */

/* Aplica box-sizing a todos los elementos para diseño predecible */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  color: #000000;
  padding: 0;
  background-color: #fff;
}

/* ===============================
   NAVBAR - DEVIN MAGAZINE (Minimalista)
============================== */
.navbar {
  background-color: #fff;
  padding: 1.2rem 2rem;
  border-bottom: 1px solid rgba(0,0,0,0.06); /* línea muy sutil */
  position: relative;
  z-index: 1000;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
}

.navbar-nav .nav-link {
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #000;
  padding: 0.5rem 1rem;
  text-decoration: none;
  transition: opacity 0.25s ease;
}

/* Hover sutil */
.navbar-nav .nav-link:hover {
  opacity: 0.6;
}

/* Sin estados activos visibles */
.navbar-nav .nav-link.active {
  opacity: 1;
}

/* Navbar collapse */
.navbar-collapse {
  background-color: #fff;
  overflow: visible;
}
/* ===============================
   DROPDOWN – THE ROW STYLE
============================== */
.dropdown-menu {
  background-color: #fff;
  border: none;
  border-radius: 0;
  padding: 0.8rem 1.5rem; /* vertical u horizontal más amplio */
  margin-top: 0.5rem;
  min-width: 220px;
  white-space: nowrap;
  box-shadow: none;
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
}

/* Items */
.dropdown-item {
  font-size: 0.7rem;
  font-weight: 400;            /* clave: NO negrita */
  letter-spacing: 0.18em;      /* aire editorial */
  text-transform: uppercase;
  padding: 0.5rem 1.4rem;
  color: #000;
  background-color: transparent;
  transition: opacity 0.25s ease;
  text-decoration: none;        /* quitar subrayado */
}

/* Hover silencioso */
.dropdown-item:hover,
.dropdown-item:focus {
  opacity: 0.6;
  background-color: transparent !important; /* eliminar gris por defecto */
  color: #000;
  text-decoration: none;        /* asegurar sin subrayado */
}

/* Divider minimalista */
.dropdown-divider {
  margin: 0.6rem 1.4rem;
  border-color: rgba(0,0,0,0.06);
}

/* ===============================
   Navbar links – hover limpio
============================== */
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link:focus {
  background-color: transparent !important;
  text-decoration: none;        /* quitar subrayado */
  color: #000;                  /* opcional: mantener negro al hover */
}



/* Toggler limpio */
.navbar-toggler {
  border: none;
}

.navbar-toggler:focus {
  box-shadow: none;
}

/* Fixed / sticky */
.navbar.fixed-top,
.navbar.sticky-top {
  background-color: #fff;
}

/* Responsive */
@media (max-width: 991px) {
  .navbar {
    padding: 1rem 1.2rem;
  }
  .navbar-nav {
    margin-top: 1rem;
  }
  .navbar-nav .nav-link {
    padding: 0.6rem 0;
  }
  .dropdown-menu {
    margin-top: 0;
    box-shadow: none;
  }
}

/* Eliminar cuadro gris SOLO en el link "más" (Bootstrap 5) */
.dropdown-toggle:focus,
.dropdown-toggle:focus-visible,
.dropdown-toggle:active {
  background-color: transparent !important;
  box-shadow: none !important;
  outline: none !important;
}



/* ===============================
   LOGO
============================== */
.navbar-brand.brand-logo {
  display: flex;
  align-items: center;
  padding: 0;
}

/* Estado base (desktop) */
.navbar-brand.brand-logo .logo-img {
  height: 30px;
  max-height: 4vh;
  width: auto;
  display: block;
  transition: transform 0.25s ease;
}

/* Hover sutil */
.navbar-brand.brand-logo .logo-img:hover {
  transform: scale(1.05);
}

/* Tablet */
@media (min-width: 577px) and (max-width: 991px) {
  .navbar-brand.brand-logo .logo-img {
    height: 30px;
    max-height: 6vh;
  }
}

/* Móvil */
@media (max-width: 576px) {
  .navbar-brand.brand-logo .logo-img {
    height: 30px;
    max-height: 6vh;
  }
}

/* ===============================
   Layout / Artículos – DEVIN STYLE
============================== */

/* Variables de spacing global */
:root {
  --spacing-xs: 0.5rem;
  --spacing-s: 1rem;
  --spacing-m: 2rem;
  --spacing-l: 3rem;
  --spacing-xl: 4rem;
}

/* Espacio entre navbar y contenido */
main {
  padding-top: var(--spacing-l); /* ajustable globalmente */
  width: 100%;
}

/* Base de artículos */
.article {
  margin: 0 auto;
  max-width: 900px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--spacing-m);
  padding: 0 var(--spacing-s);
  line-height: 1.8;
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  color: #111;
  font-size: 1rem;
  text-align: justify;
}

/* Headers dentro de artículos */
.article-header {
  text-align: center;
  margin-bottom: var(--spacing-l);
}

/* Secciones internas dentro de artículos */
.article section {
  margin-bottom: var(--spacing-l);
}

/* Imágenes y figuras centradas */
.article figure {
  margin: var(--spacing-l) 0;
  text-align: center;
}

.article figcaption {
  margin-top: 0.25rem;
  font-size: 0.9rem;
  color: #333;
}

/* Responsive: Ajustes menores */
@media (max-width: 768px) {
  main {
    padding-top: var(--spacing-m);
  }
  .article {
    padding: 0 var(--spacing-s);
    gap: var(--spacing-s);
  }
  .article-header {
    margin-bottom: var(--spacing-m);
  }
  .article section {
    margin-bottom: var(--spacing-m);
  }
}



/* ===============================
   PORTADA IMAGEN
============================== */
#carouselExampleSlidesOnly .carousel-inner {
  max-height: 60vh;
  overflow: hidden;
}

#carouselExampleSlidesOnly .carousel-item img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}


/* ===============================
   FIGURE Y MARQUEE
============================== */
figure {
  position: relative;
  margin: 0;
  padding: 0;
  text-align: center;
}

figure img {
  width: 100%;
  height: auto;
  display: block;
}

.marquee-container {
  overflow: hidden;
  width: 100%;
  margin-top: 0.5rem;
}

.marquee-wrapper {
  display: inline-block;
  white-space: nowrap;
  animation: marquee 10s linear infinite;
}

.marquee-text {
  margin-right: 2rem;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}


.main-home {
  max-width: 2000px;
  margin-inline: auto;
}

.hero {
  margin-top: 15px;
}

.section-nueva {
  margin-top: 50px;
  padding: 2rem 1rem;
}


/* ===============================
   PATH ANIMADO – DEVIN INDEX
============================== */

figure {
  position: relative;
  overflow: hidden;
  margin: 0;
  padding: 0;
}

/* Contenedor del texto animado */
.marquee-container {
  position: absolute;
  bottom: 35%;
  width: 100%;
  overflow: hidden;
  text-align: center;
  pointer-events: none;
}

/* Wrapper animado */
.marquee-wrapper {
  display: inline-flex;
  width: max-content;
  animation: marquee 30s linear infinite;
}

/* Texto */
.marquee-text {
  display: inline-block;
  margin-right: 4.5em;
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(48px, 9vw, 90px);
  font-weight: 100;                 /* REALMENTE delgado */
  letter-spacing: 0.32em;           /* aire editorial */
  text-transform: uppercase;
  color: rgba(255,255,255,0.95);
  text-shadow: 0 4px 12px rgba(0,0,0,0.75);
  white-space: nowrap;
  line-height: 1;
}

/* Animación */
@keyframes marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ===============================
   Responsive refinado
============================== */

/* Tablet + móvil */
@media (max-width: 768px) {
  .marquee-container {
    bottom: 40%;
  }

  .marquee-text {
    font-size: clamp(26px, 6vw, 40px);
    letter-spacing: 0.18em;
    margin-right: 3em;
  }
}

/* Pantallas XL */
@media (min-width: 1400px) {
  .marquee-text {
    font-size: 110px;
    letter-spacing: 0.38em;
    margin-right: 6em;
  }
}

 /* CSS DE ENTREVISTAS DESTACADAS */
 .entrevistas {
 font-family: Verdana, Geneva, Tahoma, sans-serif;
}

.entrevistas h2 {
  letter-spacing: 1px;
}

.entrevistas p {
  font-size: 0.95rem;
}
/* cierre */

/* ===============================
   BLOQUE DE VIDEO DESTACADO
============================== */
.video-article {
  margin-bottom: 3rem; /* separación entre secciones */
}

.section-video {
  position: relative;
  width: 100%;
  height: 60vh; /* puedes usar 100vh para fullscreen */
  overflow: hidden;
}

.section-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.video-overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.25); /* filtro oscuro sobre video */
}

.video-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  text-align: center;
}

.video-content h1 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.video-content p {
  font-size: 1.2rem;
  letter-spacing: 1px;
}

/* cierre */

/* SECCIÓN CATEGORÍAS */
.categorias {
  margin-top: 3rem;
  margin-bottom: 3rem;
 font-family: Verdana, Geneva, Tahoma, sans-serif;
}

.categorias .categoria-figure {
  margin: 0;
  overflow: hidden;
  position: relative;
}

.categorias .categoria-img {
  width: 100%;
  height: auto;
  display: block;
  transition: filter 0.3s ease; /* para que el brillo sea suave */
}

.categorias figcaption {
  text-align: center;
  margin-top: 0.5rem;
}

.categorias figcaption h3 {
  font-size: 1.25rem;
  letter-spacing: 1px;
  font-weight: 400;
  margin: 0;
}

/* Quitar subrayado de los enlaces y títulos */
.categorias .categoria-link {
  text-decoration: none; /* quita subrayado */
  color: inherit;
}

.categorias figcaption h3 {
  text-decoration: none; /* aseguramos que h3 no tenga subrayado */
}

/* cierre */

/* ===============================
   RESET / BASE GLOBAL
============================== */
/* * {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
} */

body {
font-family: Verdana, Geneva, Tahoma, sans-serif;
  color: #333;
  line-height: 1.8;
}

/* ===============================
   FIGURAS E IMÁGENES CENTRADAS
============================== */
figure {
  margin: 0 auto 1.5em auto;
  text-align: center;
  max-width: 100%;
}

figure img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
  transition: transform 0.3s ease, filter 0.3s ease; /* para hover/animaciones */
}

figure figcaption {
  font-weight: 500;
  font-size: 1rem;
  margin-top: 0.5em;
  color: #000;
}

/* ===============================
   CENTRADO GENERAL DE BLOQUES
============================== */
section, article {
  text-align: center;
  padding: 2rem 1rem;
}

/* ===============================
   TIPOGRAFÍA PRINCIPAL DEVIN MAGAZINE
============================== */
h1 {
  font-size: 2.5rem;
 font-family: Verdana, Geneva, Tahoma, sans-serif;
  font-weight: 120;
  margin-bottom: 0.5rem;
}

h2 {
  font-size: 1rem;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  font-weight: 120;
  margin-bottom: 0.5rem;
}

h3 {
  font-size: 1.5rem;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  font-weight: 400;
  margin-bottom: 0.5rem;
}

h4 {
  font-size: 1.25rem;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  font-weight: 400;
  margin-bottom: 0.5rem;
}

h5 {
  font-size: 1rem;
 font-family: Verdana, Geneva, Tahoma, sans-serif;
  font-weight: 400;
  margin-bottom: 0.5rem;
}

/* ===============================
   PÁRRAFOS Ese bloque CSS define el estilo global de todos los párrafos (<p>) de tu web.
============================== */
/* p {
 font-family: Verdana, Geneva, Tahoma, sans-serif;
  font-size: 1rem;
  line-height: 1.8;
  text-align: justify;
  margin: 0 0 1.5em 0;
  max-width: 800px;
  color: #333;
} */

/* ===============================
   CONTENEDOR BASE
============================== */
.container {
  font-size: 1rem; /* tamaño base escalable con rem */
}

/* ===============================
   ENLACES
============================== */
a {
  text-decoration: none;
  color: #000;
  font-size: 1rem;
  font-style: normal;
  transition: all 0.3s ease;
}

a:hover {
  text-decoration: underline;
}

/* ===============================
   BOTONES ANIMADOS
============================== */
.boton-animado {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border: 2px solid #000;
  text-decoration: none;
  color: #000;
  font-weight: 500;
  transition: all 0.3s ease;
}

.boton-animado:hover {
  background-color: #000;
  color: #fff;
  transform: translateY(-3px);
}

/* ===============================
   SECCIONES PREMIUM / PRESENTACIÓN
============================== */
.section-presentacion {
  font-family: Verdana, Geneva, Tahoma, sans-serif; /* Tipografía consistente */
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem 1rem;
  color: #000; /* Color del texto */
  background-color: #fff; /* Fondo blanco opcional */
}

.section-presentacion .container {
  max-width: 900px;
}

/* Header de presentación */
.presentacion-header h1 {
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  font-weight: 700; /* negrita */
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.presentacion-header h2 {
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  font-weight: 700; /* negrita */
  font-size: 1rem; /* tamaño que me pediste */
  margin-bottom: 0.5rem;
}

.presentacion-header hr {
  width: 60px;
  height: 2px;
  background-color: #000;
  border: none;
  border-radius: 1px; /* suaviza los bordes */
  margin: 1.5rem auto;
}

/* Artículo de texto */
.presentacion-texto p {
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  font-weight: 400; /* normal */
  font-size: 1rem;
  line-height: 1.5;
  margin-bottom: 1rem;
  text-align: justify; /* opcional, más elegante para párrafos largos */
}

/* Botón animado */
.boton-container {
  margin-top: 2rem;
}

.boton-animado {
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  color: #fff;
  background-color: #000;
  padding: 0.75rem 1.5rem;
  border-radius: 5px;
  transition: all 0.3s ease;
}

.boton-animado:hover {
  background-color: #333;
  transform: translateY(-2px);
}
/* cierre */

/* =========================
   Elementos de contacto
   ========================= */
.contact-item {
  margin: 12px 0;
  font-size: 16px; /* Tamaño ligeramente reducido */
}

.section-presentacion {
  min-height: 100vh;         /* ocupa toda la altura de la ventana */
  display: flex;
  align-items: center;       /* centra verticalmente */
  justify-content: center;   /* centra horizontalmente */
  padding: 2rem 1rem;        /* espacio interno superior e inferior */
  text-align: center;        /* centra el texto */
}
/* cierre */

/* ===============================
   SECCIÓN OPEN CALL
============================== */
#open-call {
  padding: 4rem 1rem;
  background-color: #fff; /* fondo limpio */
  color: #000;
  font-family: Verdana, sans-serif;
}

#open-call h2 {
  font-family: 'Didot', serif;
  font-size: 2rem;
  font-weight: 400;
  margin-bottom: 1rem;
  text-align: left;
}

#open-call p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1rem;
  text-align: left;
}

#open-call a {
  color: #000;
  text-decoration: underline;
  transition: color 0.3s ease;
}

#open-call a:hover {
  color: #555;
}

/* ===============================
   LISTAS
============================== */
#open-call ul {
  list-style-type: disc;
  padding-left: 1.5rem;
  margin-bottom: 1.5rem;
}

#open-call ul li {
  margin-bottom: 0.5rem;
  font-size: 1rem;
  line-height: 1.6;
}

/* ===============================
   IMÁGENES
============================== */
#open-call img {
  width: 100%;
  height: auto;
  display: block;
  margin-bottom: 1rem;
}

/* ===============================
   TEXTO DE LA IMAGEN
============================== */
#open-call p.mt-2 {
  font-size: 0.95rem;
  text-align: left;
  margin-top: 0.5rem;
  color: #333;
}

/* ===============================
   COLUMNAS RESPONSIVE
============================== */
@media (max-width: 767px) {
  #open-call h2, 
  #open-call p, 
  #open-call ul, 
  #open-call p.mt-2 {
    text-align: center;
  }
}
/* cierre */

/* WORK SECTION  SOBRE LAS FOTOS ANALOGICAS*/
#work {
  background-color: #f8f9fa; /* similar a bg-light */
}

/* Título principal */
#work h2 {
  font-size: 1.6rem;
  letter-spacing: 0.08em;
  font-weight: 600;
  margin-bottom: 1.2rem;
}

/* Texto descriptivo */
#work p {
  font-size: 0.9rem;
  line-height: 1.6;
  color: #444;
}

/* Cards */
#work .card {
  border: none;
  border-radius: 0;
  background-color: #ffffff;
  box-shadow: none;   /* sin efecto */
  transition: none;   /* completamente estático */
}

/* Imagen */
#work .card-img-top {
  margin-top: 1.2rem;
  object-fit: cover;
}

/* Card body */
#work .card-body {
  padding: 1.2rem;
}

/* Ciudad */
#work .card-body h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.2rem;
}

/* Temporada */
#work .card-body h4 {
  font-size: 0.85rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #777;
  margin-bottom: 0.6rem;
}

/* Texto interior */
#work .card-body p {
  font-size: 0.75rem;
  margin-bottom: 0.3rem;
  color: #555;
}

/* Hashtags */
#work .card-body p:last-child {
  color: #999;
  font-style: italic;
}
/* cierre */

/* ==============================
   SOBRE DEVIN — COMPACTO PREMIUM
   ============================== */

#sobre-devin {
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  background-color: #ffffff;
  color: #1a1a1a;
  padding: 50px 20px; /* más compacto */
}

#sobre-devin .container {
  max-width: 700px; /* columna editorial */
  margin: 0 auto;
  text-align: left;
}

/* Header */
.sobre-devin-header {
  margin-bottom: 28px;
}

.sobre-devin-header h2 {
  font-size: 1.8rem;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 6px;
  text-transform: uppercase;
}

.sobre-devin-header h4 {
  font-size: 0.95rem;
  font-weight: 400;
  color: #555;
  margin-bottom: 12px;
  line-height: 1.4;
}

.sobre-devin-header .divider {
  width: 40px;
  height: 2px;
  background-color: #1a1a1a;
}

/* Contenido */
.sobre-devin-contenido h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 10px;
  line-height: 1.4;
}

.sobre-devin-contenido p {
  font-size: 0.95rem;
  line-height: 1.5;
  color: #333;
  margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
  #sobre-devin {
    padding: 40px 15px;
  }

  .sobre-devin-header h2 {
    font-size: 1.6rem;
  }

  .sobre-devin-contenido h3 {
    font-size: 1.05rem;
  }
}


/* cierre */


/* ============================= */
/* Footer DEVIN MAGAZINE         */
/* ============================= */

.footer {
  background-color: #ffffff; /* fondo blanco minimalista */
  color: #000000;            /* texto oscuro */
  padding: 1.5rem 0;
  border-top: 1px solid #e0e0e0; /* línea superior sutil */
  font-family: 'Lato', sans-serif;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap; /* permite que los elementos se apilen en móvil */
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.footer-left {
  margin-bottom: 0.5rem; /* espacio en móvil */
}

.footer-left p {
  margin: 0;
  font-size: 0.9rem;
  font-weight: 400;
}

.footer-social .social-list {
  display: flex;
  gap: 1rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-social .social-list li a {
  color: #000;               /* color base negro */
  font-size: 1.25rem;        /* tamaño de los íconos */
  transition: color 0.3s;    /* transición suave al hacer hover */
}

.footer-social .social-list li a:hover {
  color: #000;            /* color elegante en hover (puede ser dorado o acorde a tu branding) */
}

@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    text-align: center;
  }

  .footer-left {
    margin-bottom: 1rem;
  }
}
/* cierre */

/* Este contenedor se aplica a todas las páginas de artículos: */
.article-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center; /* centrado vertical */
  align-items: center;     /* centrado horizontal */
  min-height: 100vh;
  padding: 2rem 1rem;
  box-sizing: border-box;
}

/* Todos los artículos tendrán esta base: */
.article {
  max-width: 900px;
  width: 100%;
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  color: #111;
  font-size: 1rem;
  line-height: 1.8;
  text-align: justify;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 4rem auto 0; /* 👈 AQUÍ */
  gap: 1.5rem;
}


/* Columnas tipo revista (para Moda, Destinos, Cine…) */
.article--columns {
  column-count: 2;
  column-gap: 2rem;
}

/* Evitar división de párrafos en columnas */
.article--columns p {
  break-inside: avoid;
}

/* Artículos sin columnas (Arte, Entrevistas, Guías…) */
.article--single-column {
  column-count: 1 !important;
}

/* Header del artículo */
.article-header {
  width: 100%;
  margin-bottom: 2rem;
  column-span: all; /* rompe columnas */
}

.article-title {
  font-size: 3rem;
  line-height: 1.2;
  font-weight: 600;
  margin-bottom: 1rem;
  text-align: center;
}

.article-subtitle {
  font-size: 1.25rem;
  font-weight: 400;
  color: #555;
  margin-bottom: 1rem;
  text-align: center;
}

.article-meta {
  font-size: 0.85rem;
  color: #777;
  margin-bottom: 2rem;
  text-align: center;
}

/* Párrafos y texto destacado */
.article-body p,
.article-intro p {
  max-width: 100%;
  margin-bottom: 1.5rem;
  text-align: justify;
}

.article-body strong,
.article-intro strong {
  font-weight: 600;
  color: #000;
}

/* Galerías y figuras */
.article .galeria,
.article .galeria-extra {
  margin: 2rem 0;
  width: 100%;
  column-span: all;
}

.article figure {
  margin: 0;
  padding: 0;
  text-align: center;
}

.article figure img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 0.2rem;
}

.article figcaption {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-top: 0.5rem;
  color: #333;
  font-weight: 500;
}

/* Galerías tipo grid */
.article .galeria-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1rem;
  margin-top: 1rem;
  column-span: all;
}

.article .galeria-extra h3 {
  font-size: 1.1rem;
  font-weight: 600;
  text-align: center;
  margin-bottom: 1rem;
  color: #111;
  column-span: all;
}

/* Links, citas e imágenes */
.article a {
  color: #111;
  text-decoration: none;
  transition: opacity 0.25s ease;
}

.article a:hover {
  opacity: 0.7;
}

.article blockquote {
  font-style: italic;
  color: #444;
  border-left: 2px solid #ddd;
  padding-left: 1rem;
  margin: 1.5rem 0;
  text-align: center;
  column-span: all;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}

/* Responsive */
@media (max-width: 1024px) {
  .article--columns {
    column-count: 1;
  }
}

@media (max-width: 768px) {
  .article-title {
    font-size: 2rem;
  }

  .article-subtitle {
    font-size: 1rem;
  }

  .article-body p {
    font-size: 0.95rem;
  }

  .article .galeria-grid {
    grid-template-columns: 1fr;
  }
}

/* Tu CSS de galería quedaría así y aplicará a todas las galerías: */
/* Compatible con artículos en columnas o en una sola columna. */
.galeria {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin: 2rem 0;
}

.galeria figure {
  flex: 1 1 300px; /* ancho mínimo de 300px y flexible */
  margin: 0;
  text-align: center;
}

.galeria img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 0.2rem;
}

.galeria figcaption {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 0.5rem;
  color: #333;
}


/* ==============================
   BLOQUE QUIÉNES SOMOS - COMPACTO
   ============================== */

.section-quienes-somos {
  font-family: 'Playfair Display', serif;
  background-color: #ffffff;
  color: #1a1a1a;
  padding: 60px 20px; /* Más compacto que antes */
}

.container {
  max-width: 800px;
  margin: 0 auto;
}

/* Header compacto */
.section-header {
  text-align: center;
  margin-bottom: 30px; /* reducido */
}

.section-header h2 {
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.section-divider {
  width: 50px;
  height: 2px;
  background-color: #1a1a1a;
  margin: 0 auto;
  border-radius: 2px;
}

/* Descripción revista */
.descripcion-revista p {
  font-size: 1rem;
  color: #333;
  margin-bottom: 16px; /* menos espacio */
  line-height: 1.5; /* más compacto */
}

.descripcion-revista a {
  color: #1a1a1a;
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid rgba(26,26,26,0.3);
  transition: all 0.3s ease;
}

.descripcion-revista a:hover {
  color: #000;
  border-bottom-color: #000;
}

/* Separador */
.section-separator {
  border: none;
  border-top: 1px solid rgba(26,26,26,0.1);
  margin: 40px 0; /* menos espacio */
}

/* Bloque autora */
.bloque-autora h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  margin-bottom: 5px;
  font-weight: 700;
}

.bloque-autora h4 {
  font-size: 0.95rem;
  font-weight: 400;
  color: #555;
  margin-bottom: 15px;
  font-style: italic;
}

.bloque-autora p {
  font-size: 1rem;
  color: #333;
  margin-bottom: 16px; /* más compacto */
  line-height: 1.5;
}

.firma-autora {
  margin-top: 20px; /* menos espacio */
  font-weight: 700;
  font-style: italic;
  font-size: 1rem;
  text-align: right;
  color: #1a1a1a;
}

/* Responsive */
@media (max-width: 768px) {
  .section-quienes-somos {
    padding: 40px 15px;
  }

  .section-header h2 {
    font-size: 1.75rem;
  }

  .bloque-autora h3 {
    font-size: 1.3rem;
  }

  .bloque-autora h4 {
    font-size: 0.9rem;
  }
}

 
/* css para bloque de contactanos */
/* ==============================
   BLOQUE CONTACTANOS COMPACTO - DEVIN MAGAZINE
   ============================== */

.section-contactanos {
  font-family: 'Playfair Display', serif;
  background-color: #ffffff;
  color: #1a1a1a;
  padding: 60px 20px; /* Más compacto */
}

.section-contactanos .container {
  max-width: 600px; /* Columna poderosa y estrecha */
  margin: 0;
  text-align: left; /* Todo alineado a la izquierda */
}

/* Header compacto */
.section-contactanos .section-header {
  margin-bottom: 40px;
}

.section-contactanos .section-header h2 {
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.section-contactanos .section-divider {
  width: 50px;
  height: 2px;
  background-color: #1a1a1a;
  margin-bottom: 15px;
  border-radius: 2px;
}

.section-contactanos .section-intro {
  font-size: 1rem;
  color: #333;
  margin-bottom: 30px;
  line-height: 1.6;
}

/* Información de contacto - columna izquierda poderosa */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 12px; /* Compacto */
  font-size: 1rem;
  line-height: 1.5;
}

.contact-info p {
  margin: 0;
}

.contact-info strong {
  font-weight: 700;
  color: #1a1a1a;
  width: 120px; /* ancho fijo para alinear los valores */
  display: inline-block;
}

.contact-info a {
  color: #1a1a1a;
  text-decoration: none;
  border-bottom: 1px solid rgba(26,26,26,0.3);
  transition: all 0.3s ease;
}

.contact-info a:hover {
  border-bottom-color: #000;
  color: #000;
}

/* Responsive compacto */
@media (max-width: 768px) {
  .section-contactanos {
    padding: 40px 15px;
  }

  .section-contactanos .container {
    max-width: 100%;
  }

  .section-contactanos .section-header h2 {
    font-size: 1.75rem;
  }

  .contact-info strong {
    width: 110px;
  }
}
 /* CSS GIfS */
 .gif-impact {
  width: 100%;
  max-width: 1000px;       /* tamaño máximo en escritorio */
  margin: 100px auto;      /* espacio generoso arriba y abajo */
  text-align: center;
  padding: 0;              /* sin padding extra, aire limpio */
}

.gif-impact img {
  width: 90%;              /* ocupa casi todo el ancho disponible */
  max-width: 900px;        /* tamaño máximo para pantallas grandes */
  height: auto;
  display: block;
  margin: 0 auto;          /* centrado horizontal */
  cursor: default;         /* sin interacción de hover */
}

/* Responsive para móviles */
@media (max-width: 768px) {
  .gif-impact {
    margin: 60px auto;     /* menos espacio arriba y abajo en móviles */
  }
  .gif-impact img {
    width: 95%;            /* ocupa más ancho en pantallas pequeñas */
  }
}
 