/*** Font faces ***/
/* Gotham Rounded Book */
@font-face {
  font-family: 'Gotham Rounded';
  src: url('assets/fonts/Gotham-Rounded-Book.woff') format('woff');
  font-weight: 300;
  font-style: normal;
}

/* Gotham Rounded Medium */
@font-face {
  font-family: 'Gotham Rounded';
  src: url('assets/fonts/Gotham-Rounded-Medium.woff') format('woff');
  font-weight: 500;
  font-style: normal;
}

/* Gotham Rounded Bold */
@font-face {
  font-family: 'Gotham Rounded';
  src: url('assets/fonts/Gotham-Rounded-Bold.woff') format('woff');
  font-weight: 700;
  font-style: normal;
}

/*** Variáveis ***/
:root {
  /* Cores */
  --background-color-1: #006E76;
  --background-color-2: #319DA0;
  --ninho-yellow: #FFDA00;

  /* Fontes */
  --font-h1: 700 42px/50px 'Gotham Rounded', sans-serif;
  --font-medium: 500 18px/21px 'Gotham Rounded', sans-serif;
  --font-regular: 300 18px/27px 'Gotham Rounded', sans-serif;
  --font-detail: 300 14px/21px 'Gotham Rounded', sans-serif;

  --font-h1-mobile: 700 22px/30px 'Gotham Rounded', sans-serif;
  --font-medium-mobile: 500 16px/18px 'Gotham Rounded', sans-serif;
  --font-regular-mobile: 300 14px/20px 'Gotham Rounded', sans-serif;
  --font-detail-mobile: 300 11px/16px 'Gotham Rounded', sans-serif;

  /* Paddings */
  --padding-regular: 40px;

  /* Transitions */
  --transition-hover: all .3s ease-out;
  --transition-object-hover: all .2s;
}

body{
  background-color: var(--background-color-1);
}

body[class*="campanha"] .highlighted.yellow,
body:has(header.yellow) .layout-container,
body[class*="campanha"] header.yellow {
    background-color: transparent !important;
}
.default_content,
section.home{
  overflow: inherit;
}
footer:before{
  background-color: var(--background-color-1);
}
body[class*="campanha"] footer {
  margin-top: 0px;
  background-color: var(--background-color-1);
  display: block;
}

.prebanner,
.posbanner{
  display: none!important;
}

.header-ninho-logo{
  display: block!important;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.header-ninho-logo img{
  width: 90px!important;
}

body.scrolled.menuvisible header.menu.floating {
    top: 0px;
    background-color: var(--background-color-1)!important;
}
body.scrolled.menuvisible header.yellow.floating img.oak {
    display: none !important;
}
body.scrolled.menuvisible header.yellow.floating img.white {
    display: block !important;
}

html {
  scroll-behavior: smooth;
}

.ninho-adulto-container {
  position: relative;
  color: #ffffff;
}

.introduction-text > p,
.about-description-text p,
.about-features-text p:first-child,
.about-feature p,
.order-now-description-text p,
.order-now-description-text-regions .order-region p,
footer p,
footer ul li a{
  font: var(--font-regular);
  color: #ffffff;
}

.background-gradient-1 {
  width: 400px;
  height: 400px;
  background-color: #ffffff;
  border-radius: 200px;
  position: absolute;
  top: 20vh;
  right: 300px;
  filter: blur(275px);
  z-index: -1;
}

h1 {
  font: var(--font-h1);
  margin: 0px!important;
}

button {
  all: unset;
  font: var(--font-medium);
  border-radius: 20px;
  display: flex;
  align-items: center;
  padding: 0 40px;
  text-wrap: nowrap;
  line-height: 1;
}

a {
  text-decoration: none;
  color: #ffffff;
}

sup {
  display: inline;
}

.button-span {
  display: flex;
  justify-content: center;
  border-radius: 20px;
  height: 70px;
  box-sizing: border-box;
}

.button-type-1:hover,
.button-type-2:hover {
  background-color: #ffffff !important;
}

.button-type-1:hover {
  color: var(--background-color-1);
}

.button-type-1 {
  border: 3px solid #ffffff;
  transition: var(--transition-hover);
}

.button-type-2 {
  color: var(--background-color-1);
  background-color: var(--ninho-yellow);
  transition: var(--transition-hover);
}

.get-sample-button > .button-span {
  display: inline-flex;
  position: fixed;
  opacity: 0;
  bottom: 40px;
  right: 140px;
  z-index: 999;
}


/*** HEADER ***/

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--padding-regular);
}

