/*****************************************************************************
* Scrypt CSS - Sena Santos Cobrança
* Autor: Guilherme Batista
* Autor: Gustaf Guimarães
* Data: 04/01/2024
* Equipe de Desenvolvimento Pluro
******************************************************************************/

/* Global */

.fontes {
    font-family: 'Merriweather Sans', sans-serif;
    font-family: 'Montserrat', sans-serif;
    font-family: 'Roboto', sans-serif;
    font-family: 'Bebas Neue', sans-serif;
}

.color1 {
    color: #865A8C;
}

.color2 {
    color: #35B2F2;
}

.color3 {
    color: #A7CFF2;
}

.color4 {
    color: #B4DBEF;
}

.color5 {
    color: #0D0D0D;
}

body {
    margin: 0;
    padding: 0;
}

/* Navbar */

.navbar {
    width: 100%;
    top: 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    font-family: 'Roboto', sans-serif;
    background: linear-gradient(to right, #865A8C, white);
}

.logo-navbar {
    width: 250px;
    height: auto;
}

.nav-link {
    font-size: 25px;
    position: relative;
}

.nav-link::after {
    content: " ";
    width: 0%;
    height: 4px;
    background-color: #865A8C;
    position: absolute;
    bottom: 0;
    left: 0;
    transition: 0.3s ease-in-out;
}

.nav-link:hover::after {
    width: 100%;
}

/* Pagina de inicio */

.pagina-inicial {
    position: relative;
    margin-top: 10%;
    margin-bottom: 2%;
    width: 100%;
    height: 560px;
    overflow: hidden;
}

.pagina-inicial::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 560px;
    background-image: url('../img/plano-de-fundo-alterado.jpg');
    background-size: cover;
    background-position: center center;
    filter: blur(1.5px);
}

.logo-plano-de-fundo {
    position: absolute;
    top: 25%;
    left: 40%;
    width: 300px;
    height: auto;
}

.text-inicio {
    text-align: center;
    position: absolute;
    top: 34%;
    left: 37%;
    color: rgb(19, 19, 19);
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3rem;
}

.arrow-button {
    background-color: rgb(248, 248, 250);
    border: none;
    padding: 10px;
    cursor: pointer;
    position: relative;
    top: 1800%;
    left: 45%;
}

.arrow {
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 15px solid #333;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    animation: moveArrow 0.3s ease-in-out infinite alternate;
}

@keyframes moveArrow {
    0% {
        transform: translateX(-50%) translateY(0);
    }

    100% {
        transform: translateX(-50%) translateY(5px);
    }
}

.call-to-action {
    position: relative;
    overflow: hidden;
    background-image: url(../img/equipe-call.jpg);
    background-size: cover;
    background-position: center center;
    width: 400px;
    height: 100px;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.call-to-action::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    backdrop-filter: blur(1.5px);
}

.call-to-action:hover {
    transform: scale(1.1);
}

.text-call-to-action {
    position: absolute;
    margin-top: 1.5rem;
    margin-left: 3rem;
    color: white;
    text-decoration: none;
    font-size: 2rem;
    font-family: 'Bebas Neue', sans-serif;
}

/* Quem Somos */

.quem-somos- {
    position: relative;
    height: 60rem;
}

.quem-somos {
    width: 86%;
    height: 86%;
    border-radius: 10px;
    background-color: #865A8C;
    position: absolute;
    right: 0;
    opacity: 0;
    transition: opacity 1s, right 1.8s;
}

.coluna1-quem-somos {
    border-right-style: solid;
    border-right-color: white;
    border-right-width: 1px;
}

.titulo-quem-somos {
    margin-left: 25%;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 5rem;
    color: white;
}

.img-quem-somos {
    width: auto;
    height: 650px;
    margin-bottom: 2%;
    margin-left: 16%;
}

.text-quem-somos- {
    color: white;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.3rem;
    text-align: center;
    margin-top: 20%;
}

/* Serviços */

.container-services {
    overflow: hidden;
}

.services {
    margin-top: 5%;
    margin-bottom: 5%;
}

.title-servicos {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 5rem;
}

.gestao-de-cobrancas {
    background-color: rgb(223, 230, 236);
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
    position: absolute;
    left: -50%;
    opacity: 0;
    transition: opacity 1s, left 1s;
    overflow: hidden;
}

.animation-1- {
    position: relative;
    height: 23rem;
}

.img-gestao-de-cobrancas {
    width: 200px;
    height: auto;
}

