/* ═══════════════════════════════════════════════════════════════
   METALÚRGICA MENONITA — styles.css
   Responsive optimizado, performance-first, bajo bandwidth
   ═══════════════════════════════════════════════════════════════ */

/* ── Variables ── */
:root {
  --accent:       #C8860A;
  --accent-light: #E8A020;
  --dark:         #0D0D0D;
  --dark-2:       #161616;
  --dark-3:       #1E1E1E;
  --dark-4:       #2A2A2A;
  --text:         #E8E8E8;
  --text-muted:   #888;
  --border:       rgba(200,134,10,.2);
  --nav-h:        70px;
  --radius:       12px;
  --transition:   .3s ease;
}

/* ── Reset & base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Lato', sans-serif;
  background: var(--dark);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
}

/* ── Tipografía responsiva con clamp ── */
h1, h2, h3, h4, h5 { font-family: 'Oswald', sans-serif; line-height: 1.15; }
h1 { font-size: clamp(2.2rem, 6vw, 4.5rem); }
h2 { font-size: clamp(1.8rem, 4vw, 3rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
h4 { font-size: clamp(1rem, 2vw, 1.25rem); }

a { text-decoration: none; color: inherit; }
img {
  max-width: 100%;
  height: auto;
  display: block;
  /* Evitar Layout Shift */
}

/* ── Utilidades ── */
.text-accent { color: var(--accent); }
.section-tag {
  display: inline-block;
  background: rgba(200,134,10,.12);
  color: var(--accent);
  border: 1px solid var(--border);
  padding: .35rem 1rem;
  border-radius: 99px;
  font-size: .8rem;
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.section-tag.light { background: rgba(200,134,10,.15); }
.section-title { font-weight: 700; letter-spacing: -.01em; margin-bottom: 1rem; }
.section-title.light { color: #fff; }
.section-subtitle { color: var(--text-muted); max-width: 600px; margin: 0 auto; font-size: clamp(.9rem, 2vw, 1.05rem); }
.section-text { color: #bbb; margin-bottom: 1rem; font-size: clamp(.9rem, 2vw, 1rem); }
.section-text.light { color: rgba(255,255,255,.75); }

/* ═══════════════════════════════
   BOTONES
═══════════════════════════════ */
.btn-cta {
  background: var(--accent);
  color: #fff;
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  letter-spacing: .06em;
  padding: .5rem 1.3rem;
  border-radius: 8px;
  border: none;
  font-size: .9rem;
  transition: background var(--transition);
  white-space: nowrap;
}
.btn-cta:hover { background: var(--accent-light); color: #fff; }

.btn-primary-custom {
  background: var(--accent);
  color: #fff;
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  letter-spacing: .06em;
  padding: .75rem 1.75rem;
  border-radius: 8px;
  border: none;
  transition: background var(--transition), transform var(--transition);
}
.btn-primary-custom:hover { background: var(--accent-light); color: #fff; transform: translateY(-2px); }

.btn-outline-custom {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,.4);
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  letter-spacing: .06em;
  padding: .75rem 1.75rem;
  border-radius: 8px;
  transition: border-color var(--transition), background var(--transition);
}
.btn-outline-custom:hover { border-color: var(--accent); background: rgba(200,134,10,.1); color: #fff; }

.btn-product {
  background: transparent;
  color: var(--accent);
  border: 1.5px solid var(--accent);
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  letter-spacing: .05em;
  padding: .55rem 1.25rem;
  border-radius: 8px;
  font-size: .9rem;
  transition: background var(--transition), color var(--transition);
  width: 100%;
  text-align: center;
  display: block;
}
.btn-product:hover { background: var(--accent); color: #fff; }

.btn-whatsapp-send {
  background: #25D366;
  color: #fff;
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  letter-spacing: .06em;
  font-size: 1.1rem;
  padding: .85rem;
  border-radius: 10px;
  border: none;
  transition: background var(--transition), transform var(--transition);
}
.btn-whatsapp-send:hover { background: #1ebe5d; color: #fff; transform: translateY(-2px); }

/* ═══════════════════════════════
   NAVBAR
═══════════════════════════════ */
#mainNav {
  background: transparent;
  height: var(--nav-h);
  transition: background .4s, box-shadow .4s;
  padding: 0;
}
#mainNav.scrolled {
  background: rgba(13,13,13,.97);
  box-shadow: 0 2px 20px rgba(0,0,0,.5);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.brand-icon {
  width: 36px; height: 36px;
  background: var(--accent);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.brand-name {
  display: block;
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.1;
  letter-spacing: .04em;
  color: #fff;
}
.brand-sub {
  display: block;
  font-family: 'Lato', sans-serif;
  font-size: .7rem;
  color: var(--accent);
  letter-spacing: .08em;
  text-transform: uppercase;
}
.navbar-brand { gap: .6rem !important; }

.nav-link {
  color: rgba(255,255,255,.8) !important;
  font-family: 'Oswald', sans-serif;
  font-weight: 500;
  letter-spacing: .06em;
  font-size: .9rem;
  padding: .5rem .8rem !important;
  border-radius: 6px;
  transition: color var(--transition), background var(--transition);
}
.nav-link:hover, .nav-link.active {
  color: var(--accent) !important;
  background: rgba(200,134,10,.08);
}

/* Mobile navbar */
@media (max-width: 991px) {
  #navMenu {
    background: rgba(13,13,13,.98);
    border-top: 1px solid var(--border);
    padding: 1rem;
    margin-top: .5rem;
    border-radius: 0 0 12px 12px;
  }
  .btn-cta { margin-top: .75rem; width: 100%; text-align: center; }
  .navbar-nav { gap: 0 !important; }
}

/* ═══════════════════════════════
   HERO
═══════════════════════════════ */
.hero-section {
  position: relative;
  min-height: 100svh; /* svh para móviles */
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
  /* LCP optimization: no lazy loading */
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(0,0,0,.82) 0%,
    rgba(0,0,0,.6) 50%,
    rgba(13,8,0,.75) 100%
  );
  z-index: 1;
}

.hero-noise {
  position: absolute;
  inset: 0;
  opacity: .04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px;
  z-index: 2;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 3;
  padding-top: var(--nav-h);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(200,134,10,.15);
  border: 1px solid rgba(200,134,10,.4);
  color: var(--accent-light);
  padding: .4rem 1rem;
  border-radius: 99px;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .06em;
  margin-bottom: 1.25rem;
}

.hero-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3rem, 9vw, 7rem);
  line-height: 1;
  letter-spacing: .02em;
  color: #fff;
  margin-bottom: 1.25rem;
}

.hero-desc {
  color: rgba(255,255,255,.75);
  font-size: clamp(.95rem, 2vw, 1.15rem);
  max-width: 520px;
  line-height: 1.7;
}

/* Stats flotantes */
.hero-stats {
  position: absolute;
  bottom: 2.5rem;
  right: 2rem;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 0;
  background: rgba(13,13,13,.85);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1rem 1.5rem;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.stat-item { text-align: center; padding: 0 1.25rem; }
.stat-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  color: var(--accent);
  line-height: 1;
}
.stat-unit { font-size: 1.1rem; color: var(--accent); font-weight: 700; }
.stat-label { display: block; font-size: .7rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: .08em; margin-top: .2rem; }
.stat-divider { width: 1px; height: 40px; background: var(--border); }

.hero-scroll-indicator {
  position: absolute;
  bottom: 3rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .4rem;
  color: rgba(255,255,255,.4);
  font-size: .7rem;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,.4), transparent);
  animation: scrollAnim 1.8s ease-in-out infinite;
}
@keyframes scrollAnim {
  0%, 100% { transform: scaleY(1); opacity: 1; }
  50% { transform: scaleY(.5); opacity: .4; }
}

/* Hero responsive */
@media (max-width: 767px) {
  .hero-stats {
    position: static;
    flex-wrap: wrap;
    justify-content: center;
    gap: .5rem;
    margin: 2rem auto 0;
    width: 100%;
    max-width: 380px;
    padding: .85rem 1rem;
  }
  .stat-item { padding: 0 .75rem; }
  .hero-scroll-indicator { display: none; }
  .hero-title { font-size: clamp(2.5rem, 12vw, 5rem); }
  .hero-content .d-flex { flex-direction: column; }
  .btn-primary-custom, .btn-outline-custom { width: 100%; text-align: center; }
}

@media (max-width: 480px) {
  .hero-section { min-height: 100svh; }
  .hero-content { padding-bottom: 2rem; }
  .hero-stats { flex-wrap: wrap; }
  .stat-divider { display: none; }
}

/* ═══════════════════════════════
   INFO STRIP
═══════════════════════════════ */
.info-strip {
  background: var(--accent);
  padding: .85rem 0;
}
.strip-item {
  display: flex;
  align-items: center;
  gap: .6rem;
  justify-content: center;
  font-size: clamp(.8rem, 1.8vw, .95rem);
  font-weight: 600;
  color: #fff;
  padding: .4rem .5rem;
}
.strip-item i { font-size: 1rem; flex-shrink: 0; }
.strip-item a { color: #fff; text-decoration: underline; text-underline-offset: 3px; }

@media (max-width: 767px) {
  .strip-item { font-size: .82rem; }
  .strip-item:not(:last-child) { border-bottom: 1px solid rgba(255,255,255,.2); padding-bottom: .6rem; margin-bottom: .4rem; }
}

/* ═══════════════════════════════
   NOSOTROS
═══════════════════════════════ */
.section-about {
  padding: clamp(4rem, 8vw, 7rem) 0;
  background: var(--dark-2);
}

.about-img-wrap {
  position: relative;
  border-radius: 16px;
  overflow: visible;
}
.about-img-main {
  width: 100%;
  border-radius: 16px;
  object-fit: cover;
  aspect-ratio: 4/3;
  border: 2px solid var(--border);
}
.about-badge-float {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  background: var(--accent);
  border-radius: 14px;
  padding: 1rem 1.5rem;
  text-align: center;
  box-shadow: 0 8px 32px rgba(200,134,10,.35);
}
.about-badge-float .big-num {
  display: block;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3rem;
  color: #fff;
  line-height: 1;
}
.about-badge-float .big-label {
  display: block;
  font-size: .7rem;
  color: rgba(255,255,255,.8);
  text-transform: uppercase;
  letter-spacing: .08em;
}

.about-features {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
  margin-top: 1.75rem;
}
.feature-pill {
  display: flex;
  align-items: center;
  gap: .4rem;
  background: var(--dark-3);
  border: 1px solid var(--border);
  color: #ddd;
  padding: .4rem 1rem;
  border-radius: 99px;
  font-size: .82rem;
  font-weight: 600;
}
.feature-pill i { color: var(--accent); font-size: .85rem; }

@media (max-width: 575px) {
  .about-badge-float { right: 0; bottom: -1rem; padding: .75rem 1rem; }
  .about-badge-float .big-num { font-size: 2.2rem; }
  .about-img-main { aspect-ratio: 1; }
  .section-about .col-lg-6 { padding-left: 0 !important; }
}

/* ═══════════════════════════════
   PRODUCTOS
═══════════════════════════════ */
.section-products {
  padding: clamp(4rem, 8vw, 7rem) 0;
  background: var(--dark);
}

.product-card {
  background: var(--dark-3);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: transform var(--transition), box-shadow var(--transition);
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,.4);
}
.product-card.featured {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px rgba(200,134,10,.3), 0 8px 40px rgba(200,134,10,.12);
}

.product-img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/9;
}
.product-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
  /* Evitar CLS con aspect-ratio definido arriba */
}
.product-card:hover .product-img-wrap img { transform: scale(1.06); }

.product-tag {
  position: absolute;
  top: .8rem;
  left: .8rem;
  background: rgba(13,13,13,.85);
  color: #fff;
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  padding: .3rem .7rem;
  border-radius: 6px;
  border: 1px solid rgba(255,255,255,.1);
}
.product-tag.accent {
  background: var(--accent);
  border-color: transparent;
}

.product-body {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: .75rem;
}
.product-icon {
  width: 40px; height: 40px;
  background: rgba(200,134,10,.12);
  border: 1px solid var(--border);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  color: var(--accent);
  flex-shrink: 0;
}
.product-body h3 {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  color: #fff;
  margin: 0;
}
.product-body p {
  color: #999;
  font-size: clamp(.83rem, 1.6vw, .95rem);
  margin: 0;
  flex: 1;
}

.product-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: .35rem;
}
.product-list li {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .82rem;
  color: #aaa;
}
.product-list li i { color: var(--accent); font-size: .75rem; flex-shrink: 0; }

