@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap');

html{
  scrollbar-width: thin;
  scrollbar-color: #522566 #1a0a21;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Outfit';
  }
  
  body {
    background-color: #1a0a21;
    color: #ffffff;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow-x: hidden;
  }

    header{
    width: 450px;
    height: 50px;
    border-radius: 50px;
    background-color: #1a0a21;
    text-align: center;
    justify-content: center;
    display: flex;
    padding: 10px;
    margin-top: 10px;
    overflow-y: hidden;
    position: fixed;
    z-index: 1;
}

header ul{
    justify-items: center;
    align-content: center;
    align-items: center;
    display: flex;
    gap: 18px;
    overflow-y: hidden;
}

ul li{
    text-decoration: none;
    list-style: none;
    font-size: 16px;
}

ul li a{
    text-decoration: none;
    color: #fff;
}

ul li:hover{
    font-weight: bold;
}

li a img{
  height: 27px;
  width: auto;
}

#logo{
  height: 25px;
  width: auto;
  margin-top: 12%;
}

li a img:hover{
  height: 30px;
  width: auto;
}

.banner{
    width: 60%;
    height: auto;
    margin-top: 10rem;
    text-align: center;
}

.banner h1{
    font-size: 63px;
    font-weight: 450;
    letter-spacing: 0.5px;
}

.banner h3{
    font-size: 32.5px;
    font-weight: 250;
    margin: 52px;
    margin-bottom: 10px;
}

.banner button{
    font-weight: 400;
    font-size: 25px;
    height: 60px;
    width: 230px;
    border-radius: 50px;
    margin-top: 40px;
    background-color: #BB75CE;
    border: #1a0a21 solid 3px;
    color: #fff;
    cursor: pointer;
}

.banner button:hover{
    scale: 1.07;
    transition: 0.07s ease;
}

.container{
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    flex-wrap: wrap;
    margin-top: 9rem;
}

.card{
    width: 750px;
    height: 375px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    text-align: center;
    flex-direction: column;
    border-radius: 75px;
    box-shadow: 20px 20px 10px #522566;
    border: #522566 solid 2px;
}

.card:hover{
  scale: 1.02;
  transition: all 0.3s ease;
}

.content{
    width: 60%;
    height: 60%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    flex-direction: column;
    color: #fff;
}

.content h1{
    font-size: 52px;
    font-weight: 600;
    margin-bottom: 12px;
}

.content p{
    font-size: 23px;
    margin-top: 10px;
    margin-bottom: 10px;
}

.action{
    width: auto;
    height: 20%;
}

.action button{
    font-weight: 500;
    font-size: 25px;
    height: 47px;
    width: 175px;
    border-radius: 50px;
    margin: 5px;
    cursor: pointer;
}

#BI{
    background-color: #1a0a21;
    border: #E5C3EE solid 3px;
    color: #E5C3EE;
}

#BI:hover{
  scale: 1.05;
  background-color: #E5C3EE;
  color: #1a0a21;
  transition: 0.07s ease;
}

#BII{
    background-color: #BB75CE;
    font-weight: 400;
}

#BII:hover{
  scale: 1.05;
  transition: 0.07s ease;
}

.illustration{
    height: 300px;
    width: 250px;
}

.illustration img{
    height: 100%;
    width: 100%;
    object-fit: cover;
    border-radius: 75px;
}

footer{
  display: flex;
  align-content: center; 
  justify-content: center;
  text-align: center;
  flex-wrap: wrap;
  margin-top: 250px;
  gap: 0.5rem;
}

.missaofooter{
  width: 30%;
  height: auto;
  text-align: left;
}

.missaofooter p{
  font-size: 23px;
  width: 80%;
  margin-top: 15px;
  margin-left: 30px;
  font-weight: 500;
}

.links{
  width: 17%;
  height: auto;
  text-align: left;
  margin-top: 3rem;
}

.links h2{
  margin-bottom: 8px;
}

.links li{
  margin-top: 12px;
}


.typofooter{
  width: 100%;
  height: 250px;
  overflow-y: hidden;
  margin-top: 2rem;
}

.typofooter img{
  height: auto;
  width: 1000px;
  z-index: -1;
}

#logof{
  height: 35px;
  width: auto;
}


