html { scroll-behavior: smooth; }

/* ===== COLORES Y BASE ===== */
:root {
  --azul: #0f1c2e;
  --dorado: #d4af37;
  --gris: #a7a9ac;
  --blanco: #fff;
}

*{ box-sizing: border-box; }

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--blanco);
  background-color: var(--azul);
  overflow-x: hidden;
}

/* ===== INTRO ===== */
.intro {
  position: fixed;
  inset: 0;
  background: radial-gradient(circle at center, #1c2f45 0%, #0f1c2e 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  animation: fadeOut 1.2s ease 2s forwards;
}
.intro-logo {
  width: 220px;
  opacity: 0;
  transform: scale(0.7);
  animation: logoPop 1.5s ease forwards;
}
@keyframes logoPop {
  0% { opacity: 0; transform: scale(0.7); }
  50% { opacity: 1; transform: scale(1.1); }
  100% { opacity: 1; transform: scale(1); }
}
@keyframes fadeOut { to { opacity: 0; visibility: hidden; } }

/* ===== REVEAL (global) ===== */
.reveal{
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .8s ease, transform .8s ease;
}
.reveal.in-view,
.reveal.is-visible{
  opacity: 1;
  transform: translateY(0);
}

/* ===== HEADER ZEUS ===== */
.zeus-header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(15, 25, 35, 0.4);
  backdrop-filter: blur(6px);
  padding: 12px 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: background 0.3s ease, padding 0.3s ease;
}

.zeus-header.scrolled {
  background: rgba(15, 25, 35, 0.85);
  padding: 8px 40px;
}

.zeus-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  gap: 16px;
}

.zeus-header .logo {
  height: 55px;
  transition: transform 0.3s ease;
}
.zeus-header .logo:hover { transform: scale(1.05); }

.nav ul {
  list-style: none;
  display: flex;
  gap: 28px;
  margin: 0;
  padding: 0;
}
.nav li { margin: 0; padding: 0; }