.header-powered-by {
  display: flex;
  gap: 20px;
  font: var(--font-detail);
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.header-powered-by p {
  display: flex;
  align-items: center;
}

.header-buttons {
  display: flex;
  gap: 20px;
}

.header-hamburger {
  display: none;
  background-color: var(--highlight-color);
  height: 50px;
  width: 50px;
  border-radius: 10px;
}


/*** INTRODUCTION ***/

.introduction {
  display: flex;
  justify-content: center;
  position: relative;
  padding: 15vh 40px;
  height: calc(100vh - 15vh - 180px);
  min-height: calc(800px - 15vh - 180px);
  /* overflow: hidden; */
}

.divider-1 {
  content: "";
  background-image: url('assets/linha-dourada-1.png');
  background-repeat: no-repeat;
  background-position: center;
  width: 100%;
  height: 542px;
  position: relative;
  margin-top: -370px;
  z-index: -2;
  background-size: 1920px;
}

.introduction-text-container {
  width: 100%;
  display: flex;
  justify-content: flex-end;
}

.introduction-text {
  display: flex;
  flex-direction: column;
  max-width: 600px;
}

.introduction-text h1 {
  margin-bottom: 20px;
}

.introduction-text > p {
  margin-bottom: 40px;
}

.introduction-text-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  }
  
.introduction-text-buttons > .button-span {
  width: 100%;
}

.introduction-image {
  width: 100%;
}

.introduction-image > span {
  display: flex;
  width: 100%;
  position: relative;
  margin-left: 100px;
}

/* Gota 1 */
.introduction-image > span:after {
  content: "";
  height: 117px;
  width: 99px;
  scale: 55%;
  background-image: url('assets/old/gota.png');
  background-repeat: no-repeat;
  position: absolute;
  top: 225px;
  left: -40px;
  animation: gota-1 5s infinite;
}

@keyframes gota-1 {
  0% {
    transform: translate(0) scale(1) rotate(-90deg);
  }
  50% {
    transform: translate(-25px, -25px) scale(1.1) rotate(-90deg);
  }
  100% {
    transform: translate(0) scale(1) rotate(-90deg);
  }
}

/* Gota 2 */
.gota-2 {
  background-image: url('assets/old/gota-2.png');
  background-repeat: no-repeat;
  width: 116px;
  height: 102px;
  scale: 45%;
  position: absolute;
  top: 250px;
  left: 565px;
  animation: gota-2 5s infinite;
}

@keyframes gota-2 {
  0% {
    transform: translate(0) scale(1) rotate(140deg);
  }
  50% {
    transform: translate(-30px, 10px) scale(1.1) rotate(140deg);
  }
  100% {
    transform: translate(0) scale(1) rotate(140deg);
  }
}


/* Leite 1 */
.introduction-image > span:before {
  content: "";
  background-image: url('assets/leite-1.png');
  width: 775px;
  height: 775px;
  position: absolute;
  top: -150px;
  left: -104px;
  z-index: -1;
  animation: leite-1 5s infinite;
}

@keyframes leite-1 {
  0% {
    transform: translate(0);
  }
  50% {
    transform: translate(-10px, -10px);
  }
  100% {
    transform: translate(0);
  }
}

.introduction-image > span > img {
  position: absolute;
  top: -50px;
  left: 45px;
  animation: lata 5s infinite;
}

@keyframes lata {
  0% {
    transform: translate(0) rotate(-9deg);
  }
  50% {
    transform: translate(-10px, -15px) rotate(-8deg);
  }
  100% {
    transform: translate(0) rotate(-9deg);
  }
}

.introduction-image > span > p {
  font: var(--font-detail);
  position: absolute;
  transform: rotate(80deg);
  z-index: 1;
  left: 17px;
  top: 182px;
  animation: gluten 5s infinite;
}

@keyframes gluten {
  0% {
    transform: translate(0) rotate(80deg);
  }
  50% {
    transform: translate(-10px, -20px) rotate(82deg);
  }
  100% {
    transform: translate(0) rotate(80deg);
  }
}




/*** ABOUT ***/

.about {
  padding: 180px 0 40px;
  position: relative;
}


.about-description {
  display: flex;
  gap: 40px;
  margin-bottom: 240px;
}

