/* ============================================================
   INDEX.CSS — Página de inicio YEYSON INOX PERU S.A.C.
   ============================================================ */

/* ── HERO WRAP ───────────────────────────────────────────────── */
.hero-wrap {
  position: relative; overflow: hidden;
  height: calc(100vh - 114px);
  min-height: 580px;
  max-height: 820px;
}
.hero-wrap__bg {
  position: absolute; inset: 0; z-index: 0;
  background: url('../../img/portada.jpg') 72% center / cover no-repeat;
  animation: heroPan 24s ease-in-out infinite alternate;
  will-change: transform;
}
@keyframes heroPan {
  0%   { transform: scale(1.00) translateX(0px); }
  100% { transform: scale(1.06) translateX(-18px); }
}
.hero-wrap::before {
  content: ''; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background:
    linear-gradient(108deg,
      rgba(4,10,22,0.95)  0%,
      rgba(6,14,28,0.88) 30%,
      rgba(6,14,28,0.52) 48%,
      rgba(6,14,28,0.14) 62%,
      transparent        74%
    ),
    linear-gradient(to top,
      rgba(4,10,22,0.70) 0%,
      transparent        30%
    );
}
/* Línea naranja decorativa inferior izquierda */
.hero-wrap::after {
  content: ''; position: absolute; bottom: 72px; left: 0; z-index: 2;
  width: 340px; height: 2px; pointer-events: none;
  background: linear-gradient(90deg, #f5821f 0%, rgba(245,130,31,0.3) 70%, transparent 100%);
  animation: heroLineGrow 1.2s cubic-bezier(0.22,1,0.36,1) 0.8s both;
}
@keyframes heroLineGrow {
  from { transform: scaleX(0); transform-origin: left; opacity: 0; }
  to   { transform: scaleX(1); transform-origin: left; opacity: 1; }
}

/* ── HERO ANIMACIONES DE ENTRADA ────────────────────────────── */
@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes heroFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.hero-svg {
  position: absolute; top: 0; left: 0; width: 100%; height: 100%;
  display: block; pointer-events: none; z-index: 1;
}
.hero__content {
  position: absolute; z-index: 3;
  top: 0; left: 0; width: 52%;
  height: calc(100% - 72px);
  padding: 0 60px 0 6%;
  display: flex; flex-direction: column; justify-content: center; gap: 0;
}
.hero__badge {
  display: inline-flex; align-items: center; gap: 8px; align-self: flex-start;
  background: rgba(245,130,31,0.12); border: 1px solid rgba(245,130,31,0.38);
  color: #f5821f; font-family: 'Barlow', sans-serif;
  font-size: 0.75rem; font-weight: 700; letter-spacing: 1.2px; text-transform: uppercase;
  padding: 5px 14px; border-radius: 20px; margin-bottom: 20px;
  animation: heroFadeUp 0.7s cubic-bezier(0.22,1,0.36,1) 0.15s both;
}
.hero__badge i { font-size: 0.68rem; }
.hero__title   {
  margin-bottom: 18px;
  animation: heroFadeUp 0.8s cubic-bezier(0.22,1,0.36,1) 0.35s both;
}
.hero__subtitle{
  margin-bottom: 38px;
  animation: heroFadeUp 0.8s cubic-bezier(0.22,1,0.36,1) 0.55s both;
}
.hero__title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.6rem, 4.2vw, 4.2rem);
  font-weight: 400; color: #fff;
  line-height: 1.0; letter-spacing: 3px; text-transform: uppercase;
}
.hero__title span { color: #f5821f; }
.hero__title span::after {
  content: '|';
  color: rgba(245,130,31,0.9);
  font-weight: 300;
  animation: cursorBlink 0.72s step-end infinite;
}
@keyframes cursorBlink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0; }
}
.hero__subtitle {
  color: rgba(255,255,255,0.88); font-family: 'Barlow', sans-serif;
  font-size: clamp(1rem, 1.2vw, 1.08rem);
  font-weight: 400; line-height: 1.7; max-width: 400px;
}
.hero__btns {
  display: flex; gap: 14px; flex-wrap: wrap;
  animation: heroFadeUp 0.8s cubic-bezier(0.22,1,0.36,1) 0.75s both;
}
.hero__btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 30px; font-family: 'Barlow', sans-serif;
  font-size: 0.85rem; font-weight: 700; letter-spacing: 1.5px;
  border-radius: 4px; text-transform: uppercase;
  transition: filter 0.2s, transform 0.15s, box-shadow 0.2s; white-space: nowrap;
}
.hero__btn i { font-size: 0.72rem; }
.hero__btn:hover { transform: translateY(-2px); filter: brightness(1.12); }
.hero__btn--primary  { background: #f5821f; color: #fff; box-shadow: 0 6px 22px rgba(245,130,31,0.35); }
.hero__btn--primary:hover { box-shadow: 0 10px 32px rgba(245,130,31,0.55); }
.hero__btn--outline  { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,0.85); }
.hero__btn--outline:hover { background: rgba(255,255,255,0.10); border-color: #fff; }
.features {
  position: absolute; z-index: 3;
  bottom: 0; left: 0; right: 0; height: 72px;
  display: flex; align-items: stretch;
  background: linear-gradient(to bottom, rgba(8,18,46,0.60) 0%, rgba(8,18,46,0.96) 100%);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  border-top: 1px solid rgba(255,255,255,0.12);
}
.features__item {
  flex: 1; display: flex; align-items: center; gap: 12px;
  padding: 0 20px; border-right: 1px solid rgba(255,255,255,0.08);
  position: relative; cursor: default; transition: background 0.3s; overflow: hidden;
}
.features__item:last-child { border-right: none; }
.features__item::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 0; height: 2px; background: #f5821f; transition: width 0.35s ease;
}
.features__item:hover::after { width: 100%; }
.features__item:hover { background: rgba(245,130,31,0.07); }
.features__icon {
  flex-shrink: 0; width: 36px; height: 36px; border-radius: 50%;
  border: 1.5px solid rgba(245,130,31,0.45); background: rgba(245,130,31,0.09);
  display: flex; align-items: center; justify-content: center;
  color: #f5821f; font-size: 0.95rem;
  transition: background 0.3s, border-color 0.3s, box-shadow 0.3s, transform 0.3s;
}
.features__item:hover .features__icon {
  background: rgba(245,130,31,0.20); border-color: #f5821f;
  box-shadow: 0 0 18px rgba(245,130,31,0.50); transform: scale(1.08);
}
.features__text { display: flex; flex-direction: column; gap: 2px; }
.features__text strong {
  color: #fff; font-family: 'Barlow', sans-serif;
  font-size: 0.78rem; font-weight: 800; letter-spacing: 0.6px;
  text-transform: uppercase; transition: color 0.3s;
}
.features__item:hover .features__text strong { color: #f5821f; }
.features__text span {
  color: rgba(255,255,255,0.68); font-family: 'Barlow', sans-serif;
  font-size: 0.72rem; line-height: 1.3; max-width: 200px;
}

/* Hero responsive */
@media (max-width: 768px) {
  .hero-wrap {
    height: auto; min-height: 100svh;
  }
  .hero-wrap__bg { display: none; }
  .hero-wrap::before {
    background:
      linear-gradient(to bottom, rgba(8,18,46,0.88) 0%, rgba(8,18,46,0.72) 45%, rgba(8,18,46,0.90) 80%, rgba(8,18,46,0.98) 100%),
      url('../../img/portada.jpg') center center / cover no-repeat;
    display: block;
  }
  .hero-svg { display: none; }
  .hero-wrap::after { display: none; }
  .hero__content {
    position: relative; width: 100%; height: auto;
    padding: 100px 24px 40px;
    align-items: center; text-align: center;
  }
  .hero__badge { align-self: center; font-size: 0.72rem; }
  .hero__title { font-size: clamp(2.4rem, 10vw, 3.8rem); letter-spacing: 1.5px; margin-bottom: 14px; }
  .hero__subtitle { font-size: 0.97rem; max-width: 100%; margin-bottom: 28px; }
  .hero__btns { flex-wrap: wrap; gap: 12px; justify-content: center; }
  .hero__btn  { padding: 13px 24px; font-size: 0.83rem; justify-content: center; }
  .features {
    position: relative; height: auto; display: grid; grid-template-columns: 1fr 1fr;
    backdrop-filter: none; -webkit-backdrop-filter: none;
    background: rgba(8,18,46,0.97); border-top: 2px solid rgba(245,130,31,0.25); padding: 0;
  }
  .features__item { padding: 18px 14px; border-right: 1px solid rgba(255,255,255,0.07); border-bottom: 1px solid rgba(255,255,255,0.07); gap: 10px; }
  .features__item:nth-child(2n) { border-right: none; }
  .features__item:nth-child(3), .features__item:nth-child(4) { border-bottom: none; }
  .features__item::after { display: none; }
  .features__icon { width: 34px; height: 34px; font-size: 0.9rem; flex-shrink: 0; }
  .features__text strong { font-size: 0.67rem; }
  .features__text span   { font-size: 0.67rem; max-width: 100%; }
}
@media (max-width: 480px) {
  .hero__content { padding: 90px 20px 36px; }
  .hero__title { font-size: clamp(2rem, 11vw, 2.8rem); }
  .hero__btns  { flex-direction: column; gap: 10px; }
  .hero__btn   { width: 100%; max-width: 320px; }
  .features    { grid-template-columns: 1fr; }
  .features__item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.07); padding: 16px 20px; }
  .features__item:last-child { border-bottom: none; }
}

