/* Importações de fontes */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600&display=swap');

@font-face {
    font-family: 'Peanut Butter';
    src: url('fonts/Peanut Butter.ttf') format('truetype'); 
}

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
  }
  
  body{
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f4f4f4;
    position: relative;
  }
  
  section{
    position: relative;  
    height: 450px;
    width: 550px;
    display: flex;
    align-items: center;
  }
  
  .swiper{
    width: 250px;
    
  }

  .swiper-slide.card {
    position: relative;
    overflow: hidden;
  }
  
  .card-content .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color:#ADD8E6;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
    z-index: 1;
  }
  
  .card-content .overlay-text {
    color: #fff;
    font-size: 2.5rem;
    font-family: 'Peanut Butter';
    text-align: center;
    padding: 0 10px;
    margin-bottom: 10px;
  }

  .card-content:hover .overlay {
    opacity: 1;
  }
  
  .card-content .image img {
    width: 100%;
    height: auto;
    display: block;
  }
  .card{
    position: relative;
    background: #fff;
    border-radius: 20px;
    height: 400px;
    margin: 20px 0;
    border: solid #ADD8E6;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    background:#FFFAF5;
    cursor: pointer;
  }
  
  .card .card-content{
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 30px;
    position: relative;
    z-index: 100;
  }
  
  section .card .image{
    height: 100px;
    width: 100px;
    padding: 3px;
    background:#FFFAF5;
    margin-top: 30px;
  }
  
  section .card .image img{
    height: 100%;
    width: 100%;
    object-fit: cover;
  }

  .card .name-profession{
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 20px;
    color: #6096a8;
  } 
  
  .name-profession .name{
    font-family: 'Peanut Butter';;
    font-size: 20px;
    font-weight: 600;
  }
  
  .card .rating{
    display: flex;
    align-items: center;
    margin-top: 18px;
  }
  
  .swiper-pagination{
    position: absolute;
    top: 450px;
    color: white !important;
  }
  
  .swiper-pagination-bullet{
    height: 7px;
    width: 26px;
    border-radius: 25px;
    background: white !important;
  }
  
  .swiper-button-next, .swiper-button-prev{
    opacity: 0.7;
    color: white;
    transition: all 0.3s ease;
  }
  .swiper-button-next:hover, .swiper-button-prev:hover{
    opacity: 1;
    color: #ADD8E6;
  }


/* Links sociais */
.social-links {
    display: flex;
    justify-content: flex-start; 
    gap: 10px;
    position: absolute; 
    bottom: 20px;
    left: 20px;
}

.social-links a {
    text-decoration: none;
}

.social-links i {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 3rem;
    height: 3rem;
    border: 0.2rem solid white;
    border-radius: 50%;
    color: white;
    font-size: 1.5rem;
    transition: 0.2s linear;
    margin: 5px;
}

.social-links i:hover {
    transform: scale(1.3);
    color: black;
    background-color: #87CEEB;
    filter: drop-shadow(0 0 10px #87CEEB);
}

img[src="images/wave.svg"] {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: auto;
    z-index: -1;
    pointer-events: none; 
}
