* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Neue Haas Grotesk Text Pro', sans-serif;
}

.detail {
    background-image: url(../img/BG_detail.png);
    background-size: cover;
    background-repeat: no-repeat;
    min-height: 100vh;
    display: flex;
    align-items: center;
    z-index: -2;
}

.detail-selector-conteiner {
    width: 40%;
}

.detail-explain-conteiner{
    width: 60%;
}

.detail-selector {
    width: 60%;
    margin: auto;
}

.d-sel-title {
    /*font-size: 48px;*/
    font-size: calc(10px + 2vw);
    color: #fff;
    background-color: #061228;
    padding: 30px;
    border-radius: 15px 15px 0px 0px;
}

.d-sel-title > h4 {
    font-weight: 500;
}

.d-sel-title > h4 > strong {
    color: #004AC8;
    font-weight: 800;
}

.d-sel-options {
    font-size: calc(5px + 0.7vw);
    color: #fff;
    text-transform: uppercase;
    background-color: #164292;
    padding: 50px 30px;
    border-radius: 0px 0px 15px 15px;
}

.detail-option {
    padding: 15px;
    border-radius: 5px;
    cursor: pointer;
    margin: 15px 0;
}

.detail-option:hover {
    background-color: #005dc8;
}

.option-active {
    background-color: #004AC8;
    animation: fadeout-color 1s ease-out;
}

.detail-op-mb {
    display: none;
}

.detail-explain {
    width: 55%;
    margin-left: 5%;
    display: none;
}

.detail-active {
    display: block;
    animation: fadeout 0.5s ease-in-out;
}

.d-exp-title > h3 {
    font-size: calc(14px + 2vw);
    color: #fff;
    z-index: 1;
}

.d-exp-detail {
    position: relative;
    text-align: justify;
    margin: 20px 0px;
    color: #fff;
    z-index: 1;
}

.d-exp-detail > p {
    font-size: calc(1px + 1vw);
}

.d-exp-detail > img {
    position: absolute;
    width: 5vw;
    top: -1.5vw;
    left: -2vw;
    z-index: -1;
}

.d-exp-photo {
    min-height: 50vh;
    /*border: solid 2px black;*/
    border-radius: 15px;
    overflow: hidden;
    position: relative;
}

.d-exp-photo > img {
    width: 100%;
    height: 100%;
    position: absolute;
    /*animation: fadeout 1s;*/
}

.foto-unactive {
    display: none;
}

@keyframes fadeout-color {
    0% {background-color: #005dc8;}
    100% {background-color: #004AC8;}
}

@keyframes fadeout {
    0% {opacity: 0;}
    100% { opacity: 1; }
}

.d-exp-buttons {
    padding: 20px;
    display: flex;
    justify-content: space-around;
}

.d-exp-buttons > button {
    color: #fff;
    min-width: fit-content;
    width: 10vw;
    text-transform: uppercase;
    border-radius: 50px;
    font-size: 12px;
    letter-spacing: 1px;
    font-weight: 600;
    background-color: #0049c7;
    border: 3px solid #002fb2;
    margin-top: 30px;
    padding: 10px 15px;
    cursor: pointer;
}

.d-exp-buttons > button:hover {
    background-color: #005dc8;
}

/* RESPONSIVE */

@media (max-width: 480px) {
    .detail {
        background-size: cover;
        background-repeat: no-repeat;
        flex-direction: column;
    }

    .detail-selector {
        width: 90%;
    }

    .detail-explain {
        width: 95%;
        margin-left: 0px;
    }
    
    .d-exp-detail > p {
        font-size: calc(8px + 1vw);
    }

    .d-sel-title {
        padding: 20px;
    }

    .d-sel-title > h4 {
        font-size: calc(12px + 2vw);
    }

    .d-sel-options {
        padding: 0px 10px;
        display: flex;
        justify-content: space-around;
    }

    .d-sel-options > p {
        font-size: calc(10px + 1vw);
    }

    .detail-op-mb {
        display: block;
    }

    .detail-op-dk {
        display: none;
    }

    .detail-selector-conteiner {
        width: 90%;
        padding-bottom: 40px;
    }

    .detail-explain-conteiner {
        width: 90%;
    }

}

@media (min-width: 481px) and (max-width: 599px) {
    .detail {
        background-size: cover;
        background-repeat: no-repeat;
        flex-direction: column;
    }
    
    .detail-selector {
        width: 90%;
    }

    .detail-explain {
        width: 95%;
        margin-left: 0px;
    }

    .d-exp-detail > p {
        font-size: calc(8px + 1vw);
    }

    .d-sel-title {
        padding: 20px;
    }

    .d-sel-options {
        padding: 0px 10px;
        display: flex;
        justify-content: space-around;
    }

    .detail-op-mb {
        display: block;
    }

    .detail-op-dk {
        display: none;
    }

    .detail-selector-conteiner {
        width: 90%;
        padding-bottom: 40px;
    }

    .detail-explain-conteiner {
        width: 90%;
    }
}


@media (min-width: 600px) and (max-width: 767px) {
    .detail {
        background-size: cover;
        background-repeat: no-repeat;
    }
    
    .detail-selector {
        width: 80%;
    }

    .detail-explain {
        width: 95%;
        margin-left: 0px;
    }

    .d-exp-detail > p {
        font-size: calc(5px + 1vw);
    }

    .d-sel-title {
        padding: 20px;
    }

    .d-sel-options {
        padding: 25px 10px;
    }
}


@media (min-width: 768px) and (max-width: 1024px) {
    .detail {
        background-size: cover;
        background-repeat: no-repeat;
    }
    
    .detail-selector {
        width: 80%;
    }

    .detail-explain {
        width: 95%;
        margin-left: 0px;
    }

    .d-exp-detail > p {
        font-size: calc(5px + 1vw);
    }

    .d-sel-title {
        padding: 20px;
    }

    .d-sel-options {
        padding: 25px 10px;
    }
}

@media (min-width: 1024px) and (max-width: 1250px) {
    .detail {
        background-size: cover;
        background-repeat: no-repeat;
    }

    .detail-selector {
        width: 80%;
    }

    .detail-explain {
        width: 75%;
    }

}

@media (min-width: 1250px) and (max-width: 1400px) {
    .detail-selector {
        width: 70%;
    }

    .detail-explain {
        width: 65%;
    }

}

/*
fundo titulo seletor
#061228
fundo seletor
#164292
Seletor selecionado
#004AC8
Botao antes deposi
#004AC8
Texto Serviços
#004AC8
*/
