html, body {
  scroll-behavior: smooth;
  background-color: #0B0A07;
  margin: 0;
  padding: 0;
}


* {
  padding: 0;
  font-family: "Montserrat", sans-serif;
  text-decoration: none;
  letter-spacing: .03em;
}


header {
    
  padding-top: 1.25em;
  width: 100%;

  transition: background-color 0.3s ease, backdrop-filter 0.3s ease;
  z-index: 99;
  height: 10vh;
    
}



.menu-toggle{
  display: none;
}

.objInsideHeader {
  width: 100%;
  display: flex;
}
  
.logoArea{
  width: 50%;
 
  padding-left: 8%;
  display: flex;
  align-items: center;
  align-content: center;
  
}
img.logo{
  width: 5.5em;
  padding: 0;
}

.sectionsLinksArea{
  width: 50%;    
 
  padding-right: 8%;
  display: flex;
  align-items: center;
  justify-content: end;
}
nav.secionsLinks{
  display: flex;
  gap: .8em;
}
header .secionsLinks a {
  font-size: 1em;
  color: #fff;
}

header .secionsLinks a:hover {
  color: #710c90;
  border-bottom: 0.1em solid #710c90;
  font-weight: bold;
  transition: 0.2s linear;
}

h1.wTitle{
    color: #fff;
    font-size: 2.3rem;
    text-align: center;
    margin-bottom: 0.3em;
}

p.sectionDescription{
  color: #ccc;
  font-weight: 100;
  font-size: 1.2em;
  margin-top: 0;
 
}

footer{
    background-color: black;
    color: white;
    text-align: center;
    align-content: center;



}

footer p{
    margin:3px 0;
    font-size: 11px;
}
/* Botão flutuante */
#btn-topo {
  transform: rotate(-45deg);
  position: fixed;
  bottom: 130px;
  right: 30px;
  background-color:#2b035d;
  color: white;
  border: none;
  padding: 15px;
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
  box-shadow: 0 4px 8px rgba(0,0,0,0.3);
  transition: background-color 0.3s;
  z-index: 999;
}

#btn-topo:hover {
  background-color: #2c0538;
}

/* Ocultar botão inicialmente */
#btn-topo.hidden {
  display: none;
}


#btn-instagram {
  position: fixed;
  bottom: 70px;
  right: 30px; 
  width: 50px;
  height: 50px;
  background-color: #2b035d;
  color: white;
  border: none;
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
  box-shadow: 0 4px 8px rgba(0,0,0,0.3);
  transition: background-color 0.3s;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

#btn-instagram:hover {
  background-color: #2c0538;
}

@media screen and (max-width: 1024px) {
  h1.wTitle{
    color: #fff;
    font-size: 1.9rem;
    text-align: center;
  }
  #btn-topo{
    display: none;
  }
  #btn-instagram {
    bottom: 30px;
    right: 10px;
  }
}