.line-right {
    border-right-style: solid;
    border-right-color: #0D0D0D;
    border-right-width: 1px;
}

.title-gestao-de-cobrancas {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.5rem;
}

.text-gestao-de-cobrancas {
    font-family: 'Roboto', sans-serif;
    font-size: 1.5rem;

}

.call-center {
    background-color: #865A8C;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
    position: absolute;
    right: -50%;
    opacity: 0;
    transition: opacity 1s, right 1s;
}

.animation-2- {
    position: relative;
    height: 23rem;
}

.img-call-center {
    width: 200px;
    height: auto;
}

.line-left {
    border-left-style: solid;
    border-left-color: white;
    border-left-width: 1px;
}

.title-call-center {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.5rem;
    color: white;
}

.text-call-center {
    color: white;
    font-family: 'Roboto', sans-serif;
    font-size: 1.5rem;
    text-align: center;
}

.estrategia {
    background-color: rgb(223, 230, 236);
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
    position: absolute;
    left: -50%;
    opacity: 0;
    transition: opacity 1s, left 1s;
}

.animation-3- {
    position: relative;
    height: 26.3rem;
}

.title-estrategia {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.5rem;
}

.img-estrategia {
    width: 200px;
    height: auto;
}

.text-estrategia {
    font-family: 'Roboto', sans-serif;
    font-size: 1.5rem;
    text-align: center;
}

.suporte {
    background-color: #865A8C;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
    position: absolute;
    right: -50%;
    opacity: 0;
    transition: opacity 1s, right 1s;
}

.animation-4- {
    position: relative;
    height: 23rem;
}


.img-suporte {
    width: 200px;
    height: auto;
}

.title-suporte {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.5rem;
    color: white;
}

.text-suporte {
    color: white;
    font-family: 'Roboto', sans-serif;
    font-size: 1.5rem;
    text-align: center;
}

/* Contato */

.container-contato {
    background-color: #865A8C;
}

.title-contato {
    color: white;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 5rem;
}

.formulario {
    padding: 2%;
    border: 1px solid white;
    border-radius: 10px;
}

.button-formulario {
    background-color: #865A8C;
    border-color: white;
}

.button-formulario:hover {
    background-color: white;
    color: #865A8C;
    border-color: #865A8C;
}

.text-contato {
    color: white;
    font-size: 2.5rem;
}

/* Footer */

.container-footer {
    background-color: rgb(223, 230, 236);
}

.logo-footer {
    width: 300px;
    height: auto;
    padding-bottom: 5%;
}

.title-redes-sociais {
    font-family: 'Bebas Neue', sans-serif;
    color: #865A8C;
    font-size: 2.5rem;
}

.title-telefone {
    font-family: 'Bebas Neue', sans-serif;
    color: #865A8C;
    font-size: 2.5rem;
}

.icone-facebook {
    width: 90px;
    height: auto;
}

.icone-instagram {
    width: 90px;
    height: auto;
}

.icone-twitter {
    width: 90px;
    height: auto;
}

a {
    text-decoration: none;
}

.sena-santos-footer {
    border-right-color: #0D0D0D;
    border-right-width: 1px;
    border-right-style: solid;
}

.redes-sociais {
    border-right-color: #0D0D0D;
    border-right-width: 1px;
    border-right-style: solid;
}

.linha-copyright {
    border-top-style: solid;
    border-top-width: 1px;
    border-top-color: #0D0D0D;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none;
    background-color: rgba(0, 0, 0, 0.5);
    /* Fundo opaco - ajuste o último valor (0.5) para alterar a opacidade */
    justify-content: center;
    align-items: center;
}

.mensagem_success {
    background-color: white;
    color: #F27B35;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    /* Sombra ao redor da mensagem */
}

.mensagem-retorno {
    padding-bottom: 10%;
}

