@charset "utf-8";
/* CSS Document */

/* Hero */
.planeta-hero {
  width: 100%;
  position: relative;
  overflow: hidden;
}

.planeta-hero__bg {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.planeta-hero__content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  z-index: 1;
}

.planeta-hero__title {
  margin: 0;
  font-family: 'Sitka Text', Georgia, serif;
  font-size: clamp(2rem, 2.5rem, 3rem);
  line-height: 1.08;
  font-weight: 300;
  text-align: center;
  color: #fff;
	letter-spacing: 0.07em;
}

.planeta-hero__subtitle {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.1875rem, 1.5rem, 1.8125rem);
  font-weight: 300;
  letter-spacing: 0.07em;
  color: #fff;
  text-align: center;
}

.planeta-hero__subtitle span {
  display: block;
}

.planeta-hero + .planeta-editorial {
  margin-top: 8rem;
}

/* Editorial */
.planeta-editorial {
  display: grid;
  grid-template-columns: minmax(320px, 1fr) minmax(320px, 1fr);
  align-items: stretch;
  margin: 0;
  padding: 0;
}

.planeta-editorial__media {
  min-height: 760px;
  overflow: hidden;
}

.planeta-editorial__media:first-child {
  margin-left: 4rem;
}

.planeta-editorial__media:last-child {
  margin-right: 4rem;
}

.planeta-editorial__content:first-child {
  margin-left: 4rem;
}

.planeta-editorial__content:last-child {
  margin-right: 4rem;
}

.planeta-editorial__media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center center;
}

.planeta-editorial__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2rem;
  padding: 5.5rem 7vw;
  color: #2D2D2D;
  background: #fff;
}

.planeta-editorial__content--tint {
  background: #F0EFED;
}

.planeta-editorial__content--white {
  background: #fff;
}

.planeta-editorial__title {
  font-family: 'Sitka Text', Georgia, serif;
  font-size: clamp(1.625rem, 2rem, 2.375rem);
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #2D2D2D;
  margin: 0;
}

.planeta-editorial__subtitle {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0.18em;
  color: #2D2D2D;
}

.planeta-editorial__content p {
  margin: 0;
  max-width: 39rem;
  font-family: 'Poppins';
  font-size: 16px;
  line-height: 1.6;
  font-weight: 400;
  letter-spacing: 0.01em;
}

.planeta-editorial__list {
  margin: 0;
  max-width: 39rem;
  padding-left: 1.25rem;
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  line-height: 1.6;
  color: #2D2D2D;
}

.planeta-editorial__list li {
  margin-bottom: 0.5rem;
}

.planeta-editorial__list li:last-child {
  margin-bottom: 0;
}

/* Instagram */
.instag-section {
  padding: 7rem 3.5rem 4.5rem;
}

.instag-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
  width: 100%;
}

.instag-card {
  display: block;
  aspect-ratio: 4 / 5.7;
  overflow: hidden;
  background: transparent;
  text-decoration: none;
}

.instag-card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center center;
  transition: transform 0.45s ease;
}

.instag-card:hover img {
  transform: scale(1.03);
}

/* Responsive */
@media (max-width: 980px) {
  .planeta-editorial {
    grid-template-columns: 1fr;
  }

  .planeta-editorial__media {
    min-height: 540px;
    margin-left: 0;
    margin-right: 0;
  }

  .planeta-editorial__content {
    padding: 3rem 1.5rem 3.5rem;
    gap: 1.5rem;
    margin-left: 0;
    margin-right: 0;
  }

  .planeta-editorial__content p {
    max-width: 100%;
    font-size: 15px;
    line-height: 1.8;
  }

  .instag-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 600px) {
  .planeta-hero {
    min-height: 440px;
  }

  .planeta-hero__bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .planeta-hero__subtitle span {
    display: inline;
  }

  .planeta-hero__subtitle {
    font-size: 1rem;
  }

  .planeta-hero + .planeta-editorial {
    margin-top: 4rem;
  }

  .planeta-editorial__media {
    min-height: 420px;
  }

  .planeta-editorial__content {
    padding: 2.25rem 1.1rem 2.75rem;
  }

  .planeta-editorial__content p {
    font-size: 14px;
    line-height: 1.75;
  }

  .instag-section {
    padding: 3.5rem 1rem 3rem;
  }

  .instag-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}