@media (max-width: 575px) {
  .product-body { padding: 1.25rem; }
}

/* ═══════════════════════════════
   POR QUÉ ELEGIRNOS
═══════════════════════════════ */
.section-why {
  padding: clamp(4rem, 8vw, 7rem) 0;
  background: linear-gradient(135deg, #0a0500 0%, #1a0e02 50%, #120800 100%);
  position: relative;
  overflow: hidden;
}
.section-why::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(200,134,10,.08) 0%, transparent 70%);
  pointer-events: none;
}

.why-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 14px;
  padding: 1.5rem;
  transition: border-color var(--transition), transform var(--transition);
  height: 100%;
}
.why-card:hover { border-color: var(--accent); transform: translateY(-3px); }

.why-icon {
  width: 46px; height: 46px;
  background: rgba(200,134,10,.15);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  color: var(--accent);
  margin-bottom: 1rem;
}
.why-card h4 { color: #fff; margin-bottom: .5rem; font-size: 1.05rem; }
.why-card p { color: rgba(255,255,255,.6); font-size: .87rem; margin: 0; }

/* ═══════════════════════════════
   GALERÍA
═══════════════════════════════ */
.section-gallery {
  padding: clamp(4rem, 8vw, 7rem) 0;
  background: var(--dark-2);
}

.gallery-img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  border-radius: 12px;
}

