
/*********** CONFIGURAÇÕES GERAIS ***********/
@font-face {
  font-family: 'baby';
  src: url('fontes/OoohBaby-Regular.ttf');
}

@font-face {
  font-family: 'opensans';
  src: url('fontes/OpenSans-CondLight.ttf');
}

@font-face {
  font-family: 'Antishbusy';
  src: url('fontes/Antishbusy.ttf')
}

@font-face {
  font-family: 'Sophia Script';
  src: url('fontes/Sophia-Script.ttf')
}

@font-face {
  font-family: 'Dancing Script';
  src: url('fontes/Dancing-Script.ttf');
}

@font-face {
  font-family: 'Helvetica Bold';
  src: url('fontes/Helvetica-Bold.ttf');
}

@font-face {
  font-family: 'Instagram';
  src: url('fontes/Instagram.otf');
}

* {
  scroll-behavior: smooth;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  list-style: none;
  text-decoration: none;
  overflow-x: hidden;
  -webkit-tap-highlight-color: transparent;
}

:root {
  --color1: #BC4584;
  --color2: #FDDCE5;
  --color3: #9C125C;
}

body {
  width: 100%;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: var(--color1);
}

/********** CONFIGURAÇÕES GERAIS **********/



/********** HEADER **********/
header {
  width: 100%;
  position: fixed;
  top: 0;
  z-index: 1;
  font-size: 1.5rem;
  font-weight: normal;
  height: 105px;
  background-color: rgba(255, 255, 255, 0.607);
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 0.5px solid var(--color1);
}

#logo {
  max-height: 99%;
  margin-left: 2%;
  padding-top: 1%;
  padding-bottom: 1%;
}

#logo:hover {
  cursor: pointer;
}

nav {
  width: 70%;
  margin: auto;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  flex-wrap: wrap;
}

.nav-link {
  color: var(--color1);
  position: relative;
}

.nav-link::after {
  border-bottom: 1.5px solid var(--color1);
  display: block;
  content: '';
  transform: scaleX(0);
  transform-origin: bottom right;
  transition: transform 300ms ease-in-out;
}

.nav-link:hover::after {
  transform: scaleX(1);
  transform-origin: bottom left;
}

.nav-link:hover {
  color: var(--color3);
}

.nav-link container {
  /* nav square symbol */
  padding-right: 3px;
}

#searchbar-input {
  font-size: 1.2rem;
  width: 10rem;
  padding: 6px;
  border: none;
  outline: none;
  background: transparent;
}

#searchbar-input::placeholder {
  color: var(--color1);
}

#searchbar::after {
  border-bottom: 1.5px solid var(--color1);
  display: block;
  content: '';
  transform: scaleX(0);
  transform-origin: bottom right;
  transition: transform 300ms ease-in-out;
}

#searchbar:hover:after {
  transform: scaleX(1);
  transform-origin: bottom left;
}

#searchbar-input:focus {
  background-color: rgba(255, 255, 255, 0.404);
  border-bottom: 1.5px solid var(--color1);
  font-size: 1.2rem;
}

#nav-menu-mobile {
  display: none;
}

/********** HEADER **********/



/********** HOME - WELCOME SECTION **********/
#home-welcome {
  width: 100%;
  display: flex;
  flex-direction: column;
  padding: 100px 60px 60px;
  background-image: url(home.jpg); /* IMAGE FROM FREEPIK */
  background-position-y: bottom;
  background-position-x: right;
  background-repeat: no-repeat;
  background-size: cover;
}

#welcome-text {
  padding-top: 15px;
}

#welcome-text h1 {
  font-family: 'baby';
  font-size: 5.2rem;
  font-weight: lighter;
  margin-bottom: 10px;
}

#welcome-text h2 {
  font-weight: lighter;
  font-size: 1rem;
  margin-bottom: 20px;
}

#welcome-button {
  width: 9em;
  padding: 0.4em 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-size: 1.6rem;
  color: var(--color1);
  background: linear-gradient(.25turn, white, var(--color2));
  border: 3px solid var(--color1);
  border-radius: 2em;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
  transition: all 400ms ease-in-out;
  cursor: pointer;
}

#welcome-button:hover {
  transform: scale(1.08);
  box-shadow: 0 4px 8px 0 rgba(255, 255, 255, 0.347);
}

#home-welcome p {
  /* credits to Freepik image */
  position: absolute;
  right: 5px;
  padding-top: 45px;
  font-size: 0.5rem;
}

/********** HOME - WELCOME SECTION **********/



/********** HOME - PREVIEW SECTION **********/
#home-preview {
  margin: 130px 0 130px;
  padding: 0 20px 0;
  position: relative;
}

#home-preview h1 {
  font-size: 1.6rem;
  font-weight: normal;
  text-align: center;
  margin-bottom: 40px;
}

#home-carousel-div-js {
  width: 100%;
}

#carousel-home {
  width: max-content;
  display: flex;
  gap: 30px;
}

