body {
    overflow-x: hidden;
    margin: 0;
    padding: 0;
    font-family: 'Agbalumo', sans-serif;
                                                
}
nav {
    background-color: #9ccafc; 
    color: #fff;
    height: 8vh;
}
#anaclara:hover {
  color:#3481d3;
  transition: transform 0.6s;
  transform: scale(1.1);
}
#linkanaclara:hover {
  color:#96c9ff;
  transition: transform 0.6s;
  transform: scale(1.1);
}
#link:hover {
  color:#5f9ee0;
}
#link {
  color: #fff;
}
.offcanvas {
  background-color: #10549cd5;
  color: #fff;
}
a {
    text-decoration: none;
    color: #fff;
}
#hero {
    display: flex;
    flex-direction: row;
    justify-content:center;
    align-items: center;
    background-color: #9ccafc;
    width: 100vw;
    height: 120vh;
    overflow-x: hidden;
    
}
#inside-hero {
    border-radius: 50px;
    box-shadow: 10px 10px 20px #055fb3;
    height: 90vh;
    
    
}
#inside-hero video {
    object-fit: cover;
    height: 100%;
    width: 100%;
    border-radius: 50px;
    
}
#sobre {
    display: flex;
    flex-direction: row;
    height: 80vh;
    width: 100vw;
    overflow-x: hidden;
    font-size: 1.7em;
    padding: 20px;
    background-color:#6eb4ff;
    overflow-x: hidden
    ;
}
#sobre h1 {
    color: #10549c;
}
#img_sobre {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40%;
    height: 100%;
}
#img_sobre img {
    height: 90%;
    object-fit: cover;
    width: 90%;
    border-radius: 50px;
}
#txt_sobre {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 60%;
    height: 100%;
}
#txt_sobre_item1 {
    border-bottom: 1px solid #10549c85;
}
.txt_sobre_item {
    height: 50%;
    width: 100%;
    color: #fff;
}
.txt_sobre_subitem1 {
    color: #fff;
    height: 50%;
}
.txt_sobre_subitem2 {
    color: #fff;
    height: 50%;
}
@media (max-width:1500px) {
    #sobre {
        height: 100vh;
        display: flex;
        flex-direction: column;
        font-size: 20px;
    }
    #img_sobre {
        width: 100vw;
    }
    #txt_sobre {
        width: 100vw;
    }
    .txt_sobre_item {
        display: flex;
        flex-direction: column;
    }
}
@media (min-width:500px) {
    #txt_sobre_item1 {
        height: 40%;
    }
    #txt_sobre_item2 {
        height: 60%;
    }
}
@media (min-width:1500px) {
    #txt_sobre_item1 {
        height: 50%;
    }
    #txt_sobre_item2 {
        height: 50%;
    }
    #sobre {
        overflow-y: hidden;
    }
}

#projetos {
  padding-top: 10vh;
  padding-bottom: 10vh;
  background-color: #3b9aff;
  overflow-x: hidden;
}
/* From Uiverse.io by 0xnihilism */ 
.card {
    padding: 20px;
    background: #83bfff;
    border: 6px solid #1474db;
    box-shadow: 12px 12px 0 #1474db;
    transition: transform 0.3s, box-shadow 0.3s;
}
  
  .card:hover {
    transform: translate(-5px, -5px);
    box-shadow: 17px 17px 0 #1474db;
}
  
  .card__title {
    font-size: 32px;
    font-weight: 900;
    color: #1474db;
    text-transform: uppercase;
    margin-bottom: 15px;
    display: block;
    position: relative;
    overflow: hidden;
}
  
  .card__title::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 90%;
    height: 3px;
    background-color: #5eacff;
    transform: translateX(-100%);
    transition: transform 0.3s;
  }
  
  .card:hover .card__title::after {
    transform: translateX(0);
  }
  
  .card__content {
    font-size: 1.5em;
    line-height: 1.4;
    color: rgb(255, 255, 255);
    margin-bottom: 20px;
  }
  
  .card__form {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }
  
  .card__form input {
    padding: 10px;
    border: 3px solid #1474db;
    font-size: 16px;
    font-family: inherit;
    transition: transform 0.3s;
    width: calc(100% - 26px); /* Adjust for padding and border */
  }
  
  .card__form input:focus {
    outline: none;
    transform: scale(1.05);
    background-color: #000;
    color: rgb(68, 51, 167);
  }
  
  .card__button {
    border: 3px solid #1474db;
    background: #1474db;
    color: #fff;
    padding: 10px;
    font-size: 18px;
    left: 20%;
    font-weight: bold;
    text-transform: uppercase;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s;
    width: 50%;
    height: 100%;
  }
  
  .card__button::before {
    content: "Cheque o site!";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 105%;
    background-color: #3b9aff;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateY(100%);
    transition: transform 0.3s;
  }
  
  .card__button:hover::before {
    transform: translateY(0);
  }
  
  .card__button:active {
    transform: scale(0.95);
  }
  
  @keyframes glitch {
    0% {
      transform: translate(2px, 2px);
    }
    25% {
      transform: translate(-2px, -2px);
    }
    50% {
      transform: translate(-2px, 2px);
    }
    75% {
      transform: translate(2px, -2px);
    }
    100% {
      transform: translate(2px, 2px);
    }
  }
  
  .glitch {
    animation: glitch 0.3s infinite;
  }
  
#foot {
  position: relative;
  width: 100vw;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow-x: hidden;
}
#foot video {
  object-fit: cover;
  top: 0;
  left: 0;
  width: 100%;
}
.card-foot {
  position: absolute;
  color: #fff;
}
.card-body {
  background-color: #2080e6e1;
  padding: 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: 30px;
}
/* From Uiverse.io by elisapi */ 
.foot-card {
  width: fit-content;
  height: fit-content;
  background-color: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px;
  gap: 20px;
}

/* for all social containers*/
.socialContainer {
  width: 52px;
  height: 52px;
  background-color: #1462b6;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition-duration: 0.3s;
  border-radius: 30px;
}
/* instagram*/
.containerOne:hover {
  background-color: #d62976;
  transition-duration: 0.3s;
  transform: scale(1.2);
}
/* twitter*/
.containerTwo:hover {
  background-color: #00acee;
  transition-duration: 0.3s;
  transform: scale(1.2);
}
/* linkdin*/
.containerThree:hover {
  background-color: #0072b1;
  transition-duration: 0.3s;
  transform: scale(1.2);
}
/* Whatsapp*/
.containerFour:hover {
  background-color: #128c7e;
  transition-duration: 0.3s;
  transform: scale(1.2);
}

.socialContainer:active {
  transform: scale(0.9);
  transition-duration: 0.3s;
}

.socialSvg {
  width: 17px;
}

.socialSvg path {
  fill: rgb(255, 255, 255);
}

.socialContainer:hover .socialSvg {
  animation: slide-in-top 0.3s both;
}

@keyframes slide-in-top {
  0% {
    transform: translateY(-50px);
    opacity: 0;
  }

  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
