.store-section {
  background: #0f172a;
  /* padding: 80px 0; */
  padding-bottom: 40px;
}

.store-container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
}

.store-info {
  position: relative;
  flex: 1;
  overflow: hidden;

  display: flex;
  flex-direction: column;
  justify-content: center;

}

.store-info::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  background-color: #f0e395;

  clip-path: polygon(
    100% 0,     /* topo começa totalmente à direita */
    100% -15%,   /* mantém a borda direita reta */
    0 97%,     /* base termina totalmente à esquerda */
    0 0         /* fecha no topo esquerdo invisível */
  );
}




.store-image {
  flex: 1.9;
  background: url("../images/fachada.jpg") no-repeat center center;
  background-size: contain;
  min-height: 420px;
}


.store-card {
  padding: 10px 30px;
  border-radius: 6px;
  margin-bottom: 10px;
  z-index: 2;
  position: relative;

  box-shadow:
    0 4px 10px rgba(0, 0, 0, 0.25),
    0 10px 25px rgba(0, 0, 0, 0.35);
}

.store-card p {
  color: #fff;
  font-size: 1.2rem;
  font-weight: 200;
  margin-block: 3px;
}

.store-card strong {
  color: #f0e9a5;
  font-size: 1.15rem;
  font-weight: 300;
}

.store-contact {
  padding: 10px 30px;
  z-index: 2;
}

.store-contact p {
  color: #cbd5f5;
  font-size: 0.9rem;
  font-weight: 300;
  margin-bottom: 6px;
}

.store-contact p img {
  width: 15px;
  margin-right: 5px;
}

.store-image {
  background: url("../images/banner-desk.jpg") no-repeat center center;
  background-size: cover;
  background-position: center;
  min-height: 480px;
}


.store-card,
.store-contact {
  background: linear-gradient(145deg, #16213a, #0f172a);
  /* border: 1px solid rgba(56, 189, 248, 0.35); */
  border-radius: 12px;
  padding: 18px 30px;
  margin-bottom: 18px;
  margin-left: 20px;
  width: 80%;
  min-width: 0;
  position: relative;

  box-shadow:
    0 10px 25px rgba(0, 0, 0, 0.75),
    0 0 0 1px rgba(56, 189, 248, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);

  position: relative;
  z-index: 2;
}


.store-card::before,
.store-contact::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 10px;
  background: linear-gradient(90deg,
      rgba(56, 189, 248, 0.08),
      transparent 60%);
  pointer-events: none;
}


@media (max-width: 768px) {
  .store-container {
    flex-direction: column;
    padding: 0;

  }

  .store-image {
    background: url(../images/banner-mobile.jpg);
    background-size: contain;
    background-repeat: no-repeat;
    order: -1;
    min-height: 300px;
    background-position: center;
  }

  .store-info {
    padding: 30px 0;
  }

  .store-info::before,
  .store-card::before,
  .store-contact::before {
    display: none;
  }

  .store-card {
    text-align: center;
    font-size: 1.5rem;
  }

  .store-card,
  .store-contact {
    margin-left: 0;
    margin-right: 0;
    align-self: center;
    max-width: 520px;
  }
}

@media (min-width: 1600px) {

  .store-section {
    display: flex;
    justify-content: center;
    background: #0f172a;
  }

  .store-container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
  }

  .store-image {
    background-position: right center;
    background-size: contain;
  }

  .store-info::before {
    width: 100%;
    left: 0;
    content: unset;
  }
}