.carousel-img-home {
  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

@keyframes move {
  to {
    transform: translate(calc(-50% - 1.5em));
  }
}

/********** HOME - PREVIEW SECTION **********/



/********** HOME - BENEFITS SECTION **********/
#home-benefits {
  max-width: 60%;
  margin: 0 auto 130px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  font-family: 'opensans';
}

.benefits {
  padding: 10px;
  margin-bottom: 40px;
  display: flex;
  flex-direction: row;
  gap: 16px;
  align-items: center;
}

.benefits-img {
  min-width: 10%;
}

.benefits-text {
  font-size: 1.5rem;
  font-weight: lighter;
  max-width: 85%;
}

/********** HOME - BENEFITS SECTION **********/



/********** CATALOGO - INTRO SECTION **********/
#catalogo {
  padding-top: 105px;
}

#catalogo-intro {
  background-image: url(catalogo.jpg);
  background-position-x: right;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 20px 0 130px;
}

#catalogo-intro h1 {
  font-size: 1.6rem;
  font-weight: normal;
  text-align: center;
  margin-bottom: 60px;
}

#catalogo-links {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-left: 12%;
}

.catalogo-link {
  color: var(--color1);
  width: 70%;
  margin-bottom: 50px;
  border-bottom: 1.5px solid var(--color1);
}

.catalogo-link:hover {
  cursor: pointer;
  color: var(--color3);
  border-color: var(--color3);
}

.catalogo-link h2 {
  font-size: 1.4rem;
  font-weight: normal;
}

#back-button-catalogo {
  display: none;
  max-width: fit-content;
  position: absolute;
  opacity: 70%;
  left: 2%;
  padding-top: 30px;
}

#back-button-catalogo:hover {
  opacity: 100%;
  cursor: pointer;
}

/********** CATALOGO - INTRO SECTION **********/



/********** CATALOGO - ITEM SECTIONS **********/
.catalogo-item {
  background-image: url(catalogo.jpg);
  background-position-x: right;
  background-repeat: no-repeat;
  background-size: cover;
  display: none;
  padding: 30px 5%;
}

.catalogo-item-nome {
  max-width: fit-content;
  font-size: 2rem;
  font-family: 'Dancing Script';
  margin: 0 auto 60px;
}

.catalogo-item-conteudo,
.catalogo-item-conteudo-2,
.catalogo-item-conteudo-3,
.catalogo-item-conteudo-4,
.catalogo-item-conteudo-5,
.catalogo-item-conteudo-6,
.catalogo-item-conteudo-7 {
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 0 40px 0;
  margin-bottom: 130px;
}

.catalogo-item-texto h2,
.catalogo-item-texto-2 h2,
.catalogo-item-texto-3 h2,
.catalogo-item-texto-4 h2,
.catalogo-item-texto-5 h2,
.catalogo-item-texto-6 h2,
.catalogo-item-texto-7 h2 {
  font-size: 1.5rem;
  font-weight: normal;
  margin-bottom: 15px;
}

.catalogo-item-texto p,
.catalogo-item-texto-2 p,
.catalogo-item-texto-3 p,
.catalogo-item-texto-4 p,
.catalogo-item-texto-5 p,
.catalogo-item-texto-6 p,
.catalogo-item-texto-7 p {
  font-size: 1.2rem;
  font-weight: normal;
  margin-bottom: 15px;
}

.catalogo-carousel,
.catalogo-carousel-2,
.catalogo-carousel-3,
.catalogo-carousel-4,
.catalogo-carousel-5,
.catalogo-carousel-6,
.catalogo-carousel-7 {
  position: relative;
  width: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.catalogo-img-carousel,
.catalogo-img-carousel-2,
.catalogo-img-carousel-3,
.catalogo-img-carousel-4,
.catalogo-img-carousel-5,
.catalogo-img-carousel-6,
.catalogo-img-carousel-7 {
  max-width: 400px;
  height: 400px;
  object-fit: contain;
  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.catalogo-left-arrow,
.catalogo-right-arrow,
.catalogo-left-arrow-2,
.catalogo-right-arrow-2,
.catalogo-left-arrow-3,
.catalogo-right-arrow-3,
.catalogo-left-arrow-4,
.catalogo-right-arrow-4,
.catalogo-left-arrow-5,
.catalogo-right-arrow-5,
.catalogo-left-arrow-6,
.catalogo-right-arrow-6,
.catalogo-left-arrow-7,
.catalogo-right-arrow-7 {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  opacity: 70%;
  cursor: pointer;
}

.catalogo-left-arrow,
.catalogo-left-arrow-2,
.catalogo-left-arrow-3,
.catalogo-left-arrow-4,
.catalogo-left-arrow-5,
.catalogo-left-arrow-6,
.catalogo-left-arrow-7 {
  left: 0;
}

.catalogo-right-arrow,
.catalogo-right-arrow-2,
.catalogo-right-arrow-3,
.catalogo-right-arrow-4,
.catalogo-right-arrow-5,
.catalogo-right-arrow-6,
.catalogo-right-arrow-7 {
  right: 0;
}

.catalogo-left-arrow:hover,
.catalogo-right-arrow:hover,
.catalogo-left-arrow-2:hover,
.catalogo-right-arrow-2:hover,
.catalogo-left-arrow-3:hover,
.catalogo-right-arrow-3:hover,
.catalogo-left-arrow-4:hover,
.catalogo-right-arrow-4:hover,
.catalogo-left-arrow-5:hover,
.catalogo-right-arrow-5:hover,
.catalogo-left-arrow-6:hover,
.catalogo-right-arrow-6:hover,
.catalogo-left-arrow-7:hover,
.catalogo-right-arrow-7:hover {
  opacity: 100%;
}

/********** CATALOGO - ITEM SECTIONS **********/



/********** SOBRE **********/
#sobre {
  display: none;
  padding-top: 105px;
}

#sobre-titulo {
  max-width: fit-content;
  font-size: 2rem;
  font-family: 'Dancing Script';
  margin: 20px auto 60px;
}

