html {
  scroll-snap-type: y mandatory;
}

body {
  scroll-snap-type: y mandatory;
  transition: background-color 0.5s ease-out;
  max-width: 100vw;
}

header {
  height: 100dvh;
  display: flex;
  flex-direction: column;
  scroll-snap-align: start;
}
.hd1 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1vh 15vw;
  border-bottom: 2px solid var(--line-gray);
}

.hd1 img {
  width: 210px;
}

.hd2 {
  display: flex;
  align-items: center;
  height: 100%;
  width: 750px;
  margin: 0 auto;
  flex-direction: column;
  gap: 5vh;
  overflow: auto;
}
.hd2 h2 {
  font-size: clamp(1.5rem, 0.25rem + 4vw, 2.5rem);
  color: var(--hard-purple);
  font-weight: 900;
  text-align: center;
  margin-block: 5vh 0;
}
.hd2 h3 {
  font-size: clamp(1rem, 0.375rem + 2vw, 1.5rem);
  color: var(--text-black);
  font-weight: 600;
  text-align: justify;
  text-indent: 50px;
  margin-block: 0;
}
.a-purple {
  max-width: 330px;
  padding: 10px 10px;
}

@media screen and (max-width: 1080px) {
  .hd1 {
    justify-content: center;
    border-bottom: none;
  }
  .hd1 img {
    width: 210px;
  }
  .a-yellow {
    display: none;
  }
  .hd2 {
    width: 80vw;
    gap: 3vh;
  }
  .hd2 h2 {
    margin-block: 2vh 0;
  }
}
@media screen and (max-width: 540px) {
}

/* Estilos para Google Nest Hub */
@media screen and (min-width: 600px) and (max-width: 1080px) and (max-height: 850px) {
}