.about-description > * {
  width: 100%;
}

.about-description-image {
  position: relative;
}

/* Leite 2 */
.about-description-image:before {
  content: "";
  background-image: url('assets/leite-2.png');
  background-repeat: no-repeat;
  background-position: center;
  width: 1004px;
  height: 971px;
  scale: 80%;
  position: absolute;
  right: -60px;
  top: -500px;
  z-index: -1;
  animation: leite-2 6.5s infinite ease;
}

@keyframes leite-2 {
  0% {
    transform: rotate(0deg);
  }
  50% {
    transform: rotate(-3deg);
  }
  100% {
    transform: rotate(0deg);
  }
}

.about-description-image img:first-child {
  transform: rotate(-11deg);
  position: absolute;
  right: 265px;
  top: 0;
  z-index: 2;
  animation: sache-left 6.5s infinite ease;
}

@keyframes sache-left {
  0% {
    transform: translate(0) rotate(-11deg);
  }
  50% {
    transform: translate(0px, -10px) rotate(-11deg);
  }
  100% {
    transform: translate(0) rotate(-11deg);
  }
}

.about-description-image img:last-child {
  transform: rotate(15deg);
  position: absolute;
  right: 120px;
  top: 115px;
  z-index: 2;
  animation: sache-right 6.5s infinite ease;
}

@keyframes sache-right {
  0% {
    transform: translate(0) rotate(15deg);
  }
  50% {
    transform: translate(10px, -5px) rotate(15deg);
  }
  100% {
    transform: translate(0) rotate(15deg);
  }
}

.about-description-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-description h1 {
  margin-bottom: 40px;
}

.about-description-text p {
  max-width: 600px;
}

.about-features {
  display: flex;
  gap: 40px;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 40px 0 240px;
}

/* Leite 3 */
.leite-3 {
  background-image: url('assets/leite-3-2.png');
  background-repeat: no-repeat;
  position: absolute;
  width: 534px;
  height: 634px;
  right: 0;
  scale: 110%;
  bottom: 100px;
  transform: rotate(0deg);
  z-index: -1;
  animation: leite-3 4s infinite ease;
}

@keyframes leite-3 {
  0% {
    transform: scale(1) rotate(0deg);
  }
  50% {
    transform: scale(1.01) rotate(-2deg);
  }
  100% {
    transform: scale(1) rotate(0deg);
  }
}

.about-features-text {
  max-width: 600px;
}

.about-features-text p:first-child {
  margin-bottom: 40px;
}

.about-features-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 20px;
}

.about-feature {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  border-radius: 5px;
  background-color: var(--background-color-2);
  line-height: 20px;
}

.about-feature-icon {
  display: flex;
  align-items: center;
}

.about-features-text-note {
  font: var(--font-detail);
}

.about-features-title {
  max-width: 600px;
}

.divider-2 {
  background-image: url('assets/linha-dourada-2.png');
  background-repeat: no-repeat;
  background-position: center;
  width: 100%;
  height: 450px;
  bottom: 560px;
  position: absolute;
  z-index: -2;
}


/*** ORDER NOW ***/

.order-now {
  display: flex;
  justify-content: center;
  padding: 0 40px 210px;
  position: relative;
  overflow: hidden;
}

.order-now-card {
  backdrop-filter: blur(25px);
  padding: 60px 70px;
  border-radius: 30px;
  max-width: calc(600px * 2 + 40px + 40px);
  box-sizing: border-box;
  width: 100%;
  overflow: hidden;
}

.order-now-card:before {
  content: "";
  position: absolute;
  top: -50px;
  left: -50px;
  right: -50px;
  bottom: -50px;
  background-color: var(--background-color-2);
  z-index: -1;
  filter: blur(25px);
  opacity: 0.6;
}

.order-now-title {
  text-align: center;
  margin-bottom: 40px;
}

.order-now-description {
  display: flex;
  gap: 60px;
  margin-bottom: 40px;
}

.order-now-description-image img {
  border-radius: 20px;
}

.order-now-description-text > p:first-child {
  margin-bottom: 40px;
}

.order-now-description-text p:nth-child(2) {
  margin-bottom: 20px;
}

