:root {
  --bg: #050505;
  --bg-soft: #0d0d0d;
  --bg-panel: rgba(255, 255, 255, 0.035);
  --gold: #c89b4a;
  --gold-soft: #e0be7a;
  --gold-light: #f2dc9b;
  --gold-faint: rgba(200, 155, 74, 0.12);
  --white: #f6f4ef;
  --muted: #b7b0a2;
  --line: rgba(200, 155, 74, 0.22);
  --line-strong: rgba(200, 155, 74, 0.42);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.55);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 20% 10%, rgba(200, 155, 74, 0.10), transparent 28%),
    radial-gradient(circle at 80% 30%, rgba(255, 255, 255, 0.035), transparent 25%),
    linear-gradient(180deg, #020202 0%, #090909 100%);
  color: var(--white);
  font-family: "Inter", sans-serif;
  overflow-x: hidden;
}

.page-glow {
  position: fixed;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  filter: blur(125px);
  opacity: 0.14;
  pointer-events: none;
  z-index: 0;
}

.glow-1 {
  background: #d4a64e;
  top: -140px;
  left: -130px;
}

.glow-2 {
  background: #8d6b34;
  bottom: -190px;
  right: -160px;
}

/* =========================
   Animación ambiental premium
========================= */

.luxury-ambient {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
  opacity: 1;
}

.luxury-ambient::before {
  content: "";
  position: absolute;
  inset: -20%;
  background:
    radial-gradient(circle at 18% 22%, rgba(200,155,74,0.18), transparent 28%),
    radial-gradient(circle at 82% 42%, rgba(242,220,155,0.09), transparent 30%),
    radial-gradient(circle at 50% 92%, rgba(200,155,74,0.12), transparent 34%);
  filter: blur(22px);
  animation: luxuryGlowMove 24s ease-in-out infinite alternate;
}

.luxury-ambient::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      115deg,
      transparent 0%,
      transparent 42%,
      rgba(242,220,155,0.045) 48%,
      rgba(200,155,74,0.075) 50%,
      rgba(242,220,155,0.045) 52%,
      transparent 58%,
      transparent 100%
    );
  transform: translateX(-65%);
  animation: luxuryShimmer 16s ease-in-out infinite;
}

@keyframes luxuryGlowMove {
  0% {
    transform: translate3d(-2vw, -1vh, 0) scale(1);
  }

  50% {
    transform: translate3d(4vw, 2vh, 0) scale(1.05);
  }

  100% {
    transform: translate3d(-1vw, 4vh, 0) scale(1.12);
  }
}

@keyframes luxuryShimmer {
  0% {
    transform: translateX(-70%);
    opacity: 0;
  }

  18% {
    opacity: 0.75;
  }

  42% {
    transform: translateX(70%);
    opacity: 0;
  }

  100% {
    transform: translateX(70%);
    opacity: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .luxury-ambient::before,
  .luxury-ambient::after {
    animation: none;
  }
}

.site-header,
main,
.site-footer {
  position: relative;
  z-index: 2;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(5, 5, 5, 0.72);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.045);
}

.header-inner {
  width: min(1240px, 92%);
  margin: 0 auto;
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.main-logo {
  width: 245px;
  height: auto;
  display: block;
}

.menu-toggle {
  display: none;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.025);
  color: var(--gold-light);
  padding: 10px 14px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 11px;
  cursor: pointer;
}

.main-nav {
  display: flex;
  gap: 24px;
}

.main-nav a {
  color: rgba(255, 255, 255, 0.84);
  text-decoration: none;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: 0.25s ease;
}

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

.hero-section {
  min-height: auto;
  padding: 54px 20px 105px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-video-wrap {
  width: min(1180px, 96%);
  aspect-ratio: 16 / 9;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  background: #000;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Esto oscurece el video para que se vea elegante y no compita tanto */
.hero-video-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.10), rgba(0,0,0,0.62)),
    radial-gradient(circle at center, rgba(200,155,74,0.08), rgba(0,0,0,0.30));
  pointer-events: none;
}

.hero-video-border {
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(224, 190, 122, 0.22);
  pointer-events: none;
}

.hero-frame {
  width: min(980px, 94%);
  text-align: center;
  margin-top: 34px;
  padding: 52px 40px;
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(10,10,10,0.88), rgba(10,10,10,0.72));
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow);
  position: relative;
}

.hero-frame::before,
.hero-frame::after {
  content: "";
  position: absolute;
  width: 72px;
  height: 72px;
  border-color: var(--gold-faint);
  border-style: solid;
}

.hero-frame::before {
  top: 18px;
  left: 18px;
  border-width: 1px 0 0 1px;
}

.hero-frame::after {
  right: 18px;
  bottom: 18px;
  border-width: 0 1px 1px 0;
}

.eyebrow,
.section-title p {
  color: var(--gold-soft);
  text-transform: uppercase;
  letter-spacing: 4px;
  font-size: 12px;
  margin: 0 0 18px;
}

.hero-editorial-title {
  max-width: 760px;
  margin: 0 auto 24px;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(38px, 5vw, 72px);
  font-weight: 600;
  line-height: 1.05;
  color: var(--white);
}

