/* ============================================================
   CoguAzul Shop Hero
   ============================================================ */

.coguazul-shop-hero {
  position: relative;
  overflow: hidden;
  background: #f8f5ed;
  border-bottom: 1px solid rgba(31, 58, 51, 0.08);
  color: #143c35;
}

.coguazul-shop-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--coguazul-shop-hero-image);
  background-position: center 46%;
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 0.32;
  pointer-events: none;
}

.coguazul-shop-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(248, 245, 237, 0.9), rgba(248, 245, 237, 0.74) 48%, rgba(248, 245, 237, 0.42)),
    rgba(248, 245, 237, 0.2);
  pointer-events: none;
}

.coguazul-shop-hero__inner {
  position: relative;
  z-index: 1;
  width: min(calc(100% - 40px), 1080px);
  min-height: 250px;
  margin: 0 auto;
  padding: 34px 0 30px;
  display: flex;
  align-items: center;
}

.coguazul-shop-hero__content {
  max-width: 590px;
}

.coguazul-shop-hero__eyebrow {
  margin: 0 0 8px;
  color: rgba(20, 60, 53, 0.78);
  font-size: 0.72rem;
  font-weight: 650;
  line-height: 1.3;
  letter-spacing: 0;
  text-transform: uppercase;
}

.coguazul-shop-hero__title {
  max-width: 590px;
  margin: 0;
  color: #143c35;
  font-size: 2.68rem;
  font-weight: 650;
  line-height: 1.06;
  letter-spacing: 0;
}

.coguazul-shop-hero__text {
  max-width: 470px;
  margin: 12px 0 0;
  color: rgba(21, 43, 38, 0.82);
  font-size: 0.95rem;
  font-weight: 420;
  line-height: 1.58;
}

.coguazul-shop-hero__button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 28px;
  margin-top: 16px;
  padding: 0 1px 4px;
  border: 0;
  border-bottom: 1px solid rgba(22, 73, 63, 0.32);
  background: transparent;
  color: #16493f;
  font-size: 0.78rem;
  font-weight: 650;
  line-height: 1.2;
  letter-spacing: 0;
  text-decoration: none;
  transition:
    border-color 160ms ease,
    color 160ms ease,
    transform 160ms ease;
}

.coguazul-shop-hero__button::after {
  content: "";
  width: 14px;
  height: 1px;
  background: currentColor;
  transform-origin: left center;
  transition: transform 160ms ease;
}

.coguazul-shop-hero__button:hover,
.coguazul-shop-hero__button:focus-visible {
  border-bottom-color: #0b78c8;
  color: #0b78c8;
  transform: translateY(-1px);
}

.coguazul-shop-hero__button:hover::after,
.coguazul-shop-hero__button:focus-visible::after {
  transform: scaleX(1.22);
}

.coguazul-shop-hero__button:focus-visible {
  outline: 2px solid rgba(11, 120, 200, 0.45);
  outline-offset: 6px;
}

.coguazul-trust {
  background:
    linear-gradient(180deg, rgba(244, 249, 245, 0.98), rgba(248, 245, 237, 0.96)),
    #f7f5ee;
  border-top: 1px solid rgba(31, 58, 51, 0.05);
  border-bottom: 1px solid rgba(31, 58, 51, 0.07);
  color: #143c35;
}

.coguazul-trust__inner {
  width: min(calc(100% - 40px), 1080px);
  margin: 0 auto;
  padding: 28px 0 30px;
}

.coguazul-trust__title {
  margin: 0 0 20px;
  color: #143c35;
  font-size: 1.32rem;
  font-weight: 650;
  line-height: 1.22;
  letter-spacing: 0;
  text-align: center;
}

.coguazul-trust__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(220px, 280px));
  justify-content: center;
  gap: 0;
}

.coguazul-trust__item {
  position: relative;
  min-height: 132px;
  padding: 8px 24px 10px;
  text-align: center;
  transition:
    color 180ms ease,
    opacity 180ms ease,
    transform 180ms ease;
}

.coguazul-trust__item + .coguazul-trust__item {
  border-left: 1px solid rgba(20, 60, 53, 0.14);
}

.coguazul-trust__item:hover {
  transform: translateY(-2px);
}

.coguazul-trust__item h3 {
  margin: 0 0 10px;
  color: #143c35;
  font-size: 0.95rem;
  font-weight: 650;
  line-height: 1.3;
  letter-spacing: 0;
}

.coguazul-trust__item p {
  max-width: 230px;
  margin: 0 auto;
  color: rgba(21, 43, 38, 0.72);
  font-size: 0.86rem;
  font-weight: 400;
  line-height: 1.55;
}

@media (min-width: 1500px) {
  .coguazul-shop-hero__inner {
    width: min(calc(100% - 56px), 1120px);
    min-height: 270px;
  }

  .coguazul-shop-hero__title {
    font-size: 2.84rem;
  }
}

@media (max-width: 900px) {
  .coguazul-shop-hero::before {
    background-position: center;
    opacity: 0.26;
  }

  .coguazul-shop-hero::after {
    background:
      linear-gradient(90deg, rgba(248, 245, 237, 0.92), rgba(248, 245, 237, 0.78)),
      rgba(248, 245, 237, 0.24);
  }

  .coguazul-shop-hero__inner {
    min-height: 232px;
    padding: 30px 0 28px;
  }

  .coguazul-shop-hero__content {
    max-width: 640px;
  }

  .coguazul-shop-hero__title {
    font-size: 2.28rem;
  }

  .coguazul-trust__inner {
    padding: 26px 0 28px;
  }

  .coguazul-trust__item {
    min-height: 124px;
    padding-inline: 22px;
  }
}

@media (max-width: 760px) {
  .coguazul-trust__title {
    text-align: left;
  }

  .coguazul-trust__grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .coguazul-trust__item {
    min-height: 0;
    padding: 0;
    text-align: left;
  }

  .coguazul-trust__item + .coguazul-trust__item {
    padding-top: 18px;
    border-top: 1px solid rgba(20, 60, 53, 0.12);
    border-left: 0;
  }

  .coguazul-trust__item h3 {
    margin-bottom: 6px;
  }

  .coguazul-trust__item p {
    max-width: none;
    margin: 0;
  }
}

@media (max-width: 560px) {
  .coguazul-shop-hero__inner {
    width: min(calc(100% - 32px), 520px);
    min-height: 224px;
    padding: 26px 0 24px;
  }

  .coguazul-shop-hero__eyebrow {
    margin-bottom: 8px;
    font-size: 0.7rem;
  }

  .coguazul-shop-hero__title {
    font-size: 1.92rem;
    line-height: 1.06;
  }

  .coguazul-shop-hero__text {
    margin-top: 10px;
    font-size: 0.94rem;
    line-height: 1.54;
  }

  .coguazul-shop-hero__button {
    margin-top: 14px;
    font-size: 0.74rem;
  }

  .coguazul-trust__inner {
    width: min(calc(100% - 32px), 520px);
    padding: 26px 0 28px;
  }

  .coguazul-trust__title {
    margin-bottom: 22px;
    font-size: 1.18rem;
  }
}
