body,
html {
  overflow-x: hidden;
  scroll-behavior: smooth;
}

:root {
  font-size: 100%;
  --bg-rose: #ffecef;
  --accents-main: #ed028c;
  --secondary-pink: #ff30a9;
  --accents-info: #3a9ced;
  --accents-success: #6dc764;
  --accents-warning: #e7af3c;
  --text-common: #333333;
  --text-white: #ffffff;
  --text-disabled: #b6b6b6;
  --text-secondary: #63515b;
  --accents-yellowhighlight: #e7ff57;
}

@font-face {
  font-family: "Cronos Pro";
  src: url("../fonts/CronosPro-Regular.otf") format("OpenType");
}

@font-face {
  font-family: "Cronos Pro";
  font-weight: bold;
  src: url("../fonts/CronosPro-Semibold.otf") format("OpenType");
}

body {
  font-family: Cronos Pro;
}

h1,
h2,
h3 {
  font-family: "Baloo Tammudu 2", cursive;
  color: var(--accents-main);
}

h1 {
  font-size: 4rem;
  font-weight: 700;
  line-height: 1.05;
}

h2 {
  font-weight: bold;
  font-size: 2.5 rem;
}

h3 {
  font-size: 2.5rem;
}

h4 {
  font-weight: bold;
  color: var(--text-common);
  margin: 1rem 0;
}

h5 {
  font-weight: bold;
  color: var(--accents-main);
  font-size: 1.5rem;
  margin-bottom: 0;
}

h6 {
  font-weight: 700;
  color: var(--text-secondary);
  font-size: 1.25rem;
}

a:hover {
  text-decoration: none;
}

a {
  transition: 0.4s ease;
}

ul {
  list-style-image: url("../assets/icons/ceret.svg");
}

ul li {
  padding-left: 0.5rem;
  line-height: 2.2rem;
}

textarea {
  resize: none;
}

/*-- Buttons --*/
.btn-find {
  visibility: hidden;
  display: none;
}

.btn-padrao {
  background: var(--accents-main);
  color: var(--text-white);
  border-radius: 4px;

  text-decoration: none;
  transition: 0.3s ease;

  font-size: 1.5rem;
  font-weight: bold;
  padding: 1rem 1.5rem;
}

.btn-padrao:hover {
  text-decoration: none;
  background: var(--secondary-pink);
  color: var(--text-white);
}

.btn-secondary {
  margin-top: 20px !important;
  margin-top: 10px;
  background: #4472C4;
  color: var(--text-white);
  border-radius: 4px;

  text-decoration: none;
  transition: 0.3s ease;

  font-size: 1.5rem;
  font-weight: bold;
  padding: 1rem 1.5rem;
}

.btn-seconday:hover {
  text-decoration: none;
  background: #3C65AE;
  color: var(--text-white);
}

.endsession-button {
  text-align: center;
  margin-top: 3rem;
}

.btn-small {
  font-size: 1.25rem;
  padding: 0.5rem 1.5rem;
}

/*-- Forms --*/

.form-control {
  border: none;
  height: calc(2rem + 0.75rem + 12px);
  padding: 0.375rem 1.25rem;
}

.form-control::placeholder {
  color: var(--text-disabled);
}

label {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-secondary);
}

/*-- Navbar --*/

.navbar-light .navbar-nav .nav-link,
.navbar-light .navbar-nav .active > .nav-link {
  color: var(--text-white);
}

.navbar-light .navbar-nav .nav-link {
  font-size: 1.25rem;
  font-weight: normal;
}

.navbar-light .navbar-nav .nav-link:hover {
  opacity: 0.8;
  color: var(--text-white);
}

.nav-img-logo {
  max-height: 85px;
}

.navbar-toggler {
  border: none;
}

.navbar-light .navbar-toggler-icon {
  background-image: url("../assets/icons/menu.svg");
  transition: 0.3s ease;
}

.navbar-light .navbar-toggler-icon:hover {
  opacity: 0.8;
}

.mobile-nav,
.navbar {
  background: var(--accents-main);
}

button:focus {
  outline: none;
}

.session-margin {
  margin-top: 80px;
}

.page-session-margin {
  min-height: 80vh;
  padding-top: 160px;
}

.prod-buttons a {
  margin-right: 0.5rem;
}

/*-- Hero --*/

#hero {
  background-color: var(--bg-rose);
  background-image: url(../assets/waves/hero-wave.svg),
    url(../assets/waves/navbar-wave.svg);
  background-position: center bottom -1px, center top;
  background-repeat: no-repeat, no-repeat;

  display: flex;
  align-items: center;
  position: relative;

  width: 100vw;
  height: 100vh;
}

#hero p {
  font-size: 1.5rem;
  margin-bottom: 2rem;
}

.cake {
  max-height: 100%;
  position: absolute;
  top: 0;
  right: 0;
}

.banner {
  margin-top: 20%;
}

/*-- Produtos --*/

#produtos ul.nav {
  justify-content: center;
  margin-top: 2rem;
}

#produtos ul li.nav-item {
  margin-right: 1rem;
}