.hero-text {
  max-width: 700px;
  margin: 0 auto 34px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.9;
}

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

.primary-button,
.secondary-button {
  display: inline-block;
  padding: 14px 28px;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 2px;
  transition: 0.25s ease;
}

.primary-button {
  background: linear-gradient(135deg, #c89b4a, #ebca87);
  color: #111;
  border: 1px solid transparent;
}

.primary-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(200, 155, 74, 0.22);
}

.secondary-button {
  border: 1px solid var(--line);
  color: var(--white);
  background: rgba(255,255,255,0.02);
}

.secondary-button:hover {
  border-color: var(--gold);
  color: var(--gold-soft);
}

.magazine-section,
.notice-section,
.past-editions-section,
.ads-section,
.contact-section {
  padding: 95px 20px;
}

.section-title {
  text-align: center;
  margin-bottom: 42px;
}

.section-title h2 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(42px, 5vw, 76px);
  font-weight: 600;
  color: var(--white);
}

.edition-card {
  width: min(1180px, 94%);
  margin: 0 auto;
  padding: 38px 24px 32px;
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.035), rgba(255,255,255,0.015));
  box-shadow: var(--shadow);
}

.edition-info {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 32px;
}

.edition-tag {
  display: inline-block;
  margin-bottom: 14px;
  padding: 7px 12px;
  border: 1px solid var(--line);
  color: var(--gold-soft);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  background: rgba(255,255,255,0.02);
}

.edition-info h3 {
  margin: 0 0 14px;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(34px, 4vw, 52px);
  font-weight: 600;
}

.edition-info p {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}

.magazine-wrapper {
  display: flex;
  justify-content: center;
  width: 100%;
  overflow: hidden;
  padding: 16px 0;
}

.cover-preview {
  width: 420px;
  height: 595px;
  position: relative;
  cursor: pointer;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 18px 45px rgba(0,0,0,0.32);
  transition: opacity 0.45s ease, transform 0.45s ease;
}

.cover-preview img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  background: #ffffff;
}

.cover-preview-overlay {
  position: absolute;
  inset: auto 0 0 0;
  padding: 22px;
  text-align: center;
  background: linear-gradient(180deg, transparent, rgba(0,0,0,0.72));
}

.cover-preview-overlay span {
  color: var(--gold-light);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 11px;
}

.cover-preview:hover {
  transform: translateY(-4px);
}

.cover-preview.hide-cover {
  opacity: 0;
  transform: scale(0.98);
  pointer-events: none;
}

.magazine-hidden {
  display: none !important;
}

.magazine-visible {
  display: block !important;
}

#magazine {
  width: 840px;
  height: 595px;
  box-shadow: 0 18px 50px rgba(0,0,0,0.32);
}

.page {
  background: #f7f2e8;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
  display: block;
  background: #f7f2e8;
}

.photo-draft-page {
  background: #f7f2e8;
  display: flex;
  align-items: center;
  justify-content: center;
}

.photo-draft-page img {
  object-fit: contain;
  object-position: center center;
  background: #f7f2e8;
}

.closing-page {
  background:
    radial-gradient(circle at center, rgba(200,155,74,0.18), transparent 52%),
    linear-gradient(180deg, #090909, #000000);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
}

.closing-page-content {
  width: 100%;
  height: 100%;
  border: 1px solid rgba(200,155,74,0.35);
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 42px;
}

.closing-page-content span {
  color: var(--gold-soft);
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 11px;
}

.closing-page-content h3 {
  margin: 18px 0 10px;
  font-family: "Cormorant Garamond", serif;
  font-size: 58px;
  font-weight: 600;
  color: var(--gold-light);
}

.closing-page-content p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.final-page .closing-page-content h3 {
  font-size: 96px;
}

.magazine-controls {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: 24px;
  flex-wrap: wrap;
}

.magazine-controls button {
  min-width: 140px;
  padding: 12px 18px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.02);
  color: var(--white);
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 1.7px;
  font-size: 12px;
  transition: 0.25s ease;
}

.magazine-controls button:hover {
  border-color: var(--gold);
  color: var(--gold-soft);
  transform: translateY(-1px);
}

/* Pizarrón */

.notice-section {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.01), rgba(200,155,74,0.035));
}

.notice-board {
  width: min(1180px, 94%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.95fr 1.35fr;
  gap: 24px;
}

.notice-feature,
.notice-item {
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.015));
  box-shadow: var(--shadow);
}

.notice-feature {
  min-height: 440px;
  padding: 42px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
  overflow: hidden;
}

.notice-feature::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(224, 190, 122, 0.16);
  pointer-events: none;
}

.notice-feature::after {
  content: "PV";
  position: absolute;
  top: 12px;
  right: 26px;
  font-family: "Cormorant Garamond", serif;
  font-size: 150px;
  color: rgba(200, 155, 74, 0.055);
  line-height: 1;
}