.order-now-description-text-regions {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.order-now-description-text-regions .order-region {
  display: flex;
  justify-content: center;
  background-color: var(--background-color-1);
  padding: 10px 20px;
  border-radius: 10px;
  line-height: 1;
  width: fit-content;
}

.order-now-description-text-regions .order-region p {
  margin: 0px;
}

.order-now-button {
  display: flex;
  justify-content: center;
}

.background-gradient-2 {
  width: 30%;
  height: 300px;
  background-color: #ffffff;
  border-radius: 200px;
  position: absolute;
  bottom: -200px;
  left: 50%;
  transform: translateX(-50%);
  filter: blur(300px);
  opacity: 0.6;
  z-index: -3;
}

.background-gradient-2-container {
  width: 200%;
  height: 100vh;
  bottom: 0px;
  border-radius: 0 0 50% 50%;
  overflow: hidden;
  position: absolute;
  z-index: -2;
}


/*** FOOTER ***/
.footer-container {
  position: absolute;
  width: 100%;
  z-index: 3;
  background-color: var(--background-color-1);
}


footer {
  display: flex;
  flex-direction: column;
  padding: 0 40px 40px;
  margin-top: calc(2 * 40px);
  position: relative;
  overflow: hidden;
}

.footer-copyright > p {
  margin-top: 80px;
  font: var(--font-detail);
}

.footer-menu {
  display: flex;
  justify-content: space-between;
  width: 100%;

}

.footer-menu > nav {
  font: var(--font-medium);
  display: flex;
  justify-content: flex-end;
  gap: 80px;
}

.footer-menu > nav > a:hover {
  transition: var(--transition-hover);
}

.footer-menu > nav > a:hover {
  color: var(--ninho-yellow);
}

@media screen and (max-width: 1024px) {


  body[class*="campanha"] footer{
    padding-top: 20pxpx;
  }
  /* Linha dourada 2 */

  h1 {
    font: var(--font-h1-mobile);
    margin-bottom: 20px !important;
  }

  p {
    font: var(--font-regular-mobile);
    margin-bottom: 20px !important;
  }

  button {
    font-size: 16px;
  }

  .get-sample-button {
    display: none;
  }

  /*** HEADER ***/

  header {
    padding: 20px;
    position: relative;
    overflow: hidden;
  }



  .header-ninho-logo img {
    width: 75px;
  }

  .header-powered-by {
    align-items: center;
    gap: 10px;
    left: 52%;
  }

  .header-powered-by p {
    font: var(--font-detail-mobile);
    margin-bottom: unset !important;
  }

  .header-powered-by-logo img {
    width: 100px;
  }

  .header-hamburger {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 25px;
    cursor: pointer;
    position: relative;
    z-index: 1000;
    box-sizing: border-box;
  }

  .bar {
    width: 25px;
    height: 2px;
    background-color: #ffffff;
    border-radius: 2px;
    transition: all 0.3s ease-out;
    position: absolute;
  }

  .bar-top {
    top: 14px;
  }

  .bar-middle {
    top: 22px;
  }

  .bar-bottom {
    top: 30px;
  }

  .header-hamburger.open .bar-top {
    transform: rotate(-45deg);
    top: 22px;
  }

  .header-hamburger.open .bar-middle {
    opacity: 0;
  }

  .header-hamburger.open .bar-bottom {
    transform: rotate(45deg);
    top: 22px;
  }

  .header-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
    position: absolute;
    opacity: 0;
    transform: translateX(100%);
    background-color: var(--background-color-2);
    padding-top: 120px;
    width: 100%;
    height: 100vh;
    top: 0;
    left: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
    z-index: 999;
  }
  
  .header-buttons.active {
    opacity: 1;
    transform: translateX(0);
  }

  .header-ninho-logo,
  .header-powered-by {
    z-index: 1000;
    display: none!important;
  }

  .header-buttons.active .button-span {
    margin: 0 20px;
  }


  /*** INTRODUCTION ***/

  .background-gradient-1 {
    width: 300px;
    height: 300px;
    right: 80px;
    top: 450px;

  }

  .introduction {
    padding: 20px 20px;
    flex-direction: column;
    justify-content: unset;
    height: 800px;
  }

  .introduction:after {
    left: 0;
    bottom: 10px;
    height: 360px;
  }

  .introduction-text {
    max-width: unset;
    width: 100%;
  }

  .introduction-text-buttons {
    flex-direction: column;
    gap: 10px;
  }

  .introduction-image {
    scale: 50%;
  }

  .introduction-image > span {
    position: unset !important;
  }

  .introduction-image > span > img {
    top: calc(-50px + 200px);
    left: calc(45px - 120px);
  }

  .introduction-image > span:before {
    top: calc(-150px + 200px);
    left: calc(-104px - 120px);
  }

  .introduction-image > span > .gota-2 {
    top: calc(260px + 200px);
    left: calc(570px - 120px);
  }

  .introduction-image > span:after {
    top: calc(220px + 200px);
    left: calc(-45px - 120px);
  }

  .introduction-image > span > p {
    font: var(--font-regular);
    top: 365px;
    left: -135px;
    color: #ffffff;
  }


  /*** ABOUT ***/

  .about {
    margin: unset !important;
    padding: 20px 20px 0;
    overflow: hidden;
  }

  .about-description {
    flex-direction: column-reverse;
    margin-bottom: 240px;
    gap: 20px;
  }

  .about-description:hover .about-description-image > * {
    top: inherit !important;
    right: unset !important;
    transform: inherit;
  }

  .about-description-image {
    margin-bottom: 80px;
    scale: 90%;
    left: 50%;
    transform: translateX(-50%);
  }

  .about-description-image:before {
    scale: 70%;
    background-image: url('assets/old/ninho-splash.png');
    background-repeat: no-repeat;
    background-position: center;
    width: 588px;
    height: 332px;
    top: -10px;
    left: -135px;
    animation: leite-2-mobile 6.5s infinite ease;
  }

  @keyframes leite-2-mobile {
    0% {
      transform: rotate(-10deg) scale(1);
    }
    50% {
      transform: rotate(0deg) scale(0.95);
    }
    100% {
      transform: rotate(-10deg) scale(1);
    }
  }
  
  .about-description-image img:first-child {
    right: unset !important;
    top: calc(-90px + 90px);
    left: 0;
    animation: sache-left-mobile 6.5s infinite ease;
  }
  
  @keyframes sache-left-mobile {
    0% {
      transform: translate(0) rotate(-11deg);
    }
    50% {
      transform: translate(15px, 0px) rotate(-11deg);
    }
    100% {
      transform: translate(0) rotate(-11deg);
    }
  }

  .about-description-image img:last-child {
    right: unset !important;
    top: calc(100px + 20px);
    left: 150px;
    animation: sache-right-mobile 6.5s infinite ease;
  }

  @keyframes sache-right-mobile {
    0% {
      transform: translate(0) rotate(15deg);
    }
    50% {
      transform: translate(-15px, 0) rotate(15deg);
    }
    100% {
      transform: translate(0) rotate(15deg);
    }
  }

  .about-features {
    margin-bottom: 40px !important;
    padding: 20px;
    flex-direction: column-reverse;
    gap: unset;
  }

  .leite-3 {
    display: none;
  }

  .about-features-list {
    gap: 10px;
    margin-bottom: 20px;
  }

  .about-feature p {
    margin-bottom: unset !important;
    margin-top: 0px!important
  }

  .about-features-text-note {
    font: var(--font-detail-mobile);
  }

  .divider-2 {
    background-size: contain;
    bottom: 530px;
  }


  /*** ORDER NOW ***/

  .order-now {
    padding: 20px;
  }

  .order-now-card {
    padding: 25px;
    margin-bottom: 40px;
  }

  .order-now-title {
    margin-bottom: 20px;
  }

  .order-now-description {
    flex-direction: column;
    gap: 30px;
  }

  .order-now-description-image {
    display: flex;
    justify-content: center;
  }

  .order-now-description-text > p:first-child {
    margin-bottom: 40px !important;
  }

  .order-now-description-text-regions {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    justify-content: center;
    gap: 10px;
  }

  .order-now-description-text-regions .order-region {
    width: unset;
    align-items: center;
  }

  .order-now-description-text-regions .order-region p {
    margin-bottom: unset !important;
  }

  .background-gradient-2-container {
    width: 300%;
  }

  .background-gradient-2 {
    bottom: -100px;
  }


  /*** FOOTER ***/

  footer {
    margin-top: 20px;
    padding: 20px;
  }

  .footer-menu {
    flex-direction: column;
    gap: 40px;
  }

  .footer-menu > nav {
    flex-direction: column;
    gap: 40px;
    font-size: 14px;
  }

  .footer-copyright-logo img {
    width: 170px;
  }

  .footer-copyright > p {
    margin: 40px 0 0 !important;
    font: var(--font-detail-mobile);
  }
}