@import url('https://fonts.googleapis.com/css2?family=Anaktoria&family=Cardo&display=swap');

@font-face {
  font-family: 'Anaktoria';
  src: url('../fontes/Anaktoria/Anaktoria.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
}

body {
  background-color: #f2c4d0;
  font-family: 'Cardo', serif;
  margin: 0;
  padding: 0;
}

section.vitrine{
  max-width: 60%;
  margin: 20px auto;
  background-color: #fff;
  border-radius: 16px;
  padding: 20px;
  box-sizing: border-box;
  color: #224a50;
}

.vitrine {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}

.col-1 {
  flex: 1;
  min-width: 300px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
  color: #224a50;
}

.col-1 img {
  width: 300px;
  height: auto;
  align-self: center;
}

.col-1 p {
  font-size: 1rem;
  line-height: 1.6;
}

.col-1 button {
  width: fit-content;
  padding: 10px 20px;
  border-radius: 12px;
  border: 2px solid #224a50;
  background-color: #224a50;
  color: #f2f2f2;
  font-family: 'Cardo', serif;
  cursor: pointer;
  transition: background-color 0.3s ease;
  align-self: center;
}

.col-1 button:hover {
  background-color: #1a383d;
}

.col-2 {
  flex: 1;
  min-width: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.col-2 img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
}

.lojas {
  max-width: 60%;
  margin: 20px auto;
  border-radius: 16px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  gap: 40px;
  color: #224a50;
}

.loja {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background-color: #fff;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 2px 6px rgba(34, 74, 80, 0.1);
}

.loja img {
  width: 150px;
  height: auto;
  border-radius: 8px;
  flex-shrink: 0;
  object-fit: contain;
}

.loja .textos {
  flex: 1;
}

.loja h5 {
  font-family: 'Anaktoria', serif;
  font-size: 1.6rem;
  margin-bottom: 12px;
}

.loja p {
  font-size: 1rem;
  line-height: 1.5;
}

/* Responsividade */

@media (max-width: 1024px) {
  section.vitrine,
  .lojas {
    max-width: 90%;
    padding: 15px;
  }

  .vitrine {
    gap: 30px;
  }

  .col-1,
  .col-2 {
    min-width: 250px;
  }

  .lojas {
    padding: 30px 20px;
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .vitrine {
    flex-direction: column;
    gap: 20px;
  }

  .col-1,
  .col-2 {
    min-width: 100%;
    max-width: 100%;
    justify-content: center;
  }

  .col-1 img {
    width: 100%;
    max-width: 300px;
  }

  .col-1 button {
    align-self: center;
    width: 100%;
    max-width: 200px;
  }

  .lojas {
    flex-direction: column;
    padding: 20px 10px;
    gap: 20px;
  }

  .loja {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .loja img {
    width: 80%;
    max-width: 300px;
    margin-bottom: 15px;
  }

  .loja .textos {
    width: 100%;
  }
}

@media (max-width: 480px) {
  section.vitrine,
  .lojas {
    max-width: 100%;
    margin: 10px auto;
    padding: 10px;
  }

  .col-1 p {
    font-size: 0.9rem;
  }

  .col-1 button {
    max-width: 100%;
  }

  .loja p {
    font-size: 0.9rem;
  }

  .loja h5 {
    font-size: 1.3rem;
  }
}