/* Evitar CLS: reservar espacio antes de cargar */
.carousel-inner { min-height: 200px; }
@media (min-width: 576px)  { .carousel-inner { min-height: 280px; } }
@media (min-width: 768px)  { .carousel-inner { min-height: 380px; } }
@media (min-width: 1200px) { .carousel-inner { min-height: 520px; } }

.carousel-caption-custom {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
}
.carousel-caption-custom span {
  background: rgba(0,0,0,.7);
  color: #fff;
  font-size: clamp(.72rem, 1.5vw, .85rem);
  padding: .35rem .9rem;
  border-radius: 99px;
  border: 1px solid rgba(255,255,255,.1);
  letter-spacing: .04em;
}

.gallery-prev, .gallery-next {
  width: 44px; height: 44px;
  background: rgba(200,134,10,.8) !important;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  top: 50%; transform: translateY(-50%);
  position: absolute;
  border: none;
  transition: background var(--transition);
  /* Aumentar área touch en móvil */
  min-width: 44px;
}
.gallery-prev { left: .75rem; }
.gallery-next { right: .75rem; }
.gallery-prev:hover, .gallery-next:hover { background: var(--accent) !important; }
.gallery-prev i, .gallery-next i { color: #fff; font-size: 1.1rem; }

@media (max-width: 575px) {
  .gallery-prev { left: .25rem; }
  .gallery-next { right: .25rem; }
  .carousel-caption-custom { display: none; }
}

/* ═══════════════════════════════
   PROCESO
═══════════════════════════════ */
.section-process {
  padding: clamp(4rem, 8vw, 7rem) 0;
  background: var(--dark);
}

.process-row {
  position: relative;
}
.process-row::before {
  content: '';
  position: absolute;
  top: 60px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(to right, var(--accent), transparent);
  opacity: .3;
}

.process-step {
  text-align: center;
  padding: 0 1.5rem;
  position: relative;
}
.process-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3.5rem;
  color: rgba(200,134,10,.15);
  line-height: 1;
  position: absolute;
  top: -1rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 0;
  pointer-events: none;
}
.process-icon {
  width: 64px; height: 64px;
  background: var(--dark-3);
  border: 2px solid var(--accent);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  color: var(--accent);
  margin: 2rem auto 1.25rem;
  position: relative;
  z-index: 1;
}
.process-step h4 { color: #fff; margin-bottom: .5rem; }
.process-step p { color: var(--text-muted); font-size: .87rem; }

@media (max-width: 767px) {
  .process-row::before { display: none; }
  .process-step {
    display: flex;
    gap: 1rem;
    text-align: left;
    align-items: flex-start;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border);
  }
  .process-step:last-child { border-bottom: none; }
  .process-num { display: none; }
  .process-icon { margin: 0; flex-shrink: 0; width: 50px; height: 50px; font-size: 1.2rem; }
}

