/* Capa de ajuste para acercar la implementación a la maqueta visual aprobada. */
:root {
  --hero-photo: url("https://images.unsplash.com/photo-1677951570313-b0750351c461?auto=format&fit=crop&fm=jpg&q=78&w=1600");
  --cylinder-photo: url("https://images.unsplash.com/photo-1759452003649-552896c8ed63?auto=format&fit=crop&fm=jpg&q=78&w=1200");
  --car-photo: url("https://images.unsplash.com/photo-1630071634838-24970c2af5eb?auto=format&fit=crop&fm=jpg&q=78&w=1200");
}

.site-header {
  box-shadow: 0 1px 0 rgba(0,0,0,0.04);
}

.header-layout {
  min-height: 72px;
}

.brand__symbol {
  width: 46px;
  height: 46px;
}

.brand__text span {
  font-size: .8rem;
}

.brand__text strong {
  font-size: 1.75rem;
}

.phone-button {
  min-height: 48px;
  padding-inline: 24px;
}

.hero-grid {
  min-height: 340px;
  grid-template-columns: minmax(430px, .9fr) minmax(620px, 1.1fr);
}

.hero-copy {
  padding-top: 54px;
  padding-bottom: 42px;
}

h1 {
  max-width: 640px;
  font-size: clamp(44px, 4.35vw, 72px);
  line-height: .98;
  letter-spacing: -.06em;
}

.hero-copy p {
  max-width: 555px;
  margin-top: 18px;
  font-size: 1.08rem;
  line-height: 1.5;
}

.hero-actions {
  margin-top: 24px;
}

.button {
  min-height: 44px;
  padding-inline: 24px;
  font-size: .82rem;
}

.hero-media {
  min-height: 340px;
  grid-template-columns: 310px 1fr;
  background: #f4f1eb;
}

.info-card {
  width: 300px;
  margin-left: 26px;
  padding: 17px 24px;
  background: rgba(255,255,255,.94);
  box-shadow: 0 22px 54px rgba(0,0,0,.10);
}

.info-row {
  grid-template-columns: 28px 1fr;
  gap: 16px;
  padding: 14px 0;
}

.info-icon {
  display: inline-flex;
  align-items: flex-start;
  justify-content: center;
  color: var(--red);
}

.info-icon svg,
.need-icon svg {
  width: 24px;
  height: 24px;
  stroke-width: 1.8;
}

.photo-lock {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(90deg, rgba(246,247,242,.95) 0%, rgba(246,247,242,.86) 18%, rgba(246,247,242,.18) 42%, rgba(0,0,0,.08) 100%), var(--hero-photo);
  background-size: cover;
  background-position: 62% 50%;
}

.photo-lock::after {
  display: none;
}

.needs {
  padding: 24px 0 36px;
  background: linear-gradient(180deg, #fafaf7, var(--paper));
}

.section-title-centered {
  margin-bottom: 22px;
}

.needs-grid {
  background: transparent;
}

.need-item {
  min-height: 152px;
  padding: 18px 28px 12px;
}

.need-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  margin-bottom: 12px;
  color: var(--ink);
  font-size: 0;
}

.need-item h3 {
  max-width: 180px;
  min-height: 38px;
}

.feature-cards {
  padding-bottom: 6px;
}

.feature-grid {
  gap: 22px;
}

.feature-card {
  min-height: 178px;
  grid-template-columns: 1fr .92fr;
  box-shadow: 0 1px 0 rgba(0,0,0,.02);
}

.feature-card__content {
  padding: 24px 24px 18px;
}

.feature-card h2 {
  font-size: clamp(25px, 2vw, 32px);
}

.feature-card p {
  font-size: .9rem;
  line-height: 1.42;
}

.photo-cylinder,
.photo-portal,
.photo-car {
  min-height: 178px;
  background-size: cover;
}

.photo-cylinder {
  background-image: linear-gradient(90deg, rgba(255,255,255,.40), rgba(255,255,255,0)), var(--cylinder-photo);
  background-position: 50% 48%;
}

.photo-portal {
  background-image: linear-gradient(90deg, rgba(255,255,255,.12), rgba(255,255,255,0)), url("https://images.unsplash.com/photo-1677951570313-b0750351c461?auto=format&fit=crop&fm=jpg&q=70&w=1200");
  background-position: 62% 50%;
}

.photo-car {
  background-image: linear-gradient(90deg, rgba(255,255,255,.02), rgba(255,255,255,0)), var(--car-photo);
  background-position: 52% 45%;
}

.process {
  margin-top: 0;
}

.process-grid {
  min-height: 112px;
}

.process-step {
  align-items: center;
}

.process-step > span {
  font-size: 2.1rem;
}

.contact {
  padding: 38px 0 34px;
}

.site-footer {
  padding-block: 16px;
}

@media (max-width: 1180px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-media {
    grid-template-columns: 1fr;
  }

  .photo-lock {
    position: absolute;
    inset: 0;
  }

  .info-card {
    margin: 26px;
  }
}