@media (min-width: 1284px) and (max-width: 1839px) {
    /* Navbar */

    .navbar {
        width: 100%;
        top: 0;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        font-family: 'Roboto', sans-serif;
        background: linear-gradient(to right, #865A8C, white);
    }

    .logo-navbar {
        width: 220px;
        height: auto;
    }

    .nav-link {
        font-size: 20px;
        position: relative;
    }

    .nav-link::after {
        content: " ";
        width: 0%;
        height: 4px;
        background-color: #865A8C;
        position: absolute;
        bottom: 0;
        left: 0;
        transition: 0.3s ease-in-out;
    }

    .nav-link:hover::after {
        width: 100%;
    }

    /* Pagina Inicial */

    .pagina-inicial {
        position: relative;
        margin-top: 5%;
        margin-bottom: 2%;
        width: 100%;
        height: 460px;
        overflow: hidden;
    }

    .pagina-inicial::before {
        content: '';
        position: absolute;
        width: 100%;
        height: 460px;
        background-image: url('../img/plano-de-fundo-alterado.jpg');
        background-size: 100%, 460px;
        background-repeat: no-repeat;
        background-position: center center;
        filter: blur(1.5px);
    }

    .logo-plano-de-fundo {
        position: absolute;
        top: 25%;
        left: 35%;
        width: 300px;
        height: auto;
    }

    .text-inicio {
        text-align: center;
        position: absolute;
        top: 34%;
        left: 32%;
        color: rgb(19, 19, 19);
        font-family: 'Bebas Neue', sans-serif;
        font-size: 3rem;
    }

    .arrow-button {
        background-color: rgb(248, 248, 250);
        border: none;
        padding: 10px;
        cursor: pointer;
        position: relative;
        top: 1430%;
        left: 45%;
    }

    .arrow {
        width: 0;
        height: 0;
        border-left: 10px solid transparent;
        border-right: 10px solid transparent;
        border-top: 15px solid #333;
        position: absolute;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        animation: moveArrow 0.3s ease-in-out infinite alternate;
    }

    @keyframes moveArrow {
        0% {
            transform: translateX(-50%) translateY(0);
        }

        100% {
            transform: translateX(-50%) translateY(5px);
        }
    }

    .call-to-action {
        position: relative;
        overflow: hidden;
        background-image: url(../img/equipe-call.jpg);
        background-size: cover;
        background-position: center center;
        width: 370px;
        height: 75px;
        border-radius: 10px;
        transition: transform 0.3s ease;
    }

    .call-to-action::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        backdrop-filter: blur(1.5px);
    }

    .call-to-action:hover {
        transform: scale(1.1);
    }

    .text-call-to-action {
        position: absolute;
        margin-top: 1.5rem;
        margin-left: 3rem;
        color: white;
        text-decoration: none;
        font-size: 2rem;
        font-family: 'Bebas Neue', sans-serif;
    }

    /* Quem Somos */

    .quem-somos- {
        position: relative;
        height: 35rem;
    }

    .quem-somos {
        width: 66%;
        height: 92%;
        border-radius: 10px;
        background-color: #865A8C;
        position: absolute;
        right: 0;
        opacity: 0;
        transition: opacity 1s, right 1.8s;
        margin-right: 5rem;
    }

    .coluna1-quem-somos {
        border-right-style: solid;
        border-right-color: white;
        border-right-width: 1px;
    }

    .titulo-quem-somos {
        margin-left: 25%;
        font-family: 'Bebas Neue', sans-serif;
        font-size: 3rem;
        color: white;
    }

    .img-quem-somos {
        width: auto;
        height: 400px;
        margin-left: 16%;
    }

    .text-quem-somos- {
        color: white;
        font-family: 'Bebas Neue', sans-serif;
        font-size: 1.5rem;
        text-align: center;
        margin-top: 20%;
    }

    /* Serviços */

    .container-services {
        overflow: hidden;
    }

    .services {
        margin-top: 5%;
        margin-bottom: 5%;
    }

    .title-servicos {
        font-family: 'Bebas Neue', sans-serif;
        font-size: 3rem;
    }

    .gestao-de-cobrancas {
        background-color: rgb(223, 230, 236);
        border-top-right-radius: 10px;
        border-bottom-right-radius: 10px;
        position: absolute;
        left: -50%;
        opacity: 0;
        transition: opacity 1s, left 1s;
        overflow: hidden;
    }

    .animation-1- {
        position: relative;
        height: 23rem;
    }

    .img-gestao-de-cobrancas {
        width: 150px;
        height: auto;
    }

    .line-right {
        border-right-style: solid;
        border-right-color: #0D0D0D;
        border-right-width: 1px;
    }

    .title-gestao-de-cobrancas {
        font-family: 'Bebas Neue', sans-serif;
        font-size: 2.5rem;
    }

    .text-gestao-de-cobrancas {
        font-family: 'Roboto', sans-serif;
        font-size: 1.4rem;

    }

    .call-center {
        background-color: #865A8C;
        border-top-left-radius: 10px;
        border-bottom-left-radius: 10px;
        position: absolute;
        right: -50%;
        opacity: 0;
        transition: opacity 1s, right 1s;
    }

    .animation-2- {
        position: relative;
        height: 23rem;
    }

    .img-call-center {
        width: 150px;
        height: auto;
    }

    .line-left {
        border-left-style: solid;
        border-left-color: white;
        border-left-width: 1px;
    }

    .title-call-center {
        font-family: 'Bebas Neue', sans-serif;
        font-size: 2.5rem;
        color: white;
    }

    .text-call-center {
        color: white;
        font-family: 'Roboto', sans-serif;
        font-size: 1.4rem;
        text-align: center;
    }

    .estrategia {
        background-color: rgb(223, 230, 236);
        border-top-right-radius: 10px;
        border-bottom-right-radius: 10px;
        position: absolute;
        left: -50%;
        opacity: 0;
        transition: opacity 1s, left 1s;
    }

    .animation-3- {
        position: relative;
        height: 26.3rem;
    }

    .title-estrategia {
        font-family: 'Bebas Neue', sans-serif;
        font-size: 2.5rem;
    }

    .img-estrategia {
        width: 150px;
        height: auto;
    }

    .text-estrategia {
        font-family: 'Roboto', sans-serif;
        font-size: 1.4rem;
        text-align: center;
    }

    .suporte {
        background-color: #865A8C;
        border-top-left-radius: 10px;
        border-bottom-left-radius: 10px;
        position: absolute;
        right: -50%;
        opacity: 0;
        transition: opacity 1s, right 1s;
    }

    .animation-4- {
        position: relative;
        height: 23rem;
    }


    .img-suporte {
        width: 150px;
        height: auto;
    }

    .title-suporte {
        font-family: 'Bebas Neue', sans-serif;
        font-size: 2.5rem;
        color: white;
    }

    .text-suporte {
        color: white;
        font-family: 'Roboto', sans-serif;
        font-size: 1.4rem;
        text-align: center;
    }

    /* Contato */

    .container-contato {
        background-color: #865A8C;
    }

    .title-contato {
        color: white;
        font-family: 'Bebas Neue', sans-serif;
        font-size: 3.5rem;
    }

    .formulario {
        padding: 2%;
        border: 1px solid white;
        border-radius: 10px;
    }

    .button-formulario {
        background-color: #865A8C;
        border-color: white;
    }

    .button-formulario:hover {
        background-color: white;
        color: #865A8C;
        border-color: #865A8C;
    }

    .text-contato {
        margin-top: -23rem;
        color: white;
        font-size: 2rem;
    }

    /* Footer */

    .container-footer {
        background-color: rgb(223, 230, 236);
    }

    .logo-footer {
        width: 250px;
        height: auto;
        padding-bottom: 5%;
    }

    .title-redes-sociais {
        font-family: 'Bebas Neue', sans-serif;
        color: #865A8C;
        font-size: 2rem;
    }

    .title-telefone {
        font-family: 'Bebas Neue', sans-serif;
        color: #865A8C;
        font-size: 2rem;
        margin-top: 20px;
    }

    .icone-facebook {
        width: 75px;
        height: auto;
    }

    .icone-instagram {
        width: 75px;
        height: auto;
    }

    .icone-twitter {
        width: 75px;
        height: auto;
    }

    a {
        text-decoration: none;
    }

    .sena-santos-footer {
        border-right-color: #0D0D0D;
        border-right-width: 1px;
        border-right-style: solid;
    }

    .redes-sociais {
        border-right-color: #0D0D0D;
        border-right-width: 1px;
        border-right-style: solid;
    }

    .linha-copyright {
        border-top-style: solid;
        border-top-width: 1px;
        border-top-color: #0D0D0D;
    }
}

