/* ── CSS RESET & VARIABLES ── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  /* ─ El negro puro ha muerto. ─
     Usamos dark slate (gris oscuro frío con matiz azulado)
     como el interior de un estudio de fotografía real */
  --bg-color:       #0e0e12;   /* Base dark slate */
  --bg-alt:         #14141a;   /* Secciones alternas */
  --bg-surface:     #1a1a22;   /* Tarjetas, formularios */
  --border-color:   rgba(255, 255, 255, 0.08);

  /* ─ Acento funcional: Ámbar cálido, el color de tu key light ─ */
  --accent:         #c8975a;   /* Dorado-ámbar, como luz de estudio */
  --accent-glow:    rgba(200, 151, 90, 0.15);

  /* ─ Textos con contraste real ─ */
  --text-main:      #f0ede8;   /* Blanco roto cálido, no puro para evitar fatiga */
  --text-muted:     #a09a91;   /* Gris medio cálido */
  --text-dim:       #5a5550;   /* Gris oscuro para detalles de UI */

  --font-display: 'Space Grotesk', sans-serif;
  --font-body: 'Inter', sans-serif;
}

body {
  background-color: var(--bg-color);
  color: var(--text-main);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;

  /* Film grain sutil: da textura como papel fotográfico mate */
  background-image:
    url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  background-size: 256px 256px;
}

/* ── NAVIGATION ── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  padding: 40px 10%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 100;
}

/* ── HERO SECTION ── */
.hero {
  height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
  padding: 0 10%;
  position: relative;
  overflow: hidden;
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 500px;
  text-align: left;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 4.5vw, 56px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -1px;
  margin-bottom: 24px;
  color: var(--text-main);
}

.hero-desc {
  font-size: clamp(16px, 1.5vw, 20px);
  color: var(--text-muted);
  font-weight: 300;
  line-height: 1.5;
  margin-bottom: 40px;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
}

/* ── HERO IMAGE (WALLPAPER MODE) ── */
.hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right center;
}

/* Oscurece el lado izquierdo para el texto, la derecha queda pura */
.hero-image::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: linear-gradient(to right, rgba(14,14,18,0.97) 0%, rgba(14,14,18,0.8) 25%, rgba(14,14,18,0.15) 60%, transparent 80%);
}

.hero-bottom { position: relative; z-index: 10; }

/* ── MARQUEE TICKER ── */
.marquee-strip {
  position: absolute; /* Se queda dentro del hero */
  bottom: 0;
  left: 0;
  width: 100%;
  background: var(--accent);
  overflow: hidden;
  padding: 14px 0;
  white-space: nowrap;
  z-index: 20; /* Sobre la imagen de fondo */
}

.marquee-track {
  display: inline-flex;
  animation: marquee-scroll 25s linear infinite;
}

.marquee-track span {
  font-size: 11px;
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #0e0e12;
  padding-right: 0;
}

@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ── BUTTONS (global) ── */
.btn-solid {
  background: var(--accent);
  color: #0e0e12;
  padding: 16px 32px;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
  display: inline-block;
  white-space: nowrap;
}

.btn-solid:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px var(--accent-glow);
}

.btn-link {
  color: var(--text-muted);
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-decoration: underline;
  text-underline-offset: 6px;
  text-decoration-thickness: 1px;
  transition: color 0.2s;
}

.btn-link:hover {
  color: var(--accent);
}

/* ── ANIMATIONS ── */
.fade-up {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1s ease-out, transform 1s ease-out;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-bg {
  opacity: 0;
  transition: opacity 1.5s ease-out;
}

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }

/* ── HERO ENTRANCE ANIMATIONS ── */

/* Cada elemento entra en su propio tiempo (stagger) */
.hero-content {
  animation: none; /* El contenedor no anima, solo los hijos */
}

.hero-title {
  animation: slide-from-left 2s cubic-bezier(0.16, 1, 0.3, 1) 0s both;
}

.hero-desc {
  animation: slide-from-left 2s cubic-bezier(0.16, 1, 0.3, 1) 0.31s both;
}

.hero-cta-primary {
  animation: slide-from-left 2s cubic-bezier(0.16, 1, 0.3, 1) 0.6s both;
}

.hero-cta-secondary {
  animation: slide-from-left 2s cubic-bezier(0.16, 1, 0.3, 1) 0.77s both;
}

/* Imagen de fondo: sin animación */
.hero-image {
  animation: none;
}

