﻿.about-hero {
  position: relative;
  min-height: 72vh;
  display: grid;
  align-items: end;
  padding: 9rem clamp(1rem, 5vw, 5rem) 5rem;
  overflow: hidden;
  color: #fff;
}

.about-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(15, 34, 56, .88), rgba(25, 67, 118, .58), rgba(15, 34, 56, .2));
  z-index: 1;
}

.about-hero-media {
  position: absolute;
  inset: 0;
}

.about-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.03);
}

.about-hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
}

.about-hero-content h1 {
  margin: 0;
  color: #fff;
  font-family: "Playfair Display", serif;
  font-size: clamp(1rem, 4vw, 3rem);
}

.about-hero-content p:not(.eyebrow) {
  max-width: 680px;
  margin: 1rem 0 1.5rem;
  color: rgba(255, 255, 255, .88);
  font-size: clamp(1.04rem, 1vw, 1.08rem);
}

.about-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .8rem;
}

.about-actions .btn-ghost {
  color: #fff;
  border-color: rgba(255, 255, 255, .65);
}


.trust-strip {
  position: relative;
  z-index: 3;
  display: grid;
  max-width: 1180px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin-inline: auto;
  padding: 0 clamp(1rem, 3vw, 2rem);
}

.trust-strip article {
  position: relative;
  display: grid;
  gap: .28rem;
  padding: 1.15rem 1rem;
  border-top: 3px solid #ff8344;
  border-right: 1px solid rgba(25, 67, 118, .12);
  background: linear-gradient(180deg, #fff 0%, #f8fbff 100%);
  box-shadow: 0 16px 38px rgba(25, 67, 118, .08);
}

.trust-strip article:first-child {
  border-radius: 8px 0 0 8px;
}

.trust-strip article:last-child {
  border-right: 0;
  border-radius: 0 8px 8px 0;
}

.trust-strip strong {
  display: block;
  color: #055D82;
  font-size: clamp(1.35rem, 2.4vw, 2rem);
  font-weight: 900;
  line-height: 1;
}

.trust-strip span {
  color: #5c6b7e;
  font-size: .9rem;
  font-weight: 800;
  line-height: 1.35;
}

.about-trust {
  margin-top: -3rem;
}

.about-story {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 2rem;
  align-items: start;
}

.about-story > div:first-child {
  display: grid;
  gap: 1rem;
}

.about-story h2,
.mission-section h2,
.mpt-trust-heading h2,
.map-section h2 {
  color: #055D82;
}

.about-story p,
.mission-section p,
.mpt-trust-heading p {
  color: #5c6b7e;
  line-height: 1.75;
}

.about-values {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.about-values article,
.mission-section article,
.mpt-trust-card {
  border: 1px solid rgba(25, 67, 118, .12);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(25, 67, 118, .08);
}

.about-values article {
  padding: 1.35rem;
}

.about-values i {
  display: grid;
  width: 46px;
  height: 46px;
  margin-bottom: .9rem;
  place-items: center;
  border-radius: 8px;
  color: #fff;
  background: #ff8344;
  font-size: 1.25rem;
}

.about-values h3 {
  margin-bottom: .45rem;
  color: #194376;
}

.mission-section {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  padding-top: 1rem;
}

.mission-section article {
  padding: clamp(1.4rem, 3vw, 2rem);
}

.mpt-trust-section {
  padding: 70px clamp(1rem, 3vw, 2rem) 35px;
  background: linear-gradient(180deg, #ffffff 0%, #f5f8fc 100%);
}

.mpt-trust-section .container {
  max-width: 1180px;
  margin: 0 auto;
}

.mpt-trust-heading {
  max-width: 760px;
  margin: 0 auto 28px;
  text-align: center;
}

.mpt-trust-heading span {
  display: inline-block;
  margin-bottom: 8px;
  color: #ff8344;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.mpt-trust-heading h2 {
  font-size: clamp(1.65rem, 3vw, 2.4rem);
}

.mpt-trust-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.mpt-trust-card {
  display: grid;
  min-height: 150px;
  place-items: center;
  padding: 24px;
  transition: transform .25s ease, box-shadow .25s ease;
}

.mpt-trust-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 42px rgba(25, 67, 118, .14);
}

.mpt-trust-card img {
  max-width: min(210px, 78%);
  max-height: 90px;
  object-fit: contain;
}

.map-section {
  padding-top: 4rem;
}

.map-section iframe {
  width: 100%;
  min-height: 430px;
  border: 0;
  border-radius: 8px;
  box-shadow: 0 18px 48px rgba(25, 67, 118, .12);
}

@media (max-width: 900px) {
  .about-hero {
    min-height: 68vh;
    padding-top: 8rem;
  }
.about-hero-content h1 {

  font-size: clamp(2rem, 6vw, 5rem);
}
  .about-story,
  .mission-section,
  .mpt-trust-grid {
    grid-template-columns: 1fr;
  }

  .about-values {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .about-hero {
    padding-inline: 1rem;
    padding-bottom: 4rem;
  }

  .about-hero::after {
    background: linear-gradient(180deg, rgba(15, 34, 56, .42), rgba(15, 34, 56, .92));
  }

  .about-actions {
    flex-direction: column;
  }

  .about-actions a {
    width: 100%;
    justify-content: center;
  }

  .mpt-trust-section {
    padding: 48px 1rem 20px;
  }

  .mpt-trust-card {
    min-height: 132px;
  }

  .map-section iframe {
    min-height: 320px;
  }
}
.footer-claim-link {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: .35rem;
}

.footer-claim-link img {
  display: block;
  width: 58px !important;
  max-width: 58px !important;
  height: auto !important;
  margin-top: .15rem;
  margin-left: .45rem;
  margin-right: 0;
  border-radius: 4px;
  transition: transform .2s ease, filter .2s ease;
}

.footer-claim-link:hover img {
  transform: translateY(-2px);
  filter: brightness(1.04);
}
.per-person {
  display: block;
  margin-top: .18rem;
  color: var(--muted, #64748b);
  font-size: .82rem;
  font-weight: 800;
  line-height: 1.15;
}
@media (max-width: 900px) {
  .trust-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: -2rem;
  }

  .trust-strip article:nth-child(2) {
    border-right: 0;
    border-radius: 0 8px 0 0;
  }

  .trust-strip article:nth-child(3) {
    border-radius: 0 0 0 8px;
  }
}

@media (max-width: 640px) {
  .trust-strip {
    grid-template-columns: 1fr;
    margin-top: -1.5rem;
    padding-inline: 1rem;
  }

  .trust-strip article,
  .trust-strip article:first-child,
  .trust-strip article:nth-child(2),
  .trust-strip article:nth-child(3),
  .trust-strip article:last-child {
    border-right: 0;
    border-bottom: 1px solid rgba(25, 67, 118, .12);
    border-radius: 0;
    padding: .9rem 1rem;
  }

  .trust-strip article:first-child {
    border-radius: 8px 8px 0 0;
  }

  .trust-strip article:last-child {
    border-bottom: 0;
    border-radius: 0 0 8px 8px;
  }

  .trust-strip strong {
  display: block;
  color: #055D82;
  font-size: clamp(1.35rem, 2.4vw, 2rem);
  font-weight: 900;
  line-height: 1;
}

  .trust-strip span {
  color: #5c6b7e;
  font-size: .9rem;
  font-weight: 800;
  line-height: 1.35;
}
}

/* Mobile hero buttons: compact and left aligned */
@media (max-width: 640px) {
  .about-hero .about-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: .48rem;
  }

  .about-hero .about-actions a,
  .about-hero .about-actions button {
    width: auto;
    min-height: 36px;
    justify-content: center;
    padding: .52rem .82rem;
    font-size: .78rem;
    line-height: 1.1;
  }
}
/* === Hero uniform responsive patch === */
/* Hero ordenado y uniforme */
.about-hero {
  min-height: 520px;
  display: grid;
  place-items: center;
  padding: 7.5rem clamp(1rem, 5vw, 4.5rem) 4.5rem;
  text-align: center;
}

.about-hero::after {
  background: linear-gradient(180deg, rgba(6, 22, 43, .64), rgba(25, 67, 118, .48) 52%, rgba(6, 22, 43, .52));
}

.about-hero-content {
  width: min(900px, 100%);
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  justify-items: center;
  gap: 1rem;
}

.about-hero-content h1 {
  max-width: 820px;
  margin: 0 auto;
  font-size: clamp(1.78rem, 4.6vw, 3.35rem);
  line-height: 1.05;
  text-wrap: balance;
}

.about-hero-content p {
  display: none;
}

.about-actions {
  justify-content: center;
  margin-top: .15rem;
}

.about-actions a,
.about-actions button {
  width: auto;
  min-height: 42px;
  padding: .64rem .95rem;
  border-radius: 8px;
  font-size: .84rem;
}

@media (max-width: 900px) {
  .about-hero {
    min-height: 440px;
    padding: 6.6rem 1rem 3.2rem;
  }
}

@media (max-width: 640px) {
  .about-hero {
    min-height: 360px;
    padding: 5.9rem .9rem 2.4rem;
  }

  .about-hero-content h1 {
    max-width: 19rem;
    font-size: clamp(1.32rem, 6.1vw, 1.78rem);
    line-height: 1.08;
  }

  .about-hero .about-actions {
    width: min(100%, 20rem);
    justify-content: center;
  }

  .about-hero .about-actions a,
  .about-hero .about-actions button {
    width: auto;
    min-height: 32px;
    padding: .42rem .62rem;
    font-size: .72rem;
  }
}
/* === End hero uniform responsive patch === */
/* === About hero rotator patch === */
/* H1 dinamico del hero Nosotros */
.about-hero-title-rotator {
  display: block;
  min-height: 1.18em;
  color: #fff;
  text-shadow: 0 18px 34px rgba(6, 22, 43, .42);
  transition: opacity .72s ease, transform .72s ease, filter .72s ease;
  will-change: opacity, transform;
}

.about-hero-title-rotator.is-changing {
  opacity: 0;
  transform: translateX(-34px);
  filter: blur(2px);
}

.about-hero-title-rotator.is-entering {
  animation: aboutTitleSlideIn .95s ease both;
}

@keyframes aboutTitleSlideIn {
  from {
    opacity: 0;
    transform: translateX(-34px);
    filter: blur(2px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
    filter: blur(0);
  }
}

@media (max-width: 640px) {
  .about-hero-title-rotator {
    min-height: 2.35em;
  }
}
/* === End about hero rotator patch === */

/* === Hero unique subtitle patch === */
.hero-subtitle {
  max-width: min(760px, 92vw);
  margin: clamp(.65rem, 1.5vw, 1rem) 0 0;
  color: rgba(255, 255, 255, .94);
  font-size: clamp(1rem, 2vw, 1.28rem);
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: 0;
  text-shadow: 0 12px 28px rgba(4, 18, 38, .58);
  animation: heroSubtitleSoftIn 1.35s ease both .28s;
}

.contact-hero-content .hero-subtitle,
.about-hero-content .hero-subtitle,
.store-hero-content .hero-subtitle {
  margin-left: auto;
  margin-right: auto;
}

@keyframes heroSubtitleSoftIn {
  from {
    opacity: 0;
    transform: translateY(18px);
    filter: blur(3px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

@media (max-width: 640px) {
  .hero-subtitle {
    max-width: min(320px, 88vw);
    margin-top: .55rem;
    font-size: .9rem;
    line-height: 1.35;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-subtitle {
    animation: none;
  }
}
/* === End hero unique subtitle patch === */