@media (min-width: 768px) and (max-width: 1283px) {
    /* Navbar */

    .navbar {
        width: 100%;
        top: 0;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        font-family: 'Roboto', sans-serif;
        background: linear-gradient(to right, #865A8C, white);
    }

    .logo-navbar {
        width: 200px;
        height: auto;
    }

    .nav-link {
        font-size: 20px;
        position: relative;
    }

    .nav-link::after {
        content: " ";
        width: 0%;
        height: 4px;
        background-color: #865A8C;
        position: absolute;
        bottom: 0;
        left: 0;
        transition: 0.3s ease-in-out;
    }

    .nav-link:hover::after {
        width: 100%;
    }

    /* Pagina Inicial */

    .pagina-inicial {
        position: relative;
        margin-top: 5%;
        margin-bottom: 2%;
        width: 100%;
        height: 720px;
        overflow: hidden;
    }

    .pagina-inicial::before {
        content: '';
        position: absolute;
        width: 100%;
        height: 700px;
        background-image: url('../img/plano-de-fundo-alterado.jpg');
        background-size: 170%, 460px;
        background-repeat: no-repeat;
        background-position: center center;
        filter: blur(1.5px);
    }

    .logo-plano-de-fundo {
        position: absolute;
        top: 25%;
        left: 35%;
        width: 200px;
        height: auto;
    }

    .text-inicio {
        text-align: center;
        position: absolute;
        top: 29%;
        left: 32%;
        color: rgb(19, 19, 19);
        font-family: 'Bebas Neue', sans-serif;
        font-size: 2rem;
    }

    .arrow-button {
        background-color: rgb(248, 248, 250);
        border: none;
        padding: 10px;
        cursor: pointer;
        position: relative;
        top: 1750%;
        left: 45%;
    }

    .arrow {
        width: 0;
        height: 0;
        border-left: 10px solid transparent;
        border-right: 10px solid transparent;
        border-top: 15px solid #333;
        position: absolute;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        animation: moveArrow 0.3s ease-in-out infinite alternate;
    }

    @keyframes moveArrow {
        0% {
            transform: translateX(-50%) translateY(0);
        }

        100% {
            transform: translateX(-50%) translateY(5px);
        }
    }

    .call-to-action {
        position: relative;
        overflow: hidden;
        background-image: url(../img/equipe-call.jpg);
        background-size: cover;
        background-position: center center;
        width: 370px;
        height: 75px;
        border-radius: 10px;
        transition: transform 0.3s ease;
        margin-left: 9rem;
        margin-top: -5rem;
    }

    .call-to-action::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        backdrop-filter: blur(1.5px);
    }

    .call-to-action:hover {
        transform: scale(1.1);
    }

    .text-call-to-action {
        position: absolute;
        margin-top: 1.5rem;
        margin-left: 3rem;
        color: white;
        text-decoration: none;
        font-size: 2rem;
        font-family: 'Bebas Neue', sans-serif;
    }

    /* Quem Somos */

    .quem-somos- {
        position: relative;
        height: 49rem;
    }

    .quem-somos {
        width: 83%;
        height: 65%;
        border-radius: 10px;
        background-color: #865A8C;
        position: absolute;
        right: 0;
        opacity: 0;
        transition: opacity 1s, right 1.8s;
        margin-top: 7rem;
    }

    .coluna1-quem-somos {
        border-right-style: solid;
        border-right-color: white;
        border-right-width: 1px;
    }

    .titulo-quem-somos {
        margin-left: 25%;
        font-family: 'Bebas Neue', sans-serif;
        font-size: 3rem;
        color: white;
    }

    .img-quem-somos {
        width: auto;
        height: 350px;
        margin-left: 16%;
    }

    .text-quem-somos- {
        color: white;
        font-family: 'Bebas Neue', sans-serif;
        font-size: 1.5rem;
        text-align: center;
        margin-top: 20%;
    }

    /* Serviços */

    .container-services {
        overflow: hidden;
    }

    .services {
        margin-top: 5%;
        margin-bottom: 5%;
    }

    .title-servicos {
        font-family: 'Bebas Neue', sans-serif;
        font-size: 3rem;
    }

    .gestao-de-cobrancas {
        background-color: rgb(223, 230, 236);
        border-top-right-radius: 10px;
        border-bottom-right-radius: 10px;
        position: absolute;
        left: -50%;
        opacity: 0;
        transition: opacity 1s, left 1s;
        overflow: hidden;
    }

    .animation-1- {
        position: relative;
        height: 16.5rem;
    }

    .img-gestao-de-cobrancas {
        width: 100px;
        height: auto;
    }

    .line-right {
        border-right-style: solid;
        border-right-color: #0D0D0D;
        border-right-width: 1px;
    }

    .title-gestao-de-cobrancas {
        font-family: 'Bebas Neue', sans-serif;
        font-size: 2rem;
    }

    .text-gestao-de-cobrancas {
        font-family: 'Roboto', sans-serif;
        font-size: 1rem;

    }

    .call-center {
        background-color: #865A8C;
        border-top-left-radius: 10px;
        border-bottom-left-radius: 10px;
        position: absolute;
        right: -50%;
        opacity: 0;
        transition: opacity 1s, right 1s;
    }

    .animation-2- {
        position: relative;
        height: 16.5rem;
    }

    .img-call-center {
        width: 100px;
        height: auto;
    }

    .line-left {
        border-left-style: solid;
        border-left-color: white;
        border-left-width: 1px;
    }

    .title-call-center {
        font-family: 'Bebas Neue', sans-serif;
        font-size: 2rem;
        color: white;
    }

    .text-call-center {
        color: white;
        font-family: 'Roboto', sans-serif;
        font-size: 1rem;
        text-align: center;
    }

    .estrategia {
        background-color: rgb(223, 230, 236);
        border-top-right-radius: 10px;
        border-bottom-right-radius: 10px;
        position: absolute;
        left: -50%;
        opacity: 0;
        transition: opacity 1s, left 1s;
    }

    .animation-3- {
        position: relative;
        height: 19rem;
    }

    .title-estrategia {
        font-family: 'Bebas Neue', sans-serif;
        font-size: 2rem;
    }

    .img-estrategia {
        width: 100px;
        height: auto;
    }

    .text-estrategia {
        font-family: 'Roboto', sans-serif;
        font-size: 1rem;
        text-align: center;
    }

    .suporte {
        background-color: #865A8C;
        border-top-left-radius: 10px;
        border-bottom-left-radius: 10px;
        position: absolute;
        right: -50%;
        opacity: 0;
        transition: opacity 1s, right 1s;
    }

    .animation-4- {
        position: relative;
        height: 16.5rem;
    }


    .img-suporte {
        width: 100px;
        height: auto;
    }

    .title-suporte {
        font-family: 'Bebas Neue', sans-serif;
        font-size: 2rem;
        color: white;
    }

    .text-suporte {
        color: white;
        font-family: 'Roboto', sans-serif;
        font-size: 1rem;
        text-align: center;
    }

    /* Contato */

    .container-contato {
        background-color: #865A8C;
    }

    .title-contato {
        color: white;
        font-family: 'Bebas Neue', sans-serif;
        font-size: 3.5rem;
    }

    .formulario {
        padding: 8%;
        border: 1px solid white;
        border-radius: 10px;
    }

    .button-formulario {
        background-color: #865A8C;
        border-color: white;
    }

    .button-formulario:hover {
        background-color: white;
        color: #865A8C;
        border-color: #865A8C;
    }

    .text-contato {
        margin-top: 3rem;
        margin-bottom: 5rem;
        color: white;
        font-size: 2rem;
    }

    /* Footer */

    .container-footer {
        background-color: rgb(223, 230, 236);
    }

    .logo-footer {
        width: 250px;
        height: auto;
        padding-bottom: 5%;
    }

    .politica-privacidade {
        margin-bottom: 5%;
    }

    .title-redes-sociais {
        font-family: 'Bebas Neue', sans-serif;
        color: #865A8C;
        font-size: 2rem;
    }

    .title-telefone {
        font-family: 'Bebas Neue', sans-serif;
        color: #865A8C;
        font-size: 2rem;
        margin-top: 20px;
    }

    .icone-facebook {
        margin-bottom: 5%;
        width: 75px;
        height: auto;
    }

    .icone-instagram {
        margin-bottom: 5%;
        width: 75px;
        height: auto;
    }

    .icone-twitter {
        margin-bottom: 5%;
        width: 75px;
        height: auto;
    }

    a {
        text-decoration: none;
    }

    .sena-santos-footer {
        margin-bottom: 5%;
        border-right: none;
        border-bottom-color: #0D0D0D;
        border-bottom-width: 1px;
        border-bottom-style: solid;
    }

    .redes-sociais {
        margin-bottom: 5%;
        border-right: none;
        border-bottom-color: #0D0D0D;
        border-bottom-width: 1px;
        border-bottom-style: solid;
    }

    .linha-copyright {
        border-top-style: solid;
        border-top-width: 1px;
        border-top-color: #0D0D0D;
    }
}