.nav-pills .nav-link {
  color: var(--text-disabled);
  transition: 0.4s ease;
  position: relative;
  font-size: 1.25rem;
}

.nav-pills .nav-link:hover {
  color: var(--text-secondary);
}

.nav-pills .nav-link.active {
  background: none;
  color: var(--accents-main);
}

.nav-pills .nav-link::before {
  transition: width 0.4s;
  content: "";
  background: var(--accents-main);

  position: absolute;
  bottom: 8px;

  width: 0px;
  height: 3px;
}

.nav-pills .nav-link.active::before {
  width: 24px;
}

.tab-content {
  width: 100%;
  margin-top: 2rem;
}

.tab-pane p {
  color: var(--text-secondary);
}

.tab-pane .col-lg-4 {
  margin-bottom: 3rem;
}

.tab-pane img {
  max-height: 230px;
}

/*-- Campanha --*/

.wave-session-top,
.wave-session-bottom {
  height: 180px;
  background-repeat: no-repeat;
}

.wave-session-top {
  background-image: url(../assets/waves/wave_area_top.svg);
  background-position: center bottom;
}

.wave-session-bottom {
  background-image: url(../assets/waves/wave_area_bottom.svg);
  background-position: center top;
  margin-top: -2rem;
}

.pink-session {
  background: var(--bg-rose);
}

.pink-session .container {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

#campanha p {
  color: var(--text-secondary);
  margin-bottom: 2rem;
}

/*-- Receitas --*/

.recipemargin {
  margin-top: 4rem;
}

.recipeimage {
  overflow: hidden;
  display: flex;
  justify-content: center;
  position: relative;

  margin-bottom: 0.5rem;
  margin-left: auto;
  margin-right: auto;

  max-height: 256px;
  max-width: 256px;
}

.recipeimage img {
  max-height: 256px;
}

.recipeborder {
  background: var(--accents-main);
  height: 5px;
  width: 100%;

  position: absolute;
  bottom: 0;
}

#receitas p {
  font-size: 1.5rem;
  color: var(--text-secondary);
  font-weight: 700;
}

#receitas a:hover > p {
  color: var(--accents-main);
}

/*-- Sociais --*/

#sociais {
  position: relative;
}

#sociais .socials-mockup {
  background-image: url("../assets/img/mockup-socials_v2.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: right center;

  height: 100%;
  width: 100%;

  position: absolute;
  top: 0;
}

#sociais .pink-session {
  padding-top: 8rem;
  padding-bottom: 8rem;
}

#sociais p {
  color: var(--text-secondary);
}

.sociais-buttons a {
  margin-right: 1rem;
}

.sociais-buttons a svg {
  fill: var(--text-secondary);
  transition: 0.4s ease;
}

.sociais-buttons a:hover > svg {
  fill: var(--accents-main);
}

/*-- Receituario --*/

.receituario-item {
  position: relative;
  width: 100%;
  transition: all 0.4s;
  margin-bottom: 2rem;
}

.receituario-item img {
  max-width: 100%;
}

.receituario-overlay {
  position: absolute;
  top: 0;
  background: rgba(0, 0, 0, 0.75);
  border-radius: 4px 4px 0 0;
  width: 100%;
  height: 100%;
  max-height: 54px;
  transition: max-height 0.2s ease-out;
}

.receituario-link {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem;
  height: 100%;
  max-height: 54px;
  transition: max-height 0.2s ease-out;
}

.receituario-link p {
  margin-bottom: 0;
  font-size: 1.5rem;
  color: var(--accents-yellowhighlight);
  margin-left: 0.5rem;
}

.receituario-link svg {
  fill: var(--accents-yellowhighlight);
}

.receituario-item:hover .receituario-overlay,
.receituario-item:hover .receituario-overlay > .receituario-link {
  max-height: 100%;
  transition: max-height 0.2s ease-in-out;
  border-radius: 4px;
}
/* Videos */
.recipevideo {
  display: flex;
  justify-content: center;
  position: relative;

  margin-bottom: 0.5rem;
  margin-right: auto;
  max-width: 300px;
}

/*-- Contato --*/

.contato-text-wrapper {
  display: flex;
  align-items: center;
  position: relative;
  height: 100%;
}

.contato-text p {
  margin-bottom: 2rem;
}

/*-- Produto --*/
/* .buy-online{
  display: none;
  visibility: hidden;
} */
.produto {
  background-image: url(../assets/waves/navbar-wave.svg);
  background-position: center top;
  background-repeat: no-repeat;
  overflow-y: hidden;
  display: flex;
  align-items: center;
  position: relative;

  width: 100vw;
  min-height: 100vh;
}

.produto-tall {
  padding-top: 180px;
}

.prod-features {
  /* margin: 2rem; */
  margin-top: 10px;
}

.prod-cabecalho {
  font-size: 1.25rem;
  color: var(--text-secondary);
}

.prod-corpo {
  margin: 1rem 0;
}

.prod-buttons {
  margin-top: 2.5rem;
  margin-bottom: 2.5rem;
}

