body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f8f9fa;
}

/*.navbar {*/
/*    background-color: whitesmoke;*/
/*    padding: 15px;*/
/*    transition: background-color 0.6s;*/
/*    color: #0f293c;*/
/*}*/

/*.navbar.scrolled {*/
/*    background-color: #0f293c;*/
/*}*/

/*.navbar-nav{*/
/*    color: #0f293c;*/
/*    font-weight: bold;*/
/*}*/

.navbar {
    background-color: whitesmoke;
    padding: 15px;
    transition: background-color 0.6s, color 0.6s;
    color: #0f293c;
}

.navbar.scrolled {
    background-color: #0f293c;
    color: whitesmoke;
}

.navbar.scrolled .nav-link {
    color: whitesmoke !important;
}

.navbar.scrolled .navbar-toggler-icon {
    filter: invert(1); /* Inverte a cor do ícone do botão de toggle */
}

.navbar-nav .nav-link {
    color: #0f293c;
    font-weight: bold;
    transition: color 0.6s;
}

.navbar-nav .nav-link:hover {
    color: #0f293c;
    opacity: 0.8;
}

.navbar.scrolled .nav-link:hover {
    color: whitesmoke;
    opacity: 0.8;
}

.jumbotron {
    padding: 100px 0;
}

section {
    padding: 60px 0;
}

h2{
    font-size: 50px;
    font-family: "Roboto", sans-serif;
}

h3{
    font-family: "Roboto", sans-serif;
    font-size: 25px;
}

.header {
background-color: rgb(15, 41, 60);
}

.header img {
    animation: fadeIn 2s ease-in-out;
}
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.blue-container {
    background-color: rgb(15, 41, 60);
}

.card-service{
    color: rgb(15, 41, 60);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card-service:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.card-lawyer{
    background-color: rgb(15, 41, 60);
    /*background-color: rgb(18, 54, 85);*/
    border-color: #0d2942;
    color: whitesmoke;
    padding: 5px 5px;
    border-radius: 20px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.9s ease-out, transform 0.9s ease-out;
}

.card-lawyer.visible {
    opacity: 1;
    transform: translateY(0);
}

.accordion-button {
    background-color: rgb(15, 41, 60);
    color: white;
}

.accordion-button:not(.collapsed) {
    background-color: rgb(18, 54, 85) !important;
    color: white !important;
}

.accordion-button::after {
    content: "";
    background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='white'%3E%3Cpath fill-rule='evenodd' d='M1.646 5.646a.5.5 0 0 1 .708 0L8 11.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: contain;
    width: 1rem;
    height: 1rem;
    transform: rotate(0deg);
}

.accordion-button:not(.collapsed)::after {
    content: "";
    background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='white'%3E%3Cpath fill-rule='evenodd' d='M1.646 5.646a.5.5 0 0 1 .708 0L8 11.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: contain;
    width: 1rem;
    height: 1rem;
    transform: rotate(180deg);
}

.accordion-body{
    background-color: rgb(15, 41, 60);
    color: white;
    transition: max-height 0.3s ease-out, opacity 0.3s ease-out !important;
}

.photo {
    border-radius: 50%;
    width: 300px;
    height: 300px;
    margin: 10px auto;
    overflow: hidden;
    position: relative;
}

.photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.icon-services{
    font-size: 100px;
}

.wpp-icon{
    font-size: 25px;
}

.btn-success{


}

.btn-wpp{
    background-color: rgb(18, 54, 85) !important;
    color: whitesmoke !important;
}

.btn-wpp:hover{
    background-color: whitesmoke !important;
    color: rgb(15, 41, 60) !important;
}

.contact-container{
    display: flex;
    flex-direction: column;
    align-items: start;
}

.header-img-adjust {
    position: relative;
    top: 35px;
}

.photo-vanessa img {
    object-position: center 20%;
}
.background-pattern {
    background-image: url("../images/monograma-bg.png");
    background-repeat: repeat;
    background-position: center;
    background-size: 50px 50px;

    position: relative;
    z-index: 0;
}

.background-pattern::before {
    opacity: 0.1;
}

#title {
    font-family: "Bodoni Moda", serif;
    font-size: 4rem;
    font-weight: 200;
    font-style: normal;
}

#subtitle {
    font-family: "Bodoni Moda", serif;
    font-size: 1rem;
}