#sobre-conteudo {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-around;
  padding: 0 0 130px;
  max-width: 80%;
  margin: auto;
}

#sobre-texto {
  max-width: 50%;
  display: flex;
  flex-direction: column;
  gap: 20px;
  line-height: 2rem;
  letter-spacing: 0.8px;
}

#sobre-conteudo2 p {
  max-width: fit-content;
  margin: 5px auto 0;
}

#sobre-img {
  max-width: 300px;
  max-height: 500px;
  object-fit: contain;
  border-radius: 30px;
}
/********** SOBRE **********/



/********** FOOTER **********/
footer {
  width: 100%;
  background-color: var(--color2);
  text-align: center;
  position: sticky;
  bottom: 0;
}

footer h1 {
  font-size: 1.6rem;
  font-weight: normal;
  padding: 20px 0 40px;
}

#contact {
  display: flex;
  flex-direction: row;
  gap: 8px;
  justify-content: center;
  align-items: center;
  margin-bottom: 40px;
}

.contact-link {
  background-color: white;
}

.contact-link:hover {
  cursor: pointer;
  background-color: var(--color1);

  #path1whats,
  #path2whats,
  #path3whats,
  #path21whats,
  #path22whats,
  #path1insta,
  #path2insta,
  #path3insta,
  #path21insta,
  #path22insta,
  #path23insta,
  #Icon-Setmail,
  #tspan1whats,
  #tspan1insta {
    fill: white;
  }
}

#whats,
#insta {
  width: 150px;
  height: 60px;
  overflow: hidden;
  border-radius: 30px;
}

#mail {
  width: 60px;
  height: 60px;
  overflow: hidden;
  border-radius: 50%;
}

#footer-copyright img {
  max-width: 150px;
}

#footer-copyright p {
  font-size: 0.75rem;
  padding-bottom: 5px;
}

/********** FOOTER **********/



/********** SCROLL TO TOP BUTTON **********/
#scroll-top {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 20px;
  border: none;
  outline: none;
  cursor: pointer;
  border-radius: 50%;
  padding: 5px 5px 2px;
  background-color: #f3f3f3aa;
}

#scroll-top:hover {
  background-color: #a0a0a0aa;
}

/********** SCROLL TO TOP BUTTON *********/



/* Media Queries */
/* Landscape phones and down */
@media (max-width: 480px) {
  header {
    height: 80px;
  }

  #logo {
    max-width: 75px;
    max-height: 75px;
    padding: 0 10px 0;
  }

  #navbar {
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-content: center;
    position: fixed;
    right: 0;
    top: 80px;
    height: 300px;
    width: 70%;
    border-bottom-left-radius: 30px;
    border-bottom-right-radius: 30px;
    box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2);
    background-color: rgba(255, 255, 255, 0.82);
    transform: translateX(100%);
    transition: transform 0.3s ease-in-out;
  }

  #navbar.navbar-visible {
    transform: translateX(0);
  }

  #nav-menu-mobile {
    display: block;
    position: absolute;
    top: 20px;
    right: 20px;
  }

  #home-welcome {
    padding-bottom: 60px;
  }

  #welcome-text h1 {
    font-size: 4rem;
  }

  #welcome-button {
    align-self: center;
  }

  .benefits {
    flex-direction: column;
    margin-bottom: 4rem;
  }

  .benefits-img {
    max-width: 30%;
  }

  #catalogo {
    padding-top: 80px;
  }

  #text1whats,
  #text1insta {
    display: none;
  }

  #svg1whats,
  #svg1insta {
    display: none;
  }

  #whats,
  #insta {
    width: 60px;
  }
}

/* Landscape phone to portrait tablet */
@media (max-width: 767px) {
  #home-benefits {
    max-width: 80%;
  }

  #home-welcome {
    background-image: url(home2.jpg);
  }
}

/* Portrait tablet to landscape and desktop */
@media (min-width: 768px) and (max-width: 979px) {
  #home-benefits {
    max-width: 80%;
  }
}

@media (max-width: 1000px) {
  #sobre-texto {
    max-width: 100%;
    margin-bottom: 50px;
  }
}

/* Media Queries */
