/* ===============================
   RESET
================================ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* ===============================
   VARIABLES
================================ */
:root {
  --gold: #d4af37;
  --gold-soft: #c9aa44;
  --black: #0d0d0d;
}

/* ===============================
   BASE
================================ */
body {
  font-family: 'Inter', Arial, Helvetica, sans-serif;
  background: #ffffff;
  color: #000;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
html {
  scroll-behavior: smooth;
}

html {
  scroll-behavior: smooth;
}

/* ===============================
   TOP BAR (RECTANGULAR)
================================ */
.topbar {
  width: 100%;
  padding-top: 26px;
}
.topbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
}
body {
  padding-top: 65px; /* ajusta según altura real de tu barra */
}

.topbar-inner {
  width: 100%;
  max-width: 860px;
  height: 38px;
  margin: 0 auto;
  padding: 0 16px;
  background: linear-gradient(180deg, #1a1a1a, #0d0d0d);
  border-radius: 4px;              /* 🔥 RECTANGULAR */
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  box-shadow: 0 6px 14px rgba(0,0,0,0.25);
}

/* LEFT */
.topbar-left {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: #e5e5e5;
  cursor: pointer;
}

.burger {
  font-size: 15px;
  line-height: 1;
}

/* CENTER */
.topbar-center {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 4px;
  color: var(--gold);
}

/* RIGHT */
.topbar-right {
  display: flex;
  justify-content: flex-end;
}

.btn-contacto {
  background: var(--gold);
  color: #000;
  padding: 5px 14px;
  border-radius: 4px;              /* 🔥 RECTANGULAR */
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
  line-height: 1.2;
  transition: background 0.2s ease;
}

.btn-contacto:hover {
  background: var(--gold-soft);
}

/* ===============================
   TICKER (DORADO + TEXTO NEGRO)
================================ */
.ticker {
  margin: 8px auto 0;
  width: 100%;
  max-width: 860px;
  overflow: hidden;
  background: var(--gold);         /* 🔥 DORADO */
  border-radius: 4px;              /* 🔥 RECTANGULAR */
}

.ticker-track {
  display: flex;
  gap: 20px;
  padding: 6px 0;
  white-space: nowrap;
  animation: scroll 22s linear infinite;
  font-size: 11px;
  font-weight: 600;
  color: #000;                     /* 🔥 TEXTO NEGRO */
}

@keyframes scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ===============================
   RESPONSIVE
================================ */
@media (max-width: 768px) {

  .menu-text {
    display: none;
  }

  .topbar-inner,
  .ticker {
    max-width: 92%;
  }

  .topbar-center {
    font-size: 14px;
    letter-spacing: 3px;
  }

  .btn-contacto {
    font-size: 11px;
    padding: 4px 12px;
  }
}
/* ===============================
   HERO INDUSTRIAL
================================ */
.hero {
  position: relative;
  height: calc(100vh - 120px);
  margin-top: 30px;
 
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
}

/* OSCURECER IMAGEN */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}

/* CONTENIDO */
.hero-content {
  position: relative;
  max-width: 700px;
  margin-left: 10%;          /* 🔥 mueve el bloque al centro */
  padding: 0;
  color: #fff;
}


.hero h1 {
  font-size: 80px;
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: -0.02em;   /* 🔥 CLAVE OSMO */
  margin-bottom: 18px;
}

.hero h1 span {
  color: var(--gold);
  font-weight: 800;
}


.hero p {
  font-size: 16px;
  line-height: 1.7;
  font-weight: 400;
  color: rgba(255,255,255,0.9);
  max-width: 520px;
  margin-bottom: 30px;
}


/* BOTÓN */
.hero-btn {
  display: inline-block;
  background: var(--gold);
  color: #000;
  padding: 14px 36px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  border-radius: 999px;
  transition: transform 0.2s ease, background 0.2s ease;
}

.hero-btn:hover {
  background: var(--gold-soft);
  transform: translateY(-2px);
}

/* ===============================
   HERO CON VIDEO
================================ */
.hero-video {
  position: relative;
  height: calc(100vh - 120px);
  overflow: hidden;
  display: flex;
  align-items: center;
}

/* VIDEO */
.hero-bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;

  filter: none;
  z-index: 0;
}


/* OVERLAY OSCURO */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.70);
  z-index: 1;
}

/* CONTENIDO ENCIMA */
.hero-content {
  position: relative;
  z-index: 2;
}

/* ===============================
   RESPONSIVE HERO
================================ */
@media (max-width: 768px) {
  .hero {
    height: auto;
    padding: 80px 0;
  }

  .hero-content {
    padding: 0 24px;
  }

  .hero h1 {
    font-size: 38px;
  }
}
/* ===============================
   MENU OVERLAY (1/3 DE PANTALLA)
================================ */
.menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.45);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 2000;
}

.menu-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

/* PANEL LATERAL */
.menu-panel {
  position: absolute;
  top: 0;
  left: 0;
  width: 33.333%;
  max-width: 420px;
  height: 100%;
  background: rgba(20, 20, 20,0.28); /* 🔥 TRANSPARENCIA */
  backdrop-filter: blur(10px);       /* 🔥 EFECTO PREMIUM */
  -webkit-backdrop-filter: blur(10px);
  padding: 40px 32px;
  transform: translateX(-100%);
  transition: transform 0.35s ease;
}

.menu-overlay.active .menu-panel {
  transform: translateX(0);
}

/* BOTÓN CERRAR */
.menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  color: #fff;
  font-size: 26px;
  cursor: pointer;
}

/* LINKS */
.menu-links {
  margin-top: 80px;
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.menu-links a {
  color: #fff;
  text-decoration: none;
  font-size: 34px;
  font-weight: 700;
  letter-spacing: -0.02em;
  transition: color 0.2s ease, transform 0.2s ease;
}

.menu-links a:hover {
  color: var(--gold);
  transform: translateX(6px);
}

/* CTA */
.menu-cta {
  margin-top: 24px;
  font-size: 15px !important;
  color: #000 !important;
  background: var(--gold);
  width: fit-content;
  padding: 12px 24px;
  border-radius: 999px;
}

/* ===============================
   RESPONSIVE
================================ */
@media (max-width: 768px) {
  .menu-panel {
    width: 85%;
    max-width: none;
  }

  .menu-links a {
    font-size: 26px;
  }
}
/* ===============================
   LINEA DORADA VERTICAL (MENU)
================================ */
.menu-panel::before {
  content: "";
  position: absolute;
  top: 40px;
  bottom: 40px;
  left: 0;
  width: 2px;
  background: linear-gradient(
    to bottom,
    transparent,
    var(--gold),
    transparent
  );
  opacity: 0.9;
}
/* ===============================
   QUIÉNES SOMOS
================================ */
.about {
  background: #ffffff;
  padding: 80px 0 60px; /* 🔥 menos espacio abajo */
}

.about-inner {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 20px;
}

/* LABEL */
.about-label {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 32px;
}

.about-label span {
  width: 42px;
  height: 2px;
  background: var(--gold);
}

.about-label p {
  font-size: 12px;
  letter-spacing: 0.25em;
  font-weight: 600;
  color: #000;
}

/* CONTENIDO */
.about-content h2 {
  font-size: 46px;
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 30px;
}

.about-content h2 span {
  color: var(--gold);
}

.about-content p {
  max-width: 580px;
  font-size: 16px;
  line-height: 1.7;
  color: #222;
  margin-bottom: 0; /* 🔥 evita empujar la siguiente sección */
}


/* RESPONSIVE */
@media (max-width: 768px) {
  .about {
    padding: 80px 0;
  }

  .about-content h2 {
    font-size: 32px;
  }
}
/* =========================================
   MISIÓN & VISIÓN – PLACAS METÁLICAS
========================================= */

.mission-vision {
  max-width: 1280px;
  margin: 40px auto 0;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}

/* PLACA BASE */
.plate {
  position: relative;
  padding: 64px 56px;
  background:
    linear-gradient(
      135deg,
      #1b1b1b,
      #0e0e0e
    );
  color: #f5f5f5;
  border: 1px solid rgba(212,175,55,0.35);
  box-shadow:
    0 60px 120px rgba(0,0,0,0.65),
    inset 0 0 0 1px rgba(255,255,255,0.04);
  overflow: hidden;
}

/* TEXTURA METAL CEPILLADO */
.plate::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    90deg,
    rgba(255,255,255,0.03) 0,
    rgba(255,255,255,0.03) 1px,
    transparent 1px,
    transparent 3px
  );
  opacity: 0.4;
  pointer-events: none;
}

/* BRILLO SUPERIOR */
.plate::after {
  content: "";
  position: absolute;
  top: 0;
  left: -20%;
  width: 140%;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--gold),
    transparent
  );
}

/* ETIQUETA */
.plate-label {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 0.35em;
  font-weight: 800;
  color: var(--gold);
  margin-bottom: 26px;
}

/* TITULO */
.plate h3 {
  font-size: 34px;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 28px;
}

/* TEXTO */
.plate p {
  font-size: 16.5px;
  line-height: 1.85;
  color: #e0e0e0;
  margin-bottom: 20px;
}

.plate p strong {
  color: var(--gold);
  font-weight: 700;
}

/* VARIACIÓN VISIÓN */
.plate.vision {
  background:
    linear-gradient(
      135deg,
      #0e0e0e,
      #000000
    );
}

