@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900&display=swap');

:root {
    --corPrincipal: #275A6F;
    --corHover: #1f4b5e;
    --corActive: #183947;
    --corPrincipalLight: #306f8a;
    --corPrincipalLight2: #367b99;
    --corBg: #fff;
}

* {
    font-family: "Poppins", sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    width: 100%;
    background: var(--corBg);
    background-attachment: fixed;
}

header {
    width: 100%;
    height: 20rem;
}

.container {
    display: flex;
    width: 100%;
    flex-direction: column;
}

.navbar-container {
    display: flex;
    width: 100%;
    height: 19rem;
    flex-direction: column;
    align-items: center;
    padding: 2%;
    justify-content: flex-start;
    background: rgb(9, 19, 24);
    background: linear-gradient(90deg, rgba(9, 19, 24, 1) 0%, rgba(44, 92, 115, 1) 35%, rgba(17, 81, 94, 1) 100%);
}

.navbar {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}

.logo {
    display: flex;
    width: 10rem;
    height: 10rem;
}

.logotipo {
    width: 100%;
}

.navlist {
    display: flex;
    list-style: none;
}

.nav-item {
    margin-top: 35px;
    margin-left: 32px;
    margin-bottom: 5px;
}

.nav-item a {
    position: relative;
    font-size: 20px;
    font-weight: 400;
    color: var(--corBg);
    text-decoration: none;
    outline: none;
    color: #b29049;
    letter-spacing: 1px;
    padding: 0 10px;
}

.nav-item a:hover {
    color: #d1ad5f;
}

.nav-item a:after {
    content: "";
    position: absolute;
    background-color: #d1ad5f;
    height: 3px;
    width: 0;
    left: 0;
    bottom: -10px;
    transition: 0.3s;
}

.nav-item a:hover:after {
    width: 100%;
}

.navbar-container-mobile {
    display: none; 
}

.navbar-mobile {
    display: none;
    position: absolute;
    top: 80px;
    width: 100%;
    align-items: center;
    justify-content: center;
    height: 18rem;
    background: var(--corPrincipal);
    z-index: 1;
    opacity: 0;
    transform: translateY(-100%);
    transition: transform 0.3s ease-out, opacity 0.3s ease-out;
}

.navbar-mobile.show {
    opacity: 1;
    transform: translateY(0);
}

#menu-toggle:checked ~ .navbar-mobile {
    display: block;
}

.navlist-mobile {
    opacity: 0;
    transition: opacity 0.3s ease-out, transform 0.3s ease-out;
}

.navlist-mobile.show {
    opacity: 1;
    transform: translateX(0);
}

.nav-item-mobile {
    transform: translateX(-100%);
    transition: transform 0.3s ease-out;
}

.nav-item-mobile {
    margin-top: 25px;
    margin-left: 20px;
    margin-bottom: 5px;
}

.nav-item-mobile a {
    position: relative;
    font-size: 20px;
    font-weight: 400;
    color: var(--corBg);
    text-decoration: none;
    outline: none;
    color: #b29049;
    letter-spacing: 1px;
    padding: 0 10px;
}

.nav-item-mobile a:hover {
    color: #d1ad5f;
}

.nav-item-mobile a:after {
    content: "";
    position: absolute;
    background-color: #d1ad5f;
    height: 3px;
    width: 0;
    left: 0;
    bottom: -10px;
    transition: 0.3s;
}

.nav-item-mobile a:hover:after {
    width: 100%;
}

.banner {
    display: flex;
    width: 100%;
    height: 6rem;
    align-items: center;
    justify-content: center;
}

.banner-content {
    display: flex;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
}

#btnWhatsapp {
    display: flex;
    width: 16rem;
    height: 60px;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: rgb(120, 211, 120);
    border-radius: 5px;
    font-size: 15px;
    border: none;
    color: white;
    cursor: pointer;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;

    &:hover {
        background: rgb(99, 179, 99);
    }

    &:active {
        background: rgb(83, 155, 83);
    }
}

#btnWhatsapp i {
    font-size: 24px;
    margin-right: 10px;
}

.escritorio-section {
    display: flex;
    text-align: center;
    padding: 4%;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 100%;
    height: auto;
    min-height: 43rem;
    background: var(--corBg);
    color: #fff;
}