.notice-feature span,
.notice-item span,
.past-edition-card span,
.brand-showcase-title span {
  color: var(--gold-soft);
  text-transform: uppercase;
  letter-spacing: 2.4px;
  font-size: 11px;
}

.notice-feature h3 {
  margin: 16px 0 14px;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(38px, 4vw, 58px);
  font-weight: 600;
  line-height: 1;
}

.notice-feature p,
.notice-item p,
.past-edition-card p {
  color: var(--muted);
  line-height: 1.8;
  margin: 0;
}

.notice-list {
  display: grid;
  gap: 24px;
}

.notice-item {
  padding: 30px;
  min-height: 130px;
}

.notice-item h4 {
  margin: 12px 0 8px;
  font-family: "Cormorant Garamond", serif;
  font-size: 30px;
  font-weight: 600;
}

/* Ediciones anteriores */

.editions-grid {
  width: min(1180px, 94%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.past-edition-card {
  min-height: 300px;
  padding: 30px;
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.035), rgba(255,255,255,0.012));
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  transition: 0.25s ease;
}

.past-edition-card:hover {
  transform: translateY(-4px);
  border-color: var(--line-strong);
}

.active-edition {
  background:
    linear-gradient(180deg, rgba(200,155,74,0.12), rgba(255,255,255,0.02));
}

.past-edition-card h3 {
  margin: 16px 0 12px;
  font-family: "Cormorant Garamond", serif;
  font-size: 38px;
  font-weight: 600;
}

.past-edition-card a {
  margin-top: 24px;
  color: var(--gold-light);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1.8px;
  font-size: 12px;
}

.past-edition-card a:hover {
  color: var(--white);
}

/* Anuncios */

.ads-grid {
  width: min(1180px, 94%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.ad-card {
  min-height: 270px;
  padding: 30px;
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(200,155,74,0.08), rgba(255,255,255,0.02));
  box-shadow: var(--shadow);
  transition: 0.25s ease;
}

.ad-card:hover {
  transform: translateY(-4px);
  border-color: rgba(200,155,74,0.38);
}

.ad-card span {
  color: var(--gold-soft);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.ad-card h3 {
  margin: 18px 0 12px;
  font-family: "Cormorant Garamond", serif;
  font-size: 36px;
  font-weight: 600;
  line-height: 1.05;
  color: var(--white);
}

.ad-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}

.brand-showcase {
  width: min(1180px, 94%);
  margin: 34px auto 0;
  padding: 28px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.02);
}

.brand-showcase-title {
  text-align: center;
  margin-bottom: 22px;
}

.brand-showcase-title h3 {
  margin: 10px 0 0;
  font-family: "Cormorant Garamond", serif;
  font-size: 38px;
  font-weight: 600;
}

.brand-slots {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}

.brand-slot {
  min-height: 88px;
  border: 1px solid rgba(200,155,74,0.16);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(246,244,239,0.58);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
  background: rgba(0,0,0,0.18);
}

/* Contacto */

.contact-section {
  padding-top: 70px;
}

.contact-box {
  width: min(960px, 94%);
  margin: 0 auto;
  padding: 50px 24px;
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.035), rgba(255,255,255,0.015));
  text-align: center;
  box-shadow: var(--shadow);
}

.contact-text {
  color: var(--muted);
  margin-bottom: 10px;
}

.contact-link {
  display: inline-block;
  margin-top: 8px;
  color: var(--gold-soft);
  text-decoration: none;
  font-size: 24px;
  font-family: "Cormorant Garamond", serif;
  letter-spacing: 1px;
}

.contact-link:hover {
  color: var(--white);
}

.site-footer {
  padding: 28px 20px 36px;
  text-align: center;
  color: rgba(255,255,255,0.55);
  font-size: 13px;
}

/* Animaciones suaves */

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.whatsapp-link {
  width: fit-content;
  margin: 22px auto 0;
  padding: 13px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.025);
  color: var(--gold-soft);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1.8px;
  font-size: 12px;
  transition: 0.25s ease;
}