/* HOVER SUTIL */
.plate:hover {
  transform: translateY(-6px);
  transition: transform 0.4s ease;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .mission-vision {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .plate {
    padding: 48px 36px;
  }

  .plate h3 {
    font-size: 28px;
  }
}


/* ===============================
   PROCESO
================================ */
.process {
  background: #ffffff;
  padding: 60px 0 120px; /* 🔥 menos espacio arriba */
  border-top: 1px solid #eee;
}


.process-inner {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 20px;
}

/* LABEL */
.process-label {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 30px;
}

.process-label span {
  width: 40px;
  height: 2px;
  background: var(--gold);
}

.process-label p {
  font-size: 12px;
  letter-spacing: 0.25em;
  font-weight: 600;
}

/* TITULO */
.process h2 {
  font-size: 42px;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 70px;
}

.process h2 span {
  color: var(--gold);
}

/* STEPS */
.process-steps {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px 40px;
}

.process-step {
  max-width: 360px;
}

.step-number {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--gold);
  margin-bottom: 12px;
}

.process-step h3 {
  font-size: 20px;
  margin-bottom: 12px;
}

.process-step p {
  font-size: 15px;
  line-height: 1.65;
  color: #333;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .process {
    padding: 80px 0;
  }

  .process h2 {
    font-size: 30px;
  }

  .process-steps {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
/* ===============================
   PROCESO WOW
================================ */
.process {
  background-image:
    linear-gradient(
      180deg,
      rgba(212,175,55,0.08),
      rgba(212,175,55,0.03)
    ),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='120' height='120' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
}


.process-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

/* LABEL */
.process-label {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 30px;
}

.process-label span {
  width: 40px;
  height: 2px;
  background: var(--gold);
}

.process-label p {
  font-size: 12px;
  letter-spacing: 0.25em;
  font-weight: 600;
}

/* TITLE */
.process h2 {
  font-size: 42px;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 80px;
}

.process h2 span {
  color: var(--gold);
}

/* ITEM */
.process-item {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 100px;
}

.process-item.reverse {
  grid-template-columns: 1.2fr 1fr;
}

.process-item.reverse .process-text {
  order: 2;
}

/* TEXT */
.process-text {
  max-width: 420px;
}

.step {
  display: block;
  font-size: 12px;
  letter-spacing: 0.25em;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 12px;
}

.process-text h3 {
  font-size: 26px;
  margin-bottom: 16px;
}

.process-text p {
  font-size: 16px;
  line-height: 1.7;
  color: #333;
}

/* IMAGE PLACEHOLDER */
.process-image {
  width: 100%;
  height: 320px;
  background: #f0f0f0;
  border: 1px solid #e0e0e0;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .process h2 {
    font-size: 30px;
    margin-bottom: 50px;
  }

  .process-item {
    grid-template-columns: 1fr;
    gap: 30px;
    margin-bottom: 70px;
  }

  .process-item.reverse .process-text {
    order: 0;
  }

  .process-image {
    height: 220px;
  }
}
.process::before,
.process::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
  background: rgba(212, 175, 55, 0.4);
}

.process::before {
  top: 0;
}

.process::after {
  bottom: 0;
}
.process-item {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.process-item.visible {
  opacity: 1;
  transform: translateY(0);
}
.process-image {
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.process-image:hover {
  transform: scale(1.03);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}
/* ===============================
   SERVICIOS WOW
================================ */
.services {
  background: #ffffff;
  padding: 40px 0 120px;
}

.services-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

/* LABEL */
.services-label {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 30px;
}

.services-label span {
  width: 40px;
  height: 2px;
  background: var(--gold);
}

.services-label p {
  font-size: 12px;
  letter-spacing: 0.25em;
  font-weight: 600;
}

/* TITLE */
.services h2 {
  font-size: 42px;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 70px;
}

.services h2 span {
  color: var(--gold);
}

/* GRID */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
}

/* CARD */
.service-card {
  position: relative;
  padding: 40px 34px;
  border: 1px solid #e5e5e5;
  background: #fff;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.08);
}

/* NUMBER */
.service-number {
  display: block;
  font-size: 12px;
  letter-spacing: 0.25em;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 16px;
}

/* TEXT */
.service-card h3 {
  font-size: 20px;
  margin-bottom: 14px;
}

.service-card p {
  font-size: 15px;
  line-height: 1.65;
  color: #333;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .services {
    padding: 80px 0;
  }

  .services h2 {
    font-size: 30px;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }
}
/* ===============================
   PROYECTOS
================================ */
.projects {
  background: #0d0d0d;
 
  padding-top: 40px; /* antes seguro está en 140px o más */

  color: #fff;
  padding-bottom: 60px; 
}

.projects-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

/* LABEL */
.projects-label {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 30px;
}

.projects-label span {
  width: 40px;
  height: 2px;
  background: var(--gold);
}

.projects-label p {
  font-size: 12px;
  letter-spacing: 0.25em;
  font-weight: 600;
}

/* TITLE */
.projects h2 {
  font-size: 42px;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 80px;
}

.projects h2 span {
  color: var(--gold);
}

/* GRID */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

/* CARD */
.project-card {
  background: #111;
  border: 1px solid #222;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.project-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 60px rgba(0,0,0,0.6);
}

/* IMAGE */
.project-image {
  width: 100%;
  height: 260px;
  background: #1f1f1f;
}

/* INFO */
.project-info {
  padding: 24px;
}

.project-info h3 {
  font-size: 18px;
  margin-bottom: 10px;
}

.project-info p {
  font-size: 14px;
  line-height: 1.6;
  color: #ccc;
}
.project-image {
  position: relative;
  overflow: hidden;
}

.project-image video {
  width: 100%;
  height: 100%;
  object-fit: cover;   /* mismo efecto que imagen */
}
.project-image video {
  transition: transform 0.6s ease;
}

.project-card:hover .project-image video {
  transform: scale(1.05);
}



/* RESPONSIVE */
@media (max-width: 768px) {
  .projects {
    padding: 80px 0;
  }

  .projects h2 {
    font-size: 30px;
  }

  .projects-grid {
    grid-template-columns: 1fr;
  }
}
/* ===============================
   CALIDAD WOW
================================ */
.quality {
  background: linear-gradient(
    180deg,
    rgba(212,175,55,0.06),
    rgba(255,255,255,1)
  );
  padding: 40px 0;
}

.quality-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

/* HEADER */
.quality-header {
  max-width: 700px;
  margin-bottom: 80px;
}

.quality-label {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
}

.quality-label span {
  width: 40px;
  height: 2px;
  background: var(--gold);
}

.quality-label p {
  font-size: 12px;
  letter-spacing: 0.25em;
  font-weight: 600;
}

/* TITLE */
.quality-header h2 {
  font-size: 44px;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

.quality-header h2 span {
  color: var(--gold);
}

.quality-intro {
  font-size: 16px;
  line-height: 1.7;
  color: #333;
}

/* GRID */
.quality-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-bottom: 90px;
}

/* CARD */
.quality-card {
  background: #ffffff;
  border: 1px solid #e5e5e5;
  padding: 32px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.quality-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.08);
}

.quality-card h3 {
  font-size: 18px;
  margin-bottom: 14px;
}

.quality-card p {
  font-size: 15px;
  line-height: 1.6;
  color: #333;
}

/* ISO BLOCK */
.quality-iso {
  display: flex;
  align-items: center;
  gap: 20px;
  border-top: 1px solid #e5e5e5;
  padding-top: 40px;
}

.quality-iso span {
  font-size: 64px;
  font-weight: 800;
  letter-spacing: -0.05em;
  color: var(--gold);
}

.quality-iso p {
  font-size: 16px;
  font-weight: 500;
  color: #333;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .quality-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .quality {
    padding: 80px 0;
  }

  .quality-header h2 {
    font-size: 30px;
  }

  .quality-grid {
    grid-template-columns: 1fr;
  }

  .quality-iso span {
    font-size: 48px;
  }
}
/* =========================================
   POLÍTICA DE CALIDAD – VIDEO INDUSTRIAL
========================================= */

.quality-policy-video {
  position: relative;
  min-height: 75vh;
  display: flex;
  align-items: center;
  padding: 120px 24px;
  background: #000;
  overflow: hidden;
}

/* VIDEO */
.quality-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%) contrast(120%) brightness(55%);
  z-index: 0;
}

/* OVERLAY OSCURO */
.quality-policy-video::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.7);
  z-index: 1;
}

/* GRANO INDUSTRIAL */
.quality-policy-video::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='180' height='180' filter='url(%23noise)' opacity='0.06'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
  pointer-events: none;
  z-index: 2;
}

/* CONTENIDO */
.quality-policy-content {
  position: relative;
  z-index: 3;
  max-width: 820px;
  margin-left: 10%;
  color: #fff;
}

/* EYEBROW */
.quality-policy-content .quality-eyebrow {
  font-size: 12px;
  letter-spacing: 0.35em;
  font-weight: 700;
  color: var(--gold);
  display: inline-block;
  margin-bottom: 26px;
}

/* TITULO */
.quality-policy-content h3 {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 900;
  line-height: 1.05;
  margin-bottom: 34px;
}

.quality-policy-content h3 span {
  color: var(--gold);
}

/* TEXTO */
.quality-policy-content p {
  font-size: 16.8px;
  line-height: 1.9;
  color: #e5e5e5;
  margin-bottom: 22px;
}

.quality-policy-content p strong {
  color: var(--gold);
  font-weight: 700;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .quality-policy-video {
    padding: 80px 20px;
  }

  .quality-policy-content {
    margin-left: 0;
  }

  .quality-policy-content h3 {
    font-size: 32px;
  }
}

/* ===============================
   CONTACTO MINIMAL
================================ */
.contact-minimal {
  background: linear-gradient(
    180deg,
    #f7f7f7 0%,
    #ffffff 60%
  );
  padding: 40px 0 0px;
}


.contact-inner {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 20px 120px;
  text-align: left;
}

/* EYEBROW */
.contact-eyebrow {
  font-size: 12px;
  letter-spacing: 0.35em;
  font-weight: 600;
  margin-bottom: 24px;
  position: relative;
}