@keyframes glowing {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.glow-button {
  position: relative;
  overflow: hidden;
  z-index: 0;
  border: none;
  outline: none;
  background: #1a0a21;
  color: #fff;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.glow-button::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 190%;
  height: 190%;
  background: conic-gradient(from 0deg, #E5C3EE, transparent, #E5C3EE);
  animation: glowing 4s linear infinite;
  z-index: -2;
  transition: background 0.3s ease, animation 0.3s ease;
}

.glow-button::after {
  content: '';
  position: absolute;
  inset: 2px;
  background: #1a0a21;
  border-radius: 50px;
  z-index: -1;
  transition: background 0.3s ease;
}

.glow-button:hover {
  color: #1a0a21;
  background: #BB75CE;
}

.glow-button:hover::before {
  animation: none;
  background: #BB75CE;
}

.glow-button:hover::after {
  background: #BB75CE;
}

@media (max-width: 1050px){
  .links{
    width: 20%;
  }

  footer{
    margin-top: 150px;
  }

  .typofooter{
    height: 210px;
  }

  .typofooter img{
    width: 800px;
  }
}

@media (max-width: 850px){
  .banner{
    width: 75%;
  }

  .banner h1{
    font-size: 47px;
  }

  .banner h3{
    font-size: 28.5px;
  }

  .card{
    width: 650px;
    height: 350px;
  }

  .content h1{
    font-size: 48px;
  }

  .content p{
      font-size: 20px;
  }

  .action button{
    font-weight: 500;
    font-size: 23px;
    height: 42px;
    width: 150px;
  }

  .illustration{
    height: 320px;
    width: 240px;
  }

  footer{
    margin-top: 120px;
  }

  .links{
    display: none;
  }

  .missaofooter{
    width: 95%;
    margin-left: 5rem;
  }

  .typofooter{
    height: 160px;
  }

  .typofooter img{
    width: 600px;
  }
}

@media (max-width: 690px){
  
  header{
    margin-top: 1rem;
    width: 370px;
    height: 47.5px;
  }

  header ul{
    gap: 15px;
  }

  ul li{
    font-size: 14px;
  }

  #logo{
    height: 22px;
    width: auto;
    margin-top: 12%;
  }

  li a img{
    height: 26px;
  }

  .banner{
    width: 80%;
  }

  .banner button{
    font-size: 22px;
    height: 58px;
    width: 200px;
  }

  .banner h1{
    font-size: 35px;
  }

  .banner h3{
    font-size: 23.5px;
  }

  .card{
    width: 450px;
    height: 300px;
  }

  .content h1{
    font-size: 40px;
    margin-bottom: 2.5px;
  }

  .content p{
      font-size: 16px;
  }

  .action button{
    font-weight: 500;
    font-size: 17px;
    height: 37px;
    width: 100px;
  }

  #BI{
    border-width: 2px;
  }

  .illustration{
    height: 280px;
    width: 100px;
  }

  footer{
    margin-top: 180px;
  }
  
  .missaofooter{
    width: 90%;
    margin-left: 2rem;
  }
  
  .links{
    display: none;
  }

  .typofooter{
    margin-top: 3rem;
    height: 140px;
    overflow-x: hidden;
  }

  .typofooter img{
    width: 500px;
  }

}

.toast {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: #1a0a21;
  border: 2px solid #BB75CE;
  color: #fff;
  padding: 16px 22px;
  border-radius: 30px;
  font-size: 16px;
  box-shadow: 0 0 20px rgba(187, 117, 206, 0.35);
  z-index: 9999;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.3s ease;
}

.toast.show {
  opacity: 1;
  transform: translateY(0);
}

.toast.hidden {
  pointer-events: none;
}

/* Responsivo */
@media (max-width: 600px) {
  .toast {
    right: 50%;
    transform: translate(50%, 20px);
    bottom: 20px;
    font-size: 14px;
  }

  .toast.show {
    transform: translate(50%, 0);
  }
}


@media (max-width: 500px){
  .card{
    width: 400px;
    height: 240px;
    border-radius: 70px;
    box-shadow: 10px 10px 5px #522566;
  }

  .content h1{
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 1px;
  }

  .content p{
    font-size: 14px;
  }

  .action button{
    font-weight: 500;
    font-size: 16px;
    height: 35px;
    width: 100px;
  }

  #BI{
    border-width: 2px;
  }

  .illustration{
    height: 200px;
    width: 80px;
  }

  #logof{
    height: auto;
    width: 50px;
  }

  .typofooter{
    height: 120px;
  }

  .missaofooter{
    overflow-x: hidden;
    margin-left: 2rem;
  }

  .missaofooter p{
    font-size: 21.5px;
  }

  .typofooter img{
    width: 450px;
  }
}

@media (max-width: 450px){
  .banner{
    width: 100%;
    padding: 10px;
  }

  .banner h1{
    font-size: 35px;
  }

  .banner h3{
    font-size: 22px;
  }

  .card{
    box-shadow: none;
  }

  .missaofooter{
    margin-left: 1.5rem;
  }

  .typofooter{
    height: 105px;
  }

  .typofooter img{
    width: 400px;
  }
}

@media (max-width: 400px){
  .illustration{
    display: none;
  }

  .content{
    width: 95%;
  }

  .card{
    width: 370px;
    height: 230px;
    border-radius: 70px;
  }

  .missaofooter{
    margin-left: 1rem;
  }

  .missaofooter p{
    font-size: 20px;
  }

  .typofooter{
    height: 90px;
  }

  .typofooter img{
    width: 360px;
  }
}