.whatsapp-link:hover {
  border-color: var(--gold);
  color: #111;
  background: linear-gradient(135deg, #c89b4a, #ebca87);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(200, 155, 74, 0.18);
}

.whatsapp-icon {
  width: 22px;
  height: 22px;
  fill: currentColor;
  display: block;
}
/* Responsive */

@media (max-width: 1050px) {
  .header-inner {
    flex-direction: column;
    gap: 16px;
  }

  .main-nav {
    gap: 14px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .notice-board {
    grid-template-columns: 1fr;
  }

  .editions-grid,
  .ads-grid {
    grid-template-columns: 1fr;
  }

  .brand-slots {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .main-logo {
    width: 210px;
  }

  .hero-section {
    min-height: auto;
    padding-top: 28px;
  }

  .hero-video-wrap {
    width: 100%;
  }

  .hero-video-border {
    inset: 10px;
  }

  .hero-frame {
    margin-top: 26px;
    padding: 42px 22px;
  }

  .hero-editorial-title {
    font-size: clamp(34px, 10vw, 48px);
  }

  .hero-text {
    font-size: 15px;
  }

  #magazine {
    width: 300px;
    height: 425px;
  }

  .section-title h2 {
    font-size: 42px;
  }

  .notice-feature {
    min-height: 360px;
    padding: 32px;
  }

  .notice-feature::after {
    font-size: 110px;
  }

  .notice-item h4,
  .ad-card h3 {
    font-size: 28px;
  }

  .brand-slots {
    grid-template-columns: 1fr;
  }

  .contact-link {
    font-size: 20px;
    word-break: break-word;
  }

  
}

/* =========================
   Mejoras responsive generales
   PURA VIDA Magazine
========================= */

/* Evita que el header coma demasiado espacio */
@media (max-width: 900px) {
  .site-header {
    position: sticky;
    top: 0;
  }

  .header-inner {
    width: 94%;
    padding: 10px 0;
    gap: 10px;
  }

  .main-logo {
    width: 150px;
  }

  .main-nav {
    width: 100%;
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-start;
    gap: 18px;
    overflow-x: auto;
    padding: 6px 2px 4px;
    scrollbar-width: none;
  }

  .main-nav::-webkit-scrollbar {
    display: none;
  }

  .main-nav a {
    flex: 0 0 auto;
    font-size: 10px;
    letter-spacing: 1.5px;
  }
}

/* Celular vertical */
@media (max-width: 768px) {
  body {
    overflow-x: hidden;
  }

  .hero-section {
    padding: 24px 12px 52px;
  }

  .hero-video-wrap {
    width: 100%;
    aspect-ratio: 16 / 9;
  }

  .hero-frame {
    width: 100%;
    margin-top: 20px;
    padding: 30px 18px;
  }

  .hero-editorial-title {
    font-size: clamp(30px, 9vw, 44px);
  }

  .hero-text {
    font-size: 14px;
    line-height: 1.7;
  }

  .hero-actions {
    gap: 10px;
  }

  .primary-button,
  .secondary-button {
    width: 100%;
    max-width: 280px;
    text-align: center;
    padding: 13px 18px;
  }

  .magazine-section,
  .notice-section,
  .past-editions-section,
  .ads-section,
  .contact-section {
    padding: 58px 10px;
  }

  .section-title {
    margin-bottom: 26px;
  }

  .section-title h2 {
    font-size: clamp(34px, 10vw, 46px);
    line-height: 1;
  }

  .edition-card {
    width: 100%;
    padding: 24px 8px 28px;
  }

  .edition-info {
    margin-bottom: 20px;
    padding: 0 8px;
  }

  .edition-info h3 {
    font-size: 34px;
  }

  .edition-info p {
    font-size: 14px;
    line-height: 1.6;
  }

  .magazine-wrapper {
    padding: 8px 0;
    overflow: hidden;
  }

  .cover-preview {
    --cover-width: min(88vw, 360px);
    width: var(--cover-width);
    height: calc(var(--cover-width) * 1.4167);
  }

  #magazine {
    --magazine-width: min(92vw, 360px);
    width: var(--magazine-width) !important;
    height: calc(var(--magazine-width) * 1.4167) !important;
  }

  .magazine-controls {
    margin-top: 18px;
    gap: 10px;
  }

  .magazine-controls button {
    min-width: 0;
    width: 44%;
    padding: 12px 10px;
    font-size: 11px;
  }

  .notice-feature,
  .notice-item,
  .past-edition-card,
  .ad-card,
  .contact-box {
    padding: 24px;
  }

  .notice-feature {
    min-height: 300px;
  }

  .contact-link {
    font-size: 18px;
  }
}

/* Celular en orientación horizontal: mostrar revista abierta en doble página */
@media (max-height: 520px) and (orientation: landscape) {
  .site-header {
    position: sticky;
    top: 0;
  }

  .header-inner {
    flex-direction: row;
    width: 96%;
    padding: 6px 0;
    gap: 12px;
  }

  .main-logo {
    width: 105px;
  }

  .main-nav {
    width: auto;
    flex: 1;
    justify-content: flex-end;
    gap: 14px;
    padding: 0;
    overflow-x: auto;
  }

  .main-nav a {
    font-size: 9px;
    letter-spacing: 1.3px;
  }

  .hero-section {
    padding: 18px 12px 38px;
  }

  .hero-frame {
    padding: 22px 18px;
  }

  .hero-editorial-title {
    font-size: 32px;
  }

  .hero-text {
    display: none;
  }

  .magazine-section {
    padding: 28px 8px;
  }

  .section-title {
    margin-bottom: 14px;
  }

  .section-title h2 {
    font-size: 32px;
  }

  .edition-card {
    padding: 14px 8px 18px;
  }

  .edition-info {
    margin-bottom: 12px;
  }

  .edition-info p {
    display: none;
  }

  .edition-info h3 {
    font-size: 28px;
    margin-bottom: 4px;
  }

  .edition-tag {
    margin-bottom: 8px;
  }

  .cover-preview {
    --cover-height: min(68vh, 390px);
    height: var(--cover-height);
    width: calc(var(--cover-height) / 1.4167);
  }

  /* Acá está la clave:
     en horizontal usamos ancho doble para que entren 2 páginas */
  #magazine {
    --magazine-height: min(68vh, 390px);
    height: var(--magazine-height) !important;
    width: calc((var(--magazine-height) / 1.4167) * 2) !important;
    max-width: 94vw;
  }

  .magazine-wrapper {
    overflow: hidden;
    padding: 4px 0;
  }

  .magazine-controls {
    margin-top: 10px;
    gap: 10px;
  }

  .magazine-controls button {
    width: auto;
    min-width: 120px;
    padding: 10px 12px;
    font-size: 10px;
  }
}