.contact-eyebrow::before {
  content: "";
  display: inline-block;
  width: 36px;
  height: 2px;
  background: var(--gold);
  margin-right: 14px;
  vertical-align: middle;
}

/* TITULO */
.contact-title {
  font-size: 52px;
  font-weight: 900;
  line-height: 1.05;
  margin-bottom: 28px;
}

.contact-title span {
  color: var(--gold);
}

/* TEXTO */
.contact-text {
  font-size: 16px;
  line-height: 1.8;
  max-width: 560px;
  margin-bottom: 60px;
  color: #222;
}

/* FORM */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-form input,
.contact-form textarea {
  border: 1px solid #d0d0d0;
  padding: 16px 18px;
  font-size: 14px;
  font-family: inherit;
}

.contact-form textarea {
  min-height: 140px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--gold);
}

/* BOTON */
.contact-form button {
  margin-top: 20px;
  background: var(--gold);
  color: #000;
  border: none;
  padding: 16px 46px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.25em;
  align-self: flex-start;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.contact-form button:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 36px rgba(212,175,55,0.4);
}

/* WHATSAPP */
.contact-whatsapp {
  display: inline-block;
  margin-top: 36px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  color: #000;
  border-bottom: 2px solid var(--gold);
  padding-bottom: 4px;
}

/* MAPA */
.contact-map {
  display: flex;
  justify-content: center;
  padding-bottom: 100px;
}

.contact-map iframe {
  width: 80%;
  max-width: 900px;
  height: 260px;
  border: none;
  filter: grayscale(1) contrast(1.1) brightness(0.95);
}


/* RESPONSIVE */
@media (max-width: 768px) {
  .contact-title {
    font-size: 38px;
  }

  .contact-inner {
    padding-bottom: 80px;
  }
}
/* SEPARADOR ENTRE SECCIONES */
.section-divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(
    to right,
    transparent,
    var(--gold),
    transparent
  );
  margin: 10px 0; /* antes 140px */
}
.map-address {
  margin-top: 12px;
  font-size: 14px;
  color: #555;
  text-align: center;
}
.contact-map {
  max-width: 900px;
  margin: 60px auto 0;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,.08);
}

.contact-map iframe {
  width: 100%;
  height: 380px;
  border: 0;
}
/* ===============================
   AJUSTE MAPA CONTACTO
================================ */

/* reduce espacio debajo del formulario */
.contact-inner {
  margin-bottom: 60px; /* prueba 20px si lo quieres aún más arriba */
  padding-bottom: 0;
}

/* sube visualmente el mapa */
.contact-map {
  margin-top: -60px; /* AJUSTA: -40 / -60 / -80 según te guste */
}

/* asegura altura correcta del mapa */
.contact-map iframe {
  width: 100%;
  height: 420px;
  border: 0;
}
/* ===============================
   MAPA CENTRADO SIN BLOQUE BLANCO
================================ */

.contact-map {
  width: 100%;
  display: flex;                /* CENTRA */
  justify-content: center;      /* CENTRO HORIZONTAL */
  align-items: center;          /* CENTRO VERTICAL */
  padding: 0;
  margin: 0 auto;
  height: 420px;                /* controla la altura */
  background: #000;             /* evita parches blancos */
  overflow: hidden;
}

.contact-map iframe {
  width: 100%;
  max-width: 1200px;            /* 🔥 centrado visual premium */
  height: 100%;
  border: 0;
  display: block;
}


/* ===============================
   ÁREAS | CATÁLOGO
================================ */

.areas {
  background: #ffffff;
  padding: 40px 0;
}

.areas-header {
  max-width: 1200px;
  margin: 0 auto 80px;
  padding: 0 24px;
}

.areas-eyebrow {
  font-size: 12px;
  letter-spacing: 0.25em;
  font-weight: 600;
  margin-bottom: 16px;
  display: inline-block;
  position: relative;
}

.areas-eyebrow::before {
  content: "";
  width: 40px;
  height: 2px;
  background: var(--gold);
  display: inline-block;
  margin-right: 12px;
  vertical-align: middle;
}

.areas-header h1 {
  font-size: 52px;
  line-height: 1.05;
  font-weight: 800;
  margin-bottom: 24px;
}

.areas-header h1 span {
  color: var(--gold);
}

.areas-intro {
  max-width: 720px;
  font-size: 16px;
  line-height: 1.7;
  color: #333;
}

/* GRID */
.areas-grid {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
}

/* CARD */
.areas-card {
  background: #ffffff;
  border: 1px solid #eee;
  box-shadow: 0 18px 40px rgba(0,0,0,0.08);
  transition: transform .3s ease, box-shadow .3s ease;
  overflow: hidden;
}

.areas-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 70px rgba(0,0,0,0.15);
}

/* IMAGEN */
.areas-card-image {
  height: 200px;
  background: linear-gradient(135deg, #111, #333);
}

/* CONTENIDO */
.areas-card-content {
  padding: 28px;
}

.areas-card-content h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 14px;
}

.areas-card-content ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.areas-card-content ul li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 8px;
  font-size: 14px;
  color: #C0C0C0;
}

.areas-card-content ul li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: bold;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .areas {
    padding: 80px 0;
  }

  .areas-header h1 {
    font-size: 34px;
  }
}
/* ===============================
   SECCIONES GENERALES
================================ */

.section-eyebrow {
  font-size: 12px;
  letter-spacing: 0.25em;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 14px;
}

/* ===============================
   ABOUT PREVIEW
================================ */

.about-preview {
  padding: 60px 0;
  background: #f1f1f1;
}

.about-preview-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-text h2 {
  font-size: 46px;
  line-height: 1.1;
  margin-bottom: 20px;
}

.about-text h2 span {
  color: var(--gold);
}

.about-text p {
  font-size: 16px;
  line-height: 1.7;
  color: #333;
  margin-bottom: 20px;
}

.link-arrow {
  font-weight: 800;
  color: #000;
  text-decoration: none;
}

.link-arrow:hover {
  text-decoration: underline;
}

.about-image img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

/* ===============================
   VIDEO SECTION
================================ */

.video-section {
  position: relative;
  height: 70vh;
  overflow: hidden;
}

.video-section video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.video-overlay h2 {
  color: #fff;
  font-size: 56px;
  font-weight: 800;
  line-height: 1.1;
}

.video-overlay h2 span {
  color: var(--gold);
}

/* ===============================
   ÁREAS PREVIEW
================================ */

.areas-preview {
  padding: 80px 0;
  background: #f7f7f7;
}

.areas-preview-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.areas-preview h2 {
  font-size: 42px;
  margin-bottom: 40px;
}

.areas-preview-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  margin-bottom: 30px;
}

.area-mini {
  background: #fff;
  border: 1px solid #e5e5e5;
  padding: 28px;
  font-weight: 600;
  text-align: center;
  transition: 0.3s ease;
}

.area-mini:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
}

/* ===============================
   PROCESO PREVIEW
================================ */

.process-preview {
  padding: 100px 24px;
  text-align: center;
}

.process-preview h2 {
  font-size: 42px;
  margin-bottom: 50px;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 24px;
}

.process-steps div {
  border: 1px solid #f5f5f5;
  padding: 26px;
  font-weight: 600;
}

/* ===============================
   PROYECTOS PREVIEW
================================ */

.projects-preview {
  padding: 90px 0;
  background: #f1f1f1;
  text-align: center;
}

.projects-preview h2 {
  font-size: 42px;
  margin-bottom: 50px;
}

.projects-grid {
  max-width: 1100px;
  margin: 0 auto 30px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.projects-grid img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

/* ===============================
   CTA FINAL COMPACTO
================================ */

.cta-final {
  background: #000;
  padding: 62px 20px;   /* antes seguro era 140px o 160px */
  text-align: center;
}

.cta-final h2 {
  font-size: 42px;      /* más compacto */
  font-weight: 800;
  margin-bottom: 16px;
  line-height: 1.1;
   color: #ddd;
}

.cta-final h2 span {
  color: var(--gold);
}

.cta-final p {
  font-size: 16px;
  max-width: 600px;
  margin: 0 auto 32px;
  color: #ddd;
  line-height: 1.6;
}

.cta-final .btn-contacto,
.cta-final .cta-btn {
  padding: 14px 34px;
  font-size: 15px;
  border-radius: 999px;
}

/* MOBILE */
@media (max-width: 768px) {
  .cta-final {
    padding: 60px 16px;
  }

  .cta-final h2 {
    font-size: 30px;
  }
}


/* ===============================
   RESPONSIVE
================================ */

@media (max-width: 768px) {

  .about-preview-inner {
    grid-template-columns: 1fr;
  }

  .about-image img {
    height: 300px;
  }

  .video-overlay h2 {
    font-size: 36px;
  }

  .cta-final h2 {
    font-size: 36px;
  }
}
/* ===============================
   CTA FINAL – TEXTURA GRANO
================================ */

.cta-final {
  position: relative;
  background: #000000;
  padding: 80px 20px; /* compacta el bloque */
  overflow: hidden;
}

/* Grano industrial */
.cta-final::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='180' height='180' filter='url(%23noise)' opacity='0.06'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
  pointer-events: none;
}

/* Contenido centrado y limpio */
.cta-final h2 {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 800;
  margin-bottom: 20px;
}

.cta-final h2 span {
  color: var(--gold);
}

.cta-final .btn {
  margin-top: 24px;
}
/* ===============================
   CTA FINAL – VIDEO INDUSTRIAL
================================ */

.cta-final {
  position: relative;
  background: #000;
  padding: 80px 20px;
  overflow: hidden;
}

/* VIDEO */
.cta-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%) contrast(115%) brightness(60%);
  z-index: 0;
}

/* Overlay oscuro */
.cta-final::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.65);
  z-index: 1;
}