/* ═══════════════════════════════
   TESTIMONIOS
═══════════════════════════════ */
.section-testimonials {
  padding: clamp(4rem, 8vw, 7rem) 0;
  background: var(--dark-2);
}

.testimonial-card {
  background: var(--dark-3);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.75rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: transform var(--transition);
}
.testimonial-card:hover { transform: translateY(-4px); }
.testimonial-card.featured-t {
  border-color: var(--accent);
  background: linear-gradient(145deg, #1e1400 0%, var(--dark-3) 60%);
}

.stars { color: var(--accent); font-size: .9rem; letter-spacing: .1em; }
.testimonial-card > p {
  color: #bbb;
  font-size: clamp(.85rem, 1.6vw, .95rem);
  font-style: italic;
  flex: 1;
  line-height: 1.7;
  margin: 0;
}
.testimonial-author { display: flex; align-items: center; gap: .85rem; margin-top: auto; }
.author-avatar {
  width: 42px; height: 42px;
  background: var(--accent);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: .85rem;
  color: #fff;
  flex-shrink: 0;
}
.testimonial-author strong { display: block; color: #fff; font-size: .9rem; }
.testimonial-author span { font-size: .76rem; color: var(--text-muted); }

/* ═══════════════════════════════
   CONTACTO
═══════════════════════════════ */
.section-contact {
  padding: clamp(4rem, 8vw, 7rem) 0;
  background: var(--dark);
}

.contact-subtitle {
  color: #fff;
  font-size: 1.15rem;
  margin-bottom: 1.5rem;
}

.social-grid { display: flex; flex-direction: column; gap: .85rem; }

.social-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--dark-3);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1rem 1.25rem;
  transition: transform var(--transition), border-color var(--transition);
  color: #fff;
}
.social-card:hover { transform: translateX(4px); color: #fff; }
.social-card.instagram:hover { border-color: #E1306C; }
.social-card.whatsapp:hover { border-color: #25D366; }
.social-card.email:hover { border-color: var(--accent); }

.social-icon-wrap {
  width: 44px; height: 44px;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}
.instagram .social-icon-wrap { background: rgba(225,48,108,.12); color: #E1306C; }
.whatsapp .social-icon-wrap  { background: rgba(37,211,102,.12); color: #25D366; }
.email .social-icon-wrap     { background: rgba(200,134,10,.12); color: var(--accent); }

.social-info { flex: 1; min-width: 0; }
.social-info strong { display: block; font-size: .9rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.social-info span { font-size: .78rem; color: var(--text-muted); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; display: block; }
.social-arrow { color: var(--text-muted); font-size: .9rem; flex-shrink: 0; }

.location-card {
  background: var(--dark-3);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.25rem 1.5rem;
}
.location-card h4 { color: #fff; font-size: 1rem; margin-bottom: .75rem; }
.location-card p { color: #bbb; font-size: .9rem; margin-bottom: .5rem; }
.location-card i { color: var(--accent); }

.contact-form-wrap {
  background: var(--dark-3);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: clamp(1.25rem, 3vw, 2rem);
}

.form-label {
  color: #ccc;
  font-size: .85rem;
  font-weight: 600;
  margin-bottom: .4rem;
  display: block;
}
.custom-input {
  background: var(--dark-4) !important;
  border: 1.5px solid rgba(255,255,255,.1) !important;
  color: #fff !important;
  border-radius: 10px !important;
  padding: .7rem 1rem !important;
  font-size: .95rem !important;
  transition: border-color var(--transition) !important;
  width: 100%;
}
.custom-input:focus {
  outline: none !important;
  border-color: var(--accent) !important;
  box-shadow: 0 0 0 3px rgba(200,134,10,.12) !important;
}
.custom-input::placeholder { color: #555 !important; }
.custom-input option { background: var(--dark-4); color: #fff; }

.form-disclaimer {
  text-align: center;
  font-size: .75rem;
  color: var(--text-muted);
  margin-top: .75rem;
  margin-bottom: 0;
}

/* ═══════════════════════════════
   FOOTER
═══════════════════════════════ */
.site-footer { background: #080808; }

.footer-top { padding: clamp(3rem, 6vw, 5rem) 0; border-bottom: 1px solid var(--border); }

.footer-brand {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin-bottom: 1rem;
}
.footer-brand .brand-icon { width: 40px; height: 40px; font-size: 1.2rem; }
.footer-brand .brand-name { font-size: 1.1rem; }

.footer-desc { color: var(--text-muted); font-size: .87rem; line-height: 1.65; margin-bottom: 1.25rem; max-width: 300px; }

.footer-socials { display: flex; gap: .6rem; }
.footer-socials a {
  width: 38px; height: 38px;
  background: var(--dark-3);
  border: 1px solid var(--border);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  color: var(--text-muted);
  transition: border-color var(--transition), color var(--transition);
}
.footer-socials a:hover { border-color: var(--accent); color: var(--accent); }

.footer-heading {
  font-family: 'Oswald', sans-serif;
  font-size: .85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--accent);
  margin-bottom: 1.25rem;
}
.footer-links { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: .5rem; }
.footer-links a { color: var(--text-muted); font-size: .87rem; transition: color var(--transition); }
.footer-links a:hover { color: var(--accent); }

.footer-contact { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: .6rem; }
.footer-contact li { display: flex; align-items: flex-start; gap: .6rem; color: var(--text-muted); font-size: .87rem; }
.footer-contact li i { color: var(--accent); margin-top: .1rem; flex-shrink: 0; }
.footer-contact a { color: var(--text-muted); transition: color var(--transition); }
.footer-contact a:hover { color: var(--accent); }

.footer-bottom {
  padding: 1.25rem 0;
  background: #050505;
}
.footer-bottom p { margin: 0; color: #555; font-size: .8rem; }
.footer-bottom a { color: var(--accent); }
.footer-bottom a:hover { color: var(--accent-light); }

/* ═══════════════════════════════
   WA FLOAT BUTTON
═══════════════════════════════ */
.wa-float {
  position: fixed;
  bottom: 1.75rem;
  right: 1.75rem;
  z-index: 9999;
  width: 56px; height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.75rem;
  color: #fff;
  box-shadow: 0 4px 20px rgba(37,211,102,.4);
  /* touch-action mejora el tap en móvil */
  touch-action: manipulation;
  /* Área de toque mínima recomendada */
  min-width: 44px; min-height: 44px;
}
.wa-float:hover { color: #fff; transform: scale(1.08); }

.wa-tooltip {
  position: absolute;
  right: 100%;
  margin-right: .6rem;
  background: #1a1a1a;
  color: #fff;
  font-size: .78rem;
  font-weight: 600;
  padding: .35rem .75rem;
  border-radius: 6px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s;
}
.wa-float:hover .wa-tooltip { opacity: 1; }

@media (max-width: 575px) {
  .wa-float { bottom: 1.25rem; right: 1.25rem; width: 50px; height: 50px; font-size: 1.5rem; }
  .wa-tooltip { display: none; }
}

/* ═══════════════════════════════
   REVEAL ANIMATIONS
═══════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .55s ease, transform .55s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}

/* Reducir movimiento si el usuario lo prefiere */
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .scroll-line { animation: none; }
  * { transition-duration: .01ms !important; animation-duration: .01ms !important; }
}

/* ═══════════════════════════════
   CAROUSEL indicators override
═══════════════════════════════ */
.carousel-indicators [data-bs-target] {
  width: 8px; height: 8px;
  border-radius: 50%;
  background-color: rgba(255,255,255,.3);
  border: none;
  margin: 0 3px;
  transition: background .25s, width .25s;
}
.carousel-indicators .active {
  background-color: var(--accent) !important;
  width: 20px;
  border-radius: 4px;
}

/* ═══════════════════════════════
   FOCUS VISIBLE (accesibilidad)
═══════════════════════════════ */
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

/* ═══════════════════════════════
   SCROLLBAR
═══════════════════════════════ */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--dark); }
::-webkit-scrollbar-thumb { background: var(--dark-4); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--accent); }

/* ═══════════════════════════════
   SELECCIÓN DE TEXTO
═══════════════════════════════ */
::selection { background: rgba(200,134,10,.3); color: #fff; }