@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Bitcount+Grid+Double:wght@100..900&family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&family=Forum&family=Lora:ital,wght@0,400..700;1,400..700&family=Offside&family=Orbitron:wght@400..900;1,400..900&family=Raleway:ital,wght@0,100..900;1,100..900&family=Stalinist+One&family=Tomorrow:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=UoqMunThenKhung&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;
    width: 100%;
  }

  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: 100%;
    height: auto;
    margin-bottom: 50px;
    position: relative;
    aspect-ratio: 16 / 9; /* ou outro valor */
    overflow: hidden;
  }
  #vdb {
    width: 100%;
    height: auto;
  }

.banner::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 20%; /* ou 20% */
  background: linear-gradient(to bottom, rgba(0,0,0,0) 0%, #1a0a21 100%);
  pointer-events: none;
}

.info{
  height: auto;
  width: 78%;
  border-radius: 100px;
  box-shadow: 0px 0px 75px #522566;
  margin-top: 5rem;
  border: #7A3A8E solid 2px;
  background-color: #1a0a21;
}

.info h3{
  font-size: 35px;
  margin: 2rem;
  margin-top: 6rem;
  margin-bottom: 1.5rem;
  letter-spacing: 1px;
  font-weight: 500;
}

.info p{
  font-size: 20px;
  font-weight: 200;
  letter-spacing: 1px;
  margin: 2rem;
  margin-top: 2rem;
}

.info p strong{
  font-weight: 400;
  font-size: 21px;
}

.info button{
  background-color: #522566;
  color: #fff;
  border: none;
  height: 55px;
  width: 250px;
  border-radius: 100px;
  margin: 3rem;
  margin-top: 1rem;
  font-size: 27px;
  letter-spacing: 1px;
  font-weight: 500;
}

.info button:hover{
  background: linear-gradient(90deg,#7A3A8E 0%, #522566 100%);
  font-weight: 500;
  scale: 1.05;
  transition: 0.07s ease;
}

.title{
  margin-top: 6.5rem;
}

.title h2{
  font-size: 60px;
  font-weight: 500;
  letter-spacing: 0.5px;
}

.carousel-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden; 
  padding: 20px 0;
}

.carousel-container {
  display: flex;
  gap: 30px;
  padding: 0 30px;
  scroll-behavior: smooth;
  overflow-x: hidden;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
}

.carousel {
  display: flex;
  gap: 30px; /* Espaçamento entre os cards */
  padding: 10px 30px; /* Espaçamento nas laterais para os cards */
  margin-top: 2rem;
  scroll-behavior: smooth;
  justify-content: flex-start; /* Alinha os itens ao início */
  align-items: center;
}

.card{
  min-width: 500px;
  height: 300px;
  border-radius: 50px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  padding: 20px;
  scroll-snap-align: start; /* Alinha o card ao início da rolagem */
  position: relative;
  overflow: hidden; /* Garante que o conteúdo não vaze */
}

.card:hover{
  scale: 1.03;
  transition: all 0.2s ease;
}

.card p{
  font-size: 28px; /* Tamanho da fonte ajustado */
  font-weight: 700;
  margin-bottom: 0;
  color: #fff;
  text-shadow: 4px 5px 10px rgba(0, 0, 0, 0.7); /* Sombra no texto para melhor leitura */
  text-align: left;
}

.card2 {
  background-image: url('imgs/robo_enfermeiro.png');
  background-size: cover;
  background-position: center;
}

.card1 {
  background-image: url('imgs/lady sleeping uker.png');
  background-size: cover;
  background-position: center;
}

.cb{
  border-radius: 100%;
  height: 50px;
  width: 50px;
  overflow-y: hidden;
  background-color: #1a0a21;
  border: none;
  position: absolute;
}

.cb img{
  height: 100%; /* Tamanho da imagem da seta */
  width: auto;
}

#right{
  right: 20px;
  top: 50%;
}

#left{
  left: 20px;
  top: 50%;
}


footer{
  display: flex;
  align-content: center; 
  justify-content: center;
  text-align: center;
  flex-wrap: wrap;
  margin-top: 180px;
  width: 100%;
  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;
}

.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);
  }
}


@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: #E5C3EE;
  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%;
  }

  .carousel{
    padding: 10px 10px;
  }

  .card{
    min-width: 570px;
    height: 450px;
  }

  .card p{
    font-size: 35px;
  }

  footer{
    margin-top: 150px;
  }

  .typofooter{
    height: 210px;
  }

  .typofooter img{
    width: 800px;
  }
}

@media (max-width: 850px){
  .banner{
    aspect-ratio: 4 / 5;
  }

  .carousel{
    padding: 10px 5px;
  }

  .card{
    min-width: 350px;
    height: 500px;
  }

  footer{
    margin-top: 120px;
  }

  .links{
    display: none;
  }

  .missaofooter{
    width: 95%;
    margin-left: 5rem;
  }

  .typofooter{
    height: 160px;
  }

  .typofooter img{
    width: 600px;
  }
}

@media (max-width: 650px){
  
  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{
    aspect-ratio: 4 / 5;
  }

  .info{
    width: 85%;
    border-radius: 75px;
    box-shadow: 0px 0px 50px #522566;
  }

  .info h3{
    font-size: 30px;
  }

  .info p{
    font-size: 17px;
  }

  .info p strong{
    font-size: 18px;
  }

  .carousel{
    padding: 10px 5px;
  }

  .card{
    min-width: 350px;
    height: 500px;
  }

  footer{
    margin-top: 140px;
  }
  
  .missaofooter{
    width: 90%;
    margin-left: 2rem;
  }
  
  .links{
    display: none;
  }

  .typofooter{
    margin-top: 3rem;
    height: 140px;
    overflow-x: hidden;
  }

  .typofooter img{
    width: 500px;
  }

}

@media (max-width: 500px){
  #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){
  .missaofooter{
    margin-left: 1.5rem;
  }

  .typofooter{
    height: 105px;
  }

  .typofooter img{
    width: 400px;
  }
}

@media (max-width: 400px){
  info{
    width: 85%;
    border-radius: 75px;
    box-shadow: 0px 0px 25px #522566;
  }

  .info h3{
    font-size: 28px;
  }

  .info p{
    font-size: 15px;
  }

  .info p strong{
    font-size: 16px;
  }

  .info button{
    height: 55px;
    width: 200px;
  }

  .title{
    margin-bottom: 0;
  }

  .card{
    min-width: 300px;
    height: 450px;
  }

  .card p{
    font-size: 23px;
  }

  .missaofooter{
    margin-left: 1rem;
  }

  .missaofooter p{
    font-size: 20px;
  }

  .typofooter{
    height: 90px;
  }

  .typofooter img{
    width: 360px;
  }
}