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

body{
  background: #EEE;
}

body::-webkit-scrollbar{
  width: 0;
}

.App{
  position: absolute;
  width: 100vw;
  height: 100vh;
  justify-items: center;
  align-items: center;
  text-align: center;
}

.App .bg-flower{
  height: 35vh;
  background-image: url('../Assets/bg.jpeg');
  background-repeat: no-repeat;
  background-size: contain;
  background-size: 50%;
  background-size: 3em;
  background-size: auto 1em;
  background-size: 100%;
}

.App .container{
  top: -9rem;
  display: flex;
  align-items: center;
  text-align: center;
  justify-content: center;
  position: relative;
}

.App .container .perfil{
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.App .container .perfil .bg-white{
  width: 240px;
  height: 240px;
  display: flex;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  position: relative;
  background: #EEE;
}

.App .container .perfil .bg-white .imagem{
  width: 200px;
  height: 200px;  
  margin-bottom: 6px;
  border-radius: 50%;
  border: solid 7px #FFF;
  padding-bottom: 2rem;
  background-image: url('../Assets/Dani-logo.jpeg');
  background-repeat: no-repeat;
  background-size: contain;
  background-size: 50%;
  background-size: 3em;
  background-size: auto 1em;
  background-size: 110%;
  position: inherit;
}

.App .container .perfil .bg-white .imagem,
.App .container .buttons .button{
  box-shadow: 6px 5px 5px rgba(0, 0, 0, .1);
}

.App .container .perfil .nome{
  font-size: 2rem;
  padding-bottom: .8rem
}

.App .container .perfil .description{
  font-size: 14px;
  font-weight: 600;
  padding-bottom: .8rem
}
.App .container .icones .icon {
  cursor: pointer;
  padding: .2rem;
  transition: .5s;
}

.App .container .icones .icon:hover{
  opacity: .7;
  scale: 1.2;
}

.App .container .buttons{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.App .container .buttons .button{
  justify-items: center;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  border: none;
  background: #FFF;
  color: rgba(0, 0, 0, .9);
  font-weight: 800;
  width: 100%;
  max-width: 350px;
  height: 10vh;
  margin:10px;
  padding: .8rem .8rem;
  text-align: center;
  box-sizing: border-box;
  transition: .3s;
}

#botaoShow{
  margin-left: -0.7px;
  align-items: center;
  position: inherit;
}

.App .container .buttons .button:hover{
  box-shadow: 0 0 0 2px #CCC;
  scale: 1.1;
}

#galeria-feminina,
#galeria-years-fiveteen,
#galeria-casais,
#galeria-casamento,
#galeria-empresa,
#galeria-infantil,
#galeria-gestante,
.App .container .buttons #category{
  display: none;
}

.Seção_de_Galerias {
  max-width: 100%;
  padding: 60px 0;
}

.inner-width {
  width: 100%;
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

.Seção_de_Galerias .gallery {
  display: flex;
  flex-wrap: wrap-reverse;
  justify-content: center;
}

.Seção_de_Galerias .image img {
  width: 100%;
  height: 100%;
  transition: 0.4s;
}

.Seção_de_Galerias .image:hover img {
  transform: scale(1.4) rotate(15deg);
}

.Seção_de_Galerias .image {
  flex: 25%;
  overflow: hidden;
  cursor: pointer;
}

/* PARA A PÁGINA SER RESPONSIVA, O FLEX É AJUSTADO DE ACORDO COM O
  TAMANHO DA PÁGINA - DE 33%, 50% A 100% */
  @media screen and (max-width:960px) {
    .gallery-section .image {
      flex: 33.33%;
    }
  }
  
  @media screen and (max-width:768px) {
    .gallery-section .image {
      flex: 50%;
    }
  }
  
  @media screen and (max-width:480px) {
    .gallery-section .image {
      flex: 100%;
    }
  }