/* Tablet y notebook chica */
@media (min-width: 769px) and (max-width: 1180px) {
  .header-inner {
    width: 94%;
  }

  .main-logo {
    width: 180px;
  }

  .main-nav {
    gap: 18px;
  }

  .main-nav a {
    font-size: 10px;
  }

  .edition-card {
    width: 96%;
  }

  #magazine {
    max-width: 92vw;
  }
}

/* =========================
   Modo lectura pantalla completa
========================= */

body.magazine-fullscreen {
  overflow: hidden;
}

body.magazine-fullscreen .site-header,
body.magazine-fullscreen .hero-section,
body.magazine-fullscreen .section-title,
body.magazine-fullscreen .edition-info,
body.magazine-fullscreen .notice-section,
body.magazine-fullscreen .past-editions-section,
body.magazine-fullscreen .ads-section,
body.magazine-fullscreen .contact-section,
body.magazine-fullscreen .site-footer {
  display: none !important;
}

body.magazine-fullscreen .magazine-section {
  position: fixed;
  inset: 0;
  z-index: 9999;
  padding: 0;
  background:
    radial-gradient(circle at center, rgba(200,155,74,0.12), transparent 45%),
    #050505;
  display: flex;
  align-items: center;
  justify-content: center;
}

body.magazine-fullscreen .edition-card {
  width: 100vw;
  height: 100vh;
  padding: 8px;
  border: none;
  box-shadow: none;
  background: transparent;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

body.magazine-fullscreen .magazine-wrapper {
  flex: 1;
  width: 100%;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

body.magazine-fullscreen #magazine {
  width: min(96vw, calc(90vh * 2 / 1.4167)) !important;
  height: min(90vh, calc(96vw / 2 * 1.4167)) !important;
  box-shadow: 0 18px 55px rgba(0,0,0,0.65);
}

body.magazine-fullscreen .cover-preview {
  width: min(90vw, calc(84vh / 1.4167));
  height: min(84vh, calc(90vw * 1.4167));
}

body.magazine-fullscreen .magazine-controls {
  margin-top: 8px;
  padding-bottom: 6px;
}

body.magazine-fullscreen .magazine-controls button {
  min-width: 110px;
  padding: 10px 12px;
  font-size: 10px;
}

body.magazine-fullscreen #fullscreenMagazine::after {
  content: " / salir";
}

/* En celular vertical, pantalla completa sigue mostrando una hoja */
@media (orientation: portrait) {
  body.magazine-fullscreen #magazine {
    width: min(94vw, calc(84vh / 1.4167)) !important;
    height: min(84vh, calc(94vw * 1.4167)) !important;
  }
}

/* En celular horizontal, pantalla completa muestra doble página */
@media (orientation: landscape) {
  body.magazine-fullscreen #magazine {
    width: min(96vw, calc(86vh * 2 / 1.4167)) !important;
    height: min(86vh, calc(96vw / 2 * 1.4167)) !important;
  }
}
body.magazine-fullscreen .magazine-visible {
  display: block !important;
}

body.magazine-fullscreen .page {
  display: flex;
  align-items: center;
  justify-content: center;
}

body.magazine-fullscreen .page img {
  object-fit: contain;
  object-position: center center;
}

/* =========================
   Menú responsive elegante
========================= */

@media (max-width: 900px) {
  .site-header {
    position: sticky;
    top: 0;
    z-index: 100;
  }

  .header-inner {
    width: 94%;
    padding: 10px 0;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    position: relative;
  }

  .main-logo {
    width: 118px;
  }

  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .main-nav {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    width: 100%;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px;
    border: 1px solid var(--line);
    background:
      linear-gradient(180deg, rgba(10,10,10,0.98), rgba(0,0,0,0.96));
    box-shadow: 0 18px 45px rgba(0,0,0,0.45);
    backdrop-filter: blur(16px);
  }

  .main-nav.is-open {
    display: flex;
  }

  .main-nav a {
    padding: 14px 12px;
    border-bottom: 1px solid rgba(200,155,74,0.12);
    font-size: 11px;
    letter-spacing: 2px;
    color: rgba(255,255,255,0.88);
  }

  .main-nav a:last-child {
    border-bottom: none;
  }
}

/* =========================
   Footer y páginas internas
========================= */

.footer-links {
  width: min(980px, 94%);
  margin: 0 auto 18px;
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}

.footer-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1.6px;
  transition: 0.25s ease;
}

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

.inner-page {
  min-height: 100vh;
  padding: 70px 20px 90px;
}

