/* ==========================================================================
   AURUM INDUSTRIAL SOLUTIONS S.A.S. — Sistema visual del sitio web
   www.aiscol.com
   ========================================================================== */

/* ---------- Variables de marca ---------- */
:root {
  /* Paleta dorada AURUM */
  --gold: #D4AF37;
  --gold-dark: #B8941F;
  --gold-light: #E8C961;
  --gold-bg: rgba(212, 175, 55, 0.05);
  --gold-border: rgba(212, 175, 55, 0.20);

  /* Neutros */
  --ink: #0F0F0F;
  --ink-soft: #1F1F1F;
  --text: #333333;
  --text-soft: #555555;
  --text-mute: #888888;
  --line: #E7E7E7;
  --line-soft: #F0F0F0;
  --bg: #FFFFFF;
  --bg-soft: #FAFAFA;
  --bg-dark: #0B0B0B;

  /* Tipografía */
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
  --font-mono: 'JetBrains Mono', 'Courier New', monospace;
  --font-serif: 'Playfair Display', Georgia, serif;

  /* Espacios */
  --container: 1240px;
  --radius: 12px;
  --radius-sm: 6px;
  --shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 8px 32px rgba(0, 0, 0, 0.08);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--ink); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--gold-dark); }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; }

/* ---------- Layout container ---------- */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
}

@media (max-width: 768px) {
  .container { padding: 0 20px; }
}

/* ---------- Tipografía ---------- */
h1, h2, h3, h4, h5 {
  color: var(--ink);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); }

.eyebrow {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--gold-dark);
  font-weight: 700;
  margin-bottom: 16px;
  display: inline-block;
}

.lead {
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  color: var(--text-soft);
  line-height: 1.7;
  max-width: 640px;
}

.text-gold { color: var(--gold-dark); }
.text-mono { font-family: var(--font-mono); }

/* ---------- Botones ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 0.02em;
  transition: all 0.2s ease;
  border: 1.5px solid transparent;
  font-family: inherit;
}

.btn-primary {
  background: var(--ink);
  color: #fff;
}
.btn-primary:hover { background: var(--gold-dark); color: #fff; }

.btn-gold {
  background: var(--gold);
  color: var(--ink);
}
.btn-gold:hover { background: var(--gold-dark); color: #fff; }

.btn-outline {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn-outline:hover { background: var(--ink); color: #fff; }

.btn-ghost {
  background: transparent;
  color: var(--ink);
}
.btn-ghost:hover { color: var(--gold-dark); }

/* ---------- Header / Navegación ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line-soft);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-brand img { height: 44px; width: auto; }

.nav-brand-text {
  font-family: var(--font-mono);
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--ink);
  font-size: 1.05rem;
}

.nav-brand-text span {
  display: block;
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  color: var(--gold-dark);
  font-weight: 600;
}

.nav-links {
  display: flex;
  gap: 8px;
  align-items: center;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text);
  padding: 8px 14px;
  border-radius: 4px;
  transition: all 0.2s;
}

.nav-links a:hover { color: var(--gold-dark); background: var(--gold-bg); }

.nav-links a.active { color: var(--ink); font-weight: 700; }
.nav-links a.active::after {
  content: '';
  display: block;
  height: 2px;
  background: var(--gold);
  margin-top: 4px;
  border-radius: 2px;
}

.nav-cta { margin-left: 16px; }

.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.6rem;
  color: var(--ink);
}

@media (max-width: 900px) {
  .nav-links { display: none; }
  .menu-toggle { display: block; }
  .nav-links.open {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: #fff;
    flex-direction: column;
    padding: 20px;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-md);
    gap: 4px;
  }
  .nav-links.open a { width: 100%; padding: 12px 16px; }
}

/* ---------- Hero ---------- */
.hero {
  padding: 120px 0 100px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #fff 0%, var(--bg-soft) 100%);
}

.hero::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -120px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, var(--gold-bg) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
}

.hero h1 strong {
  background: linear-gradient(120deg, var(--gold) 0%, var(--gold-dark) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: 900;
}

.hero-actions {
  display: flex;
  gap: 14px;
  margin-top: 36px;
  flex-wrap: wrap;
}

.hero-visual {
  position: relative;
  aspect-ratio: 1 / 1;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--bg-soft);
}

.hero-visual img {
  width: 100%; height: 100%;
  object-fit: cover;
}