/* Grano encima del video */
.cta-final::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='180' height='180' filter='url(%23noise)' opacity='0.06'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
  z-index: 2;
  pointer-events: none;
}

/* Contenido encima */
.cta-final > * {
  position: relative;
  z-index: 3;
}
/* ===============================
   PROCESOS DESTACADOS – VIDEO
================================ */

.process-highlight {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #000;
  overflow: hidden;
}

/* VIDEO */
.process-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: NONE;
  z-index: 0;
}

/* OVERLAY OSCURO */
.process-highlight::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.65);
  z-index: 1;
}

/* GRANO INDUSTRIAL */
.process-highlight::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3'/%3E%3C/filter%3E%3Crect width='180' height='180' filter='url(%23n)' opacity='0.06'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
  pointer-events: none;
  z-index: 2;
}

/* CONTENIDO */
.process-content {
  position: relative;
  z-index: 3;
  text-align: center;
  padding: 0 20px;
}

.process-content h2 {
  font-size: clamp(36px, 6vw, 64px);
  font-weight: 800;
  line-height: 1.1;
  color: #fff;
}

.process-content h2 span {
  color: var(--gold);
}
/* =========================================
   NOSOTROS – IMPACTO INDUSTRIAL REAL
========================================= */

.about {
  position: relative;
  padding: 40px 0;
  background: #ffffff;
  overflow: hidden;
}

/* TEXTURA INDUSTRIAL */
.about::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='260' height='260'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='260' height='260' filter='url(%23n)' opacity='0.045'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
}

.about-inner {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}

/* ===============================
   ETIQUETA / EYEBROW
================================ */

.about-label {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-bottom: 48px;
}

.about-label span {
  width: 100px;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), #f3d98f);
}

.about-label p {
  font-size: 12px;
  letter-spacing: 0.38em;
  font-weight: 900;
  color: #111;
}

/* ===============================
   TITULO – QUE IMPONGA
================================ */

.about-content h2 {
  font-size: clamp(52px, 7.5vw, 82px);
  font-weight: 900;
  line-height: 0.98;
  letter-spacing: -0.05em;
  margin-bottom: 54px;
}

.about-content h2 span {
  color: var(--gold);
  position: relative;
  display: inline-block;
}

.about-content h2 span::after {
  content: "";
  position: absolute;
  left: -12%;
  bottom: -14px;
  width: 124%;
  height: 16px;
  background: rgba(197,164,92,0.45);
  z-index: -1;
}

/* ===============================
   TEXTO – RITMO, NO BLOQUE
================================ */

.about-content p {
  max-width: 760px;
  font-size: 18.5px;
  line-height: 1.95;
  margin-bottom: 26px;
  color: #1a1a1a;
}

/* FRASES IMPORTANTES */
.about-content p strong {
  color: var(--gold);
  font-weight: 800;
}

/* ===============================
   BLOQUES DIVIDIDOS
================================ */

.about-split {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 40px;
  align-items: center;
}

.about-split.reverse {
  grid-template-columns: 1fr 1.25fr;
}

/* ===============================
   SUBTÍTULOS CON PESO
================================ */

.about-text h3 {
  font-size: 40px;
  font-weight: 900;
  margin-bottom: 34px;
  position: relative;
  line-height: 1.05;
}

.about-text h3::before {
  content: "";
  position: absolute;
  left: -46px;
  top: 0;
  width: 10px;
  height: 100%;
  background: var(--gold);
}

/* TEXTO BLOQUES */
.about-text p {
  font-size: 16.8px;
  line-height: 1.9;
  margin-bottom: 18px;
  color: #2a2a2a;
}

.about-text p strong {
  color: var(--gold);
  font-weight: 700;
}

/* ===============================
   LISTA – DINÁMICA
================================ */

.about-list {
  list-style: none;
  padding: 0;
  margin-top: 34px;
}

.about-list li {
  position: relative;
  padding-left: 44px;
  margin-bottom: 16px;
  font-size: 16.5px;
  font-weight: 500;
}

.about-list li::before {
  content: "▸";
  position: absolute;
  left: 0;
  top: 0;
  font-size: 26px;
  color: var(--gold);
}

/* ===============================
   MEDIA – CINE INDUSTRIAL
================================ */

.about-media {
  position: relative;
  overflow: hidden;
  background: #000;
  box-shadow:
    0 80px 160px rgba(0,0,0,0.5),
    inset 0 0 0 2px rgba(197,164,92,0.6);
}

.about-media::after {
  content: "";
  position: absolute;
  inset: 0;

  pointer-events: none;
}

.about-media img,
.about-media video {
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
  filter: contrast(105%) saturate(105%);
}


/* ===============================
   BLOQUE OSCURO – GOLPE VISUAL
================================ */

.about-focus {
  background: #0a0a0a;
  color: #ffffff;
}

.about-focus p,
.about-focus li,
.about-focus h3 {
  color: #f5f5f5;
}

.about-focus::before {
  opacity: 0.08;
}

/* ===============================
   RESPONSIVE
================================ */

@media (max-width: 900px) {
  .about {
    padding: 120px 0;
  }

  .about-split {
    grid-template-columns: 1fr;
    gap: 70px;
  }

  .about-content h2 {
    font-size: 40px;
  }

  .about-text h3 {
    font-size: 30px;
  }
}
.section-eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.45em;
  text-transform: uppercase;

  color: var(--gold);
  margin-bottom: 20px;
  position: relative;
  padding-left: 70px;
}

/* Línea larga */
.section-eyebrow::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 56px;
  height: 1px;
  background: linear-gradient(
    to right,
    var(--gold),
    rgba(218,180,58,0.2)
  );
}
/* ===============================
   LÍNEA DORADA PREMIUM
================================ */

.title-divider {
  width: 400px;
  height: 4px;
  margin: 28px 0 40px;

  background: linear-gradient(
    90deg,
    var(--gold),
    #f2d46f,
    var(--gold)
  );

  border-radius: 2px;

  /* animación */
  opacity: 0;
  transform: scaleX(0);
  transform-origin: left;
  animation: lineReveal .9s ease forwards;
}

@keyframes lineReveal {
  to {
    opacity: 1;
    transform: scaleX(1);
  }
}
@media (min-width: 1024px) {
  .title-divider {
    width: 120px;
  }
}
.title-divider {
  width: 450px;
  height: 4px;

  margin-top: -30px;   /* 🔼 súbela */
  margin-bottom: 40px;

  background: linear-gradient(
    90deg,
    var(--gold),
    #f2d46f,
    var(--gold)
  );

  border-radius: 2px;

  opacity: 0;
  transform: scaleX(0);
  transform-origin: left;
  animation: lineReveal .9s ease forwards;
}
/* ===============================
   SECTION HEADER PREMIUM
================================ */

.section-header {
  max-width: 900px;
  margin: 0 auto 80px; /* 🔥 ESTO es la clave */
  text-align: center; /* 🔥 centra texto */
}

/* EYEBROW */
.section-eyebrow {
  font-size: 13px;
  letter-spacing: 4px;
  font-weight: 600;
  color: #f2d46f;
  margin-bottom: 12px;
}

/* TÍTULO */
.section-title {
  font-size: clamp(40px, 6vw, 64px);
  font-weight: 500;
  line-height: 1.05;
  margin-bottom: 12px;
}

.section-title span {
  color: var(--gold);
}

/* LÍNEA DORADA */
.section-divider {
  width: 96px;
  height: 4px;
  margin-top: -6px;
  margin-bottom: 32px;
    margin-left: auto;
  margin-right: auto;
  

  background: linear-gradient(
    90deg,
    var(--gold),
    #f2d46f,
    var(--gold)
  );

  border-radius: 4px;

  opacity: 0;
  transform: scaleX(0);
  transform-origin: left;
  animation: dividerReveal 1s ease forwards;
}

/* TEXTO DESCRIPTIVO */
.section-subtext {
  max-width: 640px;
  font-size: 17px;
  line-height: 1.8;
  color: #333;
    margin-left: auto;
  margin-right: auto;
}

/* ===============================
   ANIMACIONES
================================ */

@keyframes dividerReveal {
  to {
    opacity: 1;
    transform: scaleX(1);
  }
}
/* ===============================
   WOW TITLE – PREMIUM
================================ */

.wow-title {
  position: relative;
  display: inline-block;

  font-size: clamp(36px, 5vw, 56px);
  font-weight: 800;
  letter-spacing: -0.5px;
  line-height: 1.1;

  color: #000;
  padding-bottom: 18px;
}

/* LÍNEA DORADA */
.wow-title::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;

  width: 400px;
  height: 6px;

  background: linear-gradient(
    90deg,
    transparent,
    var(--gold),
    #f2d46f,
    var(--gold),
    transparent
  );

  transform: translateX(-50%) scaleX(0);
  transform-origin: center;
  border-radius: 4px;

  animation: wowLine 1s ease forwards;
}

/* ANIMACIÓN */
@keyframes wowLine {
  to {
    transform: translateX(-50%) scaleX(1);
  }
}
.projects {
  background-color: #0d0d0d;
  margin-top: -120px;   /* mantiene el corte negro */
  padding-top: 160px;   /* 🔥 mucho más arriba */
}

/* ===============================
   FOOTER INDUSTRIAL PREMIUM
================================ */

.footer-industrial {
  background: #0a0a0a;
  color: #dcdcdc;
  padding: 30px 0 20px;
  position: relative;
  overflow: hidden;
}

/* textura sutil */
.footer-industrial::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='0.05'/%3E%3C/svg%3E");
  pointer-events: none;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 40px;
  position: relative;
  z-index: 2;
}

/* MARCA */
.footer-brand h3 {
  font-size: 24px;
  letter-spacing: 4px;
  color: var(--gold);
  margin-bottom: 14px;
}