/* ── SVG DECORATIVOS DE SECCIÓN ──────────────────────────────── */
.sdeco {
  position: absolute; pointer-events: none; z-index: 0; overflow: visible;
}
/* Featured Products: diamond mesh top-right + bracket bottom-left */
.sdeco--fp    { top: -20px;  right: -20px;  width: 340px; height: 340px; opacity: 0.75; }
.sdeco--fp-bl { bottom: 40px; left: 20px; width: 120px; height: 120px; opacity: 0.85; }
/* About Preview: gear-ring bottom-right */
.sdeco--about { bottom: -60px; right: -60px; width: 420px; height: 420px; opacity: 0.9; }
/* Services Preview: curves top-left */
.sdeco--srv   { top: 0; left: 0; width: 380px; height: 380px; opacity: 0.85; }
/* Materials Section: lattice right side */
.sdeco--mat   { top: 50%; right: -20px; transform: translateY(-50%); width: 320px; height: 460px; opacity: 0.8; }
/* How Section: arc bottom, full width */
.sdeco--how   { bottom: 0; left: 0; width: 100%; height: 180px; opacity: 0.9; }
/* Testimonials: quote mark + stars (left-top) */
.sdeco--testi { top: 0; left: 0; width: 500px; height: 420px; opacity: 0.85; }
/* FAQ: concentric squares bottom-right */
.sdeco--faq   { bottom: -20px; right: -20px; width: 300px; height: 300px; opacity: 0.7; }
/* CTA Banner: radiating lines full section */
.sdeco--cta   { top: 0; left: 0; width: 100%; height: 100%; opacity: 1; }
/* Projects Gallery: full section grid */
.sdeco--proj  { top: 0; left: 0; width: 100%; height: 100%; opacity: 1; }
/* News Section: grid + bracket overlay */
.sdeco--news  { top: 0; left: 0; width: 100%; height: 100%; opacity: 1; }

@media (max-width: 768px) {
  .sdeco--fp    { width: 200px; height: 200px; }
  .sdeco--about { width: 260px; height: 260px; }
  .sdeco--srv   { width: 220px; height: 220px; }
  .sdeco--mat   { width: 180px; height: 300px; }
  .sdeco--testi { width: 300px; height: 260px; }
  .sdeco--faq   { width: 180px; height: 180px; }
}