@media (min-width: 200px) and (max-width: 767px) {
    /* Navbar */

    .navbar {
        width: 100%;
        top: 0;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        font-family: 'Roboto', sans-serif;
        background: linear-gradient(to right, #865A8C, white);
    }

    .logo-navbar {
        width: 180px;
        height: auto;
    }

    .nav-link {
        color: white !important;
        margin-left: 30px;
        font-size: 20px;
        position: relative;
    }

    .nav-link::after {
        content: " ";
        width: 0%;
        height: 4px;
        background-color: #865A8C;
        position: absolute;
        bottom: 0;
        left: 0;
        transition: 0.3s ease-in-out;
    }

    .nav-link:hover::after {
        width: 100%;
    }

    /* Pagina Inicial */

    .pagina-inicial {
        position: relative;
        margin-bottom: 2%;
        width: 100%;
        height: 720px;
        overflow: hidden;
    }

    .pagina-inicial::before {
        content: '';
        margin-top: -7rem;
        position: absolute;
        width: 100%;
        height: 700px;
        background-image: url('../img/plano-de-fundo-alterado.jpg');
        background-size: 240%, 460px;
        background-repeat: no-repeat;
        background-position: center center;
        filter: blur(1.5px);
    }

    .logo-plano-de-fundo {
        position: absolute;
        top: 18%;
        left: 22%;
        width: 200px;
        height: auto;
    }

    .text-inicio {
        text-align: center;
        position: absolute;
        top: 25%;
        left: 26%;
        color: rgb(19, 19, 19);
        font-family: 'Bebas Neue', sans-serif;
        font-size: 1.3rem;
    }

    .arrow-button {
        background-color: rgb(248, 248, 250);
        border: none;
        padding: 10px;
        cursor: pointer;
        position: relative;
        top: 1200%;
        left: 45%;
    }

    .arrow {
        width: 0;
        height: 0;
        border-left: 8px solid transparent;
        border-right: 8px solid transparent;
        border-top: 12px solid #333;
        position: absolute;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        animation: moveArrow 0.3s ease-in-out infinite alternate;
    }

    @keyframes moveArrow {
        0% {
            transform: translateX(-50%) translateY(0);
        }

        100% {
            transform: translateX(-50%) translateY(5px);
        }
    }

    .call-to-action {
        margin-top: -16rem;
        margin-left: 2rem;
        position: relative;
        overflow: hidden;
        background-image: url(../img/equipe-call.jpg);
        background-size: cover;
        background-position: center center;
        width: 300px;
        height: 60px;
        border-radius: 10px;
        transition: transform 0.3s ease;
    }

    .call-to-action::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        backdrop-filter: blur(1.5px);
    }

    .call-to-action:hover {
        transform: scale(1.1);
    }

    .text-call-to-action {
        position: absolute;
        margin-top: 1.5rem;
        margin-left: 1.5rem;
        color: white;
        text-decoration: none;
        font-size: 1.8rem;
        font-family: 'Bebas Neue', sans-serif;
    }

    /* Quem Somos */

    .quem-somos- {
        position: relative;
        height: 60rem;
    }

    .quem-somos {
        width: 83%;
        height: 83%;
        border-radius: 10px;
        background-color: #865A8C;
        position: absolute;
        right: 0;
        opacity: 0;
        transition: opacity 1s, right 1.8s;
    }

    .coluna1-quem-somos {
        border-right: none;
    }

    .titulo-quem-somos {
        font-family: 'Bebas Neue', sans-serif;
        font-size: 3rem;
        color: white;
        margin-left: 3rem
    }

    .img-quem-somos {
        width: auto;
        height: 250px;
        margin-left: 23%;
        border-bottom-style: solid;
        border-bottom-color: white;
        border-bottom-width: 1px;
        padding-bottom: 5%;
    }

    .text-quem-somos- {
        color: white;
        font-family: 'Bebas Neue', sans-serif;
        font-size: 1.5rem;
        text-align: center;
        margin-top: 20%;
    }

    /* Serviços */

    .container-services {
        overflow: hidden;
    }

    .services {
        margin-top: 5%;
        margin-bottom: 5%;
    }

    .title-servicos {
        font-family: 'Bebas Neue', sans-serif;
        font-size: 3rem;
    }

    .gestao-de-cobrancas {
        background-color: rgb(223, 230, 236);
        border-top-right-radius: 10px;
        border-bottom-right-radius: 10px;
        position: absolute;
        left: -50%;
        opacity: 0;
        transition: opacity 1s, left 1s;
        overflow: hidden;
    }

    .animation-1- {
        position: relative;
        height: 12rem;
    }

    .img-gestao-de-cobrancas {
        width: 40px;
        height: auto;
    }

    .line-right {
        border-right-style: solid;
        border-right-color: #0D0D0D;
        border-right-width: 1px;
    }

    .title-gestao-de-cobrancas {
        font-family: 'Bebas Neue', sans-serif;
        font-size: 1.5rem;
        margin-left: -1.5rem;
    }

    .text-gestao-de-cobrancas {
        font-family: 'Roboto', sans-serif;
        font-size: 0.6rem;

    }

    .call-center {
        background-color: #865A8C;
        border-top-left-radius: 10px;
        border-bottom-left-radius: 10px;
        position: absolute;
        right: -50%;
        opacity: 0;
        transition: opacity 1s, right 1s;
    }

    .animation-2- {
        position: relative;
        height: 12rem;
    }

    .img-call-center {
        width: 40px;
        height: auto;
    }

    .line-left {
        border-left-style: solid;
        border-left-color: white;
        border-left-width: 1px;
    }

    .title-call-center {
        font-family: 'Bebas Neue', sans-serif;
        font-size: 1.5rem;
        color: white;
    }

    .text-call-center {
        color: white;
        font-family: 'Roboto', sans-serif;
        font-size: 0.6rem;
        text-align: center;
    }

    .estrategia {
        background-color: rgb(223, 230, 236);
        border-top-right-radius: 10px;
        border-bottom-right-radius: 10px;
        position: absolute;
        left: -50%;
        opacity: 0;
        transition: opacity 1s, left 1s;
    }

    .animation-3- {
        position: relative;
        height: 12rem;
    }

    .title-estrategia {
        font-family: 'Bebas Neue', sans-serif;
        font-size: 1.5rem;
        margin-left: -1.5rem;
    }

    .img-estrategia {
        width: 40px;
        height: auto;
    }

    .text-estrategia {
        font-family: 'Roboto', sans-serif;
        font-size: 0.6rem;
        text-align: center;
    }

    .suporte {
        background-color: #865A8C;
        border-top-left-radius: 10px;
        border-bottom-left-radius: 10px;
        position: absolute;
        right: -50%;
        opacity: 0;
        transition: opacity 1s, right 1s;
    }

    .animation-4- {
        position: relative;
        height: 12rem;
    }


    .img-suporte {
        width: 40px;
        height: auto;
    }

    .title-suporte {
        font-family: 'Bebas Neue', sans-serif;
        font-size: 1.5rem;
        color: white;
    }

    .text-suporte {
        color: white;
        font-family: 'Roboto', sans-serif;
        font-size: 0.6rem;
        text-align: center;
    }

    /* Contato */

    .container-contato {
        background-color: #865A8C;
    }

    .title-contato {
        color: white;
        font-family: 'Bebas Neue', sans-serif;
        font-size: 3rem;
    }

    .formulario {
        padding: 8%;
        border: 1px solid white;
        border-radius: 10px;
    }

    .button-formulario {
        background-color: #865A8C;
        border-color: white;
    }

    .button-formulario:hover {
        background-color: white;
        color: #865A8C;
        border-color: #865A8C;
    }

    .text-contato {
        margin-top: 3rem;
        margin-bottom: 5rem;
        color: white;
        font-size: 1.5rem;
    }

    /* Footer */

    .container-footer {
        background-color: rgb(223, 230, 236);
    }

    .logo-footer {
        width: 250px;
        height: auto;
        padding-bottom: 5%;
    }

    .politica-privacidade {
        margin-bottom: 5%;
    }

    .title-redes-sociais {
        font-family: 'Bebas Neue', sans-serif;
        color: #865A8C;
        font-size: 2rem;
    }

    .title-telefone {
        font-family: 'Bebas Neue', sans-serif;
        color: #865A8C;
        font-size: 2rem;
        margin-top: 20px;
    }

    .icone-facebook {
        margin-bottom: 5%;
        width: 75px;
        height: auto;
    }

    .icone-instagram {
        margin-bottom: 5%;
        width: 75px;
        height: auto;
    }

    .icone-twitter {
        margin-bottom: 5%;
        width: 75px;
        height: auto;
    }

    a {
        text-decoration: none;
    }

    .sena-santos-footer {
        margin-bottom: 5%;
        border-right: none;
        border-bottom-color: #0D0D0D;
        border-bottom-width: 1px;
        border-bottom-style: solid;
    }

    .redes-sociais {
        margin-bottom: 5%;
        border-right: none;
        border-bottom-color: #0D0D0D;
        border-bottom-width: 1px;
        border-bottom-style: solid;
    }

    .linha-copyright {
        border-top-style: solid;
        border-top-width: 1px;
        border-top-color: #0D0D0D;
    }
}