.hero-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(255,255,255,0.95);
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  font-weight: 700;
  color: var(--ink);
  border-left: 3px solid var(--gold);
}

@media (max-width: 900px) {
  .hero { padding: 60px 0 60px; }
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
}

/* ---------- Banda de credenciales ---------- */
.credentials {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--bg);
}

.credentials-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  text-align: center;
}

.credential-item {
  padding: 36px 24px;
  border-right: 1px solid var(--line-soft);
}

.credential-item:last-child { border-right: none; }

.credential-num {
  font-family: var(--font-mono);
  font-size: 2rem;
  font-weight: 800;
  color: var(--gold-dark);
  letter-spacing: -0.02em;
  margin-bottom: 6px;
}

.credential-label {
  font-size: 0.8rem;
  color: var(--text-soft);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 600;
}

@media (max-width: 768px) {
  .credentials-grid { grid-template-columns: repeat(2, 1fr); }
  .credential-item { border-bottom: 1px solid var(--line-soft); }
  .credential-item:nth-child(2n) { border-right: none; }
}

/* ---------- Secciones ---------- */
section { padding: 100px 0; }
section.compact { padding: 72px 0; }

.section-header { max-width: 720px; margin-bottom: 60px; }
.section-header.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-header p { color: var(--text-soft); margin-top: 14px; font-size: 1.05rem; line-height: 1.7; }

@media (max-width: 768px) {
  section { padding: 60px 0; }
}

/* ---------- Cards de líneas de producto ---------- */
.lines-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.line-card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.line-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.line-card-num {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  color: var(--gold-dark);
  font-weight: 700;
  margin-bottom: 16px;
}

.line-card h3 {
  margin-bottom: 12px;
  font-size: 1.2rem;
}

.line-card p {
  font-size: 0.92rem;
  color: var(--text-soft);
  line-height: 1.65;
  margin-bottom: 20px;
}

.line-card-meta {
  border-top: 1px solid var(--line-soft);
  padding-top: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.line-tag {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  background: var(--gold-bg);
  color: var(--gold-dark);
  padding: 4px 10px;
  border-radius: 99px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.line-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink);
}

.line-card-cta::after {
  content: '→';
  transition: transform 0.2s;
}

.line-card:hover .line-card-cta::after {
  transform: translateX(4px);
}

.line-card:hover .line-card-cta {
  color: var(--gold-dark);
}

/* ---------- Filosofía / pilares ---------- */
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.pillar {
  padding: 28px 24px;
  background: var(--bg-soft);
  border-radius: var(--radius);
  border-top: 3px solid var(--gold);
}

.pillar-num {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  color: var(--gold-dark);
  font-weight: 700;
  margin-bottom: 12px;
}

.pillar h4 {
  font-size: 1rem;
  margin-bottom: 8px;
  color: var(--ink);
}

.pillar p {
  font-size: 0.85rem;
  color: var(--text-soft);
  line-height: 1.55;
}

/* ---------- Mision / Vision split ---------- */
.mv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.mv-card {
  padding: 40px;
  background: var(--bg-soft);
  border-radius: var(--radius);
  position: relative;
}

.mv-card .eyebrow { margin-bottom: 20px; }
.mv-card h3 { font-size: 1.4rem; margin-bottom: 16px; }
.mv-card p { color: var(--text-soft); line-height: 1.7; font-size: 0.95rem; }

@media (max-width: 768px) {
  .mv-grid { grid-template-columns: 1fr; }
}

/* ---------- Servicios grid ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.service {
  padding: 36px 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg);
  transition: all 0.25s;
}

.service:hover { border-color: var(--gold); transform: translateY(-2px); }

.service-icon {
  width: 48px;
  height: 48px;
  background: var(--gold-bg);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-dark);
  font-family: var(--font-mono);
  font-weight: 800;
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.service h3 { font-size: 1.05rem; margin-bottom: 8px; }
.service p { font-size: 0.9rem; color: var(--text-soft); line-height: 1.6; }

/* ---------- Industrias / zonas ---------- */
.zones-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin-top: 32px;
}

.zone {
  padding: 24px;
  background: var(--bg-soft);
  border-radius: var(--radius);
  border-left: 3px solid var(--gold);
}

.zone h4 {
  font-size: 0.95rem;
  margin-bottom: 6px;
}

.zone p {
  font-size: 0.82rem;
  color: var(--text-soft);
}

/* ---------- Formulario ---------- */
.form-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: start;
}