@keyframes slide-from-left {
  from {
    opacity: 0;
    transform: translateX(-180px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slide-from-right {
  from {
    opacity: 0;
    transform: translateX(180px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* ── SCROLL HINT (Hero bottom indicator) ── */
.scroll-hint {
  position: absolute;
  bottom: 90px; /* Sube por encima del marquee banner */
  left: 10%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  transition: opacity 0.6s ease;
  z-index: 20;
}

.scroll-hint-text {
  font-size: 10px;
  letter-spacing: 3px;
  color: var(--text-dim);
  text-transform: uppercase;
}

.scroll-chevron {
  width: 16px;
  height: 16px;
  border-right: 1px solid var(--accent);
  border-bottom: 1px solid var(--accent);
  transform: rotate(45deg);
  animation: chevron-bounce 1.8s ease-in-out infinite;
  margin-left: 4px;
}

@keyframes chevron-bounce {
  0%, 100% { transform: rotate(45deg) translateY(0); opacity: 0.4; }
  50% { transform: rotate(45deg) translateY(4px); opacity: 1; }
}

/* ── BACK TO TOP BUTTON ── */
#back-to-top {
  position: fixed;
  bottom: 36px;
  right: 10%; /* Esquina inferior derecha, lejos del texto */
  background: transparent;
  border: 1px solid rgba(200,151,90,0.3);
  color: var(--accent);
  font-family: var(--font-display);
  font-size: 10px;
  letter-spacing: 3px;
  padding: 10px 16px;
  cursor: pointer;
  z-index: 500;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease, border-color 0.3s, transform 0.3s;
  text-transform: uppercase;
}

#back-to-top:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
}

#back-to-top.visible {
  opacity: 1;
  pointer-events: all;
}

/* ── PORTFOLIO SECTION ── */
.work-section {
  padding: 120px 0;
  background-color: var(--bg-color);
  position: relative;
  z-index: 10;
}

.section-header {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-bottom: 80px;
}

.section-title {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 4px;
  color: var(--accent); /* Ámbar como acento de navegación */
  text-transform: uppercase;
}

.section-line {
  flex-grow: 1;
  height: 1px;
  background: linear-gradient(to right, rgba(200,151,90,0.3) 0%, rgba(200,151,90,0.05) 100%);
}

.work-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3px;
}

.work-item {
  display: block;
  text-decoration: none;
  color: #fff;
  position: relative;
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.work-img-wrapper {
  overflow: hidden;
  background-color: #080808;
  aspect-ratio: 1 / 1;
  position: relative;
}

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

.work-item:hover .work-img-wrapper img {
  transform: scale(1.03); /* Subtle zoom on hover */
}

/* ── TEXT OVERLAY EN MINIATURAS ── */
.work-info {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 60px 30px 20px 30px;
  background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0) 100%);
  pointer-events: none; /* Los clics atraviesan el texto hacia la foto */
  transition: padding-bottom 0.4s ease; /* Transición suave */
}

.work-item:hover .work-info {
  padding-bottom: 30px; /* Alerta visual: sube el texto al hacer hover */
}

.work-info h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 5px;
  transition: color 0.3s;
}

.work-info p {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ── ABOUT SECTION ── */
.about-section {
  padding: 80px 10% 40px;
  background-color: var(--bg-alt);
  position: relative;
  z-index: 10;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}

.about-text h3 {
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 24px;
  color: var(--text-main);
}

.about-text p {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 20px;
  font-weight: 300;
}

.about-stats {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 40px;
  border-left: 1px solid rgba(200,151,90,0.25);
  padding-left: 60px;
}

.stat-item h4 {
  font-size: 11px;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 8px;
}

.stat-item p {
  font-size: 14px;
  color: #ffffff;
  font-weight: 400;
  line-height: 1.8;
}

/* ── CLIENT LOGOS ── */
.client-logos {
  margin-top: 80px;
  border-top: 1px solid rgba(255,255,255,0.05);
  padding-top: 40px;
}

.client-title {
  font-size: 10px;
  letter-spacing: 3px;
  color: var(--text-dim);
  text-transform: uppercase;
  margin-bottom: 20px;
}

.logo-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
}

.logo-strip span {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  color: rgba(255,255,255,0.15); /* Opacidad muy sutil para que no pelee con el texto */
  letter-spacing: 2px;
  transition: color 0.3s ease;
}

