/* =========================
   Price Hnos. SRL - styles.css
   Estética industrial moderna + motion suave
   ========================= */

/* -------- Reset / Base -------- */
*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: #070a0f;
  color: #e9eef6;
  line-height: 1.5;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
  outline: 2px solid rgba(245, 180, 44, 0.7);
  outline-offset: 3px;
}

button, input, select, textarea { font: inherit; }

::selection {
  background: rgba(245, 180, 44, 0.35);
}

/* -------- Theme Vars (colores "de ellos" estilo obra/cantera) -------- */
:root {
  /* Base */
  --bg: #070a0f;
  --panel: rgba(255, 255, 255, 0.055);
  --panel-2: rgba(255, 255, 255, 0.035);
  --border: rgba(255, 255, 255, 0.10);
  --border-2: rgba(255, 255, 255, 0.14);

  /* Texto */
  --text: #e9eef6;
  --muted: rgba(233, 238, 246, 0.72);
  --muted-2: rgba(233, 238, 246, 0.55);

  /* Acentos (industrial) */
  --accent: #f5b42c;   /* amarillo obra/señalización */
  --accent-2: #e07a1a; /* naranja tierra */
  --earth: #8a6a3d;    /* tono cantera */
  --ok: #30d158;

  /* Sombras */
  --shadow: 0 20px 70px rgba(0,0,0,0.55);
  --shadow-2: 0 14px 40px rgba(0,0,0,0.45);

  /* Radios */
  --r-xl: 22px;
  --r-lg: 18px;
  --r-md: 14px;

  /* Layout */
  --container: 1140px;
}

/* -------- Utilities -------- */
.container {
  width: min(var(--container), calc(100% - 40px));
  margin-inline: auto;
}

.accent { color: var(--accent); }
.pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(245, 180, 44, 0.12);
  border: 1px solid rgba(245, 180, 44, 0.22);
  color: rgba(245, 180, 44, 0.95);
  font-weight: 600;
  letter-spacing: 0.2px;
}

.list {
  padding-left: 18px;
  margin: 12px 0 0;
  color: var(--muted);
}
.list li { margin: 6px 0; }

/* -------- Background Orbs (decor) -------- */
.bg-orbs {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  opacity: 0.9;
  filter: saturate(0.95);
}
.orb {
  position: absolute;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(245,180,44,0.22), transparent 60%),
              radial-gradient(circle at 70% 70%, rgba(224,122,26,0.16), transparent 55%);
  filter: blur(32px);
  animation: floaty 10s ease-in-out infinite;
}
.orb--1 { top: -180px; left: -180px; animation-delay: 0s; }
.orb--2 { top: 25%; right: -220px; animation-delay: 2s; }
.orb--3 { bottom: -220px; left: 20%; animation-delay: 4s; }

@keyframes floaty {
  0%, 100% { transform: translate3d(0,0,0) scale(1); }
  50% { transform: translate3d(0,-18px,0) scale(1.03); }
}

/* -------- Header -------- */
.header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(7, 10, 15, 0.68);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 220px;
}
.brand__mark {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(245,180,44,0.95), rgba(224,122,26,0.9));
  color: #121316;
  font-weight: 900;
  letter-spacing: 0.5px;
  box-shadow: 0 10px 30px rgba(245,180,44,0.18);
}
.brand__text strong { display: block; font-size: 14px; letter-spacing: 0.2px; }
.brand__text span { display: block; font-size: 12px; color: var(--muted-2); margin-top: 1px; }

.nav {
  display: flex;
  align-items: center;
  gap: 18px;
}
.nav a {
  font-size: 13px;
  color: var(--muted);
  font-weight: 600;
  padding: 8px 8px;
  border-radius: 10px;
  transition: 200ms ease;
}
.nav a:hover {
  color: var(--text);
  background: rgba(255,255,255,0.06);
}

.header__cta {
  display: flex;
  align-items: center;
  gap: 10px;
}

.burger {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  cursor: pointer;
  padding: 10px;
}
.burger span {
  display: block;
  height: 2px;
  margin: 6px 0;
  background: rgba(233,238,246,0.78);
  border-radius: 999px;
  transition: 220ms ease;
}