.inner-page-card {
  width: min(980px, 94%);
  margin: 0 auto;
  padding: 54px 46px;
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.035), rgba(255,255,255,0.015));
  box-shadow: var(--shadow);
}

.inner-page-card h1 {
  margin: 0 0 24px;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(42px, 6vw, 72px);
  font-weight: 600;
}

.inner-page-card h2 {
  margin: 38px 0 14px;
  font-family: "Cormorant Garamond", serif;
  font-size: 34px;
  font-weight: 600;
  color: var(--gold-light);
}

.inner-page-card p,
.inner-page-card li {
  color: var(--muted);
  line-height: 1.85;
  font-size: 15px;
}

.inner-page-card ul {
  padding-left: 20px;
}

.inner-page-card a {
  color: var(--gold-soft);
}

.back-home {
  display: inline-block;
  margin-bottom: 32px;
  color: var(--gold-soft);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1.8px;
  font-size: 12px;
}

@media (max-width: 768px) {
  .inner-page {
    padding: 42px 12px 70px;
  }

  .inner-page-card {
    padding: 34px 22px;
  }

  .footer-links {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }
}
.hero-section,
.magazine-section,
.past-editions-section,
.ads-section,
.contact-section {
  position: relative;
}

.hero-section::before,
.magazine-section::before,
.past-editions-section::before,
.ads-section::before,
.contact-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 12% 20%, rgba(200,155,74,0.055), transparent 28%),
    radial-gradient(circle at 88% 70%, rgba(242,220,155,0.035), transparent 30%);
  z-index: -1;
}

.download-button {
  display: inline-block;
  margin: 16px 0 10px;
  padding: 14px 24px;
  border: 1px solid var(--line);
  background: linear-gradient(135deg, rgba(200,155,74,0.92), rgba(242,220,155,0.92));
  color: #111 !important;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1.8px;
  font-size: 12px;
  font-weight: 600;
  transition: 0.25s ease;
}

.download-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(200, 155, 74, 0.22);
}
.budget-actions .download-button {
  margin: 0;
}

.budget-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin: 18px 0 10px;
}

.budget-actions .download-button,
.budget-actions .secondary-download-button {
  min-width: 190px;
  height: 46px;
  padding: 0 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  text-align: center;
}

.secondary-download-button {
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.018);
  color: var(--gold-light) !important;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1.8px;
  font-size: 12px;
  font-weight: 600;
  transition: 0.25s ease;
}

.secondary-download-button:hover {
  border-color: var(--gold);
  color: var(--white) !important;
  transform: translateY(-2px);
}

/* =========================
   Banner premium anunciante
========================= */

.premium-banner {
  width: min(1180px, 94%);
  margin: 38px auto 0;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #000;
  box-shadow: var(--shadow);
}

.premium-banner img {
  width: 100%;
  display: block;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

/* Botones reales sobre el banner */
.premium-banner-actions {
  position: absolute;
  left: 5.8%;
  bottom: 5.2%;
  z-index: 5;
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: center;
}

/* Botón estilo imagen original */
.premium-action-button {
  width: 270px;
  min-height: 72px;
  padding: 12px 18px;
  display: flex;
  align-items: center;
  gap: 16px;
  border: 1px solid rgba(224, 190, 122, 0.82);
  border-radius: 10px;
  background:
    linear-gradient(180deg, rgba(10,10,10,0.88), rgba(0,0,0,0.76));
  color: var(--white);
  text-decoration: none;
  box-shadow:
    0 12px 32px rgba(0,0,0,0.42),
    inset 0 0 0 1px rgba(255,255,255,0.025);
  backdrop-filter: blur(5px);
  transition: 0.25s ease;
}

.premium-action-button:hover {
  transform: translateY(-2px);
  border-color: var(--gold-light);
  background:
    linear-gradient(180deg, rgba(22,16,9,0.94), rgba(0,0,0,0.82));
  box-shadow:
    0 16px 38px rgba(0,0,0,0.52),
    0 0 22px rgba(200,155,74,0.18);
}

.premium-icon {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #f26d55;
  flex: 0 0 auto;
}

.whatsapp-button .premium-icon {
  color: var(--gold-soft);
}

.premium-icon svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
  display: block;
}

.premium-divider {
  width: 1px;
  height: 42px;
  background: rgba(224, 190, 122, 0.62);
  flex: 0 0 auto;
}

.premium-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
  line-height: 1.1;
}

.premium-action-button strong {
  color: #f26d55;
  font-family: "Cormorant Garamond", serif;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0.4px;
  text-transform: none;
}

.whatsapp-button strong {
  color: #f26d55;
}

.premium-action-button small {
  color: rgba(246,244,239,0.92);
  font-size: 16px;
  letter-spacing: 0.2px;
}