.prod-buttons img {
  margin-top: -4px;
}

.prod-img img {
  max-width: 100%;
}

.prod-img {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: center;
}

.modal-content{
  padding: 0 20px;
}

#tabelanutricional .close {
  text-align: right;
  margin-right: 8px;
}

.product-with-spash{
  display: flex;
}
.product-with-spash img{
  width: 150px;
}
.coberturas-space-header, .recheios-space-header{
  margin-top: 200px;
}
/*-- Receitas - Page --*/

.receita-session {
  margin-bottom: 4rem;
}

.page-receitas {
  background-image: url(../assets/waves/navbar-wave.svg);
  background-position: center top;
  background-repeat: no-repeat;
}

.receita-image {
  max-height: 324px;
  overflow: hidden;

  display: flex;
  justify-content: center;
  align-items: center;

  margin: 2rem auto;
}

.receita-session h5 {
  margin-bottom: 2rem;
}

.ingredientes {
  font-size: 1.25rem;
  color: var(--text-secondary);
  margin-bottom: 1rem;
}

.receita-ingredientes .ingredientes:last-of-type {
  margin-bottom: 2rem;
}

.receita-preparo {
  color: var(--text-secondary);
  margin-bottom: 1rem;
}

/*-- Footer --*/

footer {
  text-transform: uppercase;
  text-align: center;
  padding-bottom: 0.5rem;
}

  .banner img{
    position: absolute;
  }

/*-- Queries --*/

@media (min-width: 992px) {
  .navbar-expand-lg .navbar-nav .nav-link {
    padding-right: 1rem;
    padding-left: 1rem;
  }
}

@media (max-width: 991px) {
  :root {
    font-size: 75%;
  }
  .cake {
    display: none;
  }
  .banner{
    display: flex;
    justify-content: center;
    margin-top: 20%;
  }
  .banner img{
    width: 100%;
    height: 50%;
    position: unset;
  }
  #hero {
    text-align: center;
  }
  .nav-pills .nav-link::before {
    bottom: 4px;

    width: 0px;
    height: 2px;
  }
  .recipemargin {
    text-align: center;
  }
  .socials-mockup {
    display: none;
  }
  #sociais .pink-session {
    text-align: center;
  }
  .contato-text-wrapper {
    margin-bottom: 8rem;
    text-align: center;
  }
  .produto {
    text-align: center;
  }
  .produto .prod-features {
    text-align: left;
    max-width: 200px;
    margin: auto;
  }
  .prod-buttons {
    display: flex;
    flex-direction: column;
    margin-bottom: 50px;
    padding-bottom: 50px;
  }
  .prod-buttons a {
    margin-bottom: 2rem;
  }
  .produto {
    margin-top: 4rem;
    padding-top: 180px;
  }
}

@media (max-width: 1200px) {
  #sociais .pink-session {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
  .prod-buttons .btn-small {
    padding: 0.5rem 0.5rem;
  }
}

@media (max-height: 600px) {
  .nav-img-logo {
    max-height: 60px;
  }
  #hero {
    background-image: url(../assets/waves/hero-wave.svg);
    background-position: bottom;
  }
}

@media (max-height: 800px) {
  .produto {
    padding-top: 180px;
  }
}



/* BANNER POPUP */
/* The Modal (background) */
.modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 9999; /* Sit on top */
  left: 0;
  top: 0;
  padding-top: 50px;
  /* padding-top: 25%; */
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgb(0,0,0); /* Fallback color */
  background-color: rgba(0,0,0,0.7); /* Black w/ opacity */
}

/* Modal Content (image) */
.modal-content {
  margin: 0 auto;
  display: block;
  width: 40%;
  max-width: 90%;
  background-color: transparent;
  border: none;
}

/* Add Animation */
.modal-content, #caption {  
  -webkit-animation-name: zoom;
  -webkit-animation-duration: 0.6s;
  animation-name: zoom;
  animation-duration: 0.6s;
}

@-webkit-keyframes zoom {
  from {-webkit-transform:scale(0)} 
  to {-webkit-transform:scale(1)}
}

@keyframes zoom {
  from {transform:scale(0)} 
  to {transform:scale(1)}
}

/* The Close Button */
.close {
  position: absolute;
  top: 15px;
  right: 35px;
  color: #f1f1f1;
  font-size: 40px;
  font-weight: bold;
  transition: 0.3s;
}

.close:hover,
.close:focus {
  color: #bbb;
  text-decoration: none;
  cursor: pointer;
}

/* 100% Image Width on Smaller Screens */
@media only screen and (max-width: 700px){
  .modal-content {
    width: 100%;
  }
}


.btn-sac {
  display: block;
  text-align: center;
  vertical-align: middle;
  background: var(--accents-main);
  color: var(--text-white);
  border-radius: 4px;
  text-decoration: none;
  font-size: 50px;
  font-weight: bold;
  padding: 50px 10px;
  line-height: 25px;
}
.btn-sac:hover {
  background: var(--secondary-pink);
  color: var(--text-white);
}

.btn-sac span{
  font-size: 25px;
}