.hiro {
  width: 100%;
  margin-top: 72px;
  /* margin-bottom: 42px; */
  margin-bottom: -12px;
  object-fit: cover;
}

.carrousel {
  overflow: hidden;
  background-color: var(--orange);
  padding: 24px 0 18px;
}

.carrousel .inner {
  animation: carrousel 30s linear 0s infinite;
  white-space: nowrap;
  display: inline-block;
}

.carrousel .inner img {
  height: 120px;
  margin: 0 ;
}

@keyframes carrousel {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(0%);
  }
}

.allnatural {
  overflow: hidden;
}

.allnatural .inner {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 24px;
  padding: 24px 0;
}

.allnatural span {
  white-space: nowrap;
  text-transform: uppercase;
  font-family: YRTBangBang;
  margin: 0;
  font-size: 38px;
}

.allnatural img {
  height: 42px;
}

.oquee {
  background-color: var(--green);
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
  padding: 120px 0 140px;
  overflow: hidden;
}
.oquee img {
  width: 43vw;
}
.oquee .left {
  margin-left: -10vw;
}
.oquee .right {
  margin-right: -10vw;
  transform: scaleX(-1);
}
.oquee .content {
  text-align: center;
  display: flex;
  align-items: center;
  flex-direction: column;
}
.oquee h1 {
  font-size: 78px;
  margin-bottom: 0;
  margin-top: 0;
  font-family: YRTBangBang;
  font-weight: normal;
}
.oquee p {
  font-size: 18px;
  max-width: 400px;
}
.oquee .cta {
  background-color: var(--yellow);
  padding: 12px 64px;
  border-radius: 30px;
  text-decoration: none;
  color: black;
  text-transform: uppercase;
  font-size: 14px;
  margin-top: 12px;
}

.products {
  background-color: var(--pink);
  overflow: hidden;
  padding: 72px 0 32px;
  position: relative;
}

.products > h2 {
  margin-top: 32px;
  text-align: center;
  padding: 0 24px;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 32px;
}

.products .cans {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  padding: 0 24px;
  z-index: 1;
}

.products .product {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  user-select: none;
}

.products .product .bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  transition: transform 200ms, opacity 200ms;
  opacity: 0;
  transform: scale(0.9);
}

.products .product .can {
  width: 60%;
  transition: transform 200ms;
}

.products .product h2 {
  font-family: YRTBangBang;
  font-weight: normal;
  font-size: 54px;
  text-align: center;
  margin-top: 0;
  transition: opacity 200ms;
  opacity: 0;
  position: relative;
  z-index: 1;
}

.products .product:hover .can {
  transform: scale(0.9);
}
.products .product:hover .bg {
  opacity: 1;
  transform: scale(1);
}
.products .product:hover h2 {
  opacity: 1;
}

.products .grid {
  bottom: 0;
  left: 0;
  position: absolute;
}

.components {
  background-color: var(--green);
  padding: 64px 0 120px;
  text-align: center;
  font-weight: 600;
  font-size: 20px;
  text-transform: uppercase;
  overflow: hidden;
}

.components .content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  flex-direction: flex;
  display: grid;
  grid-template-columns: 1fr 1fr;
  justify-content: center;
}
.components .col {
  padding: 0 24px;
  position: relative;
  z-index: 2;
}
.components .col:first-child:after {
  content: " ";
  height: 100%;
  position: absolute;
  right: 0;
  top: 0;
  border-right: solid 2px black;
  pointer-events: none;
}

.components .col p {
  margin-bottom: 1.5em;
}

.components h2 {
  margin-bottom: 2em;
  position: relative;
  z-index: 3;
}

.components .content h3 {
  font-family: YRTBangBang;
  font-weight: 300;
  font-size: 72px;
  margin: 0;
  margin-bottom: 0.5em;
}
.components .content span:hover {
  background-color: var(--pink);
}

.components .bg {
  position: absolute;
  left: 50%;
  width: 150%;
  max-width: 650px;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
  pointer-events: none;

}

.energy {
  background: var(--orange);
  overflow: hidden;
}

.energy h2 {
  margin-bottom: 0;
}

.energy .anim {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 85vh;
  margin-bottom: 72px;
}

.energy .anim img {
  position: absolute;
  left: 15%;
  right: 15%;
  width: 70%;
  transform: scale(1);
  animation: energy 5s ease 0s infinite;
}

@keyframes energy {
  0% {
    transform: scale(1);
  }
  25% {
    transform: scale(0.8);
  }
  50% {
    transform: scale(2);
  }
  75% {
    transform: scale(0.8);
  }
  100% {
    transform: scale(1);
  }
}

.energy .anim h1 {
  font-size: 25vh;
  line-height: 22vh;
  user-select: none;
  margin: 0;
  position: relative;
  z-index: 2;
  text-transform: uppercase;
  text-align: center;
}

.energy .focos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  margin-bottom: 24px;
}