/* Responsive */
@media (max-width: 768px) {
  .premium-banner {
    width: 100%;
    margin-top: 28px;
  }

  .premium-banner img {
    aspect-ratio: 16 / 10;
    object-position: center;
  }

  .premium-banner-actions {
    position: static;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 14px;
    background: rgba(0,0,0,0.86);
    border-top: 1px solid var(--line);
  }

  .premium-action-button {
    width: 100%;
    min-height: 64px;
  }

  .premium-action-button strong {
    font-size: 20px;
  }

  .premium-action-button small {
    font-size: 15px;
  }
}
/* =========================
   Marcas destacadas
========================= */

.featured-brands-grid {
  width: min(1080px, 94%);
  margin: 28px auto 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.featured-brand-card {
  min-height: 92px;
  border: 1px solid rgba(200,155,74,0.28);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.025), rgba(0,0,0,0.22));
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-decoration: none;
  position: relative;
  transition: 0.25s ease;
}

.featured-brand-card:hover {
  transform: translateY(-3px);
  border-color: var(--gold);
  box-shadow: 0 14px 32px rgba(0,0,0,0.35);
}

.featured-brand-card span {
  color: rgba(255,255,255,0.45);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 12px;
  font-weight: 600;
}

.featured-brand-card img {
  width: 100%;
  height: 100%;
  min-height: 92px;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* Para que Classique se vea como pieza premium */
.brand-classique img {
  filter: saturate(1.03) contrast(1.03);
}

/* Responsive */
@media (max-width: 900px) {
  .featured-brands-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .featured-brands-grid {
    grid-template-columns: 1fr;
  }

  .featured-brand-card {
    min-height: 130px;
  }

  .featured-brand-card img {
    min-height: 130px;
  }
}

/* Imagen dentro de marcas destacadas */

.brand-slot-image {
  padding: 0;
  overflow: hidden;
  position: relative;
}

.brand-slot-image img {
  width: 100%;
  height: 100%;
  min-height: 92px;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: 0.35s ease;
}

.brand-slot-image:hover img {
  transform: scale(1.04);
  filter: saturate(1.06) contrast(1.04);
}
.brand-slot-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
  background: #050505;
  overflow: hidden;
}

