/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  background: #faf5ea;
  color: #333;
}

/* TOP BAR */
.top-bar {
  background: #2f5d5b;
  color: white;
  text-align: center;
  padding: 8px;
  font-size: 18px;
}

/* HEADER */
.header {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 250px;
}

.header img {
  max-height: 180px;
  width: auto;
}

/* HERO */
.hero {
  max-width: 2000px;
  margin: 0 auto;
  padding: 40px;
  display: flex;
  gap: 20px;
}

.image-box {
  flex: 1;
}

.image-box img {
  width: 100%;
  height: auto;
  display: block;
}

/* POSTS / BLOG */
.posts {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 80px;
}

.post {
  text-align: left;
}

.post img {
  width: 100%;
  height: auto;
  display: block;
}

.category {
  font-size: 14px;
  color: #777;
  margin: 10px 0;
}

/* SHOP */
.shop {
  background: #f6f2ef;
  padding: 80px 20px;
  text-align: center;
}

.shop h2 {
  font-size: 18px;
  letter-spacing: 2px;
  color: #2f5d5b;
  margin-bottom: 50px;
}

.shop-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 30px;
}

.shop-grid img {
  width: 100%;
  max-width: 180px;
  margin: 0 auto;
  background: #fff;
  padding: 15px;
  box-shadow: 0 6px 12px rgba(0,0,0,0.12);
  transition: transform 0.3s ease;
}

.shop-grid img:hover {
  transform: scale(1.03);
}

/* NEWSLETTER */
.newsletter {
  background: #d9b7d9;
  padding: 40px 20px;
  display: flex;
  justify-content: center;
  gap: 10px;
}

.newsletter input {
  padding: 10px;
  border: none;
  width: 250px;
}

.newsletter button {
  padding: 10px 20px;
  border: none;
  background: #333;
  color: white;
  cursor: pointer;
}

/* FOOTER */
.footer {
  background: #2f5d5b;
  color: #fff;
  padding: 70px 40px 40px;
  font-size: 14px;
}

.footer-top {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 60px;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(2, auto);
  gap: 10px 40px;
}

.footer-links a {
  color: #fff;
  text-decoration: none;
  font-size: 13px;
}

.footer-links a:hover {
  text-decoration: underline;
}

/* ===================== */
/* 📱 MOBILE (até 600px) */
/* ===================== */

@media (max-width: 600px) {

  /* HERO */
  .hero {
    flex-direction: column;
    padding: 20px;
  }

  /* BLOG */
  .posts {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 40px 20px;
  }

  .post {
    text-align: left;
  }

  /* SHOP */
  .shop-grid {
    grid-template-columns: 1fr;
  }

  .shop-grid img {
    max-width: 300px;
  }

  /* FOOTER */
  .footer-top {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* ===================== */
/* 📲 TABLET (até 1024px) */
/* ===================== */

@media (max-width: 1024px) {

  /* BLOG */
  .posts {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .post {
    text-align: center;
  }

  .post img {
    max-width: 500px;
    margin: 0 auto;
  }

  /* SHOP */
  .shop-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .shop-grid img {
    max-width: 220px;
  }
}
.text{
  text-align: center;
}
