@charset "UTF-8";

/*
    Colors:
    Pink 1:
    Pink 2:
    Purple:
    Yellow:
*/

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: sans-serif;
}

body, html {
  background-color: #ffffff;
  height: 100vh;
  width: 100vw;
  position: relative;
  overflow-x: hidden;
}

/* Navbar mobile */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #FF5C63;
  padding: 10px 20px;
}

.logo {
  color: #fff;
  font-size: 24px;
}

.logoi {
  max-width: 40%;
}

.nav-links {
  position: fixed;
  right: 0;
  top: 0;
  height: 100vh;
  background: #333;
  flex-direction: column;
  align-items: center;
  width: 50%;
  transform: translateX(100%);
  transition: transform 0.5s ease-in;
  list-style: none;
  display: flex;
  z-index: 1000;
}

.nav-links li a {
  color: #fff;
  text-decoration: none;
  padding: 20px;
  display: block;
  transition: color 0.3s;
}

.nav-links.nav-active {
  transform: translateX(0);
}

.burger {
  display: block;
  cursor: pointer;
  z-index: 1000;
  margin-right: 15px;
}

.burger div {
  width: 25px;
  height: 3px;
  background: #fff;
  margin: 5px;
  transition: all 0.3s;
}

/* Animação do menu */
@keyframes navLinkFade {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.burger.toggle .line1 {
  transform: rotate(-45deg) translate(-5px, 6px);
}
.burger.toggle .line2 {
  opacity: 0;
}
.burger.toggle .line3 {
  transform: rotate(45deg) translate(-5px, -6px);
}

.logo-2 {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 100px;
  width: 100%;
  height: auto;
  margin: auto;
  margin-top: 10px;
}

.mini-bar {
  height: 0.5vh;
  background: #e66067;
  justify-content: center;
  align-items: center;
  width: 110px;
  max-width: 200px;
  display: flex;
  margin: auto;
  border-radius: 20px;
}

.cake {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 450px;
  width: 100%;
  height: auto;
  margin: 15px left;
}

.a-buttom{
  display: block;
  text-align: center;
  font-size: 1.3em;
  position: absolute;
  color: white;
  background-image: linear-gradient(to bottom, #ee565e, #FF5C63);
  padding: 10px;
  margin-top: -155px;
  margin-left: 220px;
  border: 1px solid #ee565e;
  border-radius: 20px;
  align-items: end;
  width: 230px;
  height: 50px;
  text-decoration: none;
}

.a-buttom:hover {
  background-image: linear-gradient(to bottom, #ff6970, #ff6970);
}

.sweets {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 450px;
  width: 100%;
  height: auto;
  margin: 15px;
}

.b-buttom{
  display: block;
  text-align: center;
  font-size: 1.3em;
  position: absolute;
  color: white;
  background-image: linear-gradient(to bottom, #ee565e, #FF5C63);
  padding: 10px;
  margin-top: -155px;
  margin-left: 50px;
  border: 1px solid #ee565e;
  border-radius: 20px;
  align-items: end;
  width: 230px;
  height: 50px;
  text-decoration: none;
}

.b-buttom:hover {
  background-image: linear-gradient(to bottom, #ff6970, #ff6970);
}

.bar {
  height: 0.5vh;
  background: #e66067;
  justify-content: center;
  align-items: center;
  width: 100%;;
  display: flex;
  margin: auto;
}

.blank-space {
  height: 0.5vh;
  background: white;
  justify-content: center;
  align-items: center;
  width: 100%;;
  display: flex;
  margin: auto; 
}

.space {
  height: 70vh;
  background: #e66067;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 100%;;
  display: flex;
  margin: auto;
}

.space h2 {
  font-family: cursive;
  color: white;
}

.space h2.contact {
  padding-bottom: 550px;
}

.space h2.store {
  
}