.energy .circle {
  position: relative;
  background: var(--pink);
  height: 0;
  padding-bottom: 100%;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.energy .beam {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  animation: rotate 30s linear 0s infinite;
}

@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.energy .illus {
  position: absolute;
  z-index: 1;
  height: 70%;
  top: 15%;
}

.energy .focos h2 {
  margin-top: 18px;
  margin-bottom: 32px;
  font-size: 22px;
  line-height: 1em;
  text-align: center;
  text-transform: uppercase;
}

.energy > p {
  max-width: 1120px;
  font-size: 20px;
  text-align: center;
  padding: 0 24px;
  margin: 0 auto;
  margin-top: 2em;
  margin-bottom: 5em;
  line-height: 1.4em;
}

.ingredients {
  overflow: hidden;
  padding-top: 24px;
  padding-bottom: 96px;
}

.ingredients .grid {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 32px 12px;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 24px;
  align-items: end;
  justify-content: center;

}

.ingredients .grid img {
  max-width: 90px;
  max-height: 95px;
  transition: transform 300ms;
}

.ingredients .grid > div {
  display: grid;
  grid-template-rows: 120px 34px;
  place-items: center;
  width: 180px;
  gap: 6px;
}

.ingredients .grid p {
  text-align: center;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  margin: 0;
  max-width: 80%;
}

.ingredients .grid > div:hover img {
  animation: illusanim 300ms ease 0s forwards;
}

@keyframes illusanim {
  0% {
    transform: rotate(0deg);
  }
  33% {
    transform: rotate(-8deg);
  }
  66% {
    transform: rotate(8deg);
  }
  100% {
    transform: rotate(0deg);
  }
}

.social {
  background-color: var(--lightblue);
  overflow: hidden;
  padding-bottom: 64px;
}

.social h2 {
  font-size: 64px;
  font-family: YRTBangBang;
  max-width: 455px;
  margin: 64px auto 32px;
}

.social .links {
  display: flex;
  justify-content: center;
  gap: 22px;
  margin-bottom: 32px;
}
.social .links a {
  padding: 18px;
  background-color: var(--yellow);
  border-radius: 100%;
  border: solid 2px black;
}
.social .links img {
  width: 38px;
  height: 38px;
  object-fit: contain;
  margin-bottom: -2px;
}

.social .gallery {
  overflow: hidden;
  padding-bottom: 32px;
}

.social .gallery .inner {
  animation: gallery 30s linear 0s infinite;
  white-space: nowrap;
  display: inline-block;
}

.social .gallery .inner img {
  margin: 0;
}

.social .illus {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  display: block;
  margin-top: 64px;
  pointer-events: none;
}

@keyframes gallery {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-50%);
  }
}

@keyframes hiromobile {
  0% {
    transform: translateX(0%);
  }
  50% {
    transform: translateX(-15%);
  }
  100% {
    transform: translateX(0%);
  }
}

@media screen and (max-width: 940px) {
  .energy .focos {
    grid-template-columns: 1fr 1fr;
  }
}

@media screen and (max-width: 760px) {
  .hiro {
    height: 100vw;
  }
  .mobilehiro {
    overflow: hidden;
    width: 100vw;
    margin-top: 12px;
    margin-bottom: -5px;
  }
  .mobilehiro img {
    width: 120%;
    height: auto;
    margin-left: -10%;
    margin-bottom: 0;
  }
  .carrousel .inner img {
    height: 40px;
  }
  .allnatural img {
    height: 28px;
  }
  .allnatural span {
    font-size: 24px;
  }
  .components {
    font-size: 18px;
    padding-top: 32px;
    padding-bottom: 72px;
  }
  .components .content {
    grid-template-columns: 1fr;
    gap: 64px;
  }
  .components .content .col:first-child:after {
    content: none;
  }
  .components .bg {
    width: 200%;
    max-width: none;
  }
  .components .content span {
    white-space: wrap;
    font-size: 14px;
    padding: 12px 16px;
  }
  .energy .focos h2 {
    font-size: 16px;
  }
  .oquee {
    grid-template-columns: 1fr;
    justify-items: center;
    padding: 24px 12px 42px;
  }
  .oquee h1 {
    font-size: 52px;
    margin-top: 18px;
  }
  .oquee p {
    font-size: 16px;
  }
  .oquee .cta {
    padding: 12px 28px;
  }
  .products {
    padding-top: 0px;
  }
  .products > h2 {
    font-size: 18px;
  }

  .products .product .can {
    transform: scale(0.9);
  }
  .products .product .bg {
    opacity: 1;
    transform: scale(1);
  }
  .products .product h2 {
    opacity: 1;
    font-size: 42px;
  }
  .energy .anim {
    height: 100vw;
  }
  .energy .anim h1 {
    font-size: 60px;
    line-height: 1em;
  }
  .energy .anim img {
    width: 150%;
    left: -25%;
    right: -25%;
  }
  .energy > p {
    font-size: 16px;
  }
  .ingredients .grid {
    padding: 0 12px;
    justify-content: space-around;
  }
  .ingredients .grid > div {
    width: calc(50% - 12px);
    gap: 0;
    grid-template-rows: 100px 32px;
  }
  .ingredients .grid img {
    max-width: 78px;
    max-height: 80px;
  }
  .ingredients .grid p {
    font-size: 12px;
  }
  .social {
    padding-bottom: 0;
  }
  .social h2 {
    font-size: 54px;
  }
  .social .gallery .inner img {
    height: 100vw;
  }

  .social .illus {
    width: 140%;
    margin-left: -20%;
    margin-bottom: 0;
  }
}

@media screen and (max-width: 420px) {
  .energy .focos {
    grid-template-columns: 1fr;
  }
}