/* Mobile nav panel */
.mobile-nav {
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto 14px;
  border: 1px solid rgba(255,255,255,0.09);
  background: rgba(255,255,255,0.05);
  border-radius: var(--r-lg);
  padding: 12px;
  box-shadow: var(--shadow-2);
}
.mobile-nav a {
  display: block;
  padding: 12px 12px;
  border-radius: 14px;
  color: var(--muted);
  font-weight: 700;
  transition: 180ms ease;
}
.mobile-nav a:hover { background: rgba(255,255,255,0.06); color: var(--text); }

.mobile-nav__actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  padding: 12px;
}

/* -------- Buttons -------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 44px;
  padding: 0 16px;
  border-radius: 14px;
  font-weight: 800;
  letter-spacing: 0.2px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 140ms ease, background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
  user-select: none;
}

.btn--primary {
  background: linear-gradient(135deg, rgba(245,180,44,0.98), rgba(224,122,26,0.92));
  color: #121316;
  box-shadow: 0 18px 50px rgba(245, 180, 44, 0.16);
}
.btn--primary:hover { transform: translateY(-1px); box-shadow: 0 22px 60px rgba(245, 180, 44, 0.22); }

.btn--ghost {
  background: rgba(255,255,255,0.055);
  border-color: rgba(255,255,255,0.11);
  color: rgba(233,238,246,0.9);
}
.btn--ghost:hover {
  transform: translateY(-1px);
  background: rgba(255,255,255,0.075);
  border-color: rgba(255,255,255,0.18);
}

/* -------- Hero -------- */
.hero {
  padding: 54px 0 28px;
}
.hero__grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 34px;
  align-items: center;
}
.hero__copy h1 {
  margin: 14px 0 12px;
  font-size: clamp(30px, 4.2vw, 52px);
  line-height: 1.05;
  letter-spacing: -0.6px;
}
.hero__lead {
  margin: 0;
  max-width: 58ch;
  color: var(--muted);
  font-size: 15.5px;
}
.hero__actions {
  display: flex;
  gap: 12px;
  margin-top: 18px;
  flex-wrap: wrap;
}

.hero__meta {
  margin-top: 18px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}
.meta-card {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 10px;
  padding: 12px 14px;
  border-radius: var(--r-lg);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.09);
}
.meta-card__k {
  color: rgba(245,180,44,0.9);
  font-weight: 900;
  font-size: 12px;
}
.meta-card__v {
  color: rgba(233,238,246,0.86);
  font-weight: 650;
  font-size: 13px;
}

/* Hero media card */
.media-card {
  border-radius: var(--r-xl);
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.04);
  box-shadow: var(--shadow);
  overflow: hidden;
  transform: translateZ(0);
}
.media-card__top {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 14px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.03);
}
.dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: rgba(245,180,44,0.7);
}
.dot:nth-child(2){ background: rgba(233,238,246,0.35); }
.dot:nth-child(3){ background: rgba(224,122,26,0.55); }

.media-card__label {
  margin-left: 8px;
  font-size: 12px;
  font-weight: 800;
  color: rgba(233,238,246,0.72);
}

.media-card__body { padding: 18px; }
.media-placeholder {
  border-radius: 18px;
  min-height: 260px;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 20px;
  background:
    linear-gradient(135deg, rgba(245,180,44,0.10), rgba(224,122,26,0.06)),
    repeating-linear-gradient(135deg, rgba(255,255,255,0.07) 0 2px, transparent 2px 12px);
  border: 1px dashed rgba(255,255,255,0.18);
  color: rgba(233,238,246,0.82);
}
.media-placeholder p { margin: 0; font-weight: 900; }
.media-placeholder small { margin-top: 10px; display: block; color: rgba(233,238,246,0.62); }

.media-card__bottom {
  padding: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  border-top: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.03);
}
.tag {
  font-size: 12px;
  font-weight: 900;
  color: rgba(233,238,246,0.88);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  padding: 8px 10px;
  border-radius: 999px;
}