.logo-strip span:hover {
  color: var(--accent);
}

/* ── FOOTER SECTION ── */
.footer-section {
  padding: 120px 10% 40px;
  background-color: #09090c;
  text-align: center;
  position: relative;
  border-top: 1px solid rgba(200,151,90,0.15);
}

.footer-content {
  margin-bottom: 120px;
}

.footer-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 64px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -1px;
  color: #ffffff;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 40px 10% 40px;
  font-size: 13px;
  color: var(--text-dim);
}

/* ── EMAIL TOAST NOTIFICATION ── */
#email-toast {
  position: fixed;
  top: 30px;
  right: 30px;
  bottom: auto;
  left: auto;
  transform: translateY(-10px);
  background: var(--accent);
  color: #0e0e12;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 14px 28px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease, transform 0.4s ease;
  z-index: 9000;
  white-space: nowrap;
}

#email-toast.show {
  opacity: 1;
  transform: translateY(0);
}

.social-links {
  display: flex;
  gap: 30px;
}

.social-links a {
  color: var(--text-muted);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  transition: color 0.3s;
}

.social-links a:hover {
  color: #ffffff;
}

/* ── MODAL GALLERY ── */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.modal.active {
  opacity: 1;
  pointer-events: all;
}

.modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7); /* Transparente para el blur */
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px); /* Safari support */
}

.modal-content {
  position: relative;
  width: 100%;
  height: 100vh;
  background-color: transparent; /* Removed solid black */
  border: none;
  overflow: hidden;
  padding: 0; /* Sin espacio arriba */
  border-radius: 0;
  display: flex;
  flex-direction: column;
  z-index: 1001;
}

.close-btn {
  position: fixed;
  top: 20px;
  right: 30px;
  background: rgba(0,0,0,0.5);
  border: 1px solid rgba(255,255,255,0.1);
  color: #ffffff;
  padding: 10px 20px;
  border-radius: 30px;
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: 2px;
  cursor: pointer;
  transition: all 0.3s;
  z-index: 1002;
  backdrop-filter: blur(5px);
}

.close-btn:hover {
  background: rgba(255,255,255,0.1);
  color: #ffffff;
}

.modal-header {
  display: none; /* Oculta el título de la galería */
}

.modal-header.hidden {
  opacity: 0;
  max-height: 0;
  margin-bottom: 0;
  pointer-events: none;
}

.modal-header h2 {
  font-size: 28px;
  margin-bottom: 5px;
}

.modal-header p {
  color: var(--text-muted);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.modal-gallery-grid {
  display: flex;
  gap: 3px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth;
  width: 100%;
  height: 100vh;
  padding: 0; /* Sin espacio a los lados para eliminar el borde negro */
  align-items: center; /* Centra las imágenes verticalmente */
  
  /* Ocultar barra de scroll para un look de App total */
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.modal-gallery-grid::-webkit-scrollbar {
  display: none;
}

.modal-gallery-grid img,
.modal-gallery-grid video {
  flex: 0 0 calc(50% - 1.5px); /* 2 Renders por pantalla exactos considerando el gap */
  height: 100vh; /* Llena toda la pantalla de arriba a abajo */
  max-height: none;
  object-fit: cover; /* Asegura que no queden espacios negros adentro */
  background-color: transparent;
  scroll-snap-align: start; /* Alineación perfecta a la izquierda */
  border-radius: 0; /* Bordes rectos */
  cursor: zoom-in; /* Indica que se puede expandir */
}

/* Excepción para videos o renders horizontales (16:9) */
.modal-gallery-grid .cinematic-view {
  flex: 0 0 calc(80% - 20px); /* Ocupa más espacio, casi toda la pantalla */
}

/* Excepción para videos o renders horizontales (16:9) */
.modal-gallery-grid .cinematic-view {
  flex: 0 0 100%; /* Toma toda la pantalla en lugar de la mitad */
  height: 100vh;
  object-fit: cover; /* Elimina cualquier borde negro */
}

/* Excepción para videos verticales (9:16) */
.modal-gallery-grid .vertical-view {
  flex: 0 0 100%; /* Toma toda la pantalla para darle protagonismo */
  height: 100vh;
  object-fit: contain; /* Muestra el video completo de pies a cabeza sin recortes */
}

/* ── CONTACT MODAL ── */
.contact-content {
  width: 90%;
  max-width: 550px;
  height: auto;
  padding: 60px 40px;
  background-color: #050505;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  margin: auto; /* Centrar en el flexbox del modal */
}

.contact-form-container h2 {
  font-family: var(--font-display);
  font-size: 32px;
  margin-bottom: 10px;
}

.contact-form-container p {
  color: var(--text-muted);
  margin-bottom: 40px;
  font-size: 15px;
  line-height: 1.5;
}

.sales-form .form-group {
  margin-bottom: 30px;
}

.sales-form label {
  display: block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 8px;
  color: var(--text-dim);
}

.sales-form input,
.sales-form textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  font-family: var(--font-body);
  font-size: 16px;
  padding: 10px 0;
  transition: border-color 0.3s;
}

.sales-form input:focus,
.sales-form textarea:focus {
  outline: none;
  border-bottom-color: #fff;
}

.submit-btn {
  background: #fff;
  color: #000;
  border: none;
  padding: 16px 30px;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  width: 100%;
  margin-top: 10px;
  transition: transform 0.3s, background 0.3s;
  letter-spacing: 1px;
}

.submit-btn:hover {
  background: #e0e0e0;
  transform: translateY(-2px);
}

.placeholder-render {
  width: 100%;
  aspect-ratio: 16/9;
  background-color: #080808;
  border: 1px dashed rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-dim);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* ── GALLERY ARROWS & WRAPPER ── */
.gallery-wrapper {
  position: relative;
  width: 100%;
}

.gallery-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.4);
  color: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 20px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 1005;
  backdrop-filter: blur(5px);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-arrow:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  transform: translateY(-50%) scale(1.1);
}