.footer-brand p {
  font-size: 15px;
  line-height: 1.7;
  color: #bdbdbd;
}

/* BLOQUES */
.footer-block h4 {
  font-size: 14px;
  letter-spacing: 0.3em;
  font-weight: 700;
  margin-bottom: 8px;
  color: #ffffff;
}

.footer-block p,
.footer-block a {
  font-size: 10px;
  line-height: 1.8;
  color: #bdbdbd;
  text-decoration: none;
}

.footer-block a:hover {
  color: var(--gold);
}

/* LISTA */
.footer-block ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-block ul li {
  margin-bottom: 10px;
}

/* BOTTOM */
.footer-bottom {
  margin-top: 30px;
  text-align: center;
  position: relative;
  z-index: 2;
}

.footer-bottom span {
  display: block;
  width: 70px;
  height: 1px;
  margin: 0 auto 16px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--gold),
    transparent
  );
}

.footer-bottom p {
  font-size: 12px;
  color: #777;
  letter-spacing: 0.08em;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .footer-industrial {
    padding: 70px 0 30px;
  }
}
/* =========================================================
   RESPONSIVE GLOBAL – ADAPTACIÓN TOTAL
   (PEGAR AL FINAL DEL CSS)
========================================================= */

/* ----------- CONTENEDORES FLUIDOS ----------- */
@media (max-width: 1200px) {
  .about-inner,
  .process-inner,
  .services-inner,
  .projects-inner,
  .quality-inner,
  .areas-inner {
    max-width: 94%;
  }
}

/* ----------- TÍTULOS RESPONSIVOS ----------- */
h1, h2, h3 {
  word-wrap: break-word;
}

.hero h1,
.about-content h2,
.quality-policy-content h3,
.video-overlay h2,
.process-content h2 {
  font-size: clamp(32px, 6vw, 82px);
}

/* ----------- PLACAS METÁLICAS (MISIÓN / VISIÓN) ----------- */
@media (max-width: 900px) {
  .mission-vision {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .plate {
    padding: 40px 28px;
  }

  .plate h3 {
    font-size: 26px;
  }
}

/* ----------- ÍCONOS GRABADOS ----------- */
@media (max-width: 600px) {
  .engraved-icon {
    width: 52px;
    height: 52px;
    font-size: 24px;
  }
}

/* ----------- VIDEO BACKGROUNDS ----------- */
@media (max-width: 768px) {
  .video-section,
  .quality-policy-video,
  .process-highlight,
  .cta-final {
    min-height: 45vh;
  }
}

/* ----------- MENÚ OVERLAY ----------- */
@media (max-width: 768px) {
  .menu-panel {
    width: 85%;
  }

  .menu-links a {
    font-size: 24px;
  }
}

/* ----------- ESPACIADOS VERTICALES ----------- */
@media (max-width: 768px) {
  section {
    padding-top: 70px !important;
    padding-bottom: 70px !important;
  }
}

/* ----------- FOOTER / BLOQUES FINALES ----------- */
@media (max-width: 768px) {
  .footer-industrial {
    padding: 50px 20px 30px;
  }
}

/* ----------- MAPAS ----------- */
@media (max-width: 768px) {
  .contact-map iframe {
    height: 280px;
  }
}

/* ----------- GRID GENERALES ----------- */
@media (max-width: 768px) {
  .services-grid,
  .projects-grid,
  .areas-grid {
    grid-template-columns: 1fr;
  }
}

/* ----------- ULTRA WIDE (PANTALLAS GRANDES) ----------- */
@media (min-width: 1600px) {
  .about-inner,
  .process-inner,
  .services-inner,
  .projects-inner,
  .quality-inner,
  .areas-inner {
    max-width: 1400px;
  }
}
/* ===============================
   VALORES – COMPACTOS + CLICK
================================ */

.values {
  background: #ffffff;
  padding: 100px 0;
}

.values-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* GRID */
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-top: 60px;
}

/* CARD */
.value-card {
  border: 1px solid #e2e2e2;
  background: #fff;
  box-shadow: 0 14px 30px rgba(0,0,0,0.08);
  transition: box-shadow .3s ease, transform .3s ease;
}

.value-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 50px rgba(0,0,0,0.14);
}

/* BOTÓN */
.value-btn {
  width: 100%;
  background: none;
  border: none;
  padding: 26px 20px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  position: relative;
}

/* Línea dorada */
.value-btn::after {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 3px;
  height: 40px;
  background: var(--gold);
  transform: translateY(-50%);
}

/* DESCRIPCIÓN */
.value-desc {
  max-height: 0;
  overflow: hidden;
  padding: 0 20px;
  font-size: 14px;
  line-height: 1.7;
  color: #333;
  transition: max-height .35s ease, padding .35s ease;
}

/* ACTIVO */
.value-card.active .value-desc {
  max-height: 160px;
  padding: 0 20px 22px;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .values-grid {
    grid-template-columns: 1fr;
  }
}
/* ===============================
   VALORES – ANIMACIÓN PREMIUM
================================ */

.value-card {
  overflow: hidden;
  cursor: pointer;
  transition: transform .35s ease, box-shadow .35s ease;
}

.value-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 45px rgba(0,0,0,0.12);
}

/* CONTENIDO OCULTO */
.value-desc {
  max-height: 0;
  opacity: 0;
  transform: translateY(-10px);
  transition:
    max-height .6s ease,
    opacity .4s ease,
    transform .4s ease;
}

/* ACTIVO */
.value-card.active .value-desc {
  max-height: 200px; /* ajustable */
  opacity: 1;
  transform: translateY(0);
  margin-top: 14px;
}

/* EFECTO METÁLICO SUAVE */
.value-card.active {
  box-shadow:
    inset 0 0 0 1px var(--gold),
    0 30px 60px rgba(0,0,0,0.15);
}

/* TEXTO */
.value-desc p {
  font-size: 14px;
  line-height: 1.7;
  color: #222;
}
/* =========================================
   SERVICIOS – WOW INDUSTRIAL
========================================= */

.services {
  position: relative;
  padding: 40px 0;
  background:
    linear-gradient(
      180deg,
      rgba(212,175,55,0.04),
      rgba(255,255,255,1)
    );
}

.services-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Intro */
.services-intro {
  max-width: 640px;
  font-size: 17px;
  line-height: 1.85;
  color: #333;
  margin: 40px 0 100px;
}

/* =========================================
   BLOQUE SERVICIO
========================================= */

.service-block {
  position: relative;
  padding: 60px 60px 60px 120px;
  margin-bottom: 90px;
  background: #ffffff;
  border: 1px solid #eee;
  box-shadow: 0 30px 80px rgba(0,0,0,0.08);
  transition: transform .45s ease, box-shadow .45s ease;
  overflow: hidden;
}

.service-block:hover {
  transform: translateY(-10px);
  box-shadow: 0 50px 120px rgba(0,0,0,0.15);
}

/* Línea dorada lateral */
.service-block::before {
  content: "";
  position: absolute;
  left: 0;
  top: 40px;
  bottom: 40px;
  width: 6px;
  background: linear-gradient(
    to bottom,
    transparent,
    var(--gold),
    transparent
  );
}

/* Número grande */
.service-index {
  position: absolute;
  top: 40px;
  left: 40px;
  font-size: 68px;
  font-weight: 900;
  letter-spacing: -0.04em;
  color: rgba(212,175,55,0.25);
}

/* Título */
.service-block h3 {
  font-size: 28px;
  font-weight: 900;
  margin-bottom: 22px;
  letter-spacing: -0.02em;
}

/* Descripción */
.service-desc {
  max-width: 520px;
  font-size: 16.5px;
  line-height: 1.8;
  color: #333;
  margin-bottom: 26px;
}

/* Lista */
.service-points {
  list-style: none;
  padding: 0;
  margin: 0;
}

.service-points li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 12px;
  font-size: 15.5px;
  color: #222;
}

.service-points li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
}

/* =========================================
   ANIMACIÓN ENTRADA
========================================= */

.service-block {
  opacity: 0;
  transform: translateY(40px);
  animation: serviceReveal 0.9s ease forwards;
}

.service-block:nth-child(1) { animation-delay: 0.1s; }
.service-block:nth-child(2) { animation-delay: 0.25s; }
.service-block:nth-child(3) { animation-delay: 0.4s; }
.service-block:nth-child(4) { animation-delay: 0.55s; }

@keyframes serviceReveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 900px) {
  .service-block {
    padding: 50px 30px 50px 70px;
  }

  .service-index {
    font-size: 48px;
    left: 20px;
  }

  .service-block h3 {
    font-size: 22px;
  }
}

@media (max-width: 600px) {
  .services {
    padding: 100px 0;
  }

  .service-block {
    padding: 40px 24px;
  }

  .service-index {
    position: static;
    font-size: 36px;
    margin-bottom: 10px;
    display: block;
  }
}
/* =========================================
   SERVICIOS – WOW NIVEL INDUSTRIAL PRO
========================================= */

.services {
  position: relative;
  background:
    radial-gradient(
      circle at top left,
      rgba(212,175,55,0.08),
      transparent 60%
    ),
    #ffffff;
  overflow: hidden;
}

/* Textura técnica tipo blueprint */
.services::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.6' numOctaves='2'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='0.025'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
}

.services-inner {
  position: relative;
  z-index: 2;
}

/* =========================================
   BLOQUE SERVICIO – MÁS CONTUNDENTE
========================================= */

.service-block {
  position: relative;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.08);
  box-shadow:
    0 40px 90px rgba(0,0,0,0.12),
    inset 0 0 0 1px rgba(212,175,55,0.08);
}

/* Fondo interno industrial */
.service-block::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      135deg,
      rgba(212,175,55,0.05),
      transparent 60%
    );
  opacity: 0;
  transition: opacity .4s ease;
  pointer-events: none;
}