/* ── SECTION LABEL (eyebrow estilo nuevo) ────────────────────── */
.sec-label {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: 'Barlow', sans-serif; font-size: 0.72rem; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  color: #f5821f; margin-bottom: 14px;
}
.sec-label::before {
  content: ''; display: block; width: 28px; height: 2px;
  background: linear-gradient(90deg, #f5821f, rgba(245,130,31,0.3));
  border-radius: 2px;
}
.sec-label-center { justify-content: center; }
.sec-label-center::before, .sec-label-center::after {
  content: ''; display: block; width: 28px; height: 2px;
  background: linear-gradient(90deg, rgba(245,130,31,0.3), #f5821f);
  border-radius: 2px;
}
.sec-label-center::before { background: linear-gradient(90deg, rgba(245,130,31,0.3), #f5821f); }
.sec-label-center::after  { background: linear-gradient(90deg, #f5821f, rgba(245,130,31,0.3)); }

/* Heading oscuro universal */
.sec-h-dark {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 400; color: #fff;
  letter-spacing: 2px; line-height: 1.05; margin-bottom: 10px;
}
.sec-h-dark span { color: #f5821f; }
.sec-h-light {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 400; color: #0d1b3e;
  letter-spacing: 2px; line-height: 1.05; margin-bottom: 10px;
}
.sec-h-light span { color: #f5821f; }

/* ── MIXIN TEXTURE (clase utilitaria) ────────────────────────── */
.tx-diag {
  background-image:
    repeating-linear-gradient(-55deg, transparent, transparent 32px, rgba(255,255,255,0.016) 32px, rgba(255,255,255,0.016) 33px),
    repeating-linear-gradient(35deg,  transparent, transparent 48px, rgba(255,255,255,0.010) 48px, rgba(255,255,255,0.010) 49px);
}

/* ── FEATURED PRODUCTS ───────────────────────────────────────── */
.featured-products {
  padding: 96px 0;
  background: #ffffff;
  position: relative; overflow: hidden;
  border-top: 3px solid rgba(245,130,31,0.12);
}
.featured-products::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background-image: radial-gradient(circle, rgba(13,27,62,0.065) 1px, transparent 1px);
  background-size: 28px 28px;
}
.featured-products::after {
  content: ''; position: absolute; top: -100px; right: -100px;
  width: 420px; height: 420px; pointer-events: none;
  background: radial-gradient(circle, rgba(245,130,31,0.055) 0%, transparent 65%);
}
.featured-products .container { position: relative; z-index: 1; }

.sec-flex-header {
  display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 44px;
}
.sec-flex-header .view-all {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'Barlow', sans-serif; font-size: 0.82rem; font-weight: 700;
  letter-spacing: 1px; text-transform: uppercase;
  color: #f5821f; border: 1.5px solid rgba(245,130,31,0.5);
  padding: 9px 20px; border-radius: 4px;
  transition: background 0.25s, border-color 0.25s, box-shadow 0.25s, transform 0.2s;
}
.sec-flex-header .view-all:hover {
  background: rgba(245,130,31,0.12); border-color: #f5821f;
  box-shadow: 0 0 16px rgba(245,130,31,0.25); transform: translateY(-1px);
}

.products-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.products-grid .product-image {
  height: 0 !important; padding-bottom: 100% !important; position: relative !important;
}
.products-grid .product-image > i,
.products-grid .product-image > .product-badges,
.products-grid .product-image > .product-quick { position: absolute; }
.products-grid .product-image > i { top:50%; left:50%; transform:translate(-50%,-50%); }
.products-grid .product-image > .product-badges { top:10px; left:10px; }
.products-grid .product-image > .product-quick  { bottom:0; left:0; right:0; }

/* ── ABOUT PREVIEW ───────────────────────────────────────────── */
.about-preview {
  padding: 96px 0;
  background:
    linear-gradient(to right, rgba(6,12,28,0.88) 0%, rgba(6,12,28,0.72) 60%, rgba(6,12,28,0.50) 100%),
    url('/img/imagenseccion.jpg') center/cover no-repeat;
  position: relative; overflow: hidden;
}
.about-preview::after {
  content: ''; position: absolute; bottom: -140px; right: -140px;
  width: 480px; height: 480px; border-radius: 50%; pointer-events: none;
  background: radial-gradient(circle, rgba(245,130,31,0.13) 0%, transparent 65%);
}
.about-preview .container {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1fr; max-width: 720px; margin-left: 0;
}

/* Left accent bar */
.about-content { position: relative; padding-left: 24px; }
.about-content::before {
  content: ''; position: absolute; left: 0; top: 4px; bottom: 4px;
  width: 3px;
  background: linear-gradient(to bottom, #f5821f 0%, rgba(245,130,31,0.2) 100%);
  border-radius: 2px;
}

.about-content h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.2rem, 3.6vw, 3.2rem);
  font-weight: 400; color: #fff;
  line-height: 1.0; margin-bottom: 18px; letter-spacing: 2px;
}
.about-content h2 span { color: #f5821f; }
.about-content p { font-size: 0.95rem; color: rgba(200,208,216,0.80); line-height: 1.85; margin-bottom: 30px; }
.about-features { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 36px; }

.about-feat { display: flex; align-items: flex-start; gap: 13px; }
.af-icon {
  width: 42px; height: 42px; border-radius: 10px; flex-shrink: 0;
  background: rgba(245,130,31,0.10); border: 1.5px solid rgba(245,130,31,0.35);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.3s, border-color 0.3s, box-shadow 0.3s, transform 0.3s;
}
.about-feat:hover .af-icon {
  background: rgba(245,130,31,0.22); border-color: #f5821f;
  box-shadow: 0 0 14px rgba(245,130,31,0.35); transform: scale(1.06);
}
.af-icon i { font-size: 15px; color: #f5821f; }
.af-text strong { display: block; font-size: 0.82rem; font-weight: 700; color: #fff; margin-bottom: 3px; font-family: 'Barlow', sans-serif; letter-spacing: 0.3px; }
.af-text span   { font-size: 0.75rem; color: rgba(200,208,216,0.55); line-height: 1.4; }

/* ── ABOUT VISUAL (imagen + KPIs) ──────────────────────────── */
.about-visual {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  height: 480px;
  box-shadow:
    0 32px 80px rgba(0,0,0,0.55),
    0 0 0 1px rgba(245,130,31,0.18);
}

/* Imagen de fondo */
.about-visual-img {
  position: absolute; inset: 0;
  background: url('/img/about-planta.jpg') center/cover no-repeat;
  transform: scale(1.04);
  transition: transform 8s ease;
}
.about-visual:hover .about-visual-img { transform: scale(1.0); }

/* Gradiente que fusiona la imagen con el fondo oscuro del lado izquierdo */
.about-visual-fade {
  position: absolute; inset: 0;
  background:
    linear-gradient(to right,  rgba(8,18,42,0.72) 0%, rgba(8,18,42,0.12) 45%, transparent 100%),
    linear-gradient(to bottom, rgba(8,18,42,0.15) 0%, rgba(8,18,42,0.0) 40%, rgba(8,18,42,0.88) 100%);
  z-index: 1;
}

/* Acento naranja superior */
.about-visual::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent 0%, #f5821f 50%, transparent 100%);
  z-index: 3;
}

/* KPI grid flotando sobre la imagen en la parte inferior */
.kpi-grid-2x2 {
  position: absolute; bottom: 0; left: 0; right: 0; z-index: 2;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: rgba(245,130,31,0.15);
  border-top: 1px solid rgba(245,130,31,0.25);
}
.kpi-block {
  background: rgba(6,12,28,0.72);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border: none; border-radius: 0;
  padding: 22px 16px; text-align: center;
  position: relative; overflow: hidden;
  transition: background 0.3s;
}
.kpi-block::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 2px; background: linear-gradient(90deg, transparent, #f5821f, transparent);
  transform: scaleX(0); transition: transform 0.35s ease;
}
.kpi-block:hover { background: rgba(245,130,31,0.14); }
.kpi-block:hover::before { transform: scaleX(1); }
.kpi-block i      { font-size: 20px; color: #f5821f; margin-bottom: 6px; display: block; opacity: 0.9; }
.kpi-block strong {
  font-family: 'Bebas Neue', sans-serif;
  display: block; font-size: 2.4rem; font-weight: 400; color: #fff; line-height: 1;
  letter-spacing: 2px;
  text-shadow: 0 0 24px rgba(245,130,31,0.35);
}
.kpi-block span { font-size: 0.62rem; color: rgba(200,208,216,0.60); text-transform: uppercase; letter-spacing: 1.2px; margin-top: 4px; display: block; font-family: 'Barlow', sans-serif; }

/* ── SERVICES PREVIEW ────────────────────────────────────────── */
.services-preview {
  padding: 96px 0;
  background: #f2f5fb;
  position: relative; overflow: hidden;
}
.services-preview::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background-image:
    repeating-linear-gradient(-55deg, transparent, transparent 40px, rgba(13,27,62,0.018) 40px, rgba(13,27,62,0.018) 41px);
}
.services-preview::after {
  content: ''; position: absolute; bottom: -80px; left: -80px;
  width: 380px; height: 380px; pointer-events: none;
  background: radial-gradient(circle, rgba(245,130,31,0.055) 0%, transparent 65%);
}
.services-preview .container { position: relative; z-index: 1; }
.services-wrap { max-width: 1160px; margin: 0 auto; }
.services-preview__inner {
  max-width: 1160px; margin: 0 auto; padding: 0 24px;
  display: flex; flex-direction: column; align-items: center;
}
.news-section .container     { position: relative; z-index: 1; }
.news-section .sec-heading   { color: #fff; }
.news-section .sec-sub       { color: rgba(255,255,255,0.65); }
.services-preview .sec-center { text-align: center; margin-bottom: 56px; }
.services-preview .sec-heading,
.services-preview .sec-sub,
.services-preview .eyebrow { text-align: center; display: block; }
.services-preview .eyebrow { display: flex; justify-content: center; }
.services-grid { display: grid; grid-template-columns: repeat(4, 260px); gap: 20px; }

/* ── NAVY DIVIDER ────────────────────────────────────────────── */
.sect-divider-navy {
  background: linear-gradient(135deg, #08122a 0%, #0d1b3e 50%, #152748 100%);
  padding: 20px 0; display: flex; align-items: center; overflow: hidden; position: relative;
}
.sect-divider-navy::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background-image: repeating-linear-gradient(-55deg, transparent, transparent 28px,
    rgba(255,255,255,0.018) 28px, rgba(255,255,255,0.018) 29px);
}
.sdn-line {
  flex: 1; height: 1px; position: relative; z-index: 1;
  background: linear-gradient(90deg, transparent, rgba(245,130,31,0.40) 40%,
    rgba(255,255,255,0.18) 60%, transparent);
}
.sdn-content {
  position: relative; z-index: 1;
  display: flex; align-items: center; gap: 14px; padding: 0 36px; white-space: nowrap;
  color: rgba(255,255,255,0.82); font-family: 'Barlow', sans-serif;
  font-size: 0.78rem; font-weight: 600; letter-spacing: 1.4px; text-transform: uppercase;
}
.sdn-content i { color: #f5821f; font-size: 0.80rem; flex-shrink: 0; }

.service-card {
  background: #ffffff; border: 1px solid #d8e3f4;
  border-radius: 14px; padding: 36px 24px;
  display: flex; flex-direction: column; align-items: flex-start; gap: 16px;
  position: relative; overflow: hidden; transition: all 0.3s; cursor: pointer;
  box-shadow: 0 2px 14px rgba(10,20,60,0.07);
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 3px; background: linear-gradient(90deg, #f5821f, rgba(245,130,31,0.25));
  transform: scaleX(0); transform-origin: left; transition: transform 0.35s ease;
}
.service-card::after {
  content: ''; position: absolute; bottom: -60px; right: -60px;
  width: 160px; height: 160px; border-radius: 50%;
  background: radial-gradient(circle, rgba(245,130,31,0.05) 0%, transparent 70%);
}
.service-card:hover { background: #fff; border-color: rgba(245,130,31,0.35); transform: translateY(-6px); box-shadow: 0 18px 52px rgba(10,20,60,0.14); }
.service-card:hover::before { transform: scaleX(1); }

.service-icon {
  width: 56px; height: 56px; border-radius: 14px;
  background: rgba(245,130,31,0.09); border: 1.5px solid rgba(245,130,31,0.28);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.3s, box-shadow 0.3s, transform 0.3s;
}
.service-card:hover .service-icon {
  background: rgba(245,130,31,0.20); border-color: #f5821f;
  box-shadow: 0 0 20px rgba(245,130,31,0.35); transform: scale(1.08) rotate(-4deg);
}
.service-icon i { font-size: 22px; color: #f5821f; }

.service-card h3 {
  font-family: 'Barlow', sans-serif; font-size: 1rem; font-weight: 700;
  color: #0d1b3e; letter-spacing: 0.3px; line-height: 1.3;
  transition: color 0.25s;
}
.service-card:hover h3 { color: #f5821f; }
.service-card p { font-size: 0.84rem; color: #5a6a80; line-height: 1.75; margin: 0; }

/* ── INDUSTRIES SECTION ──────────────────────────────────────── */
.industries-section {
  padding: 96px 0 80px;
  background: linear-gradient(160deg, #080f24 0%, #0d1b3e 45%, #091424 100%);
  position: relative; overflow: hidden;
}
.industries-section::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background-image:
    repeating-linear-gradient(-55deg, transparent, transparent 40px, rgba(255,255,255,0.012) 40px, rgba(255,255,255,0.012) 41px);
}
.industries-section::after {
  content: ''; position: absolute; top: 30%; left: 50%; transform: translate(-50%,-50%);
  width: 700px; height: 500px; pointer-events: none;
  background: radial-gradient(ellipse, rgba(245,130,31,0.07) 0%, transparent 60%);
}

/* SVG skyline decoration */
.ind-deco-svg {
  position: absolute; bottom: 0; left: 0; width: 100%; height: 260px;
  pointer-events: none; z-index: 0;
}

.industries-section .sec-heading { color: #ffffff; }
.industries-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.industry-item {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.10);
  border-left: 3px solid rgba(245,130,31,0.25);
  border-radius: 0 16px 16px 0;
  padding: 36px 28px 28px 32px;
  text-align: left; transition: all 0.35s; position: relative; overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,0.28);
  display: flex; flex-direction: column;
}
.industry-item::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(245,130,31,0.0) 0%, rgba(245,130,31,0.05) 100%);
  opacity: 0; transition: opacity 0.35s;
}
.industry-item:hover {
  border-left-color: #f5821f;
  border-color: rgba(245,130,31,0.35);
  transform: translateY(-6px) translateX(3px);
  box-shadow: -4px 20px 52px rgba(0,0,0,0.42);
}
.industry-item:hover::after { opacity: 1; }

/* Número decorativo grande (Bebas Neue) */
.ind-num {
  position: absolute; top: 12px; right: 20px;
  font-family: 'Bebas Neue', sans-serif; font-size: 5.5rem;
  font-weight: 400; line-height: 1; letter-spacing: 2px;
  color: rgba(245,130,31,0.09); pointer-events: none; user-select: none;
  transition: color 0.35s;
}
.industry-item:hover .ind-num { color: rgba(245,130,31,0.16); }

.ind-icon {
  width: 60px; height: 60px; border-radius: 14px;
  background: rgba(245,130,31,0.10); border: 1.5px solid rgba(245,130,31,0.30);
  margin-bottom: 20px;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.3s, border-color 0.3s, box-shadow 0.3s;
  position: relative; z-index: 1;
}
.industry-item:hover .ind-icon {
  background: rgba(245,130,31,0.22); border-color: #f5821f;
  box-shadow: 0 0 20px rgba(245,130,31,0.35);
}
.ind-icon i { font-size: 24px; color: #f5821f; }

.ind-title {
  display: block; position: relative; z-index: 1;
  font-family: 'Barlow', sans-serif; font-size: 1.05rem; font-weight: 700;
  color: #ffffff; margin-bottom: 10px; letter-spacing: 0.2px;
  transition: color 0.25s;
}
.industry-item:hover .ind-title { color: #f5821f; }

.ind-desc {
  font-family: 'Barlow', sans-serif; font-size: 0.83rem;
  color: rgba(200,208,216,0.58); line-height: 1.75; margin: 0;
  flex: 1; position: relative; z-index: 1;
}

.ind-link {
  display: inline-flex; align-items: center; gap: 7px;
  margin-top: 20px; font-family: 'Barlow', sans-serif;
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.8px;
  text-transform: uppercase; color: rgba(245,130,31,0.70);
  transition: color 0.25s, gap 0.25s;
  position: relative; z-index: 1;
}
.ind-link i { font-size: 0.68rem; transition: transform 0.25s; }
.industry-item:hover .ind-link { color: #f5821f; gap: 11px; }
.industry-item:hover .ind-link i { transform: translateX(3px); }

/* ── MATERIALS SECTION ───────────────────────────────────────── */
.materials-section {
  padding: 88px 0;
  background: #ffffff;
  position: relative; overflow: hidden;
  border-top: 1px solid #e8eef8;
  border-bottom: 1px solid #e8eef8;
}
.materials-section::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background-image: radial-gradient(circle, rgba(13,27,62,0.06) 1px, transparent 1px);
  background-size: 24px 24px;
  opacity: 0.55;
}
.materials-section .container { position: relative; z-index: 1; }
.materials-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 14px; margin-top: 44px; }

.material-tag {
  background: #fff; border: 1px solid #d8e3f4;
  border-radius: 14px; padding: 28px 12px; text-align: center;
  position: relative; overflow: hidden; transition: all 0.3s;
  box-shadow: 0 2px 10px rgba(10,20,60,0.06);
}
.material-tag::before {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 3px; background: linear-gradient(90deg, transparent, #f5821f, transparent);
  transform: scaleX(0); transition: transform 0.35s ease;
}
.material-tag:hover { border-color: rgba(245,130,31,0.35); transform: translateY(-5px); box-shadow: 0 12px 34px rgba(10,20,60,0.13); }
.material-tag:hover::before { transform: scaleX(1); }
.material-tag i { font-size: 26px; color: #0d1b3e; margin-bottom: 12px; display: block; opacity: 0.65; transition: color 0.3s, transform 0.3s, opacity 0.3s; }
.material-tag:hover i { color: #f5821f; transform: scale(1.12); opacity: 1; }
.material-tag span { font-family: 'Barlow', sans-serif; font-size: 0.7rem; font-weight: 700; color: #4a5568; text-transform: uppercase; letter-spacing: 0.8px; transition: color 0.25s; }
.material-tag:hover span { color: #f5821f; }

/* ── HOW IT WORKS ────────────────────────────────────────────── */
.how-section {
  padding: 96px 0;
  background: #f2f5fb;
  position: relative; overflow: hidden;
}
.how-section::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background-image:
    repeating-linear-gradient(-55deg, transparent, transparent 40px, rgba(13,27,62,0.018) 40px, rgba(13,27,62,0.018) 41px);
}
.how-section .container { position: relative; z-index: 1; }
.how-section .sec-center { text-align: center; margin-bottom: 64px; }

.how-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 20px; position: relative;
}
/* Línea conectora naranja entre pasos */
.how-grid::before {
  content: ''; position: absolute; top: 72px; left: 12.5%; right: 12.5%;
  height: 2px;
  background: linear-gradient(90deg, rgba(245,130,31,0.55) 0%, rgba(245,130,31,0.14) 100%);
  z-index: 0;
}

.how-step {
  background: #ffffff; border: 1px solid #d8e3f4; border-radius: 16px;
  padding: 36px 24px 32px; text-align: center; position: relative;
  transition: all 0.3s; overflow: hidden;
  box-shadow: 0 2px 12px rgba(10,20,60,0.07);
}
.how-step:last-child { border-right: none; }
.how-step::after {
  content: ''; position: absolute; inset: 0;
  background: rgba(245,130,31,0.03); opacity: 0; transition: opacity 0.3s;
}
.how-step:hover { border-color: rgba(245,130,31,0.3); transform: translateY(-6px); box-shadow: 0 18px 52px rgba(10,20,60,0.14); }
.how-step:hover::after { opacity: 1; }

/* Número decorativo grande */
.how-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 5rem; font-weight: 400; color: rgba(13,27,62,0.05);
  line-height: 1; position: absolute; top: 12px; left: 16px;
  letter-spacing: 2px; pointer-events: none; user-select: none;
  transition: color 0.3s;
}
.how-step:hover .how-num { color: rgba(245,130,31,0.10); }

.how-icon {
  width: 72px; height: 72px; border-radius: 50%;
  background: rgba(245,130,31,0.09); border: 2px solid rgba(245,130,31,0.28);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px; transition: all 0.3s; position: relative; z-index: 1;
}
.how-step:hover .how-icon {
  background: rgba(245,130,31,0.20); border-color: #f5821f;
  transform: translateY(-5px) scale(1.06);
  box-shadow: 0 0 24px rgba(245,130,31,0.35);
}
.how-icon i { font-size: 26px; color: #f5821f; }
.how-step h3 {
  font-family: 'Barlow', sans-serif; font-size: 1rem; font-weight: 700;
  color: #0d1b3e; margin-bottom: 10px; position: relative; z-index: 1;
  transition: color 0.25s;
}
.how-step:hover h3 { color: #f5821f; }
.how-step p { font-size: 0.83rem; color: #5a6a80; line-height: 1.75; position: relative; z-index: 1; }
.how-arrow {
  position: absolute; right: -14px; top: 58px;
  width: 28px; height: 28px; background: #f5821f; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 10px; z-index: 2;
  box-shadow: 0 0 10px rgba(245,130,31,0.38);
}

/* ── TESTIMONIALS ────────────────────────────────────────────── */
.testimonials-section {
  padding: 96px 0;
  background: linear-gradient(145deg, #06101e 0%, #0a1530 60%, #060e1c 100%);
  position: relative; overflow: hidden;
}
.testimonials-section::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background-image:
    repeating-linear-gradient(-55deg, transparent, transparent 32px, rgba(255,255,255,0.014) 32px, rgba(255,255,255,0.014) 33px);
}
.testimonials-section::after {
  content: ''; position: absolute; top: -100px; left: -100px;
  width: 500px; height: 500px; pointer-events: none;
  background: radial-gradient(circle, rgba(245,130,31,0.08) 0%, transparent 65%);
}
.testimonials-section .container { position: relative; z-index: 1; }

.testi-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-bottom: 60px; }
.testi-card {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.09);
  border-radius: 16px; padding: 32px;
  position: relative; overflow: hidden; transition: all 0.3s;
}
.testi-card::before {
  content: '\201C'; font-size: 120px; line-height: 0.8;
  color: rgba(245,130,31,0.10); position: absolute; top: 10px; left: 14px;
  font-family: Georgia, serif; pointer-events: none;
}
/* Línea inferior naranja en hover */
.testi-card::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 2px; background: linear-gradient(90deg, transparent, #f5821f, transparent);
  transform: scaleX(0); transition: transform 0.35s ease;
}
.testi-card:hover { background: rgba(255,255,255,0.08); transform: translateY(-5px); box-shadow: 0 16px 48px rgba(0,0,0,0.45); }
.testi-card:hover::after { transform: scaleX(1); }
.testi-card.featured {
  background: rgba(245,130,31,0.08); border-color: rgba(245,130,31,0.4);
  border-top: 3px solid #f5821f;
  box-shadow: 0 8px 32px rgba(245,130,31,0.12);
}
.testi-stars { color: #f5821f; font-size: 14px; margin-bottom: 16px; letter-spacing: 3px; text-shadow: 0 0 10px rgba(245,130,31,0.45); }
.testi-card p { font-size: 0.875rem; color: rgba(200,208,216,0.85); line-height: 1.85; margin-bottom: 22px; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-av {
  width: 44px; height: 44px; border-radius: 50%; flex-shrink: 0;
  background: linear-gradient(135deg, #0d1b3e, #1a3a6e);
  border: 2px solid rgba(245,130,31,0.4);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; font-weight: 800; color: #fff;
}
.testi-author strong { display: block; font-size: 0.85rem; font-weight: 700; color: #fff; font-family: 'Barlow', sans-serif; }
.testi-author span   { font-size: 0.72rem; color: rgba(200,208,216,0.50); }

/* Clients strip */
.clients-strip {
  display: flex; align-items: center; justify-content: space-between;
  border-top: 1px solid rgba(255,255,255,0.08); padding-top: 44px;
  flex-wrap: wrap; gap: 20px;
}
.client-logo { display: flex; flex-direction: column; align-items: center; gap: 8px; opacity: 0.4; transition: opacity 0.3s, transform 0.3s; }
.client-logo:hover { opacity: 1; transform: translateY(-3px); }
.client-logo i { font-size: 28px; color: rgba(200,208,216,0.7); transition: color 0.3s, text-shadow 0.3s; }
.client-logo:hover i { color: #f5821f; text-shadow: 0 0 14px rgba(245,130,31,0.5); }
.client-logo span { font-family: 'Barlow', sans-serif; font-size: 0.65rem; font-weight: 700; color: rgba(200,208,216,0.6); text-transform: uppercase; letter-spacing: 1px; }

/* ── FAQ ─────────────────────────────────────────────────────── */
.faq-section {
  padding: 96px 0;
  background: #f8fafc;
  position: relative; overflow: hidden;
}
.faq-section::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background-image: radial-gradient(circle, rgba(13,27,62,0.06) 1px, transparent 1px);
  background-size: 22px 22px;
  opacity: 0.5;
}
.faq-section .container { position: relative; z-index: 1; }
.faq-layout { display: grid; grid-template-columns: 340px 1fr; gap: 64px; align-items: start; }

.faq-left h2 {
  font-family: 'Bebas Neue', sans-serif; font-size: 2.8rem; font-weight: 400;
  color: #0d1b3e; letter-spacing: 2px; line-height: 1.05; margin-bottom: 14px;
}
.faq-left h2 span { color: #f5821f; }
.faq-left p { font-size: 0.9rem; color: #4a5568; line-height: 1.8; margin-top: 12px; }

.faq-list { display: flex; flex-direction: column; gap: 10px; }
.faq-item {
  background: #ffffff; border-radius: 10px;
  border: 1px solid #d8e3f4; overflow: hidden;
  transition: border-color 0.3s, box-shadow 0.3s;
  box-shadow: 0 1px 8px rgba(10,20,60,0.06);
}
.faq-item.open { border-color: rgba(245,130,31,0.45); box-shadow: 0 4px 20px rgba(245,130,31,0.10); }
.faq-q {
  width: 100%; padding: 18px 22px; background: transparent; border: none;
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  font-family: 'Barlow', sans-serif; font-size: 0.9rem; font-weight: 700;
  color: #1e293b; cursor: pointer; text-align: left; transition: color 0.25s;
}
.faq-q:hover { color: #f5821f; }
.faq-item.open .faq-q { color: #f5821f; }
.faq-q i { flex-shrink: 0; transition: transform 0.3s; font-size: 11px; color: #94a3b8; }
.faq-item.open .faq-q i { transform: rotate(180deg); color: #f5821f; }
.faq-a { max-height: 0; overflow: hidden; padding: 0 22px; transition: max-height 0.35s ease, padding 0.35s ease; }
.faq-item.open .faq-a { max-height: 400px; padding: 0 22px 18px; }
.faq-a p {
  font-size: 0.875rem; color: #4a5568; line-height: 1.8;
  border-left: 3px solid #f5821f; padding-left: 14px;
}

/* ── CTA BANNER ──────────────────────────────────────────────── */
.cta-banner {
  padding: 100px 0;
  background: linear-gradient(145deg, #06101e 0%, #0a1530 50%, #06101e 100%);
  position: relative; overflow: hidden; text-align: center;
}
/* Textura diagonal */
.cta-banner::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background-image:
    repeating-linear-gradient(-55deg, transparent, transparent 32px, rgba(255,255,255,0.018) 32px, rgba(255,255,255,0.018) 33px),
    repeating-linear-gradient(35deg,  transparent, transparent 48px, rgba(255,255,255,0.010) 48px, rgba(255,255,255,0.010) 49px);
}
/* Glow naranja central */
.cta-banner::after {
  content: ''; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 700px; height: 400px; pointer-events: none;
  background: radial-gradient(ellipse, rgba(245,130,31,0.16) 0%, transparent 65%);
}
/* Línea naranja decorativa SVG-like */
.cta-banner .cta-deco-top {
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent 0%, #f5821f 40%, #f5821f 60%, transparent 100%);
  opacity: 0.6;
}
.cta-banner .cta-deco-bot {
  position: absolute; bottom: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent 0%, #f5821f 40%, #f5821f 60%, transparent 100%);
  opacity: 0.6;
}
.cta-banner .container { position: relative; z-index: 1; }

.cta-banner h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  font-weight: 400; color: #fff; letter-spacing: 3px; line-height: 1.0;
  margin-bottom: 16px;
  text-shadow: 0 0 60px rgba(245,130,31,0.2);
}
.cta-banner h2 span { color: #f5821f; }
.cta-banner p { font-size: 1rem; color: rgba(200,208,216,0.75); line-height: 1.8; margin-bottom: 42px; max-width: 560px; margin-left: auto; margin-right: auto; }
.cta-btns { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }

.cta-btns .btn-wa {
  background: linear-gradient(135deg, #25d366 0%, #1aab52 100%);
  color: #fff; font-family: 'Barlow', sans-serif;
  font-size: 0.9rem; font-weight: 700; letter-spacing: 0.5px;
  padding: 15px 36px; border-radius: 4px;
  display: inline-flex; align-items: center; gap: 9px;
  box-shadow: 0 6px 22px rgba(37,211,102,0.30);
  transition: transform 0.2s, box-shadow 0.2s, filter 0.2s;
}
.cta-btns .btn-wa:hover { transform: translateY(-3px); box-shadow: 0 12px 36px rgba(37,211,102,0.45); filter: brightness(1.08); }

.cta-btns .btn-outline {
  background: transparent; color: #fff;
  font-family: 'Barlow', sans-serif; font-size: 0.9rem; font-weight: 700; letter-spacing: 0.5px;
  padding: 15px 36px; border-radius: 4px;
  border: 2px solid rgba(255,255,255,0.35);
  display: inline-flex; align-items: center; gap: 9px;
  transition: border-color 0.25s, background 0.25s, transform 0.2s;
}
.cta-btns .btn-outline:hover { border-color: #f5821f; color: #f5821f; background: rgba(245,130,31,0.06); transform: translateY(-3px); }

/* ── SHARED: Sección centrada oscura ─────────────────────────── */
.sec-center { text-align: center; margin-bottom: 52px; }
.sec-center .sec-sub-dark {
  font-size: 0.95rem; color: rgba(200,208,216,0.60); line-height: 1.75;
  max-width: 560px; margin: 8px auto 0;
}

/* ── PROJECTS / GALLERY SECTION ──────────────────────────────── */
.projects-section {
  padding: 96px 0;
  background: #f2f5fb;
  position: relative; overflow: hidden;
  border-top: 1px solid #e0e8f4;
}
.projects-section::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background-image: radial-gradient(circle, rgba(13,27,62,0.055) 1px, transparent 1px);
  background-size: 28px 28px;
}
.projects-section .container { position: relative; z-index: 1; }

.proj-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  grid-template-rows: 260px 260px;
  gap: 14px;
}

/* Main card spans 2 rows */
.proj-card--main { grid-row: 1 / 3; }

/* All cards share base */
.proj-card {
  position: relative; overflow: hidden;
  border-radius: 14px;
  background: #d0daea;
  box-shadow: 0 4px 20px rgba(10,20,60,0.10);
  transition: box-shadow 0.3s, transform 0.3s;
}
.proj-card:hover {
  box-shadow: 0 12px 40px rgba(10,20,60,0.20);
  transform: translateY(-4px);
}

/* Image fills card */
.proj-card img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.proj-card:hover img { transform: scale(1.06); }

/* Placeholder shown when image fails / is missing */
.proj-placeholder {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 10px;
  background: linear-gradient(135deg, #c8d4e8 0%, #b8c8e0 100%);
  color: #6a7f9a;
  pointer-events: none;
}
.proj-placeholder i    { font-size: 36px; opacity: 0.5; }
.proj-placeholder span { font-size: 12px; font-weight: 700; font-family: 'Barlow', sans-serif; text-transform: uppercase; letter-spacing: 0.5px; }
.proj-placeholder small{ font-size: 10px; opacity: 0.55; font-family: 'Barlow', sans-serif; }

/* When img loads successfully, hide placeholder */
.proj-card img:not([style*="display:none"]) + .proj-placeholder { display: none; }

/* Gradient overlay + info */
.proj-overlay {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 20px 22px 22px;
  background: linear-gradient(to top, rgba(6,14,30,0.88) 0%, rgba(6,14,30,0.45) 55%, transparent 100%);
  transform: translateY(6px);
  transition: transform 0.3s;
}
.proj-card:hover .proj-overlay { transform: translateY(0); }

.proj-tag {
  display: inline-block;
  background: #f5821f; color: #fff;
  font-family: 'Barlow', sans-serif; font-size: 9px; font-weight: 800;
  text-transform: uppercase; letter-spacing: 1.2px;
  padding: 3px 9px; border-radius: 3px;
  margin-bottom: 8px;
}
.proj-overlay h3 {
  font-family: 'Barlow', sans-serif; font-size: 0.95rem; font-weight: 700;
  color: #fff; line-height: 1.3; margin-bottom: 4px;
}
.proj-card--main .proj-overlay h3 { font-size: 1.25rem; }
.proj-overlay p  {
  font-family: 'Barlow', sans-serif; font-size: 0.76rem;
  color: rgba(200,215,235,0.75); line-height: 1.4;
}

/* "Ver Catálogo" button reuse */
.proj-cta { margin-top: 44px; text-align: center; }

/* ── NOTICIAS / BLOG SECTION ─────────────────────────────────── */
.news-section {
  padding: 96px 0;
  background: linear-gradient(160deg, #08122a 0%, #0d1b3e 55%, #091424 100%);
  position: relative; overflow: hidden;
}
.news-section::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background-image:
    repeating-linear-gradient(-55deg, transparent, transparent 36px, rgba(255,255,255,0.014) 36px, rgba(255,255,255,0.014) 37px),
    repeating-linear-gradient(35deg,  transparent, transparent 52px, rgba(255,255,255,0.009) 52px, rgba(255,255,255,0.009) 53px);
}
.news-section::after {
  content: ''; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 680px; height: 420px; pointer-events: none;
  background: radial-gradient(ellipse, rgba(245,130,31,0.07) 0%, transparent 65%);
}
.news-section .container { position: relative; z-index: 1; }

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.news-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 16px; overflow: hidden;
  display: flex; flex-direction: column;
  transition: all 0.32s; position: relative;
}
.news-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, #f5821f, transparent);
  transform: scaleX(0); transform-origin: center; transition: transform 0.35s ease;
}
.news-card:hover {
  border-color: rgba(245,130,31,0.32);
  transform: translateY(-6px);
  box-shadow: 0 18px 52px rgba(0,0,0,0.45);
  background: rgba(255,255,255,0.07);
}
.news-card:hover::before { transform: scaleX(1); }

/* Image area */
.nc-img {
  width: 100%; height: 200px;
  overflow: hidden; flex-shrink: 0;
  position: relative;
}
.nc-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.news-card:hover .nc-img img { transform: scale(1.06); }

/* Placeholder shown when no real image */
.nc-img--ph {
  background: linear-gradient(135deg, rgba(13,27,62,0.85) 0%, rgba(8,18,42,0.95) 100%);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  display: flex; align-items: center; justify-content: center;
}
.nc-img--ph i {
  font-size: 48px; color: rgba(245,130,31,0.30);
  transition: color 0.3s, transform 0.3s;
}
.news-card:hover .nc-img--ph i {
  color: rgba(245,130,31,0.60);
  transform: scale(1.1);
}

/* Body */
.nc-body {
  padding: 22px 24px 24px;
  display: flex; flex-direction: column;
  flex: 1; gap: 10px;
}

/* Category tag */
.nc-tag {
  display: inline-flex; align-items: center;
  background: rgba(245,130,31,0.15);
  color: #f5821f;
  font-family: 'Barlow', sans-serif; font-size: 0.68rem; font-weight: 800;
  letter-spacing: 1.5px; text-transform: uppercase;
  padding: 3px 10px; border-radius: 3px;
  border: 1px solid rgba(245,130,31,0.30);
  width: fit-content;
}

/* Title */
.nc-title {
  font-family: 'Barlow', sans-serif; font-size: 1rem; font-weight: 700;
  color: #fff; line-height: 1.4; margin: 0;
  transition: color 0.25s;
}
.news-card:hover .nc-title { color: #f5821f; }

/* Excerpt */
.nc-exc {
  font-family: 'Barlow', sans-serif; font-size: 0.84rem;
  color: rgba(200,208,216,0.60); line-height: 1.75;
  margin: 0; flex: 1;
}

/* Footer row */
.nc-foot {
  display: flex; align-items: center; justify-content: space-between;
  gap: 10px; margin-top: 6px;
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 14px;
}

.nc-date {
  font-family: 'Barlow', sans-serif; font-size: 0.73rem;
  color: rgba(200,208,216,0.45); display: flex; align-items: center; gap: 6px;
}
.nc-date i { color: rgba(245,130,31,0.50); font-size: 0.68rem; }

.nc-link {
  font-family: 'Barlow', sans-serif; font-size: 0.75rem; font-weight: 700;
  letter-spacing: 0.8px; text-transform: uppercase;
  color: rgba(245,130,31,0.70);
  display: inline-flex; align-items: center; gap: 6px;
  transition: color 0.25s, gap 0.25s;
  white-space: nowrap;
}
.nc-link i { font-size: 0.65rem; transition: transform 0.25s; }
.news-card:hover .nc-link { color: #f5821f; gap: 9px; }
.news-card:hover .nc-link i { transform: translateX(3px); }

/* ── RESPONSIVE ──────────────────────────────────────────────── */
@media (max-width: 1100px) {
  .products-grid   { grid-template-columns: repeat(2, 1fr); }
  .services-grid   { grid-template-columns: repeat(2, 1fr); }
  .materials-grid  { grid-template-columns: repeat(3, 1fr); }
  .industries-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .how-grid        { grid-template-columns: repeat(2, 1fr); }
  .how-grid::before{ display: none; }
  .how-step        { border-right: none; }
  .how-arrow       { display: none !important; }
  .testi-grid      { grid-template-columns: 1fr; max-width: 600px; margin-left: auto; margin-right: auto; }
  .faq-layout      { grid-template-columns: 1fr; gap: 36px; }
  .about-features  { grid-template-columns: 1fr 1fr; }
  .proj-grid       { grid-template-columns: 1fr 1fr; grid-template-rows: 220px 220px 220px; }
  .proj-card--main { grid-row: 1 / 2; grid-column: 1 / 3; }
  .news-grid       { grid-template-columns: 1fr 1fr; gap: 18px; }
}
@media (max-width: 860px) {
  .clients-strip   { justify-content: center; }
  .sec-flex-header { flex-direction: column; align-items: flex-start; gap: 14px; }
}
@media (max-width: 640px) {
  .featured-products, .about-preview, .services-preview,
  .industries-section, .materials-section, .how-section,
  .testimonials-section, .faq-section, .cta-banner,
  .projects-section, .news-section { padding: 64px 0; }
  .proj-grid { grid-template-columns: 1fr; grid-template-rows: auto; }
  .proj-card--main { grid-row: auto; grid-column: auto; min-height: 260px; }
  .proj-card        { min-height: 200px; }
  .products-grid   { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .services-grid   { grid-template-columns: 1fr 1fr; gap: 12px; }
  .materials-grid  { grid-template-columns: repeat(2, 1fr); }
  .industries-grid { grid-template-columns: 1fr; }
  .kpi-grid-2x2    { grid-template-columns: 1fr 1fr; }
  .how-grid        { grid-template-columns: 1fr; }
  .testi-grid      { grid-template-columns: 1fr; }
  .clients-strip   { gap: 24px; }
  .about-features  { grid-template-columns: 1fr; }
  .faq-layout      { grid-template-columns: 1fr; gap: 28px; }
  .faq-q           { font-size: 0.85rem; padding: 15px 18px; }
  .cta-banner h2   { font-size: 2.4rem; }
  .cta-btns        { flex-direction: column; align-items: center; }
  .cta-btns .btn-wa, .cta-btns .btn-outline { width: 100%; max-width: 310px; justify-content: center; }
  .news-grid       { grid-template-columns: 1fr; gap: 16px; }
  .nc-img          { height: 180px; }
}
