/* ============================================================
   EQUIPOS — PAGE-SPECIFIC STYLES
   equipos.css — loaded after style.css
   ============================================================ */

/* ── PAGE HERO ── */
.page-hero {
  min-height: 68vh;
  position: relative;
  display: flex;
  align-items: flex-end;
  padding-bottom: 80px;
  overflow: hidden;
  background: var(--navy);
}

.ph-glow {
  position: absolute;
  top: -20%; left: -5%;
  width: 75vw; height: 130%;
  background: radial-gradient(ellipse at 25% 40%, rgba(201,168,76,0.06) 0%, transparent 60%);
  pointer-events: none;
}

.ph-beam {
  position: absolute;
  inset: 0;
  background:
    conic-gradient(from 195deg at 94% 2%, rgba(201,168,76,0.11) 0deg, transparent 15deg),
    conic-gradient(from 200deg at 94% 2%, rgba(201,168,76,0.04) 0deg, transparent 25deg);
  pointer-events: none;
  animation: beam 14s ease-in-out infinite alternate;
}

.ph-lines {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(90deg, var(--divider) 1px, transparent 1px),
    linear-gradient(0deg, var(--divider) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse at 20% 70%, black 5%, transparent 65%);
  opacity: 0.28;
}

.ph-content {
  position: relative;
  z-index: 2;
  padding-top: 120px;
}

/* Breadcrumb */
.breadcrumb-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 2rem;
  opacity: 0;
  animation: fadeUp 0.7s ease forwards 0.2s;
}

.breadcrumb-nav a {
  font-family: var(--font-ui);
  font-size: 0.6rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}

.breadcrumb-nav a:hover { color: var(--gold); }
.bc-sep { color: var(--muted); font-size: 0.7rem; }
.bc-cur { font-family: var(--font-ui); font-size: 0.6rem; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); }

/* Hero text */
.ph-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 1.75rem;
  opacity: 0;
  animation: fadeUp 0.8s ease forwards 0.3s;
}

.ph-badge-line { width: 28px; height: 1px; background: var(--gold); }

.ph-badge-text {
  font-family: var(--font-ui);
  font-size: 0.6rem;
  letter-spacing: 4.5px;
  text-transform: uppercase;
  color: var(--gold);
}

.ph-title {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 6.5vw, 5.5rem);
  font-weight: 300;
  line-height: 0.97;
  letter-spacing: -1.5px;
  color: var(--white);
  opacity: 0;
  animation: fadeUp 1s ease forwards 0.45s;
}

.ph-title .accent {
  font-style: italic;
  font-weight: 700;
  color: var(--gold);
  display: block;
}

.ph-rule {
  width: 48px; height: 1px;
  background: var(--gold);
  margin: 2rem 0;
  opacity: 0;
  animation: fadeIn 0.8s ease forwards 0.75s;
}

.ph-desc {
  font-size: clamp(0.95rem, 1.4vw, 1.08rem);
  font-weight: 300;
  color: var(--silver);
  line-height: 1.8;
  max-width: 580px;
  opacity: 0;
  animation: fadeUp 0.9s ease forwards 0.85s;
}

.ph-actions {
  margin-top: 2.25rem;
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.9s ease forwards 1s;
}

/* ── CERTIFICATIONS STRIP ── */
.cert-strip {
  padding: 28px 0;
  background: var(--navy-2);
  border-top: 1px solid var(--divider);
  border-bottom: 1px solid var(--divider);
}

.cert-items {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  flex-wrap: wrap;
  justify-content: center;
}

.cert-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.cert-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

.cert-label {
  font-family: var(--font-ui);
  font-size: 0.62rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--silver);
}

/* ── INTRO / BRAND SECTION ── */
.brand-section {
  padding: 90px 0;
  background: var(--navy);
  border-top: 1px solid var(--divider);
}

.brand-quote {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.6vw, 2.2rem);
  font-weight: 300;
  font-style: italic;
  color: var(--white);
  line-height: 1.4;
  padding-left: 2rem;
  border-left: 2px solid var(--gold);
  margin-bottom: 2rem;
}

.brand-quote strong { font-style: normal; font-weight: 700; color: var(--gold); }

.spec-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 2rem;
}

.spec-pill {
  font-family: var(--font-ui);
  font-size: 0.6rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--silver);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 0.35rem 0.9rem;
  border-radius: 2px;
  transition: border-color 0.2s, color 0.2s;
}

.spec-pill:hover,
.spec-pill.hi {
  border-color: var(--gold-line);
  color: var(--gold);
  background: var(--gold-dim);
}

/* ── PRODUCT GRID ── */
.products-section {
  padding: 100px 0;
  background: var(--navy-2);
  border-top: 1px solid var(--divider);
}

.product-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1px;
  background: var(--divider);
  border: 1px solid var(--divider);
  border-radius: 4px;
  overflow: hidden;
  margin-top: 3rem;
}

.product-card {
  background: var(--navy);
  padding: 2.25rem 2rem;
  position: relative;
  transition: background 0.3s;
  display: flex;
  flex-direction: column;
}

.product-card:hover { background: var(--navy-3); }

.product-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}

.product-card:hover::before { transform: scaleX(1); }