.contact-info {
  background: var(--ink);
  color: #fff;
  padding: 48px 40px;
  border-radius: var(--radius);
  position: sticky;
  top: 100px;
}

.contact-info h3 { color: #fff; font-size: 1.3rem; margin-bottom: 24px; }
.contact-info .eyebrow { color: var(--gold-light); }

.contact-row {
  display: flex;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  align-items: flex-start;
}

.contact-row:last-child { border-bottom: none; }

.contact-row-label {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--gold);
  letter-spacing: 0.15em;
  font-weight: 700;
  text-transform: uppercase;
  min-width: 60px;
  padding-top: 2px;
}

.contact-row-value {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.9);
}

.contact-row-value a { color: rgba(255,255,255,0.9); }
.contact-row-value a:hover { color: var(--gold); }

.form {
  background: var(--bg);
  border: 1px solid var(--line);
  padding: 40px;
  border-radius: var(--radius);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 20px;
}
.form-row.full { grid-template-columns: 1fr; }

.field label {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--text-soft);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 700;
  margin-bottom: 6px;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--ink);
  background: #fff;
  transition: border 0.2s;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px var(--gold-bg);
}

.field textarea { resize: vertical; min-height: 120px; }

.form-submit {
  width: 100%;
  margin-top: 8px;
  padding: 16px;
  justify-content: center;
  font-size: 1rem;
}

.form-note {
  text-align: center;
  font-size: 0.8rem;
  color: var(--text-mute);
  margin-top: 16px;
}

@media (max-width: 900px) {
  .form-grid { grid-template-columns: 1fr; }
  .contact-info { position: static; }
  .form-row { grid-template-columns: 1fr; }
  .form { padding: 28px 20px; }
}

/* ---------- CTA Final ---------- */
.cta-final {
  background: var(--ink);
  color: #fff;
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-final::before {
  content: '';
  position: absolute;
  top: 0; right: 0; bottom: 0; left: 0;
  background: radial-gradient(circle at top right, rgba(212,175,55,0.15), transparent 60%);
  pointer-events: none;
}

.cta-final h2 { color: #fff; max-width: 720px; margin: 0 auto 16px; position: relative; }
.cta-final p { color: rgba(255,255,255,0.7); max-width: 580px; margin: 0 auto 32px; position: relative; }
.cta-final .btn { position: relative; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--bg-dark);
  color: rgba(255,255,255,0.65);
  padding: 60px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.site-footer h5 {
  font-family: var(--font-mono);
  color: var(--gold);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 18px;
  font-weight: 700;
}

.footer-brand-text {
  font-family: var(--font-mono);
  font-weight: 700;
  color: #fff;
  font-size: 1.15rem;
  letter-spacing: 0.06em;
  margin-bottom: 10px;
}

.footer-brand p { font-size: 0.88rem; line-height: 1.65; max-width: 320px; }

.site-footer ul li {
  margin-bottom: 10px;
  font-size: 0.88rem;
}

.site-footer ul li a { color: rgba(255,255,255,0.65); }
.site-footer ul li a:hover { color: var(--gold); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
}

.footer-bottom .mono { font-family: var(--font-mono); }

@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 500px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* ---------- Page header (interno) ---------- */
.page-header {
  padding: 80px 0 40px;
  background: var(--bg-soft);
  border-bottom: 1px solid var(--line);
}

.page-header .eyebrow { color: var(--gold-dark); }
.page-header h1 { font-size: clamp(2rem, 4.5vw, 3.2rem); margin-bottom: 16px; }
.page-header p { color: var(--text-soft); max-width: 680px; font-size: 1.05rem; }

/* ---------- Equipo ---------- */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.team-card {
  padding: 32px 28px;
  background: var(--bg-soft);
  border-radius: var(--radius);
  border: 1px solid var(--line);
  text-align: center;
}

.team-avatar {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: 50%;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-family: var(--font-mono);
  font-weight: 800;
  font-size: 1.4rem;
  letter-spacing: 0.05em;
}

.team-card h4 { font-size: 1.05rem; margin-bottom: 4px; }
.team-card .role { color: var(--gold-dark); font-size: 0.78rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; font-family: var(--font-mono); margin-bottom: 10px; }
.team-card p { font-size: 0.85rem; color: var(--text-soft); line-height: 1.55; }

/* ---------- Utilidades ---------- */
.divider {
  height: 1px;
  background: var(--line);
  margin: 60px 0;
}

.bg-soft { background: var(--bg-soft); }
.text-center { text-align: center; }
.mt-2 { margin-top: 16px; }
.mt-4 { margin-top: 32px; }
.mb-2 { margin-bottom: 16px; }

/* ---------- Animaciones suaves ---------- */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero h1, .hero .lead, .hero-actions, .hero-visual {
  animation: fadeUp 0.8s ease-out backwards;
}
.hero .lead { animation-delay: 0.1s; }
.hero-actions { animation-delay: 0.2s; }
.hero-visual { animation-delay: 0.15s; }

/* ---------- Product image wrapper + AURUM overlays ---------- */
.product-img-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--bg-soft);
  border: 1px solid var(--line);
}