.brand-slot-logo img {
  max-width: 100%;
  max-height: 100px;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.brand-slot-logo:hover img {
  transform: scale(1.04);
  opacity: 0.95;
}
/* Ajuste especial para logo Crowd Studio */

.brand-slot-crowd img {
  max-width: 100%;
  max-height: 100px;
  object-fit: contain;
}

.brand-slot-crowd {
  background: #050505;
}

@media (max-width: 1000px) {
  .brand-slots {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 680px) {
  .brand-slots {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 460px) {
  .brand-slots {
    grid-template-columns: 1fr;
  }

  .brand-slot {
    min-height: 120px;
  }

  .brand-slot-logo img {
    max-height: 82px;
  }
}

/* =========================
   Modal sedes Classique
========================= */

.classique-contact-modal {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(0,0,0,0.72);
  backdrop-filter: blur(8px);
}

.classique-contact-modal.is-open {
  display: flex;
}

.classique-modal-box {
  width: min(420px, 94%);
  position: relative;
  padding: 34px 28px 28px;
  border: 1px solid rgba(224, 190, 122, 0.42);
  background:
    linear-gradient(180deg, rgba(12,12,12,0.98), rgba(0,0,0,0.96));
  box-shadow: 0 26px 70px rgba(0,0,0,0.62);
  text-align: center;
}

.classique-modal-close {
  position: absolute;
  top: 10px;
  right: 12px;
  border: none;
  background: transparent;
  color: var(--gold-light);
  font-size: 28px;
  cursor: pointer;
  line-height: 1;
}

.classique-modal-box h3 {
  margin: 10px 0 12px;
  font-family: "Cormorant Garamond", serif;
  font-size: 34px;
  color: var(--white);
}

.classique-modal-box p {
  margin: 0 0 22px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.classique-sede-actions {
  display: grid;
  gap: 12px;
}

.classique-sede-button {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border: 1px solid rgba(224, 190, 122, 0.42);
  color: var(--gold-light);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1.8px;
  font-size: 12px;
  font-weight: 600;
  background: rgba(255,255,255,0.025);
  transition: 0.25s ease;
}

.classique-sede-button:hover {
  border-color: var(--gold);
  background: rgba(200,155,74,0.12);
  color: var(--white);
  transform: translateY(-2px);
}
.classique-contact-modal[hidden] {
  display: none !important;
}

.premium-action-button {
  border: 1px solid rgba(224, 190, 122, 0.82);
  font-family: inherit;
  cursor: pointer;
}

.classique-contact-modal[hidden] {
  display: none !important;
}

.classique-contact-modal.is-open {
  display: flex !important;
}

.premium-action-button {
  appearance: none;
  -webkit-appearance: none;
  border: 1px solid rgba(224, 190, 122, 0.82);
  font-family: inherit;
  cursor: pointer;
}

/* =========================
   Marcas destacadas: logos grandes
========================= */

.brand-showcase {
  width: min(1180px, 94%);
  margin: 34px auto 0;
  padding: 34px;
}

.brand-slots {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.brand-slot {
  min-height: 145px;
  border: 1px solid rgba(200,155,74,0.22);
  background: rgba(0,0,0,0.28);
}

.brand-slot-logo {
  padding: 20px;
}

.brand-slot-logo img {
  max-width: 92%;
  max-height: 120px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.brand-slot-classique {
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  font-family: inherit;
}

.brand-slot-classique:hover,
.brand-slot-logo:hover {
  border-color: rgba(200,155,74,0.48);
  background: rgba(200,155,74,0.055);
}

.brand-slot-empty {
  color: rgba(246,244,239,0.36);
  border-style: dashed;
  background: rgba(255,255,255,0.012);
}

.brand-slot-empty:hover {
  border-color: rgba(200,155,74,0.32);
  color: var(--gold-soft);
}

@media (max-width: 1180px) {
  .brand-slots {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 680px) {
  .brand-slots {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 460px) {
  .brand-slots {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .brand-slots {
    grid-template-columns: repeat(2, 1fr);
  }

  .brand-slot {
    min-height: 130px;
  }
}

@media (max-width: 520px) {
  .brand-showcase {
    padding: 22px;
  }

  .brand-slots {
    grid-template-columns: 1fr;
  }

  .brand-slot {
    min-height: 125px;
  }

  .brand-slot-logo img {
    max-height: 105px;
  }
}

/* =========================
   Zoom táctil revista
========================= */

#magazine {
  transform-origin: center center;
  will-change: transform;
  transition: transform 0.12s ease-out;
}

.magazine-wrapper.is-zooming {
  overflow: visible;
}

body.magazine-fullscreen .magazine-wrapper.is-zooming {
  overflow: visible;
}

@media (max-width: 768px) {
  .magazine-wrapper {
    touch-action: pan-y;
  }

  body.magazine-fullscreen .magazine-wrapper {
    touch-action: none;
  }
}

/* =========================
   Controles revista:
   abajo en vertical / costado en horizontal
========================= */

/* Celular vertical: botones abajo, pero levantados */
@media (max-width: 768px) and (orientation: portrait) {
  body.magazine-fullscreen .magazine-controls {
    position: fixed;
    left: 50%;
    bottom: 42px;
    transform: translateX(-50%);
    z-index: 10000;

    width: calc(100% - 24px);
    margin: 0;
    padding: 0;

    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 8px;
    flex-wrap: nowrap;

    background: transparent;
    border: none;
    backdrop-filter: none;
  }

  body.magazine-fullscreen .magazine-wrapper {
    padding-bottom: 84px;
  }

  body.magazine-fullscreen .magazine-controls button {
    width: auto;
    min-width: 88px;
    height: 38px;
    padding: 8px 10px;

    font-size: 9px;
    letter-spacing: 1px;
  }

  body.magazine-fullscreen #fullscreenMagazine::after {
    content: " / salir";
  }
}

/* Celular horizontal: botones al costado para no robar alto */
@media (max-height: 520px) and (orientation: landscape) {
  body.magazine-fullscreen .magazine-controls {
    position: fixed;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10000;

    margin: 0;
    padding: 6px;

    display: flex;
    flex-direction: column;
    gap: 8px;

    background: rgba(0, 0, 0, 0.55);
    border: 1px solid rgba(200,155,74,0.28);
    backdrop-filter: blur(8px);
  }

  body.magazine-fullscreen .magazine-controls button {
    width: 42px;
    min-width: 42px;
    height: 42px;
    padding: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 0;
    letter-spacing: 0;
  }

  body.magazine-fullscreen #prevPage::before {
    content: "‹";
    font-size: 28px;
    line-height: 1;
  }

  body.magazine-fullscreen #nextPage::before {
    content: "›";
    font-size: 28px;
    line-height: 1;
  }

  body.magazine-fullscreen #fullscreenMagazine::before {
    content: "×";
    font-size: 24px;
    line-height: 1;
  }

  body.magazine-fullscreen #fullscreenMagazine::after {
    content: "";
  }

  body.magazine-fullscreen .magazine-wrapper {
    padding-right: 56px;
  }
}

/* =========================
   Zonas táctiles para pasar página
========================= */

.magazine-wrapper {
  position: relative;
}

.magazine-tap-zone {
  display: none;
}

/* Solo aparecen en pantalla completa horizontal */
@media (max-height: 520px) and (orientation: landscape) {
  body.magazine-fullscreen .magazine-tap-zone {
    display: block;
    position: fixed;
    top: 0;
    bottom: 0;
    z-index: 9998;

    width: 18vw;
    border: none;
    background: transparent;
    padding: 0;
    cursor: pointer;
  }

  body.magazine-fullscreen .magazine-tap-prev {
    left: 0;
  }

  body.magazine-fullscreen .magazine-tap-next {
    right: 56px;
  }

  body.magazine-fullscreen .magazine-wrapper.is-zooming .magazine-tap-zone {
    pointer-events: none;
  }
}

/* =========================
   Estabilidad visual flipbook
========================= */

#magazine,
#magazine .page,
#magazine img {
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

#magazine img {
  transform: translateZ(0);
  -webkit-transform: translateZ(0);
  user-select: none;
  -webkit-user-drag: none;
}