/* -------- KPIs -------- */
.kpis {
  margin-top: 26px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.kpi {
  padding: 14px;
  border-radius: var(--r-lg);
  border: 1px solid rgba(255,255,255,0.09);
  background: rgba(255,255,255,0.035);
}
.kpi__n {
  display: block;
  font-weight: 1000;
  font-size: 26px;
  letter-spacing: -0.4px;
  color: rgba(245,180,44,0.95);
}
.kpi__t {
  display: block;
  margin-top: 6px;
  color: rgba(233,238,246,0.70);
  font-size: 12px;
  font-weight: 700;
}

/* -------- Sections -------- */
.section { padding: 70px 0; }
.section--alt {
  background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01));
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.section__head {
  display: grid;
  gap: 10px;
  max-width: 72ch;
}
.section__head h2 {
  margin: 0;
  font-size: clamp(24px, 2.6vw, 36px);
  letter-spacing: -0.4px;
}
.section__head p {
  margin: 0;
  color: var(--muted);
  font-weight: 600;
}

.section__cta {
  margin-top: 26px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* Cards */
.cards {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.card {
  border-radius: var(--r-xl);
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.04);
  box-shadow: 0 12px 36px rgba(0,0,0,0.28);
  padding: 18px;
  transition: transform 160ms ease, border-color 180ms ease, background 180ms ease;
}
.card:hover {
  transform: translateY(-3px);
  border-color: rgba(245,180,44,0.26);
  background: rgba(255,255,255,0.052);
}
.card h3 {
  margin: 0;
  font-size: 16px;
  letter-spacing: -0.2px;
}
.card p {
  margin: 8px 0 0;
  color: var(--muted);
  font-weight: 600;
}

/* Panels / Layout grids */
.grid-2 {
  margin-top: 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.grid-3 {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.panel {
  border-radius: var(--r-xl);
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.04);
  padding: 18px;
  box-shadow: 0 12px 36px rgba(0,0,0,0.26);
}
.panel h3 { margin: 0; }
.panel p { margin: 10px 0 0; color: var(--muted); font-weight: 600; }

.chips { margin-top: 14px; display: flex; flex-wrap: wrap; gap: 10px; }
.chip {
  font-size: 12px;
  font-weight: 900;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(245,180,44,0.10);
  border: 1px solid rgba(245,180,44,0.18);
  color: rgba(245,180,44,0.95);
}

/* Timeline */
.timeline { margin-top: 14px; display: grid; gap: 12px; }
.timeline__item {
  display: grid;
  grid-template-columns: 14px 1fr;
  gap: 10px;
  align-items: start;
}
.timeline__dot {
  width: 10px;
  height: 10px;
  margin-top: 6px;
  border-radius: 999px;
  background: rgba(245,180,44,0.8);
  box-shadow: 0 0 0 5px rgba(245,180,44,0.12);
}
.timeline__item p { margin: 4px 0 0; color: var(--muted); font-weight: 600; }

/* Gallery */
.gallery {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.gallery__item {
  border-radius: var(--r-xl);
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.04);
  overflow: hidden;
  box-shadow: 0 12px 36px rgba(0,0,0,0.26);
  transition: transform 160ms ease, border-color 180ms ease;
}
.gallery__item:hover {
  transform: translateY(-3px);
  border-color: rgba(224,122,26,0.26);
}
.gallery__media { padding: 14px; }
.gallery__media .media-placeholder { min-height: 180px; }
.gallery__body { padding: 0 14px 16px; }
.gallery__body h3 { margin: 6px 0 0; font-size: 16px; }
.gallery__body p { margin: 8px 0 0; color: var(--muted); font-weight: 600; }

/* Mini cards */
.mini {
  border-radius: var(--r-xl);
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.04);
  padding: 18px;
}
.mini h3 { margin: 0; }
.mini p { margin: 8px 0 0; color: var(--muted); font-weight: 600; }

.note {
  margin-top: 18px;
  padding: 14px 16px;
  border-radius: var(--r-xl);
  border: 1px solid rgba(245,180,44,0.18);
  background: rgba(245,180,44,0.08);
  color: rgba(233,238,246,0.86);
  font-weight: 650;
}

/* -------- Contact -------- */
.contact {
  margin-top: 24px;
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 14px;
  align-items: start;
}

.info-card, .map, .form {
  border-radius: var(--r-xl);
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.04);
  box-shadow: 0 12px 36px rgba(0,0,0,0.26);
}

.info-card { padding: 18px; }
.info-card h3 { margin: 0; }
.info-card p { margin: 10px 0 0; color: var(--muted); font-weight: 650; }