.product-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Watermark estándar — esquina inferior derecha, todas las imágenes */
.aurum-watermark {
  position: absolute;
  bottom: 12px;
  right: 12px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(4px);
  padding: 6px 10px;
  border-radius: 4px;
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  font-weight: 700;
  color: var(--ink);
  border-left: 2px solid var(--gold);
  display: flex;
  align-items: center;
  gap: 6px;
  z-index: 5;
  pointer-events: none;
}

.aurum-watermark::before {
  content: '';
  width: 12px;
  height: 12px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'><circle cx='50' cy='50' r='42' fill='none' stroke='black' stroke-width='4'/><path d='M47 27 L28 71 M53 27 L72 71 M35 55 L65 55' stroke='black' stroke-width='6' stroke-linecap='round' fill='none'/></svg>") center / contain no-repeat;
  mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'><circle cx='50' cy='50' r='42' fill='none' stroke='black' stroke-width='4'/><path d='M47 27 L28 71 M53 27 L72 71 M35 55 L65 55' stroke='black' stroke-width='6' stroke-linecap='round' fill='none'/></svg>") center / contain no-repeat;
}

/* Badge GRANDE — cubre logo de tercero, posicionado caso por caso */
.aurum-badge-overlay {
  position: absolute;
  background: rgba(255, 255, 255, 0.97);
  border: 2px solid var(--gold);
  border-radius: 50%;
  width: 90px;
  height: 90px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
  z-index: 4;
  pointer-events: none;
  text-align: center;
}

.aurum-badge-overlay .badge-icon {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'><circle cx='50' cy='50' r='42' fill='none' stroke='black' stroke-width='4'/><circle cx='50' cy='50' r='37' fill='none' stroke='black' stroke-width='1.5' stroke-dasharray='1 1'/><path d='M47 27 L28 71 M53 27 L72 71 M35 55 L65 55' stroke='black' stroke-width='5.5' stroke-linecap='round' fill='none'/></svg>") center / contain no-repeat;
  mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'><circle cx='50' cy='50' r='42' fill='none' stroke='black' stroke-width='4'/><circle cx='50' cy='50' r='37' fill='none' stroke='black' stroke-width='1.5' stroke-dasharray='1 1'/><path d='M47 27 L28 71 M53 27 L72 71 M35 55 L65 55' stroke='black' stroke-width='5.5' stroke-linecap='round' fill='none'/></svg>") center / contain no-repeat;
}

.aurum-badge-overlay .badge-text {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  font-weight: 800;
  color: var(--gold-dark);
  margin-top: 2px;
}

/* Variantes de tamaño */
.aurum-badge-overlay.size-sm { width: 64px; height: 64px; }
.aurum-badge-overlay.size-sm .badge-icon { width: 24px; height: 24px; }
.aurum-badge-overlay.size-sm .badge-text { font-size: 0.5rem; }

.aurum-badge-overlay.size-lg { width: 130px; height: 130px; }
.aurum-badge-overlay.size-lg .badge-icon { width: 54px; height: 54px; }
.aurum-badge-overlay.size-lg .badge-text { font-size: 0.74rem; }

/* Galería de equipos — grid responsivo */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 16px;
  margin-top: 32px;
}

.gallery-grid .product-img-wrapper {
  aspect-ratio: 1 / 1;
}

.gallery-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 30px 16px 16px;
  background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.7) 100%);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 600;
  text-align: left;
  z-index: 3;
  pointer-events: none;
}

.gallery-caption span {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.15em;
  color: var(--gold-light);
  font-weight: 700;
  margin-bottom: 4px;
}

/* ---------- Print ---------- */
@media print {
  .site-header, .site-footer, .cta-final, .nav-cta { display: none; }
}