/* Category label */
.prod-cat {
  font-family: var(--font-ui);
  font-size: 0.55rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.6rem;
  display: block;
}

/* Product icon placeholder */
.prod-icon {
  width: 44px; height: 44px;
  border: 1px solid var(--gold-line);
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  flex-shrink: 0;
}

.prod-name {
  font-family: var(--font-ui);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--white);
  margin-bottom: 0.6rem;
  line-height: 1.3;
}

.prod-desc {
  font-size: 0.83rem;
  font-weight: 300;
  color: var(--silver);
  line-height: 1.75;
  flex: 1;
}

.prod-specs {
  margin-top: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-top: 1.25rem;
  border-top: 1px solid var(--divider);
}

.prod-spec-row {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 300;
  color: var(--silver);
  line-height: 1.5;
}

.prod-spec-dot {
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
  margin-top: 6px;
}

.prod-cta {
  margin-top: 1.5rem;
  font-family: var(--font-ui);
  font-size: 0.6rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s, color 0.2s;
}

.prod-cta:hover { gap: 10px; color: var(--gold-bright); }
.prod-cta::after { content: '→'; }

/* ── WHY GOOKMS ── */
.why-section {
  padding: 90px 0;
  background: var(--navy);
  border-top: 1px solid var(--divider);
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 3rem;
}

.why-card {
  background: var(--navy-2);
  border: 1px solid var(--divider);
  border-radius: 4px;
  padding: 2rem;
  display: flex;
  gap: 1.25rem;
  transition: border-color 0.3s, background 0.3s;
}

.why-card:hover { border-color: var(--gold-line); background: var(--navy-3); }

.why-icon {
  width: 40px; height: 40px;
  border: 1px solid var(--gold-line);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.why-title {
  font-family: var(--font-ui);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.why-desc { font-size: 0.85rem; font-weight: 300; color: var(--silver); line-height: 1.7; }

/* EQUIPMENT */
.icon-box {
  padding: 30px 20px;
  transition: ease-in-out 0.3s;
  border: 1px solid rgba(255, 255, 255, 0.3);
  height: 100%;
  text-align: center;
}
.icon-box i {
  font-size: 32px;
  line-height: 1;
  color: #ffc451;
}
.icon-box h3 {
  font-weight: 700;
  margin: 10px 0 0 0;
  padding: 0;
  font-size: 20px;
  line-height: 24px;
}
.icon-box h3 a {
  color: #fff;
  transition: ease-in-out 0.3s;
}

.icon-box h3 a:hover {
  color: #ffc451;
}
.icon-box p {
  color: #cccccc;
  margin: 10px 0 0 0;
  font-size: 18px;
}
.icon-box:hover {
  border-color: #ffc451;
}

/* ── QUOTE FORM ── */
.quote-section {
  padding: 100px 0;
  background: var(--navy-2);
  border-top: 1px solid var(--divider);
}

.form-wrap {
  background: var(--navy);
  border: 1px solid var(--divider);
  border-radius: 4px;
  padding: 3rem;
}

.f-label {
  font-family: var(--font-ui);
  font-size: 0.6rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.5rem;
  display: block;
}

.f-input {
  width: 100%;
  background: var(--navy-2);
  border: 1px solid var(--divider);
  border-radius: 2px;
  padding: 0.85rem 1rem;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 300;
  transition: border-color 0.2s, background 0.2s;
  outline: none;
}

.f-input:focus { border-color: var(--gold-line); background: var(--navy-3); }
.f-input::placeholder { color: var(--muted); font-size: 0.85rem; }
select.f-input option { background: var(--navy-2); color: var(--white); }

.f-field { margin-bottom: 1.5rem; }
.f-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.f-divider { height: 1px; background: var(--divider); margin: 2rem 0; }
.f-footer { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; flex-wrap: wrap; }
.f-note { font-size: 0.78rem; font-weight: 300; color: var(--muted); font-style: italic; }

.form-success {
  display: none;
  background: rgba(201,168,76,0.08);
  border: 1px solid var(--gold-line);
  border-radius: 3px;
  padding: 2rem;
  text-align: center;
  margin-bottom: 1.5rem;
}

.form-success.show { display: block; }
.form-success p { font-family: var(--font-display); font-size: 1.2rem; font-style: italic; color: var(--gold); }

.wa-alt {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.75rem 2rem;
  background: rgba(37,211,102,0.06);
  border: 1px solid rgba(37,211,102,0.15);
  border-radius: 4px;
  margin-top: 1.5rem;
}

.wa-text { font-size: 0.85rem; font-weight: 300; color: var(--silver); line-height: 1.5; }
.wa-text strong { color: var(--white); font-weight: 500; }
.wa-text a { color: #25D366; font-size: 0.82rem; text-decoration: none; }

/* ── RESPONSIVE ── */
@media (max-width: 991px) {
  .product-grid { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .f-row { grid-template-columns: 1fr; }
  .form-wrap { padding: 2rem; }
  .cert-items { gap: 1.5rem; }
}

@media (max-width: 767px) {
  .product-grid { grid-template-columns: 1fr; }
  .f-footer { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 575px) {
  .ph-title { letter-spacing: -0.5px; }
  .ph-actions { flex-direction: column; align-items: flex-start; }
}

