/* Section One */
.image-section {
    text-align: center;
    padding: 3em 1em;
    background-color: #FFF2FF;
}

.section-image {
    max-width: 75%;
    height: auto;
    border-radius: 10px;
    /* Deixe conforme preferir */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    /* Sombras para destacar a imagem */
}

@media screen and (max-width: 768px) {
    .section-image {
        width: 100%;
        object-fit: cover;
    }
}

/* Fim Section One */

/* Consultores */
.consultores {
    padding: 50px 0;
    background-color: #681C7B;
    /* Ajuste conforme necessário */
    text-align: center;
}

.consultores h2 {
    font-size: 3em;
    color: #FFF2FF;
    margin-bottom: 30px;
    font-weight: bold;
}

@media screen and (max-width: 767px) {
    .consultores h2 {
        font-size: 2em;
    }
}

.container-consultores {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    max-width: 1280px;
    /* Define a largura máxima */
    margin: auto;
    /* Centraliza o conteúdo */
}

.box-consultores {
    width: 300px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease;
}

.container-consultores .box-consultores {
    flex: 1 1 calc(25% - 20px);
    /* 4 itens por linha */
    max-width: 300px;
    /* Garante que cada box tenha no máximo 300px */
    min-width: 220px;
    /* Define a largura mínima para flexibilidade */
}

.box-consultores:hover {
    transform: translateY(-10px);
}

.card {
    position: relative;
    height: 100%;
}

.card-container {
    position: relative;
}

.background-img {
    width: 100%;
    height: 250px;
    background-size: cover;
    background-position: center;
}

.card-status {
    position: absolute;
    bottom: 0;
    right: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
    background-color: transparent;
}

.status-svg {
    width: 100%;
    height: 100%;
}

.status-circle {
    position: absolute;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background-color: #19AE41;
    /* Cor padrão: verde */
    z-index: 2;
    right: 15px;
    /* Ajuste para posicionar o círculo mais à direita */
    top: 50%;
    /* Alinha o círculo verticalmente no centro */
    transform: translateY(-50%);
    /* Corrige o alinhamento vertical */
}

/* Status - Alterar cores conforme o status do consultor */
.status-online .status-circle {
    background-color: #19AE41;
    /* Verde */
}

.status-ocupado .status-circle {
    background-color: #AD0D0D;
}

.status-offline .status-circle {
    background-color: #6C6C6C;
}

.conteudo {
    padding: 20px;
    display: flex;
    flex-direction: column;
    height: 320px;
}

.informacoes {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.nome-consultor {
    margin: 0;
    font-size: 1.2em;
    font-weight: bold;
    color: #681C7B;
    text-align: start;
}

.status-consultor {
    color: #19AE41;
    font-size: 1.1em;
    text-align: start;
    font-weight: bold;
}

.status-online .status-consultor {
    color: #19AE41;
}

.status-ocupado .status-consultor {
    color: #AD0D0D;
}

.status-offline .status-consultor {
    color: #6C6C6C;
}


.status a {
    text-decoration: none;
    color: #681C7B;
    font-weight: 600;
}

.info-consultor p {
    font-size: 0.9em;
    color: #681C7B;
    line-height: 1.5;
    margin-bottom: 20px;
    text-align: justify;
}

/* Estilos gerais do botão */
.btn {
    text-align: center;
    margin-top: auto;
    /* Isso empurra o botão para o fundo */
}

.btn button {
    background-color: #19AE41;
    /* Cor padrão (pode ser modificada) */
    color: white;
    border: none;
    padding: 10px 30px;
    font-size: 1em;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.3s;
    margin: auto;
}

.btn button:hover {
    transform: translateY(-5px);
}

/* Estilos do botão com base no status */
.status-online .btn button {
    background-color: #19AE41;
    /* Verde */
    color: white;
}

.status-online .btn button:hover {
    background-color: #17A338;
    /* Um tom mais escuro de verde */
}

.status-ocupado .btn button {
    background-color: #AD0D0D;
    /* Cinza */
    color: white;
}

.status-ocupado .btn button:hover {
    background-color: white;
    /* Um tom mais escuro de cinza */
}

.status-offline .btn button {
    background-color: #6c6c6c;
    /* Vermelho */
    color: white;
}

.status-offline .btn button:hover {
    background-color: #555;
    /* Um tom mais escuro de vermelho */
}

/* Responsividade */
@media screen and (max-width: 768px) {
    .container-consultores {
        flex-direction: column;
        align-items: center;
    }

    .box-consultores {
        width: 90%;
        margin-bottom: 20px;
    }
}

/* Estilo para o botão "Ver Mais" */
.btn-ver-mais {
    background-color: #FFF2FF;
    /* Cor verde para o botão */
    color: #36003A;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    display: block;
    margin: 20px auto;
    font-weight: 400;
}

.btn-ver-mais:hover {
    background-color: #16a537;
    /* Cor mais escura no hover */
}

/* Responsividade: ajuste do botão em telas menores */
@media screen and (min-width: 768px) {
    .btn-ver-mais {
        display: none;
    }
}

/* Fim Consultores */

/* Passo a passo */

.step-section {
    background-color: #FFF2FF;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 4em 1em;
    gap: 32px;
}

.step-section .titulo{
    font-size: 2em;
    color: #681C7B;
    font-weight: 400;
}

.container-step{
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 550px;
}

.arrow-step{
    width: 48px;
    height: 48px;
}

.caixa-de-icones{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.caixa-de-icones img{
    width: 64px;
    height: 64px; 
    border: 2px solid #681C7B;
    border-radius: 100px;
    padding: 5px;
}

@media screen and (max-width:767px) {

    .step-section .titulo{
        text-align: center;
    }

    .container-step{
        width: 320px;
    }

    .arrow-step{
        display: none;
    }

    .caixa-de-icones img{
        width: 48px;
        height: 48px; 
    }
}