.nav a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  transition: color 0.3s ease;
}
.nav a:hover { color: #d4af37; }

/* ===== NAV DESKTOP ===== */
.menu-toggle { display: none; }

/* ===== NAV MOBILE ZEUS ===== */
@media (max-width: 900px) {
  .zeus-header { padding: 10px 16px; }

  .menu-toggle {
    display: block;
    font-size: 30px;
    padding: 6px 10px;
    color: #fff;
    background: none;
    border: none;
    cursor: pointer;
  }

  .nav {
    position: fixed;
    top: 70px;
    right: -100%;
    width: 75%;
    height: 100vh;
    padding: 40px 22px;
    background: rgba(10, 15, 25, .96);
    backdrop-filter: blur(6px);
    transition: right .35s ease;
  }

  .nav.open { right: 0; }

  .nav ul {
    flex-direction: column;
    gap: 18px;
  }
}

/* =========================================================
   HERO — ZEUS (VIDEO) + OVERLAY MÁS CLARO
========================================================= */
.zeus-services-hero{
  position: relative;
  min-height: 92vh;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.zeus-hero-video .services-hero-bg{
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.services-hero-video{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .72;
  filter: saturate(1.05) contrast(1.06);
  transform: scale(1.02);
}

/* Overlay más claro (deja ver el video) */
.zeus-hero-video .services-hero-overlay{
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg,
      rgba(11,15,20,.68) 0%,
      rgba(11,15,20,.38) 45%,
      rgba(11,15,20,.24) 72%,
      rgba(11,15,20,.62) 100%
    ),
    linear-gradient(180deg,
      rgba(11,15,20,.16) 0%,
      rgba(11,15,20,.62) 88%
    );
}

.services-hero-wrap{
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 140px 22px 90px;
}

.services-hero-content{ max-width: 680px; }

.services-hero-badge{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(212,175,55,.12);
  border: 1px solid rgba(212,175,55,.22);
  color: rgba(255,255,255,.88);
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-size: 11px;
  margin-bottom: 18px;
}

.services-hero-title{
  font-family: "Playfair Display", serif;
  color: rgba(255,255,255,.96);
  font-size: clamp(40px, 5vw, 66px);
  line-height: 1.02;
  margin: 0 0 18px 0;
  letter-spacing: .02em;
  text-shadow: 0 18px 60px rgba(0,0,0,0.45);
}

.services-hero-title span{
  color: var(--dorado);
  font-style: italic;
}

.services-hero-sub{
  color: rgba(255,255,255,.78);
  font-size: 16px;
  line-height: 1.75;
  max-width: 560px;
  margin: 0 0 26px 0;
}

.services-hero-actions{
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.services-btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 16px;
  text-decoration: none;
  font-weight: 800;
  font-size: 14px;
  transition: transform .2s ease, background .2s ease, border-color .2s ease, color .2s ease;
}

.services-btn-primary{
  color: #0b0f14;
  background: linear-gradient(135deg, #d4af37, #f5d76e);
  box-shadow: 0 18px 40px rgba(214,179,106,.16);
}
.services-btn-primary:hover{
  transform: translateY(-1px);
  background: linear-gradient(135deg, #f5d76e, #d4af37);
}

.services-btn-ghost{
  color: rgba(255,255,255,.90);
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.16);
}
.services-btn-ghost:hover{
  transform: translateY(-1px);
  border-color: rgba(212,175,55,.22);
  background: rgba(212,175,55,.10);
}

.services-hero-scroll{
  position: absolute;
  left: 50%;
  bottom: 22px;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.55);
  font-size: 10px;
  letter-spacing: .24em;
  text-transform: uppercase;
}
.services-hero-scroll i{
  width: 1px;
  height: 46px;
  background: linear-gradient(to bottom, rgba(212,175,55,.45), rgba(255,255,255,0));
}

/* Mobile: un toque más de overlay para legibilidad */
@media (max-width: 640px){
  .services-hero-video{ opacity: .66; }
  .zeus-hero-video .services-hero-overlay{
    background:
      linear-gradient(90deg,
        rgba(11,15,20,.72) 0%,
        rgba(11,15,20,.44) 55%,
        rgba(11,15,20,.30) 100%
      ),
      linear-gradient(180deg,
        rgba(11,15,20,.20) 0%,
        rgba(11,15,20,.70) 92%
      );
  }
  .services-hero-wrap{ padding: 120px 18px 80px; }
}

/* =========================================================
   EXPERTISE — PROCESOS
========================================================= */
.zeus-services-expertise{
  background: radial-gradient(900px 500px at 15% 10%, rgba(212,175,55,.07), transparent 60%),
              linear-gradient(180deg, #0a0e13, #0b1422);
}

.services-wrap{
  max-width: 1180px;
  margin: 0 auto;
  padding: 84px 22px;
}

.services-head{
  text-align: center;
  max-width: 780px;
  margin: 0 auto 34px;
}

.services-h2{
  font-family: "Playfair Display", serif;
  color: rgba(255,255,255,.92);
  font-size: clamp(28px, 3.2vw, 42px);
  margin: 0 0 10px 0;
}

.services-p{
  margin: 0;
  color: rgba(255,255,255,.72);
  line-height: 1.75;
  font-size: 15px;
}

.services-grid{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.service-card{
  background: linear-gradient(180deg, rgba(255,255,255,.07), rgba(255,255,255,.04));
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 22px;
  padding: 24px 22px;
  box-shadow: 0 20px 60px rgba(0,0,0,.35);
  transition: transform .25s ease, border-color .25s ease, background .25s ease;
  position: relative;
  overflow: hidden;
}

.service-card:hover{
  transform: translateY(-6px);
  border-color: rgba(212,175,55,.25);
  background: linear-gradient(180deg, rgba(212,175,55,.10), rgba(255,255,255,.04));
}

.service-icon{
  width: 46px;
  height: 46px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.10);
  margin-bottom: 14px;
  font-size: 18px;
}
.service-icon.is-gold{
  background: rgba(212,175,55,.12);
  border-color: rgba(212,175,55,.22);
}
.service-icon.is-ice{ background: rgba(255,255,255,.08); }

.service-title{
  margin: 0 0 10px 0;
  color: rgba(255,255,255,.92);
  font-weight: 900;
  font-size: 18px;
}

.service-desc{
  margin: 0 0 16px 0;
  color: rgba(255,255,255,.74);
  line-height: 1.7;
  font-size: 14px;
}

.service-link{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 900;
  letter-spacing: .06em;
  text-transform: uppercase;
  font-size: 12px;
  color: rgba(212,175,55,.96);
}
.service-link:hover{ color: #f1d08c; }

@media (max-width: 980px){
  .services-grid{ grid-template-columns: 1fr; }
  .services-wrap{ padding: 68px 22px; }
}

/* =========================================================
   FINISHES — GALERÍA
========================================================= */
.zeus-finishes{
  background: linear-gradient(180deg, #0b1422, #070a0e);
}

.finishes-wrap{
  max-width: 1180px;
  margin: 0 auto;
  padding: 84px 22px;
}

.finishes-head{
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 26px;
}

.finishes-eyebrow{
  margin: 0 0 8px 0;
  font-weight: 900;
  font-size: 11px;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: rgba(212,175,55,.92);
}

.finishes-title{
  margin: 0;
  font-family: "Playfair Display", serif;
  font-size: clamp(26px, 3.4vw, 46px);
  color: rgba(255,255,255,.92);
}

.finishes-sub{
  margin: 0;
  max-width: 420px;
  line-height: 1.75;
  font-size: 14px;
  color: rgba(255,255,255,.72);
}

.finishes-grid{
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 160px;
  gap: 14px;
}

.finish-card{
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
  transition: transform .35s ease, border-color .35s ease;
  text-decoration: none;
  color: inherit;
}

.finish-card:hover{
  transform: translateY(-4px);
  border-color: rgba(212,175,55,.22);
}

.finish-card img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform .8s ease;
  filter: saturate(0.95) contrast(1.05);
  display: block;
}

.finish-card:hover img{ transform: scale(1.12); }

.finish-card.is-big{ grid-column: span 2; grid-row: span 2; }
.finish-card.is-wide{ grid-column: span 2; }

.finish-overlay{
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 18px;
  background: linear-gradient(180deg, rgba(0,0,0,0) 40%, rgba(0,0,0,.72) 100%);
}

.finish-overlay.is-small{ padding: 14px; }

.finish-kicker{
  margin: 0 0 6px 0;
  font-weight: 900;
  font-size: 11px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(212,175,55,.92);
}

.finish-name{
  margin: 0;
  font-family: "Playfair Display", serif;
  font-size: 20px;
  color: rgba(255,255,255,.96);
}

.finish-overlay.is-small .finish-name{ font-size: 16px; }

@media (max-width: 980px){
  .finishes-head{ flex-direction: column; align-items: flex-start; }
  .finishes-grid{
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 150px;
  }
  .finish-card.is-wide{ grid-column: span 2; }
  .finish-card.is-big{ grid-column: span 2; grid-row: span 2; }
}

/* =========================================
   SECCIÓN CLIENTES + ENVÍOS
========================================= */
.envios-pais {
  background: transparent;
  padding: 140px 20px;
  position: relative;
  z-index: 2;
}
.envios-pais::before{
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(11,20,34,0.5);
  z-index: -1;
}

.envios-card {
  max-width: 1250px;
  margin: 0 auto;
  background: #ffffff;
  border-radius: 28px;
  padding: 110px 90px;
  box-shadow: 0 35px 80px rgba(0,0,0,0.35);
  position: relative;
  overflow: hidden;
}

.envios-titulo {
  text-align: center;
  font-size: clamp(2rem, 3.2vw, 2.8rem);
  color: #0f1c2e;
  margin-bottom: 60px;
  font-weight: 700;
  letter-spacing: 1px;
}

.logos-clientes {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 40px;
  align-items: center;
  margin-bottom: 80px;
}

.logos-clientes img {
  width: 100%;
  max-height: 70px;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.8;
  transition: all 0.3s ease;
}

.logos-clientes img:hover {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.05);
}

.envios-contenido {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
  gap: 40px;
}

.envios-mapa img { width: 100%; max-width: 680px; display:block; }
.envios-camion img { width: 100%; max-width: 620px; display:block; }

.envios-info h3 {
  font-size: 2rem;
  color: #0f1c2e;
  margin-bottom: 10px;
}

.envios-info p {
  font-size: 1.1rem;
  color: #555;
  line-height: 1.6;
}

/* CTA envíos */
.cta-envios { margin-top: 40px; text-align: center; }
.cta-btn {
  display: inline-block;
  padding: 16px 42px;
  background: linear-gradient(135deg, #d4af37, #f5d76e);
  color: #0f1c2e;
  font-weight: 700;
  font-size: 1.1rem;
  border-radius: 50px;
  text-decoration: none;
  letter-spacing: 0.5px;
  box-shadow: 0 8px 24px rgba(212, 175, 55, 0.35);
  transition: all 0.35s ease;
}
.cta-btn:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 12px 32px rgba(212, 175, 55, 0.55);
  background: linear-gradient(135deg, #f5d76e, #d4af37);
}
.cta-sub {
  display: block;
  margin-top: 12px;
  font-size: 0.9rem;
  color: #cfcfcf;
  letter-spacing: 0.3px;
}

/* Responsive envíos */
@media (max-width: 900px) {
  .envios-card { padding: 60px 30px; }
  .envios-contenido { grid-template-columns: 1fr; text-align: center; }
  .envios-mapa img, .envios-camion img { margin: 0 auto; }
}
@media (max-width: 600px){
  .envios-card{ padding: 46px 18px; }
  .logos-clientes{ gap: 18px; margin-bottom: 42px; }
  .envios-info h3{ font-size: 1.55rem; }
  .cta-btn{ width: 100%; max-width: 320px; }
}

/* ===== FOOTER ZEUS ===== */
.footer-zeus {
  background: #0f1c2e !important;
  color: #e0e0e0;
  padding: 80px 20px 40px;
  font-family: 'Inter', system-ui, sans-serif;
  border-top: 3px solid #c7a04b;
  box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.4);
  position: relative;
  z-index: 50;
}
.footer-zeus .wrap {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 40px;
}
.footer-zeus .logo-footer img { width: 160px; margin-bottom: 16px; }
.footer-zeus .desc { font-size: 0.95rem; color: #bfc8d2; line-height: 1.6; }
.footer-zeus h4 { color: #f7b045; font-weight: 700; font-size: 1.1rem; margin-bottom: 16px; }
.footer-zeus ul { list-style: none; padding: 0; margin: 0; }
.footer-zeus ul li { margin-bottom: 10px; }
.footer-zeus ul li a { color: #d6d6d6; text-decoration: none; transition: color 0.25s ease; }
.footer-zeus ul li a:hover { color: #f7b045; }
.footer-zeus .contact-info p { margin: 6px 0; font-size: 0.95rem; color: #cdd5de; }
.footer-zeus .contact-info a { color: #d6d6d6; }
.footer-zeus .social a {
  display: inline-block;
  margin-right: 12px;
  font-size: 1.3rem;
  color: #f7b045;
  transition: opacity 0.3s ease;
}
.footer-zeus .social a:hover { opacity: 0.7; }

.footer-bottom {
  border-top: 5px solid rgba(255,255,255,0.1);
  margin-top: 50px;
  padding-top: 20px;
  text-align: center;
  font-size: 0.85rem;
  color: #9aa4b3;
}

/* ===== BOTÓN FLOTANTE WHATSAPP ===== */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: #25d366;
  color: white;
  font-size: 28px;
  padding: 18px;
  border-radius: 50%;
  box-shadow: 0 4px 14px rgba(0,0,0,0.3);
  z-index: 999;
  transition: all 0.3s ease;
}
.whatsapp-float:hover {
  transform: scale(1.1);
  background: #1ebe5d;
  box-shadow: 0 6px 20px rgba(0,0,0,0.4);
}
@media (max-width: 600px) {
  .whatsapp-float {
    bottom: 20px;
    right: 20px;
    font-size: 24px;
    padding: 14px;
  }
}
/* =========================================================
   NOSOTROS — ZEUS ABOUT X
   Pegar al final de style.css
========================================================= */

.zeus-about-x{
  position: relative;
  padding: 170px 0 140px; /* contempla header fixed */
  color: #e9eef6;
  background:
    radial-gradient(1200px 700px at 20% 10%, rgba(212,175,55,0.12), transparent 60%),
    radial-gradient(900px 600px at 85% 35%, rgba(120,150,255,0.10), transparent 55%),
    linear-gradient(180deg, #070c14 0%, #0b1422 60%, #070c14 100%);
  overflow: hidden;
}

.aboutx-wrap{
  position: relative;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 70px;
}

.aboutx-words{
  position: absolute;
  inset: auto 0 10px 0;
  pointer-events: none;
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0.20;
}

.aboutx-words span{
  font-family: "Inter", system-ui, sans-serif;
  font-size: 0.95rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(212,175,55,0.85);
}

/* Head editorial */
.aboutx-head{
  max-width: 980px;
  margin: 0 0 80px;
}

.aboutx-eyebrow{
  font-family: "Inter", system-ui, sans-serif;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-size: 0.78rem;
  color: rgba(212,175,55,0.9);
  margin: 0 0 14px;
}

.aboutx-title{
  font-family: "Playfair Display", serif;
  font-size: clamp(2.5rem, 3.6vw, 4.1rem);
  line-height: 1.08;
  color: #f2f4f7;
  margin: 0 0 18px;
  text-shadow: 0 18px 60px rgba(0,0,0,0.45);
}

.aboutx-sub{
  font-family: "Inter", system-ui, sans-serif;
  font-size: 1.08rem;
  line-height: 1.9;
  color: rgba(210,218,232,0.88);
  max-width: 820px;
  margin: 0;
}

/* Grid principal */
.aboutx-grid{
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  gap: 48px;
  align-items: start;
}

/* Manifiesto */
.aboutx-manifesto{
  position: relative;
  padding-left: 26px;
}

.aboutx-rail{
  position: absolute;
  left: 8px;
  top: 4px;
  bottom: 4px;
  width: 2px;
  background: linear-gradient(
    180deg,
    rgba(212,175,55,0.0),
    rgba(212,175,55,0.55) 15%,
    rgba(140,170,255,0.18) 55%,
    rgba(212,175,55,0.0)
  );
  filter: drop-shadow(0 0 18px rgba(212,175,55,0.22));
}

.aboutx-step{
  position: relative;
  padding: 22px 18px;
  margin: 0 0 28px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.03));
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 18px 60px rgba(0,0,0,0.28);
  backdrop-filter: blur(10px);
}

.aboutx-dot{
  position: absolute;
  left: -26px;
  top: 26px;
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(212,175,55,1), rgba(212,175,55,0.2));
  box-shadow: 0 0 0 6px rgba(212,175,55,0.10), 0 10px 30px rgba(0,0,0,0.35);
}

.aboutx-step::before{
  content: attr(data-step);
  position: absolute;
  right: 18px;
  top: 16px;
  font-family: "Inter", system-ui, sans-serif;
  letter-spacing: 0.18em;
  font-weight: 600;
  font-size: 0.78rem;
  color: rgba(159,182,255,0.9);
  text-transform: uppercase;
}

.aboutx-step h3{
  font-family: "Inter", system-ui, sans-serif;
  font-size: 1.32rem;
  margin: 0 0 10px;
  color: #f3f6fb;
}

.aboutx-step h3 span{
  color: rgba(212,175,55,0.95);
  font-weight: 700;
}

.aboutx-step p{
  font-family: "Inter", system-ui, sans-serif;
  font-size: 1.02rem;
  line-height: 1.85;
  color: rgba(210,218,232,0.88);
  margin: 0 0 14px;
  max-width: 820px;
}

.aboutx-chips{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.aboutx-chips span{
  font-family: "Inter", system-ui, sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  padding: 8px 10px;
  border-radius: 999px;
  color: rgba(232,238,248,0.88);
  background: rgba(15,28,46,0.55);
  border: 1px solid rgba(255,255,255,0.10);
}

/* Video Card */
.aboutx-videoCard{
  position: sticky;
  top: 110px;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255,255,255,0.07), rgba(255,255,255,0.03));
  border: 1px solid rgba(255,255,255,0.10);
  box-shadow: 0 26px 90px rgba(0,0,0,0.35);
  backdrop-filter: blur(12px);
  overflow: hidden;
}

.aboutx-videoTop{
  padding: 22px 22px 10px;
}

.aboutx-videoLabel{
  font-family: "Inter", system-ui, sans-serif;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.78rem;
  color: rgba(212,175,55,0.92);
  margin: 0 0 10px;
}

.aboutx-videoMini{
  font-family: "Inter", system-ui, sans-serif;
  margin: 0;
  color: rgba(210,218,232,0.86);
  line-height: 1.6;
}

.aboutx-videoFrame{
  position: relative;
  margin: 14px 22px 0;
  border-radius: 16px;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid rgba(0,0,0,0.08);
  box-shadow: 0 22px 60px rgba(0,0,0,0.25);
}

.aboutx-video{
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
  opacity: 0.98;
}

.aboutx-gloss{
  position: absolute;
  inset: 0;
  background: radial-gradient(500px 200px at 20% 10%, rgba(255,255,255,0.35), transparent 55%);
  pointer-events: none;
}

.aboutx-play{
  position: absolute;
  left: 16px;
  bottom: 16px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border-radius: 999px;
  padding: 12px 16px;
  background: linear-gradient(135deg, rgba(212,175,55,0.96), rgba(245,215,110,0.96));
  border: none;
  cursor: pointer;
  box-shadow: 0 18px 50px rgba(0,0,0,0.28);
}

.aboutx-playIcon{ font-size: 0.95rem; color: #0b1422; }
.aboutx-playText{
  font-family: "Inter", system-ui, sans-serif;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: #0b1422;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.aboutx-videoText{
  padding: 18px 22px 24px;
}

.aboutx-videoText p{
  font-family: "Inter", system-ui, sans-serif;
  color: rgba(210,218,232,0.88);
  line-height: 1.85;
  margin: 0 0 16px;
}

.aboutx-cta{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 12px 16px;
  text-decoration: none;
  font-family: "Inter", system-ui, sans-serif;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.78rem;
  color: rgba(212,175,55,0.95);
  border: 1px solid rgba(212,175,55,0.35);
  background: rgba(15,28,46,0.35);
}

.aboutx-cta:hover{
  background: rgba(212,175,55,0.12);
  border-color: rgba(212,175,55,0.55);
}

/* Responsive */
@media (max-width: 980px){
  .aboutx-wrap{ padding: 0 22px; }
  .aboutx-grid{ grid-template-columns: 1fr; }
  .aboutx-videoCard{ position: relative; top: 0; }
  .aboutx-words{ opacity: 0.14; }
  .zeus-about-x{ padding: 140px 0 110px; }
}

@media (max-width: 520px){
  .aboutx-title{ font-size: 2.2rem; }
  .aboutx-step p{ font-size: 0.98rem; }
  .aboutx-video{ height: 260px; }
}
/* =========================================================
   CONTACTO / COTIZAR — ZEUS (contacto.html)
   Pegar al final de style.css
========================================================= */

.zeus-contact-page{
  position: relative;
  padding: 140px 0 110px; /* contempla header fixed */
  background:
    radial-gradient(1200px 700px at 18% 10%, rgba(212,175,55,0.10), transparent 60%),
    radial-gradient(900px 600px at 85% 35%, rgba(120,150,255,0.10), transparent 55%),
    linear-gradient(180deg, #070c14 0%, #0b1422 55%, #070c14 100%);
  overflow: hidden;
}

.cotizar-top{
  max-width: 1180px;
  margin: 0 auto 18px;
  padding: 0 20px;
}

.cotizar-back{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 900;
  letter-spacing: .06em;
  text-transform: uppercase;
  font-size: 12px;
  color: rgba(212,175,55,0.95);
  border: 1px solid rgba(212,175,55,0.30);
  background: rgba(15,28,46,0.35);
  padding: 12px 14px;
  border-radius: 14px;
}
.cotizar-back:hover{
  background: rgba(212,175,55,0.12);
  border-color: rgba(212,175,55,0.55);
}

.cotizar-wrap{
  position: relative;
  z-index: 1;
  display: grid;
  gap: 46px;
  align-items: start;
  grid-template-columns: 1fr 1fr;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Columna izquierda */
.cotizar-left{
  color: rgba(255,255,255,.90);
}

.cotizar-eyebrow{
  display: inline-block;
  font-family: "Inter", system-ui, sans-serif;
  letter-spacing: .22em;
  text-transform: uppercase;
  font-size: 0.78rem;
  color: rgba(212,175,55,0.9);
  margin-bottom: 12px;
}

.cotizar-title{
  font-family: "Playfair Display", serif;
  font-size: clamp(2.2rem, 3.2vw, 3rem);
  line-height: 1.08;
  color: rgba(255,255,255,.94);
  margin: 0 0 14px;
  text-shadow: 0 18px 60px rgba(0,0,0,0.45);
}

.cotizar-lead{
  font-family: "Inter", system-ui, sans-serif;
  color: rgba(210,218,232,0.86);
  font-size: 1.05rem;
  line-height: 1.75;
  max-width: 52ch;
  margin: 0;
}

.cotizar-btns{
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.cotizar-btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 16px;
  text-decoration: none;
  font-weight: 900;
  font-family: "Inter", system-ui, sans-serif;
  font-size: 14px;
  transition: transform .2s ease, background .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.cotizar-btn-primary{
  color: #0b0f14;
  background: linear-gradient(135deg, #d4af37, #f5d76e);
  box-shadow: 0 18px 40px rgba(214,179,106,.14);
}
.cotizar-btn-primary:hover{
  transform: translateY(-1px);
  background: linear-gradient(135deg, #e1c17a, #b99246);
}

.cotizar-features{
  margin-top: 26px;
  display: grid;
  gap: 10px;
}

.cotizar-feat{
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: rgba(255,255,255,.82);
  font-family: "Inter", system-ui, sans-serif;
  line-height: 1.55;
}

.cotizar-dot{
  width: 10px;
  height: 10px;
  border-radius: 999px;
  margin-top: 7px;
  background: radial-gradient(closest-side, #f5d76e, #b99246);
  box-shadow: 0 0 0 4px rgba(212,175,55,.12);
}

/* Card del form */
.cotizar-card{
  background: linear-gradient(180deg, rgba(255,255,255,0.07), rgba(255,255,255,0.03));
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 22px;
  padding: 22px;
  box-shadow: 0 26px 90px rgba(0,0,0,0.35);
  backdrop-filter: blur(12px);
}

.cotizar-form{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 16px;
  row-gap: 12px;
}

.cotizar-input,
.cotizar-select,
.cotizar-textarea{
  width: 100%;
  padding: 12px 14px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 14px;
  background: rgba(0,0,0,0.18);
  color: rgba(255,255,255,0.92);
  font-family: "Inter", system-ui, sans-serif;
  font-size: 0.95rem;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

.cotizar-input::placeholder,
.cotizar-textarea::placeholder{
  color: rgba(255,255,255,0.55);
}

.cotizar-select{
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, rgba(255,255,255,.55) 50%),
    linear-gradient(135deg, rgba(255,255,255,.55) 50%, transparent 50%);
  background-position: calc(100% - 18px) 50%, calc(100% - 12px) 50%;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
}

.cotizar-textarea{
  grid-column: 1 / -1;
  min-height: 120px;
  resize: vertical;
}

.cotizar-input:focus,
.cotizar-select:focus,
.cotizar-textarea:focus{
  outline: none;
  border-color: rgba(212,175,55,0.45);
  box-shadow: 0 0 0 3px rgba(212,175,55,0.16);
  background: rgba(0,0,0,0.22);
}

/* File */
.cotizar-file{
  grid-column: 1 / -1;
  border: 1px dashed rgba(255,255,255,0.16);
  border-radius: 16px;
  padding: 12px;
  background: rgba(0,0,0,0.12);
}

.cotizar-file-label{
  display: block;
  font-family: "Inter", system-ui, sans-serif;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: 11px;
  color: rgba(255,255,255,0.72);
  margin-bottom: 10px;
}

.cotizar-file-input{
  width: 100%;
  color: rgba(255,255,255,0.78);
}

.cotizar-file-input::-webkit-file-upload-button{
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 12px;
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.90);
  padding: 10px 12px;
  cursor: pointer;
  transition: transform .15s ease, background .2s ease, border-color .2s ease;
}

.cotizar-file-input::-webkit-file-upload-button:hover{
  transform: translateY(-1px);
  background: rgba(212,175,55,0.10);
  border-color: rgba(212,175,55,0.30);
}

.cotizar-file-hint{
  margin: 10px 0 0;
  font-family: "Inter", system-ui, sans-serif;
  font-size: 12px;
  color: rgba(255,255,255,0.55);
}

/* Acciones */
.cotizar-actions{
  grid-column: 1 / -1;
  display: flex;
  justify-content: flex-end;
  margin-top: 4px;
}

.cotizar-btn-secondary{
  border: none;
  cursor: pointer;
  color: #0b0f14;
  background: linear-gradient(135deg, #d4af37, #f5d76e);
  box-shadow: 0 18px 40px rgba(214,179,106,.14);
  padding: 12px 18px;
}
.cotizar-btn-secondary:hover{
  transform: translateY(-1px);
  background: linear-gradient(135deg, #e1c17a, #b99246);
}

.cotizar-hint{
  grid-column: 1 / -1;
  margin-top: 8px;
  font-family: "Inter", system-ui, sans-serif;
  font-size: 12px;
  color: rgba(255,255,255,0.55);
}

/* Responsive */
@media (max-width: 980px){
  .cotizar-wrap{
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px){
  .zeus-contact-page{ padding: 120px 0 90px; }

  .cotizar-form{
    grid-template-columns: 1fr;
  }

  .cotizar-actions{
    justify-content: stretch;
  }

  .cotizar-btn-secondary{
    width: 100%;
    justify-content: center;
  }
}
#nosotros,
#expertise,
#acabados,
#cotizar {
  scroll-margin-top: 120px;
}