.service-block:hover::after {
  opacity: 1;
}

/* Número como marca técnica */
.service-index {
  font-size: 84px;
  font-weight: 900;
  color: rgba(212,175,55,0.18);
  transition: transform .4s ease, color .4s ease;
}

.service-block:hover .service-index {
  transform: translateY(-6px);
  color: rgba(212,175,55,0.35);
}

/* Título más agresivo */
.service-block h3 {
  font-size: 30px;
  letter-spacing: -0.03em;
}

/* Texto más premium */
.service-desc {
  font-size: 17px;
  line-height: 1.85;
}

/* =========================================
   EFECTO CINE – ENTRADA
========================================= */

.service-block {
  opacity: 0;
  transform:
    translateY(60px)
    scale(0.98);
  animation: serviceCinematic 1.1s ease forwards;
}

@keyframes serviceCinematic {
  to {
    opacity: 1;
    transform:
      translateY(0)
      scale(1);
  }
}

/* =========================================
   MICRO INTERACCIÓN HOVER
========================================= */

.service-block:hover {
  transform:
    translateY(-12px)
    scale(1.015);
}

/* =========================================
   RESPONSIVE FINO
========================================= */

@media (max-width: 900px) {
  .service-block {
    box-shadow:
      0 30px 60px rgba(0,0,0,0.1);
  }
}

@media (max-width: 600px) {
  .service-block h3 {
    font-size: 22px;
  }

  .service-desc {
    font-size: 15.5px;
  }
}
.areas-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.areas-card {
  position: relative;
  padding: 40px 28px;
  text-align: center;

  background:
    linear-gradient(135deg, #1b1b1b, #0e0e0e);
  color: #f2f2f2;

  border: 1px solid rgba(212,175,55,0.35);

  box-shadow:
    0 25px 60px rgba(0,0,0,0.45),
    inset 0 0 0 1px rgba(255,255,255,0.05);

  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.02em;

  transition: transform .35s ease, box-shadow .35s ease;
  overflow: hidden;
}
.areas-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    90deg,
    rgba(255,255,255,0.04) 0,
    rgba(255,255,255,0.04) 1px,
    transparent 1px,
    transparent 3px
  );
  opacity: 0.4;
  pointer-events: none;
}
.areas-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: -20%;
  width: 140%;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--gold),
    transparent
  );
}
.areas-card:hover {
  transform: translateY(-6px);
  box-shadow:
    0 40px 90px rgba(0,0,0,0.7),
    inset 0 0 0 1px rgba(212,175,55,0.6);
}
@media (max-width: 900px) {
  .areas-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .areas-grid {
    grid-template-columns: 1fr;
  }
}
.areas-card .screw {
  position: absolute;
  width: 14px;
  height: 14px;
  border-radius: 50%;

  background:
    radial-gradient(circle at 30% 30%, #fff, #999 40%, #444 70%);

  box-shadow:
    inset 0 0 2px rgba(0,0,0,0.8),
    0 2px 4px rgba(0,0,0,0.6);
}
.areas-card .screw.tl { top: 14px; left: 14px; }
.areas-card .screw.tr { top: 14px; right: 14px; }
.areas-card .screw.bl { bottom: 14px; left: 14px; }
.areas-card .screw.br { bottom: 14px; right: 14px; }
.areas-card .screw::before,
.areas-card .screw::after {
  content: "";
  position: absolute;
  background: #333;
}

.areas-card .screw::before {
  width: 8px;
  height: 2px;
  top: 6px;
  left: 3px;
}

.areas-card .screw::after {
  width: 2px;
  height: 8px;
  top: 3px;
  left: 6px;
}
.areas-card::marker {
  display: none;
}

.areas-card {
  position: relative;
}

.areas-card::before,
.areas-card::after {
  pointer-events: none;
}
.areas-card.engraved {
  padding: clamp(36px, 5vw, 60px) clamp(24px, 4vw, 40px);
}
.areas-card.engraved h3 {
  font-size: clamp(15px, 2.4vw, 20px);
  letter-spacing: clamp(0.06em, 0.3vw, 0.12em);
}
.screw {
  width: clamp(8px, 1.2vw, 12px);
  height: clamp(8px, 1.2vw, 12px);
}
.areas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: clamp(16px, 3vw, 40px);
}
@media (max-width: 600px) {
  .areas-card.engraved {
    box-shadow:
      inset 0 1px 3px rgba(255,255,255,0.7),
      inset 0 -2px 4px rgba(0,0,0,0.15),
      0 12px 26px rgba(0,0,0,0.15);
  }

  .areas-card.engraved h3 {
    text-shadow:
      1px 1px 1px rgba(0,0,0,0.35),
     -1px -1px 1px rgba(255,255,255,0.8);
  }
}
@media (min-width: 1600px) {
  .areas-card.engraved {
    padding: 70px 56px;
  }

  .areas-card.engraved h3 {
    font-size: 22px;
  }
}
/* =========================================
   FOOTER INDUSTRIAL – WOW PREMIUM
========================================= */

.footer-industrial {
  position: relative;
  background:
    radial-gradient(
      circle at top left,
      rgba(212,175,55,0.08),
      transparent 60%
    ),
    linear-gradient(180deg, #0a0a0a, #000);
  padding: 90px 0 40px;
  color: #cfcfcf;
  overflow: hidden;
}

/* Textura metálica sutil */
.footer-industrial::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    90deg,
    rgba(255,255,255,0.03) 0,
    rgba(255,255,255,0.03) 1px,
    transparent 1px,
    transparent 4px
  );
  opacity: 0.25;
  pointer-events: none;
}

/* CONTENEDOR */
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 28px;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 60px;
  position: relative;
  z-index: 2;
}

/* MARCA */
.footer-brand h3 {
  font-size: 26px;
  letter-spacing: 5px;
  color: var(--gold);
  margin-bottom: 18px;
}

.footer-brand p {
  font-size: 15px;
  line-height: 1.8;
  color: #bdbdbd;
}

/* BLOQUES */
.footer-block h4 {
  font-size: 13px;
  letter-spacing: 0.35em;
  font-weight: 700;
  margin-bottom: 18px;
  color: #ffffff;
  position: relative;
}

/* línea técnica */
.footer-block h4::after {
  content: "";
  display: block;
  width: 36px;
  height: 2px;
  background: var(--gold);
  margin-top: 10px;
}

.footer-block p,
.footer-block a {
  font-size: 14px;
  line-height: 1.8;
  color: #cfcfcf;
  text-decoration: none;
  display: block;
  margin-bottom: 10px;
}

.footer-block a:hover {
  color: var(--gold);
  transform: translateX(4px);
  transition: all 0.25s ease;
}

/* FOOTER BOTTOM */
.footer-bottom {
  margin-top: 70px;
  text-align: center;
  position: relative;
  z-index: 2;
}

.footer-bottom span {
  display: block;
  width: 90px;
  height: 2px;
  margin: 0 auto 20px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--gold),
    transparent
  );
}

.footer-bottom p {
  font-size: 12px;
  color: #8a8a8a;
  letter-spacing: 0.12em;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 50px;
    text-align: left;
  }

  .footer-industrial {
    padding: 70px 0 30px;
  }
}
/* =========================================
   FOOTER – COMPACTO FORZADO
   (SOBREESCRIBE TODO)
========================================= */

footer.footer-industrial,
.footer-industrial {
  padding: 40px 0 16px !important;
}

/* CONTENEDOR */
footer .footer-inner {
  gap: 28px !important;
  padding: 0 24px !important;
}

/* MARCA */
footer .footer-brand h3 {
  font-size: 20px !important;
  margin-bottom: 8px !important;
}

footer .footer-brand p {
  font-size: 13px !important;
  line-height: 1.5 !important;
}

/* BLOQUES */
footer .footer-block h4 {
  font-size: 11px !important;
  margin-bottom: 6px !important;
  letter-spacing: 0.25em !important;
}

footer .footer-block p,
footer .footer-block a {
  font-size: 12px !important;
  margin-bottom: 4px !important;
  line-height: 1.4 !important;
}

/* FOOTER BOTTOM */
footer .footer-bottom {
  margin-top: 24px !important;
}

footer .footer-bottom span {
  width: 48px !important;
  margin-bottom: 8px !important;
}

footer .footer-bottom p {
  font-size: 10px !important;
  letter-spacing: 0.08em !important;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  footer.footer-industrial {
    padding: 32px 0 14px !important;
  }

  footer .footer-inner {
    gap: 22px !important;
  }
}
.areas-card-image {
  height: 220px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* IMÁGENES POR ÁREA */
.area-laser .areas-card-image {
  background-image: url("../img/corte-laser.jpg");
}

.area-pintura .areas-card-image {
  background-image: url("../img/pintura.jpeg");
}

.area-torneado .areas-card-image {
  background-image: url("../img/torneado.jpg");
}

.area-cnc .areas-card-image {
  background-image: url("../img/cnc.jpg");
}

.area-diseno .areas-card-image {
  background-image: url("../img/diseno.jpg");
}

.area-paileria .areas-card-image {
  background-image: url("../img/paileria.png");
}

.area-rectificado .areas-card-image {
  background-image: url("../img/rectificado.jpg");
}

.area-carpinteria .areas-card-image {
  background-image: url("../img/carpinteria.jpg");
}
/* ===============================
   LOGO COMO MARCA DE AGUA
   HERO NOSOTROS
================================ */

.about.about-hero {
  position: relative;
  background: #ffffff;
  overflow: hidden;
}

.about.about-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../img/logo.png");
  background-repeat: no-repeat;
  background-position: right center;
  background-size: 500px;
  opacity: 0.1; /* Marca de agua elegante */
  pointer-events: none;
}
@media (max-width: 768px) {
  .about.about-hero::after {
    background-size: 220px;
    background-position: center bottom;
    opacity: 0.04;
  }
}
/* ===============================
   SERVICIOS – LIMPIO / PREMIUM
================================ */