.escritorio-section h2 {
    color: var(--corPrincipal);
    font-size: 26px;
    font-weight: 600;
    padding-left: 8%;
    padding-left: 8%;
    margin-bottom: 10px;
    margin-top: -3%;
}

@media screen and (min-width: 4000px) {
    .navbar-container {
        height: 25rem;
    }
}

.barra3 {
    display: flex;
    width: 100px;
    height: 5px;
    background: var(--corPrincipal);
    margin-top: 20px;
    margin-bottom: 10px;
    z-index: 5;
}


.card-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    width: 80%;
    margin-left: 3%;
    max-width: 1200px;
    margin-top: 2rem;
}

.card {
    width: 300px;
    padding: 2%;
    text-align: left;
    background: white;
    height: 23rem;
    color: var(--corPrincipal);
    border-radius: 5px;
    border: 2px solid #b29049;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 15px -3px, rgba(0, 0, 0, 0.05) 0px 4px 6px -2px;
}

.icon {
    display: flex;
    width: 60px;
    height: 60px;
    text-align: center;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    font-size: 30px;
    cursor: pointer;
    font-weight: 400;
    color: var(--corActive);
    background: #b29049;
    margin-bottom: 15px;
    transition: background 0.3s;
}

.icon:hover {
    background: #d1ad5f;
}

.card h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
}

.card p {
    text-align: justify;
    font-size: 14px;
    color: rgb(80, 80, 80);
}

.btn-card {
    display: flex;
    margin-top: 60px;
    width: 370px;
    text-align: center;
    justify-content: center;
    cursor: pointer;
    align-items: center;
    height: 50px;
    font-size: 18px;
    background-color: #b29049;
    border-radius: 5px;
    color: white;
    border: none;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 15px -3px, rgba(0, 0, 0, 0.05) 0px 4px 6px -2px;
    transition: background 0.3s;

    &:hover {
        background: #836932;
    }

    &:active {
        background: #5e4a20;
    }
}


.relatar-caso {
    display: flex;
    position: relative;
    width: 100%;
    height: auto;
    min-height: 30rem;
    background-image: url(./Imagens/paciente-imgfp.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    text-align: center;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 4%;
    color: white;
}

.imagem-fundo {
    width: 100%;
    height: 100%;
}

.imagem-fundo img {
    width: 100%;
}

.filtro {
    position: absolute;
    background-color: black;
    width: 100%;
    top: 0;
    left: 0;
    height: 100%;
    opacity: 60%;
    z-index: 3;
}

.barra2 {
    display: flex;
    width: 100px;
    height: 5px;
    background: white;
    margin-top: -15px;
    margin-bottom: 25px;
    z-index: 5;
}

.relatar-caso h2 {
    display: flex;
    z-index: 4;
    padding: 2%;
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 10px;

}

.relatar-caso p {
    z-index: 4;
    padding-left: 8%;
    padding-right: 8%;
    font-size: 22px;
    font-weight: 400;
}

#btnRelatarCaso {
    z-index: 4;
    display: flex;
    margin-top: 40px;
    width: 370px;
    text-align: center;
    justify-content: center;
    cursor: pointer;
    align-items: center;
    height: 50px;
    font-size: 18px;
    background-color: #b29049;
    border-radius: 5px;
    color: white;
    border: none;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 15px -3px, rgba(0, 0, 0, 0.05) 0px 4px 6px -2px;
    transition: background 0.3s;

    &:hover {
        background: #836932;
    }

    &:active {
        background: #5e4a20;
    }
}

.atuacoes {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 4%;
    background: var(--corPrincipal);
}

.atuacoes h2 {
    font-size: 32px;
    color: #b29049;
    font-weight: 600;
    margin-bottom: 10px;
}

.barra {
    display: flex;
    width: 100px;
    height: 5px;
    background: #b29049;
    margin-top: 1rem;
    margin-bottom: 2rem;
}

