
:root {
  --background-dokanao: #6D56A0;
  --section-details-max-width: 360px;
}
html {
	line-height: 1.15;
	-webkit-text-size-adjust: 100%;
}
body {
      margin: 0;
      font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}
header#site-header {
  display: flex;
  flex-direction: column; 
  justify-content: center; 
  align-items: center;     
  gap: 1.5em;               
  padding: 0;
  z-index: 100000;
}
header#site-header .logo,
header#site-header .menu {
  width: 100%;             
  text-align: center;
}
.menu-principal {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;           
  flex-wrap: wrap;
  gap: 1em;                
  justify-content: center; 
  align-items: center;     
}
.menu-principal li {
  margin: 0;
  padding: 0;
}
.menu-principal li a {
  text-decoration: none;
  color: white;
  padding: 0.5em 1em;
  font-weight: bold;
  font-size: 0.8em;
  display: block;
}
main {
}
footer#site-footer {
  padding: 2em 0 0 0;
  text-align: center;
  color: white;
}
footer#site-footer a {
  text-decoration: none;
  color: white;
}
footer#site-footer .socials {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-end;
}
footer#site-footer .social-icons, 
footer#site-footer .dokanao-mail-contact {
  margin: 0 2em;
  margin-bottom: 1.5em;
  width: calc(var(--section-details-max-width) + 2em);
}
footer#site-footer .social-icons {
  text-align: right;
}
footer#site-footer .dokanao-mail-contact {
  text-align: left;
}
footer#site-footer .social-icons img {
  width: 24px;
  margin: 0 0.2em;
  vertical-align: middle; 
}
@media (max-width: 768px) {
    footer#site-footer .socials {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
        gap: 0.8em;
    }
    footer#site-footer .dokanao-mail-contact {
        margin-bottom: 0.5em;
    }
    footer#site-footer .social-icons {
        text-align: center;
    }
    footer#site-footer .social-icons a {
        display: inline-block;
    }
}
footer#site-footer .copyright {
  font-size: .8em;
}
#back-to-top {
  position: fixed;
  bottom: 80px;
  right: 20px;
  background-color: var(--background-dokanao);
  color: #fff;
  border: none;
  padding: 0.5em;
  width: 2em;
  height: 2em;
  font-size: 2em;
  border-radius: 50%;
  cursor: pointer;
  display: none; 
  z-index: 999;
  box-shadow: 0 2px 5px rgba(0,0,0,0.3);
}
#back-to-top:hover {
  border: solid white 2px;
}
* {
}