.services-clean {
  background: #ffffff;
  padding: 40px 0 0px;
}

.services-clean .services-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

/* LISTA DE SERVICIOS */
.services-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px 80px;
  margin: 80px 0 100px;
}

/* ITEM */
.service-item h3 {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.service-item p {
  font-size: 16px;
  line-height: 1.7;
  color: #333;
  max-width: 420px;
}

/* CTA */
.services-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  border-top: 1px solid #eee;
  padding-top: 40px;
}

.services-cta p {
  font-size: 18px;
  font-weight: 600;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .services-list {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .services-cta {
    flex-direction: column;
    align-items: flex-start;
  }
}
/* ===============================
   SERVICIOS – BLOQUES TÉCNICOS
================================ */

.service-item {
  position: relative;
  padding-left: 26px;
}

.service-line {
  position: absolute;
  left: 0;
  top: 4px;
  width: 4px;
  height: 48px;
  background: linear-gradient(
    to bottom,
    var(--gold),
    rgba(212,175,55,0.2)
  );
}

.service-item h3 {
  font-size: 21px;
  font-weight: 800;
  margin-bottom: 10px;
}

.service-item p {
  font-size: 16px;
  line-height: 1.75;
  color: #333;
}
/* =========================================
   CTA WOW – BLOQUE DECISIVO
========================================= */

.cta-wow {
  background: linear-gradient(
    135deg,
    #0c0c0c,
    #000000
  );
  color: #fff;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

/* textura industrial sutil */
.cta-wow::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='220' height='220'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='2'/%3E%3C/filter%3E%3Crect width='220' height='220' filter='url(%23n)' opacity='0.06'/%3E%3C/svg%3E");
  pointer-events: none;
}

.cta-wow-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 2;
}

/* TEXTO */
.cta-eyebrow {
  font-size: 12px;
  letter-spacing: 0.4em;
  font-weight: 700;
  color: var(--gold);
  display: inline-block;
  margin-bottom: 20px;
}

.cta-wow-text h3 {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 900;
  line-height: 1.05;
  margin-bottom: 24px;
}

.cta-wow-text h3 span {
  color: var(--gold);
}

.cta-wow-text p {
  font-size: 17px;
  line-height: 1.8;
  color: #e0e0e0;
  max-width: 520px;
}

/* ACCIÓN */
.cta-wow-action {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.cta-wow-btn {
  display: inline-block;
  background: var(--gold);
  color: #000;
  padding: 18px 46px;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-decoration: none;
  border-radius: 999px;
  text-align: center;
  transition: transform .25s ease, box-shadow .25s ease;
}

.cta-wow-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(212,175,55,0.45);
}

.cta-note {
  font-size: 13px;
  color: #bdbdbd;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .cta-wow-inner {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .cta-wow {
    padding: 80px 0;
  }
}
/* ===============================
   SECCIÓN AGRÍCOLA – MAÍZ REAL
================================ */

.agro-section {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #000;
}

/* IMAGEN REAL DE MAÍZ */
.agro-bg {
  position: absolute;
  inset: 0;
  background-image: url("../img/maiz.jpg");
  background-size: cover;
  background-position: center bottom;
  transform: scale(1.08);
  animation: agroFloat 20s ease-in-out infinite alternate;
  z-index: 0;
}

/* MOVIMIENTO SUAVE (NO MAREO) */
@keyframes agroFloat {
  from {
    transform: scale(1.08) translateY(0);
  }
  to {
    transform: scale(1.12) translateY(-10px);
  }
}

/* OVERLAY PARA LEGIBILIDAD */
.agro-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0,0,0,0.55),
    rgba(0,0,0,0.35)
  );
  z-index: 1;
}

/* CONTENIDO */
.agro-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 0 24px;
  margin-left: clamp(24px, 6vw, 120px);
  color: #fff;
}

/* TEXTOS */
.agro-eyebrow {
  font-size: 13px;
  letter-spacing: 4px;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 16px;
}

.agro-title {
  font-size: clamp(36px, 6vw, 58px);
  font-weight: 500;
  line-height: 1.05;
  margin-bottom: 24px;
}

.agro-title span {
  color: var(--gold);
}

.agro-text {
  max-width: 620px;
  font-size: 17px;
  line-height: 1.8;
  color: #f1f1f1;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .agro-section {
    min-height: 55vh;
  }

  .agro-bg {
    animation: none;
    transform: scale(1.05);
  }

  .agro-content {
    margin-left: 0;
    text-align: left;
  }
}
/* ===============================
   ANIMACIÓN SCROLL – AGRÍCOLA
================================ */

.agro-section {
  opacity: 0;
  transform: translateY(60px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}

.agro-section.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Entrada escalonada del contenido */
.agro-content {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
  transition-delay: 0.2s;
}

.agro-section.is-visible .agro-content {
  opacity: 1;
  transform: translateY(0);
}
/* ===============================
   TEXTO AGRÍCOLA – ESTILO PREMIUM
================================ */

.agro-eyebrow {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 0.35em;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 26px;
  position: relative;
}

.agro-eyebrow::before {
  content: "";
  display: inline-block;
  width: 50px;
  height: 2px;
  background: var(--gold);
  margin-right: 14px;
  vertical-align: middle;
}

/* TÍTULO */
.agro-content h2 {
  font-size: clamp(36px, 5vw, 58px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 28px;
}

.agro-content h2 span {
  color: var(--gold);
}

/* TEXTO PRINCIPAL */
.agro-lead {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.8;
  color: #f2f2f2;
  max-width: 620px;
  margin-bottom: 18px;
}

/* TEXTO SECUNDARIO */
.agro-desc {
  font-size: 16px;
  line-height: 1.85;
  color: #dcdcdc;
  max-width: 620px;
  margin-bottom: 30px;
}

/* LISTA TÉCNICA */
.agro-points {
  list-style: none;
  padding: 0;
  margin: 0;
}

.agro-points li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 12px;
  font-size: 15.5px;
  color: #e5e5e5;
}

.agro-points li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
}
/* ===============================
   SERVICIOS AGRÍCOLAS
================================ */

.services-agro {
  margin-top: 120px;
  padding-top: 80px;
  border-top: 1px solid #e5e5e5;
}

/* EYEBROW */
.services-eyebrow {
  font-size: 12px;
  letter-spacing: 4px;
  font-weight: 700;
  color: var(--gold);
  display: inline-block;
  margin-bottom: 24px;
}

/* TÍTULO */
.services-agro-title {
  font-size: clamp(34px, 4.5vw, 52px);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 26px;
}

.services-agro-title span {
  color: var(--gold);
}

/* TEXTO */
.services-agro-intro {
  max-width: 640px;
  font-size: 17px;
  line-height: 1.8;
  color: #333;
  margin-bottom: 50px;
}

/* GRID */
.services-agro-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 40px;
  margin-bottom: 60px;
}

.agro-item h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
}

.agro-item p {
  font-size: 15.5px;
  line-height: 1.7;
  color: #555;
}

/* CTA */
.agro-cta {
  display: inline-block;
  font-weight: 700;
  color: #000;
  padding-bottom: 6px;
  border-bottom: 2px solid var(--gold);
  transition: all .3s ease;
}