.left-arrow {
  left: 20px;
}

.right-arrow {
  right: 20px;
}

/* ── FULLSCREEN VIEWER ── */
.fullscreen-viewer {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.98);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  backdrop-filter: blur(10px);
  overflow: auto; /* Permite hacer scroll (paneo) cuando se hace zoom */
}

.fullscreen-viewer.active {
  opacity: 1;
  pointer-events: all;
}

.fullscreen-viewer img,
.fullscreen-viewer video {
  max-width: 95vw;
  max-height: 95vh;
  object-fit: contain;
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
  transition: max-width 0.3s ease, max-height 0.3s ease;
  margin: auto; /* Lo mantiene centrado siempre */
}

.fullscreen-viewer img {
  cursor: zoom-in; /* Lupa con signo de + */
}

.fullscreen-viewer img.zoomed {
  max-width: none;
  max-height: none;
  cursor: zoom-out; /* Lupa con signo de - */
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .hero-image {
    opacity: 0.5;
  }
}
@media (max-width: 768px) {
  .hero { padding: 0 5%; }
  .work-grid { grid-template-columns: 1fr; gap: 3px; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-stats { position: static; width: 100%; border-left: none; border-top: 1px solid rgba(255, 255, 255, 0.1); padding-left: 0; padding-top: 40px; }
  .footer-bottom { flex-direction: column; gap: 20px; }
  .modal-content { width: 100%; height: 100vh; padding: 0; border: none; }
  .close-btn { top: 20px; right: 20px; }

  /* Ajustes de Galería en Celular */
  .modal-gallery-grid {
    height: 100vh;
    display: flex;
    align-items: center; /* Centra la imagen verticalmente */
    background-color: transparent;
  }
  .modal-gallery-grid img,
  .modal-gallery-grid video {
    flex: 0 0 100% !important;
    width: 100% !important;
    height: auto !important;
    max-height: 75vh !important; /* Evita que choque con el botón de cerrar */
    object-fit: contain !important; /* Muestra TODO el render sin recortes */
    margin: auto;
  }
  .gallery-arrow {
    display: none !important;
  }
}

/* ── 404 ERROR PAGE ── */
.error-page {
  height: 100vh;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  background-color: var(--bg-main);
  position: relative;
  overflow: hidden;
}

.error-title {
  font-family: var(--font-display);
  font-size: clamp(80px, 15vw, 200px);
  font-weight: 800;
  color: rgba(255,255,255,0.05);
  line-height: 1;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.error-content {
  position: relative;
  z-index: 10;
}

.error-content h2 {
  font-size: 24px;
  font-weight: 400;
  margin-bottom: 10px;
  color: var(--text-main);
}

.error-content p {
  color: var(--text-muted);
  margin-bottom: 40px;
}
