/* @import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&display=swap');

@import url('https://fonts.googleapis.com/css2?family=PT+Serif:wght@400;700&display=swap');

@import url('https://fonts.googleapis.com/css2?family=PT+Serif:wght@400;700&family=Quicksand:wght@400;500;700&display=swap'); */

* {
    margin: 0;
    padding: 0;
    
}

html {
    scroll-behavior: smooth;
  }

ul {
    justify-content: center;
}
h4 {
   margin: 32px;
  
}

a {
    text-decoration: none;
    cursor: pointer;
    /* color: #5C0060; */
    font-weight: bold;
}


footer {
    padding-block: 200px;
    background-color: #966798;
    margin-top: 80px;
    color: #f5f5f5;
}

p {
    font-size: 20px;
    margin: 30px;
    
}

.img-logo {
    width: 100px;
}

.body-background {
    font-family: 'Poppins', sans-serif;
    line-height: 150%;

}

.navbar {
    border-bottom: solid 1px #5C0060;
}


.navbar-nav li {
    padding: 10px;
}


.background-card {
    background-color: #966798;
    border-radius: 16px;
    width: 100%;
}

.card-shadow {
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
}

.texto-card-grande {
    color: #f5f5f5;
    padding: 0;

}

.negrito {
    font-weight: bold;
}

.botao-card {
    margin-left: 20px;
    margin-top: 20px;
}

.btn {
    background-color: #f5f5f5;
    margin-bottom: 16px;
    margin-top: 16px;
    margin-left: 20px;
}

.btn:hover {
    background-color: #f5f5f5;
    transform: scale(1.02);
    /* Aumenta um pouco o tamanho do card ao passar o mouse */
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.3);
    /* Adiciona uma sombra mais evidente */
}

.nav {
    display: flex;
    flex-direction: row;
    justify-content: space-between

}

.container-servicos {
    margin-top: 64px;
    padding: 8px;
}

.card {
    background-color: #F4D5ED;
    height: 360px;
    margin-bottom: 20px;
    transition: transform 0.3s ease-in-out;
}
.img-card-pequeno {
    border-radius: 4px 4px 0 0;
    max-width: 100%;
}

.card-title {
    color: #5C0060;
}

.card:hover {
    transform: scale(1.06);
    /* Aumenta um pouco o tamanho do card ao passar o mouse */
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.3);
    /* Adiciona uma sombra mais evidente */

}

.texto-card { 
    margin-left: 8px;
    margin-top: 0;
    text-justify: auto;
}

.bold {
    font-weight: bold;

}



#btnScrollToTop {
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    border-radius: 32px;
    bottom: 10px;
    right: 10px;
    width: 50px;
    height: 50px;
    cursor: pointer;;
    background-color: #F4D5ED;
    transition: opacity 250ms;
  }

  .fa-solid, .fa-arrow-up {
    color: #5C0060;
  }

  .primeiro-card {
    border-radius: 0 16px 16px 0; 
    max-width: 100%;
  }

  .card-img-container {
    display: flex;
    justify-content: flex-end;
  }
  
  .segundo-card {
    border-radius: 0 16px 16px 0;
    max-width: 100%;
    height: auto;
  }
  @media only screen and (max-width: 480px) {
    .primeiro-card {
      border-radius: 0 0px 16px 16px; 
    }

    .segundo-card {
        border-radius: 0 0px 16px 16px;
    }
  }