.agro-cta:hover {
  color: var(--gold);
  border-color: #000;
}
/* ===============================
   TELEFONO
================================ */
html, body {
  width: 100%;
  overflow-x: hidden;
}
@media (max-width: 1200px) {
  .topbar-inner,
  .ticker,
  .hero-content,
  .about-inner,
  .services-inner,
  .projects-inner,
  .quality-inner,
  .contact-inner {
    max-width: 94%;
  }
}
@media (max-width: 768px) {
  .hero {
    height: auto;
    padding: 100px 0 90px;
  }

  .hero-content {
    margin-left: 0;
    padding: 0 20px;
  }

  .hero h1 {
    font-size: 38px;
    line-height: 1.1;
  }

  .hero p {
    font-size: 15.5px;
    line-height: 1.7;
  }

  .hero-btn {
    padding: 12px 30px;
    font-size: 13px;
  }
}
@media (max-width: 768px) {
  .section-header {
    margin-bottom: 50px;
  }

  .section-eyebrow {
    font-size: 11px;
    letter-spacing: 0.3em;
  }

  .section-title {
    font-size: 32px;
    line-height: 1.15;
  }

  .section-divider {
    width: 70px;
    margin-bottom: 22px;
  }

  .section-subtext {
    font-size: 15.5px;
    line-height: 1.7;
  }
}
@media (max-width: 900px) {
  .about {
    padding: 90px 0;
  }

  .about-split {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .about-content h2 {
    font-size: 36px;
  }

  .about-text h3 {
    font-size: 26px;
  }

  .about-media img,
  .about-media video {
    min-height: 300px;
  }
}
@media (max-width: 768px) {
  .services {
    padding: 80px 0;
  }

  .services-list {
    display: flex;
    flex-direction: column;
    gap: 34px;
  }

  .service-item {
    padding-left: 14px;
  }

  .service-line {
    width: 2px;
    height: 100%;
  }

  .service-item h3 {
    font-size: 18px;
  }

  .service-item p {
    font-size: 14.8px;
    line-height: 1.65;
  }
}
@media (max-width: 768px) {
  .projects {
    padding: 90px 0;
  }

  .projects-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .project-image,
  .project-image video {
    height: 220px;
  }
}
@media (max-width: 768px) {
  .video-section,
  .process-highlight,
  .quality-policy-video,
  .cta-final {
    min-height: 45vh;
  }
}
@media (max-width: 768px) {
  .cta-wow {
    padding: 80px 20px;
    text-align: left;
  }

  .cta-wow h3 {
    font-size: 28px;
    line-height: 1.15;
  }

  .cta-wow p {
    font-size: 15px;
  }

  .cta-wow-btn {
    padding: 14px 30px;
    font-size: 13px;
  }
}
@media (max-width: 768px) {
  .contact-inner {
    padding-bottom: 60px;
  }

  .contact-title {
    font-size: 34px;
  }

  .contact-map iframe {
    height: 260px;
  }
}
@media (max-width: 900px) {
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-industrial {
    padding: 50px 20px 30px;
  }
}
/* =========================================================
   FIX VIDEO – SOLO MOBILE
========================================================= */

@media (max-width: 768px) {

  /* Contenedor del bloque */
  .process-item,
  .about-split,
  .process-highlight {
    display: flex !important;
    flex-direction: column !important;
  }

  /* Video / imagen */
  .process-image,
  .about-media,
  .process-video {
    width: 100% !important;
    height: 260px !important;
    margin-top: 30px;
  }

  .process-image video,
  .about-media video,
  .process-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

}
@media (max-width: 768px) {
  .about {
    margin-top: -40px; /* Ajusta el número si quieres más arriba */
  }
}
@media (max-width: 768px) {
  .areas {
    margin-top: -40px; /* Ajusta entre -20 y -60 según necesites */
  }
}
@media (max-width: 768px) {
  section {
    margin-top: -30px;
  }
}
@media (max-width: 768px) {

  .cta-wow {
    padding-bottom: 40px !important;
  }

  .cta-wow-inner {
    margin-bottom: 0 !important;
  }

  .cta-wow-action {
    margin-bottom: 0 !important;
  }

}
@media (max-width: 768px) {

  .cta-wow {
    margin-bottom: -70px;
  }

}
@media (max-width: 768px) {

  .projects .section-header {
    margin-top: 60px; /* ajusta */
  }

}
@media (max-width: 768px) {

  body {
    padding-top: 80px !important; /* compensa la topbar */
  }

  .projects {
    margin-top: 0 !important;
    padding-top: 30px !important;
  }

}
@media (max-width: 768px) {

  .contact-map {
    margin-top: -40px !important;   /* lo sube */
    height: 320px !important;       /* altura exacta */
    padding: 0 !important;
  }

  .contact-map iframe {
    width: 100% !important;
    height: 100% !important;        /* rellena TODO */
    display: block;
  }

}
@media (max-width: 768px) {

  .contact-minimal {
    padding-top: 20px !important;   /* antes seguramente 40px o más */
  }

  .contact-inner {
    padding-top: 10px !important;
  }

}
@media (max-width: 768px) {

  .process-video {
    height: auto !important;
    padding: 0 20px;
  }

  .process-video video {
    position: relative !important;
    width: 100% !important;
    height: auto !important;
    transform: none !important;
    object-fit: contain !important;
    border-radius: 18px;
  }

  .process-video-content {
    position: relative !important;
    padding: 30px 10px;
    text-align: center;
  }

}
@media (max-width: 768px) {

  .process-highlight {
    min-height: auto !important;
    height: auto !important;
    padding: 0 !important;
  }

  .process-video {
    position: relative !important;
    height: auto !important;
  }

  .process-video video {
    position: relative !important;
    width: 100% !important;
    height: auto !important;
    object-fit: cover !important;
    display: block;
  }

}
@media (max-width: 768px) {
  .process-highlight::before,
  .process-highlight::after {
    display: none;
  }
}
@media (max-width: 768px) {

  .cta-section,
  .cta-wow,
  .cta-final {
    padding: 40px 20px !important;   /* antes seguramente 80px o más */
    min-height: auto !important;
  }

  .cta-section h2,
  .cta-wow h3,
  .cta-final h2 {
    font-size: 28px !important;
    line-height: 1.2;
    margin-bottom: 16px !important;
  }

  .cta-section .btn,
  .cta-wow-btn,
  .cta-final .btn {
    padding: 12px 28px !important;
    font-size: 14px !important;
  }

}
.topbar-center{
    font-size:28px;
    font-weight:bold;
    letter-spacing:8px;
    color:#d4af37;


}.topbar-center{
    font-size:28px;
    font-weight:bold;
    letter-spacing:8px;
    color:#d4af37;
    display:flex;
    align-items:center;
    gap:6px;
}

/* logo reemplazando la O */

.logo-o{
    height:30px;
    width:auto;
}
.topbar-center{
    font-size:32px;
    font-weight:bold;
    color:#d4af37;

    display:flex;
    align-items:center;
    justify-content:center;

    letter-spacing:-2px;   /* pega las letras */
    gap:0px;               /* elimina espacio entre elementos */
}.logo-o{
    height:36px;
    margin-left:-6px;   /* pega al T */
    margin-right:-6px;  /* pega a la M */
}.topbar-center{
    font-size:32px;
    font-weight:bold;
    color:#d4af37;

    display:flex;
    align-items:center;

    letter-spacing:-2px;
}

.logo-o{
    height:36px;
    margin-left:-6px;
    margin-right:-6px;
}

/* separación para BJX */

.bjx{
    margin-left:18px;
}
@media (max-width:768px){

.topbar-center{
    font-size:20px;      /* letras más pequeñas */
    letter-spacing:-1px;
}

.logo-o{
    height:22px;         /* logo más pequeño */
    margin-left:-4px;
    margin-right:-4px;
}

.bjx{
    margin-left:10px;    /* menos separación */
}

/* botón más pequeño */

.btn-contacto{
    padding:6px 12px;
    font-size:14px;
}

/* menú más compacto */

.menu-text{
    font-size:14px;
}

}
@media (max-width:768px){

.btn-contacto{
    padding:4px 10px;   /* botón más pequeño */
    font-size:12px;     /* texto más chico */
    border-radius:6px;
}

}
@media (max-width:768px){

.btn-contacto{
    padding:3px 8px;
    font-size:11px;
}

}
.topbar-center{
    font-size:28px;   /* antes probablemente 32px */
    font-weight:bold;
    color:#d4af37;

    display:flex;
    align-items:center;
    justify-content:center;

    letter-spacing:-2px;
}


/* ===== RESPONSIVE CELULAR ===== */
@media (max-width: 600px){

  /* Barra superior */
  .topbar-inner{
    padding: 8px 12px;
  }

  /* Logo */
  .topbar-center{
    font-size: 20px;
    letter-spacing: 1px;
  }

  .logo-o{
    height: 1.6em;
  }

  /* Botón contacto */
  .btn-contacto{
    font-size: 11px;
    padding: 6px 10px;
    border-radius: 12px;
  }

  /* Texto menú */
  .menu-text{
    display: none; /* solo deja el icono ☰ */
  }

  /* Título principal */
  h1{
    font-size: 32px;
    line-height: 1.2;
  }

  /* Formulario */
  form{
    width: 90%;
  }

  input,
  textarea{
    font-size: 14px;
  }

}
/* ===== SOLO CELULAR ===== */
@media (max-width:600px){

  .topbar-inner{
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .topbar-center{
    font-size: 18px;
    display: flex;
    align-items: center;
    gap: 3px;
  }

  .logo-o{
    height: 1.6em; /* logo más grande */
  }

  .btn-contacto{
    font-size: 10px;
    padding: 5px 8px;
  }

  .menu-text{
    display: none; /* oculta "Menú" y deja solo ☰ */
  }

}
/* SOLO CELULAR */
@media (max-width:600px){

  .topbar-center{
    gap:0px;              /* elimina separación de flex */
    letter-spacing:-2px;  /* junta letras */
  }

  .logo-o{
    margin-left:-6px;     /* pega el logo al texto */
    margin-right:-6px;
    height:1.6em;
  }

  .bjx{
    margin-left:-6px;
  }

}@media (max-width:600px){

  .topbar-center{
    gap:0px;
    letter-spacing:-2px;
  }

  /* junta CUST + logo + M */
  .logo-o{
    margin-left:-6px;
    margin-right:-6px;
    height:1.6em;
  }

  /* deja espacio antes de BJX */
  .bjx{
    margin-left:8px;
    letter-spacing:0px;
  }

}
/* ===== FOOTER RESPONSIVE CELULAR ===== */
@media (max-width:600px){

  .footer-inner{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:25px;
    padding:40px 25px;
  }

  /* Marca ocupa todo el ancho */
  .footer-brand{
    grid-column:1 / -1;
  }

  .footer-brand h3{
    font-size:22px;
    letter-spacing:2px;
    margin-bottom:8px;
  }

  .footer-brand p{
    font-size:14px;
    line-height:1.5;
  }

  .footer-block h4{
    font-size:15px;
    margin-bottom:10px;
  }

  .footer-block p,
  .footer-block a,
  .footer-block li{
    font-size:13px;
  }

  .footer-block ul{
    padding:0;
  }

  .footer-bottom{
    text-align:center;
    font-size:12px;
    padding:20px;
  }

}
.section-divider{
display:none;
}
/* ===============================
   LOGO HERO RESPONSIVE CONTROLADO
================================ */

.about.about-hero::after{
background-size:480px;
background-position:right center;
opacity:0.09;
}

/* pantallas grandes */
@media (min-width:1400px){

.about.about-hero::after{
background-size:560px;
}

}

/* pantallas muy grandes */
@media (min-width:1800px){

.about.about-hero::after{
background-size:620px;
}

}
.about.about-hero::after{
background-size:700px;
background-position:right 80px center;
opacity:0.07;
}/* ===============================
   LOGO HERO CELULAR
================================ */

@media (max-width:768px){

.about.about-hero::after{

background-size:600px;      /* tamaño más pequeño */
background-position:center center;  /* centrado */
opacity:0.05;               /* más suave */
}

}