.info-actions {
  margin-top: 14px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.social {
  margin-top: 14px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.social__link {
  font-weight: 900;
  color: rgba(245,180,44,0.95);
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid rgba(245,180,44,0.18);
  background: rgba(245,180,44,0.08);
  transition: 160ms ease;
}
.social__link:hover { transform: translateY(-1px); background: rgba(245,180,44,0.12); }

.map { padding: 14px; }
.map .media-placeholder { min-height: 260px; }

/* Form */
.form { padding: 18px; }
.form h3 { margin: 0; }

.form__row {
  margin-top: 14px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

label {
  display: grid;
  gap: 8px;
  margin-top: 12px;
  color: rgba(233,238,246,0.78);
  font-weight: 750;
  font-size: 13px;
}

input, select, textarea {
  width: 100%;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.04);
  color: rgba(233,238,246,0.92);
  padding: 12px 12px;
  transition: 180ms ease;
}

input::placeholder, textarea::placeholder { color: rgba(233,238,246,0.45); }

input:focus, select:focus, textarea:focus {
  border-color: rgba(245,180,44,0.30);
  box-shadow: 0 0 0 6px rgba(245,180,44,0.10);
  background: rgba(255,255,255,0.05);
}

textarea { resize: vertical; min-height: 120px; }

.form__actions {
  margin-top: 14px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.fineprint {
  margin: 12px 0 0;
  color: rgba(233,238,246,0.55);
  font-weight: 600;
  font-size: 12px;
}

/* -------- Footer -------- */
.footer {
  padding: 46px 0 22px;
  border-top: 1px solid rgba(255,255,255,0.06);
  background: rgba(255,255,255,0.01);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 18px;
  align-items: start;
}
.brand--footer .brand__mark { width: 40px; height: 40px; border-radius: 14px; }
.footer__p { margin: 12px 0 0; color: var(--muted); font-weight: 650; }

.footer__links strong {
  display: block;
  margin-bottom: 10px;
  font-weight: 1000;
  letter-spacing: -0.2px;
}
.footer__links a {
  display: block;
  color: rgba(233,238,246,0.68);
  padding: 7px 0;
  font-weight: 700;
  transition: 160ms ease;
}
.footer__links a:hover { color: rgba(245,180,44,0.95); }

.footer__bottom {
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,0.06);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.footer__bottom small { color: rgba(233,238,246,0.55); font-weight: 650; }

.to-top {
  width: 40px;
  height: 40px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,0.055);
  border: 1px solid rgba(255,255,255,0.10);
  color: rgba(233,238,246,0.85);
  font-weight: 1000;
  transition: 160ms ease;
}
.to-top:hover {
  transform: translateY(-2px);
  border-color: rgba(245,180,44,0.22);
}

/* -------- Reveal Animations (JS aplica .is-visible) -------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 520ms ease, transform 520ms ease;
  will-change: opacity, transform;
}
[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* -------- Parallax target -------- */
[data-parallax] {
  transform: translateY(0);
  transition: transform 120ms ease;
  will-change: transform;
}

/* -------- Responsive -------- */
@media (max-width: 980px) {
  .nav { display: none; }
  .burger { display: inline-block; }

  .hero__grid { grid-template-columns: 1fr; }
  .kpis { grid-template-columns: repeat(2, 1fr); }

  .cards { grid-template-columns: repeat(2, 1fr); }
  .grid-2 { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: 1fr; }

  .contact { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
}

@media (max-width: 520px) {
  .container { width: min(var(--container), calc(100% - 28px)); }

  .hero { padding: 40px 0 18px; }

  .meta-card { grid-template-columns: 1fr; }
  .form__row { grid-template-columns: 1fr; }

  .cards { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr; }

  .btn { width: 100%; }
  .header__cta .btn--ghost { display: none; } /* deja el burger limpio en móvil */
}





.hero-img{
  width: 100%;
  height: 320px;        /* ajustable */
  object-fit: cover;
  border-radius: 18px;
  display: block;
  border: 1px solid rgba(255,255,255,0.10);
  box-shadow: 0 14px 40px rgba(0,0,0,0.35);
}


/* Fotos reales en gallery: tamaño consistente */
.gallery__item--media img{
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}