.card-container2 {
    display: flex;
    flex-direction: column;
    gap: 25px;
    width: 80%;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.card-group {
    display: flex;
    flex-direction: row;
    gap: 25px;
}

.card2 {
    display: flex;
    align-self: center;
    justify-self: center;
    flex-direction: column;
    width: 350px;
    border-radius: 5px;
    text-align: center;
    height: 24rem;
    background: var(--corBg);
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    border: 2px solid #b29049;
}

.img-panel {
    display: flex;
    width: 100%;
    height: 10rem;
    background: gray;
}

.card2 h4 {
    font-size: 16px;
    text-align: center;
    word-wrap: break-word;
    text-transform: uppercase;
    padding: 4%;
}

.card2 p {
    font-size: 14px;
    text-align: justify;
    padding-left: 4%;
    padding-right: 4%;
    color: rgb(80, 80, 80);
}

.icon-card2 {
    display: flex;
    width: 60px;
    height: 60px;
    background: #b29049;
    align-self: center;
    margin-top: -10%;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    cursor: pointer;

    &:hover {
        background: #836932;
    }
}

.icon-card2 i {
    font-size: 30px;
    color: var(--corBg);
}

#card1 {
    background-image: url(./Imagens/img-card1.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

#card2 {
    background-image: url(./Imagens/img-card2.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

#card3 {
    background-image: url(./Imagens/img-card3.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

#card4 {
    background-image: url(./Imagens/img-card4.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

#card5 {
    background-image: url(./Imagens/img-card5.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

#card6 {
    background-image: url(./Imagens/img-card6.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.banner2 {
    display: flex;
    width: calc(3 * 350px + 2 * 25px); 
    padding: 4%;
    height: 15rem;
    pointer-events: visible;
    background-image: url(./Imagens/img-banner2.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 5px;
    align-items: center;
    justify-content: center;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    border: 2px solid #b29049;
}


/* --- CONFIGURANDO O CARROSSEL --- */
.advogados {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 4%;
    background: var(--corBg);
}

.advogados h2 {
    font-size: 32px;
    color: var(--corPrincipal);
    font-weight: 600;
    margin-bottom: 10px;
}

.barra4 {
    display: flex;
    width: 100px;
    height: 5px;
    background: var(--corPrincipal);
    margin-top: 1rem;
    margin-bottom: 1rem;
}

.carousel-container {
    display: flex;
    width: 70%;
    align-items: center;
    justify-content: center;
    position: relative;
}

.carousel-slide {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.slide {
    display: none;
    flex-direction: row;
    width: 100%;
    padding: 4%;
    min-height: 40rem;
    color: black;
}

.slide.active {
    display: flex;
}

.slide-content {
    display: flex;
    flex-direction: column;
    width: 75%;
    margin-left: 35px;
    text-align: justify;
}

.slide-content h4 {
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.slide-content p {
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 15px;
    color: rgb(37, 37, 37);
}

.btn-contato {
    display: flex;
    width: 220px;
    margin-top: 10px;
    font-weight: 600;
    height: 50px;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    border-radius: 5px;
    background: #b29049;
    border: none;
    color: white;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    cursor: pointer;
}

.btn-contato:hover {
    background: #836932;
}

.btn-contato:active {
    background: #5e4a20;
}

.foto-advogado {
    display: flex;
    width: 300px;
    min-width: 300px;
    height: 300px;
    min-height: 300px;
    background: grey;
    border-radius: 5px;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

.img-advogado {
    width: 100%;
    border-radius: 5px;
}

.carousel-prev,
.carousel-next {
    background-color: transparent;
    border: none;
    color: var(--corPrincipal);
    font-size: 2rem;
    cursor: pointer;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
}

.carousel-prev {
    left: 10px;
}

.carousel-next {
    right: 10px;
}

/* --- FIM DO CARROSSEL --- */
.perguntas-frequentes {
    display: flex;
    width: 100%;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: var(--corBg);
}


.panel-titulo {
    display: flex;
    position: relative;
    width: 100%;
    height: auto;
    min-height: 18rem;
    background-image: url(./Imagens/judge.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    text-align: center;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 4%;
    color: white;
}

.filtro2 {
    position: absolute;
    background-color: black;
    width: 100%;
    top: 0;
    left: 0;
    height: 100%;
    opacity: 80%;
    z-index: 3;
}

.panel-titulo h1 {
    z-index: 5;
    font-size: 45px;
}

/* --- AREA DAS PERGUNTAS FREQUENTES --- */
.accordion {
    margin: 60px auto;
    width: 80%;
}

.accordion li {
    list-style: none;
    width: 100%;
    text-align: justify;
    margin: 20px;
    padding: 10px;
    border-radius: 5px;
    background: var(--corBg);
}

.accordion li label {
    display: flex;
    align-items: center;
    width: 100%;
    min-height: 80px;
    border-radius: 5px;
    padding: 10px;
    font-size: 18px;
    font-weight: 500;
    cursor: pointer;
    background: var(--corBg);
    border: 1px solid #b29049;

    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

.accordion li label::before {
    content: '+';
    margin-right: 10px;
    font-size: 24px;
    font-weight: 600;
}

.accordion input[type="checkbox"] {
    display: none;
}

.accordion-content {
    color: rgb(78, 78, 78);
    padding: 0 10px;
    line-height: 26px;
    margin-top: 10px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s, padding 0.5s;
}

.accordion input[type="checkbox"]:checked+label+.accordion-content {
    max-height: 400px;
    padding: 10px 10px 20px;
    transition: min-height 0.5s, padding 0.5s;
}

.accordion input[type="checkbox"]:checked+label::before {
    content: '-';
}

.accordion input[type="checkbox"]:checked+label {
    background: #b29049;
}


.rodape {
    display: flex;
    width: 100%;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 28rem;
    background: var(--corActive);
}

.top {
    display: flex;
    width: 100%;
    margin-top: 35px;
    flex-direction: row;
    justify-content: space-between;
    color: var(--corBg)
}

.top-left {
    display: flex;
    width: 40%;
    align-items: flex-start;
    justify-content: center;
}

.top-left h2 {
    font-size: 26px;
    font-weight: 500;
}

.top-right {
    display: flex;
    width: 60%;
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
    align-items: row;
}

.top-right a {
    text-decoration: none;
    outline: none;
    color: rgb(179, 177, 177);
    margin-bottom: 10px;
    margin-top: 10px;
    cursor: pointer;
}

.midias-sociais {
    width: 30%;
}

.contato {
    width: 30%;
}

.midias-sociais h5 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px;
}

.contato h5 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px;
}

.divisoria {
    display: flex;
    margin-top: 60px;
    margin-bottom: 10px;
    width: 85%;
    height: 1px;
    background: rgb(121, 120, 120);
}

.bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 4%;
    margin-bottom: 10px;
}

.bottom span {
    font-size: 14px;
    color: white;
    font-weight: 300;
}

/* ----- ÁREA DE RESPONSIVIDADE ----- */
@media screen and (max-width: 999px) {
    .navbar-container {
        display: none;
    }

    .navbar-container-mobile {
        display: block;
        width: 100%;
        height: 80px;
        background: var(--corPrincipal);
        align-items: center;
        justify-content: center;
        position: relative;
        z-index: 2;
    }


    .barnav {
        display: flex;
        height: 100%;
        padding: 3%;
        width: 100%;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        text-align: center;
        position: relative;
        z-index: 3;
    }

    .logotipo-mobile {
        display: flex;
        width: 55px;
        height: 55px;
    }

    .hamburger {
        cursor: pointer;
    }

    .hamburger input {
        display: none;
    }

    .hamburger svg {
        height: 3em;
        transition: transform 600ms cubic-bezier(0.4, 0, 0.2, 1);
    }

    .line {
        fill: none;
        stroke: #b29049;
        stroke-linecap: round;
        stroke-linejoin: round;
        stroke-width: 3;
        transition: stroke-dasharray 600ms cubic-bezier(0.4, 0, 0.2, 1),
            stroke-dashoffset 600ms cubic-bezier(0.4, 0, 0.2, 1);
    }

    .line-top-bottom {
        stroke-dasharray: 12 63;
    }

    #menu-toggle {
        display: none;
    }

    .hamburger input:checked+svg {
        transform: rotate(-45deg);
    }

    .hamburger input:checked+svg .line-top-bottom {
        stroke-dasharray: 20 300;
        stroke-dashoffset: -32.42;
    }

    ul {
        list-style-type: none;
    }

    .navlist-mobile {
        display: flex;
        width: 100%;
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
        justify-content: center;
        text-decoration: none;
    }

    .nav-item {
        display: flex;
        width: 100%;
        padding: 4%;
        margin: 0;
        text-decoration: none;
    }

    .banner {
        display: flex;;
    }

    .escritorio-section {
        display: flex;
        width: 100%;
        height: auto;
        min-height: 700px;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .escritorio-section h2 {
        font-size: 22px;
        margin-bottom: 20px;
        padding: 0;
        margin-top: 10px;
    }

    .card {
        margin-bottom: 10px;
        margin-top: 10px;
        padding: 4%;
        gap: 10px;
    }

    #btnEspecialista {
        width: 90%;
        font-size: 16px;
        margin-bottom: 15px;
        margin-top: -30px;
    }


    .card-container {
        display: flex;
        flex-direction: column;
        width: 100%;
        align-items: center;
        justify-content: center;
    }


    .relatar-caso {
        display: flex;
        width: 100%;
        height: auto;
        min-height: 30rem;
        background-image: url(./Imagens/paciente-imgfp.jpg);
        background-position: center;
        background-size: cover;
        background-repeat: no-repeat;
        text-align: center;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 4%;
        color: white;
    }


    .relatar-caso h2 {
        margin-top: 10px;
        font-size: 22px;
        margin-bottom: 20px;
    }

    .barra2 {
        margin-top: 10px;
    }

    .relatar-caso p {
        font-size: 16px;
    }

    #btnRelatarCaso {
        margin-top: -10px;
        width: 90%;
    }

    .atuacoes {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 4%;
        background: var(--corPrincipal);
    }


    .atuacoes h2 {
        margin-top: 30px;
        font-size: 32px;
        color: #b29049;
        font-weight: 600;
        margin-bottom: 10px;
    }

    .barra {
        display: flex;
        width: 100px;
        height: 5px;
        background: #b29049;
        margin-top: 1rem;
        margin-bottom: 2rem;
    }

    .card-container2 {
        display: flex;
        flex-direction: column;
        gap: 25px;
        width: 80%;
        align-items: center;
        justify-content: center;
        margin: 0 auto;
    }

    .card-group {
        display: flex;
        flex-direction: column;
        gap: 25px;
    }

    .card2 {
        display: flex;
        align-self: center;
        justify-self: center;
        flex-direction: column;
        width: 350px;
        border-radius: 5px;
        text-align: center;
        height: 24rem;
        background: var(--corBg);
        box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
        border: 2px solid #b29049;
    }

    .img-panel {
        display: flex;
        width: 100%;
        height: 10rem;
        background: gray;

    }

    .card2 h4 {
        font-size: 16px;
        text-align: center;
        word-wrap: break-word;
        text-transform: uppercase;
        padding: 4%;
    }

    .card2 p {
        font-size: 14px;
        text-align: justify;
        padding-left: 4%;
        padding-right: 4%;
        color: rgb(80, 80, 80);
    }

    .icon-card2 {
        display: flex;
        width: 60px;
        height: 60px;
        background: #b29049;
        align-self: center;
        margin-top: -10%;
        cursor: pointer;
        align-items: center;
        justify-content: center;
        border-radius: 5px;

        &:hover {
            background: #836932;
        }
    }

    .icon-card2 i {
        font-size: 30px;
        color: var(--corBg);
    }




    /* --- CONFIGURANDO O CARROSSEL --- */
    .advogados {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 4%;
        background: var(--corBg);
    }

    .advogados h2 {
        margin-top: 15px;
        font-size: 26px;
        text-align: center;
        color: var(--corPrincipal);
        font-weight: 600;
    }

    .barra4 {
        display: flex;
        width: 100px;
        height: 5px;
        background: var(--corPrincipal);
        margin-top: 1rem;
        margin-bottom: 1rem;
    }

    .carousel-container {
        display: flex;
        flex-direction: column;
        width: 100%;
        align-items: center;
        justify-content: center;
        position: relative;
    }

    .carousel-slide {
        display: flex;
        width: 100%;
        overflow: hidden;
        position: relative;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .slide {
        display: none;
        width: 100%;
        min-height: 40rem;
        color: black;
    }

    .slide.active {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .slide-content {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        margin-right: 10%;
        width: 90%;
        text-align: justify;
    }

    .slide-content h4 {
        font-size: 16px;
        font-weight: 700;
        text-transform: uppercase;
        margin-bottom: 15px;
    }

    .slide-content p {
        font-size: 14px;
        font-weight: 400;
        margin-bottom: 15px;
        color: rgb(37, 37, 37);
    }

    .btn-contato {
        display: flex;
        width: 220px;
        margin-top: 10px;
        font-weight: 600;
        height: 50px;
        align-items: center;
        justify-content: center;
        font-size: 20px;
        border-radius: 5px;
        background: #b29049;
        border: none;
        color: white;
        box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
        cursor: pointer;
    }

    .btn-contato:hover {
        background: #836932;
    }

    .btn-contato:active {
        background: #5e4a20;
    }

    .foto-advogado {
        display: flex;
        width: 150px;
        min-width: 150px;
        height: 150px;
        min-height: 100px;
        margin-top: 15px;
        margin-bottom: 10px;
        background: grey;
        border-radius: 5px;
        box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    }

    .img-advogado {
        width: 100%;
        border-radius: 5px;
    }

    .carousel-prev,
    .carousel-next {
        background-color: transparent;
        border: none;
        color: var(--corPrincipal);
        font-size: 2rem;
        cursor: pointer;
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        z-index: 10;
    }

    .carousel-prev {
        left: 5px;
    }

    .carousel-next {
        right: 5px;
    }

    /* ---- PARTE DAS PERGUNTAS --- */
    .perguntas-frequentes {
        display: flex;
        width: 100%;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        background: var(--corBg);
    }
    
    
    .panel-titulo {
        display: flex;
        width: 100%;
        height: auto;
        min-height: 18rem;
        background-image: url(./Imagens/judge.jpg);
        background-position: center;
        background-size: cover;
        background-repeat: no-repeat;
        text-align: center;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 4%;
        color: white;
    }

    
    .panel-titulo h1 {
        z-index: 5;
        font-size: 35px;
    }
    
    .accordion {
        display: flex;
        margin: 60px auto;
        width: 80%;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    
    .accordion li {
        list-style: none;
        width: 100%;
        text-align: justify;
        margin: 20px;
        padding: 10px;
        border-radius: 5px;
        background: var(--corBg);
    }
    
    .accordion li label {
        display: flex;
        align-items: center;
        width: 100%;
        min-height: 80px;
        border-radius: 5px;
        padding: 10px;
        font-size: 16px;
        font-weight: 500;
        cursor: pointer;
        background: var(--corBg);
        border: 1px solid #b29049;
    
        box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    }
    


    /* --- PARTE DO RODAPÉ ---- */
    .rodape {
        display: flex;
        width: 100%;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        min-height: 28rem;
        background: var(--corActive);
    }

    .top {
        display: flex;
        width: 100%;
        margin-top: 35px;
        text-align: center;
        flex-direction: column;
        justify-content: center;
        color: var(--corBg)
    }

    .top-left {
        display: flex;
        width: 100%;
        align-items: center;
        justify-content: center;
    }

    .top-left h2 {
        font-size: 22px;
        font-weight: 500;
    }

    .top-right {
        display: flex;
        width: 100%;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        align-items: row;
    }

    .top-right a {
        text-decoration: none;
        outline: none;
        color: rgb(179, 177, 177);
        margin-bottom: 10px;
        margin-top: 10px;
        cursor: pointer;
    }

    .midias-sociais {
        width: 100%;
        margin-top: 30px;
    }

    .contato {
        width: 100%;
    }

    .midias-sociais h5 {
        font-size: 18px;
        font-weight: 600;
        margin-bottom: 15px;
    }

    .contato h5 {
        font-size: 18px;
        font-weight: 600;
        margin-bottom: 15px;
    }

    .divisoria {
        display: flex;
        margin-top: 60px;
        width: 85%;
        height: 1px;
        background: rgb(121, 120, 120);
    }

    .bottom {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        padding: 4%;
        margin-bottom: 10px;
    }

    .bottom span {
        font-size: 12px;
        color: white;
        font-weight: 300;
    }


    .banner2 {
        padding: 0;
        margin: 0;
        width: 125%;
    }
}

@media screen and (max-width: 1050px) {
    .banner2 {
        padding: 0;
        margin: 0;
        width: 120%;
    }
}