/* EXIFOT — diseño gráfico y publicidad · hoja de estilos propia (v2, sep-2026)
   Paleta A: blanco + rojo del logo + negro. Titulares Archivo Black, texto Inter. */
* { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --rojo: #FE0000;
  --rojo-oscuro: #C40000;
  --rojo-suave: #FFE9E9;
  --negro: #111111;
  --negro-2: #1C1C1C;
  --texto: #1A1A1A;
  --gris: #555B63;
  --gris-claro: #8A9098;
  --fondo: #FFFFFF;
  --seccion: #F5F5F5;
  --linea: #E6E6E6;
  --verde-wa: #25D366;
  /* alias para reglas heredadas */
  --navy: var(--negro);
  --gold: var(--rojo);
  --cream: var(--fondo);
  --cream-dark: var(--seccion);
}
html { scroll-behavior: smooth; -webkit-tap-highlight-color: transparent; }
body {
  font-family: 'Inter', -apple-system, system-ui, sans-serif;
  color: var(--texto); background: var(--fondo);
  line-height: 1.6; font-size: 16px; overflow-x: hidden;
}
h1, h2 { font-family: 'Archivo Black', 'Inter', system-ui, sans-serif; font-weight: 400; line-height: 1.05; color: var(--negro); letter-spacing: -0.5px; text-transform: uppercase; }
h2 { font-size: clamp(1.7rem, 4.2vw, 2.6rem); margin-bottom: 0.35em; }
h3 { font-family: 'Inter', system-ui, sans-serif; font-weight: 800; color: var(--negro); letter-spacing: -0.2px; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
.container { max-width: 1140px; margin: 0 auto; padding: 0 22px; }

/* ── Nav ── */
nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,0.96); backdrop-filter: blur(12px);
  border-bottom: 2px solid var(--negro);
}
nav .container { display: flex; align-items: center; justify-content: space-between; height: 64px; gap: 16px; }
nav .logo-link { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
nav .logo-link img { height: 42px; width: auto; }
nav .logo-link .marca { font-family: 'Archivo Black', sans-serif; font-size: 18px; color: var(--negro); letter-spacing: 1px; }
nav ul { display: flex; gap: 22px; list-style: none; }
nav ul a { font-size: 12px; font-weight: 700; color: var(--negro); letter-spacing: 1px; text-transform: uppercase; padding: 6px 0; border-bottom: 2px solid transparent; transition: border-color .2s, color .2s; white-space: nowrap; }
nav ul a:hover { border-color: var(--rojo); color: var(--rojo); }
@media (max-width: 760px) {
  nav .container { height: 58px; }
  nav .logo-link img { height: 36px; }
  nav ul { gap: 14px; overflow-x: auto; scrollbar-width: none; -webkit-overflow-scrolling: touch; padding-right: 12px; }
  nav ul::-webkit-scrollbar { display: none; }
  nav ul a { font-size: 11px; }
}

/* ── Hero ── */
.hero { background: var(--fondo); padding: 56px 0 40px; position: relative; overflow: hidden; }
.hero .container { display: grid; grid-template-columns: minmax(0,1.05fr) minmax(0,1fr); gap: 40px; align-items: center; }
.hero-texto, .hero-visual { min-width: 0; }
.hero .desde {
  display: inline-block; font-size: 11px; font-weight: 800; letter-spacing: 2.5px; text-transform: uppercase;
  color: #fff; background: var(--rojo); padding: 7px 14px; margin-bottom: 22px;
}
.hero h1 { font-size: clamp(2.3rem, 5.6vw, 4.2rem); margin-bottom: 20px; }
.hero h1 strong { color: var(--rojo); font-weight: inherit; }
.hero .subtitulo { font-size: clamp(1rem, 1.6vw, 1.15rem); color: var(--gris); max-width: 520px; margin-bottom: 30px; line-height: 1.65; }
.hero .cta-row { display: flex; gap: 12px; flex-wrap: wrap; }
.hero .logo-hero { display: none; }
.hero-visual { position: relative; }
.hero-visual img { width: 100%; height: auto; aspect-ratio: 3/2; object-fit: cover; border: 3px solid var(--negro); position: relative; z-index: 1; background: var(--seccion); }
.hero-visual::before { content: ''; position: absolute; inset: 18px -18px -18px 18px; background: var(--rojo); z-index: 0; }
.hero-visual .sello {
  position: absolute; z-index: 2; right: -6px; top: -14px; width: 92px; height: 92px; border-radius: 50%;
  background: #fff; border: 3px solid var(--negro); display: flex; align-items: center; justify-content: center;
  text-align: center; font-size: 10px; font-weight: 800; letter-spacing: 1px; text-transform: uppercase; line-height: 1.2; padding: 8px;
}
@media (max-width: 860px) {
  .hero { padding: 36px 0 32px; }
  .hero .container { grid-template-columns: minmax(0,1fr); gap: 30px; }
  .hero h1 { font-size: clamp(2rem, 9vw, 2.6rem); }
  .hero-visual { margin: 0 18px 18px 0; }
  .hero-visual::before { inset: 14px -14px -14px 14px; }
  .hero-visual .sello { width: 78px; height: 78px; font-size: 9px; right: -4px; }
}

/* ── Botones ── */
.btn {
  display: inline-flex; align-items: center; gap: 10px; padding: 15px 26px;
  font-weight: 800; font-size: 13px; letter-spacing: 1px; text-transform: uppercase;
  border: 2px solid transparent; transition: transform .15s, background .2s, color .2s, border-color .2s; cursor: pointer;
}
.btn:hover { transform: translateY(-2px); }
.btn-wa { background: var(--verde-wa); color: #fff; }
.btn-wa:hover { background: #1fbf5b; }
.btn-gold, .btn-rojo { background: var(--rojo); color: #fff; }
.btn-gold:hover, .btn-rojo:hover { background: var(--rojo-oscuro); }
.btn-ghost { background: transparent; color: var(--negro); border-color: var(--negro); }
.btn-ghost:hover { background: var(--negro); color: #fff; }

/* ── Cinta / marquee ── */
.cinta { background: var(--negro); color: #fff; overflow: hidden; padding: 12px 0; border-top: 3px solid var(--rojo); border-bottom: 3px solid var(--rojo); }
.cinta .pista { display: flex; width: max-content; gap: 0; animation: cinta 38s linear infinite; }
.cinta span { font-family: 'Archivo Black', sans-serif; font-size: 14px; letter-spacing: 3px; text-transform: uppercase; padding: 0 22px; white-space: nowrap; }
.cinta span::after { content: '●'; color: var(--rojo); margin-left: 44px; font-size: 10px; vertical-align: middle; }
@keyframes cinta { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .cinta .pista { animation: none; } }

/* ── Secciones ── */
section { padding: 84px 0; }
@media (max-width: 760px) { section { padding: 56px 0; } }
section.dark { background: var(--negro); color: #fff; }
section.dark h2, section.dark h3 { color: #fff; }
section.cream-dark, section.gris { background: var(--seccion); }
.seccion-titulo { margin-bottom: 44px; max-width: 720px; }
.seccion-titulo.centro { text-align: center; margin-left: auto; margin-right: auto; }
.seccion-titulo .label {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 11px; font-weight: 800; letter-spacing: 2.5px; text-transform: uppercase; color: var(--rojo); margin-bottom: 14px;
}
.seccion-titulo .label::before { content: ''; width: 28px; height: 4px; background: var(--rojo); }
.seccion-titulo .sub { font-size: 16px; color: var(--gris); line-height: 1.6; }
section.dark .seccion-titulo .sub { color: #C9C9C9; }

/* ── Servicios (tarjetas) ── */
.servicios-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 18px; }
.servicios-grid > .servicio:first-child { grid-column: span 2; background: var(--negro); border-color: var(--negro); color: #fff; }
.servicios-grid > .servicio:first-child h3 { color: #fff; font-size: 24px; }
.servicios-grid > .servicio:first-child p { color: #D6D6D6; font-size: 16px; max-width: 520px; }
.servicios-grid > .servicio:first-child ul { columns: 2; column-gap: 24px; }
.servicios-grid > .servicio:first-child ul li { color: #fff; break-inside: avoid; }
.servicios-grid > .servicio:first-child .icon { background: var(--rojo); }
.servicios-grid > .servicio:first-child:hover { box-shadow: 8px 8px 0 var(--rojo); }
@media (max-width: 900px) { .servicios-grid { grid-template-columns: repeat(2, minmax(0,1fr)); } }
@media (max-width: 600px) { .servicios-grid { grid-template-columns: minmax(0,1fr); } .servicios-grid > .servicio:first-child { grid-column: auto; } .servicios-grid > .servicio:first-child ul { columns: 1; } }
.servicio {
  position: relative; background: #fff; border: 2px solid var(--linea); padding: 28px 24px 26px;
  transition: transform .2s, border-color .2s, box-shadow .2s; overflow: hidden;
}
.servicio::before { content: ''; position: absolute; left: 0; top: 0; right: 0; height: 6px; background: var(--rojo); transform: scaleX(0); transform-origin: left; transition: transform .25s; }
.servicio:hover { transform: translateY(-4px); border-color: var(--negro); box-shadow: 8px 8px 0 var(--rojo); }
.servicio:hover::before { transform: scaleX(1); }
section.cream-dark .servicio, section.gris .servicio { border-color: #fff; }
.servicio .icon { width: 52px; height: 52px; display: flex; align-items: center; justify-content: center; font-size: 26px; background: var(--rojo-suave); margin-bottom: 18px; }
.servicio h3 { font-size: 19px; margin-bottom: 8px; }
.servicio p { font-size: 14px; color: var(--gris); margin-bottom: 14px; line-height: 1.55; }
.servicio ul { list-style: none; }
.servicio ul li { font-size: 14px; color: var(--texto); padding: 5px 0 5px 20px; position: relative; line-height: 1.4; }
.servicio ul li::before { content: ''; position: absolute; left: 0; top: 13px; width: 10px; height: 3px; background: var(--rojo); }
.servicio-link { display: block; cursor: pointer; }
.servicio-link .ver-mas { margin-top: 16px; font-size: 12px; font-weight: 800; letter-spacing: 1.5px; text-transform: uppercase; color: var(--rojo); }

/* ── Bloques con imagen (impresos / textil) ── */
.bloque { display: grid; grid-template-columns: minmax(0,1fr) minmax(0,1fr); gap: 48px; align-items: center; }
.bloque > * { min-width: 0; }
.bloque-img { max-width: 520px; }
.bloque.invertido .bloque-img { order: 2; }
.bloque-img { position: relative; }
.bloque-img img { width: 100%; aspect-ratio: 1/1; object-fit: cover; border: 3px solid var(--negro); position: relative; z-index: 1; background: #fff; }
.bloque-img::after { content: ''; position: absolute; inset: 16px -16px -16px 16px; border: 3px solid var(--rojo); z-index: 0; }
.bloque .seccion-titulo { margin-bottom: 26px; }
.lista-check { list-style: none; display: grid; gap: 10px; margin-bottom: 26px; }
.lista-check li { position: relative; padding-left: 30px; font-size: 15px; line-height: 1.5; }
.lista-check li::before { content: '✓'; position: absolute; left: 0; top: 0; width: 20px; height: 20px; background: var(--rojo); color: #fff; font-size: 12px; font-weight: 800; display: flex; align-items: center; justify-content: center; }
.lista-check li strong { font-weight: 800; }
@media (max-width: 860px) {
  .bloque { grid-template-columns: minmax(0,1fr); gap: 34px; }
  .bloque.invertido .bloque-img { order: 0; }
  .bloque-img { margin: 0 16px 16px 0; }
}

/* ── Stats (sección oscura) ── */
.stats-row { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 24px; }
@media (max-width: 760px) { .stats-row { grid-template-columns: repeat(2, 1fr); gap: 28px 16px; } }
.stat { text-align: left; padding: 22px 20px; border-left: 4px solid var(--rojo); background: var(--negro-2); }
.stat .num { font-family: 'Archivo Black', sans-serif; font-size: clamp(2rem, 4.5vw, 3rem); color: #fff; line-height: 1; margin-bottom: 10px; }
.stat .num.rojo { color: var(--rojo); }
.stat .label { font-size: 12px; letter-spacing: 1px; text-transform: uppercase; color: #C9C9C9; line-height: 1.4; font-weight: 600; }

/* ── Galería ── */
.galeria-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 12px; }
.galeria-item {
  aspect-ratio: 1; background: #fff; border: 2px solid var(--linea);
  display: flex; align-items: center; justify-content: center; font-size: 40px; overflow: hidden; position: relative;
}
img.galeria-item { object-fit: cover; }
.galeria-item:hover { border-color: var(--rojo); }
.galeria-placeholder-msg { grid-column: 1 / -1; text-align: center; font-size: 13px; color: var(--gris-claro); padding: 14px; }

/* ── Mapa ── */
.mapa-wrap { border: 3px solid var(--negro); overflow: hidden; }
.mapa-wrap iframe { width: 100%; height: 340px; border: 0; display: block; filter: grayscale(0.2); }

/* ── Contacto ── */
.contacto-grid { display: grid; grid-template-columns: minmax(0,1fr) minmax(0,1.2fr); gap: 24px; align-items: stretch; }
@media (max-width: 800px) { .contacto-grid { grid-template-columns: 1fr; } }
.contacto-destacado { background: var(--rojo); color: #fff; padding: 40px 30px; text-align: center; display: flex; flex-direction: column; justify-content: center; }
.contacto-destacado .t { font-family: 'Archivo Black', sans-serif; font-size: 26px; text-transform: uppercase; line-height: 1.1; margin-bottom: 10px; }
.contacto-destacado .s { font-size: 14px; color: #FFD6D6; margin-bottom: 24px; }
.contacto-destacado .btn-wa { align-self: center; background: #fff; color: var(--negro); }
.contacto-destacado .btn-wa:hover { background: var(--negro); color: #fff; }
.contacto-info { display: grid; gap: 14px; }
.contacto-card { display: block; background: #fff; border: 2px solid var(--linea); padding: 20px 22px; transition: border-color .2s, transform .15s; }
.contacto-card:hover { border-color: var(--negro); transform: translateX(4px); }
.contacto-card .titulo { font-size: 11px; font-weight: 800; letter-spacing: 2px; text-transform: uppercase; color: var(--rojo); margin-bottom: 4px; }
.contacto-card .valor { font-size: 22px; font-weight: 800; color: var(--negro); letter-spacing: -0.3px; }
.contacto-card .extra { font-size: 13px; color: var(--gris); margin-top: 4px; }
.contacto-cta { display: inline-flex; align-items: center; gap: 8px; font-weight: 800; font-size: 13px; letter-spacing: 1px; text-transform: uppercase; color: var(--negro); border-bottom: 2px solid var(--rojo); padding-bottom: 2px; }
.contacto-cta:hover { color: var(--rojo); }

/* ── FAQ ── */
.faq-lista { display: flex; flex-direction: column; gap: 8px; max-width: 780px; margin: 0 auto; }
.faq-item { border: 2px solid var(--linea); background: #fff; overflow: hidden; }
.faq-item summary { list-style: none; cursor: pointer; padding: 16px 20px; font-weight: 700; font-size: 15px; display: flex; justify-content: space-between; align-items: center; color: var(--negro); }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; font-size: 22px; color: var(--rojo); flex-shrink: 0; margin-left: 12px; font-weight: 800; }
.faq-item[open] { border-color: var(--negro); }
.faq-item[open] summary::after { content: '−'; }
.faq-item p { padding: 0 20px 16px; font-size: 14px; color: var(--gris); line-height: 1.6; }

/* ── Footer ── */
footer { background: var(--negro); color: #C9C9C9; padding: 48px 0 28px; border-top: 6px solid var(--rojo); }
footer .footer-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 28px; align-items: start; margin-bottom: 26px; }
@media (max-width: 700px) { footer .footer-grid { grid-template-columns: 1fr; text-align: center; } }
footer .marca-fiscal { font-family: 'Archivo Black', sans-serif; font-size: 26px; color: #fff; letter-spacing: 2px; margin-bottom: 6px; }
footer .fiscal { font-size: 13px; line-height: 1.7; }
footer .fiscal strong { color: #fff; }
footer .copy { border-top: 1px solid #2A2A2A; padding-top: 18px; font-size: 12px; color: #8A9098; text-align: center; }

/* ── WhatsApp flotante ── */
.wa-float {
  position: fixed; bottom: 22px; right: 22px; z-index: 200;
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--verde-wa); color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 30px rgba(37,211,102,0.45); transition: transform .2s;
}
.wa-float:hover { transform: scale(1.1); }

/* ── Scroll-reveal ── */
@media (prefers-reduced-motion: no-preference) {
  .reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
  .reveal.is-visible { opacity: 1; transform: none; }
  .reveal-d1 { transition-delay: .08s; }
  .reveal-d2 { transition-delay: .16s; }
  .reveal-d3 { transition-delay: .24s; }
}
