@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed&display=swap');

*{
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}


body{
    font-family: "Barlow Condensed Bold", sans-serif;
    font-weight: 500;
    background-image: url(img/bgd.jpg);
    background-size: 100%;
    height: 100vh;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-section::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: black;
    opacity: 0.5;
    z-index: -1;
}

.corpo{
    background-color: #ffffff;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    width: 400px;
}

.logo{
    width: 300px;
    height: 90px;
    margin-bottom: 20px;
    margin-top: 10px;
}


.bio{
  margin-bottom: 5px;
}

.site{
  width: 40px;
  height: 35px;
}

.link{
    display: flex;
    align-items: center;
    padding: 5px 10px;
    border-radius: 50px;
    margin: 20px 0;
    text-decoration: none;
    background-color:#54525D;

    p{
        color:#ffffff;
        margin-left: 10px;
    }
    
}

.loading-page{
  position: absolute;
  top: 0;
  left: 0;
  background-color: #ffffff;
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: center;
  justify-content: center;
}

#svg{
  height: 100px;
  max-height: 80%;
  width:300px;
  max-width: 80%;
  animation: grow-and-shrink 4s infinite ease-in-out;
}

@keyframes grow-and-shrink {
    0% {
      transform: scale(1);
    }
    50% {
      transform: scale(1.5);
    }
    100% {
      transform: scale(1);
    }
  }
  
.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 1s ease-out, visibility 1s ease-out;
}

.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 999;
  display: flex;
  align-items: center;
  text-decoration: none;
  background: #25D366;
  border-radius: 50px;
  box-shadow: 0 4px 16px rgba(40, 55, 85, 0.18);
  padding: 12px 11px;
  transition: width 0.3s, background 0.2s, box-shadow 0.2s;
  width: 50px;
  height: 50px;
  overflow: hidden;
}

.whatsapp-float .wa-icon {
  transition: transform 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.whatsapp-float .wa-text {
  margin: left 15px;
  padding-left: 10px;
  color: #fff;
  font-size: 15px;
  white-space: nowrap;
  opacity: 0;
  width: 0;
  transition: opacity 0.3s, width 0.3s;
  font-weight: 600;
}

.whatsapp-float:hover {
  width: 170px;
  background: #128C7E;
  box-shadow: 0 6px 24px rgba(40, 55, 85, 0.22);
}

.whatsapp-float:hover .wa-text {
  opacity: 1;
  width: auto;
}

.email-float {
  position: fixed;
  bottom: 100px; /* acima do botão WhatsApp */
  right: 30px;
  z-index: 999;
  display: flex;
  align-items: center;
  text-decoration: none;
  background: #0072C6; /* cor azul tradicional de e-mails */
  border-radius: 50px;
  box-shadow: 0 4px 16px rgba(0, 114, 198, 0.4);
  padding: 12px 11px;
  transition: width 0.3s, background 0.2s, box-shadow 0.2s;
  width: 50px;
  height: 50px;
  overflow: hidden;
}

.email-float .email-icon {
  display: flex;
  padding-right: 4px;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s;
}

.email-float .email-text {
  margin: 5px;  
  color: #fff;
  font-size: 15px;
  white-space: nowrap;
  opacity: 0;
  width: 0;
  transition: opacity 0.3s, width 0.3s;
  font-weight: 600;
}

.email-float:hover {
  width: 180px;
  background: #005a9e;
  box-shadow: 0 6px 24px rgba(0, 90, 158, 0.6);
}

.email-float:hover .email-text {
  opacity: 1;
  width: auto;
}
