/* Estilos específicos de la landing (selector de marca) */
:root {
  --color-primary: #F5B301;
  --color-bg: #0b0b0b;
  --color-text: #f7f5f2;
  --color-text-muted: #b0b0b0;
  --color-border: rgba(255, 255, 255, .1);
}

body.landing { padding-bottom: 0; }

.landing-header {
  padding: 40px 0 10px;
  text-align: center;
}
.landing-header .top-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-bottom: 22px;
  opacity: .9;
}
.landing-header .top-logos img { height: 26px; }
.landing-header .top-logos span { color: var(--color-text-muted); font-size: 13px; }

.landing-hero {
  text-align: center;
  padding: 10px 20px 50px;
  max-width: 780px;
  margin: 0 auto;
}
.landing-hero .eyebrow { display: block; margin-bottom: 14px; }
.landing-hero h1 { font-size: clamp(30px, 5vw, 50px); margin-bottom: 16px; }
.landing-hero h1 em { font-style: normal; color: #F5B301; }
.landing-hero p { color: var(--color-text-muted); font-size: clamp(15px, 2vw, 18px); max-width: 560px; margin: 0 auto; }

.brand-picker {
  display: grid;
  gap: 24px;
  padding: 10px 20px 70px;
  max-width: 1100px;
  margin: 0 auto;
}
@media (min-width: 820px) { .brand-picker { grid-template-columns: 1fr 1fr; gap: 28px; } }

.brand-card {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  min-height: 360px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 34px 30px;
  border: 1px solid var(--color-border);
  transition: transform 250ms ease, box-shadow 250ms ease;
}
.brand-card:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(0,0,0,.5); }
.brand-card img.bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.brand-card::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.15) 0%, rgba(0,0,0,.85) 90%);
  z-index: 1;
}
.brand-card > * { position: relative; z-index: 2; }

.brand-card .brand-logo { height: 34px; margin-bottom: 18px; }
.brand-card .brand-since {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 12px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
  padding: 6px 12px; border-radius: 999px; margin-bottom: 16px; width: fit-content;
  background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.2);
}
.brand-card h2 { font-size: 26px; color: #fff; margin-bottom: 10px; }
.brand-card p { color: rgba(255,255,255,.82); font-size: 14.5px; margin-bottom: 22px; max-width: 380px; }

.brand-card--criques .brand-since { color: #F5B301; }
.brand-card--hidraulica .brand-since { color: #3aa0ff; }

.brand-card .cta-arrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-weight: 800; font-size: 15px; color: #fff;
  padding: 12px 20px; border-radius: 12px;
  width: fit-content;
}
.brand-card--criques .cta-arrow { background: #F5B301; color: #14110a; }
.brand-card--hidraulica .cta-arrow { background: #3aa0ff; color: #08131f; }
.brand-card .cta-arrow svg { width: 18px; height: 18px; transition: transform 200ms ease; }
.brand-card:hover .cta-arrow svg { transform: translateX(4px); }

.landing-footer {
  text-align: center;
  padding: 30px 20px 50px;
  color: var(--color-text-muted);
  font-size: 13px;
}
.landing-footer .social-row { justify-content: center; margin-top: 16px; }
