/* Reset CSS - Remove margens e paddings padrão para garantir um layout consistente */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;  /* Faz com que a largura e altura incluam padding e borda */
    font-family: "Segoe UI", Arial, Helvetica, sans-serif;
    list-style: none; /* Remove os estilos padrão das listas */
}

/* Estilização do cabeçalho da página */
header {
    display: flex; /* Usa flexbox para organizar os elementos */
    align-items: center; /* Alinha os itens verticalmente ao centro */
    justify-content: space-around;  /* Distribui os elementos uniformemente */
    height: 70px; /* Define a altura do cabeçalho */

    img {
        height: 36px;  /* Define a altura da imagem no cabeçalho */
        margin: 16px 10px;

    }

    ul {
        display: flex; /* Exibe os itens da lista em linha */
        align-items: center; /* Alinha os itens verticalmente */
        gap: 20px; /* Espaçamento entre os itens da lista */
        margin: 0;
    }

    li {
        cursor: pointer; /* Transforma o cursor em um ponteiro para indicar interatividade */
        color: #262626; /* Cor do texto dos itens da lista */

    }

    .list-microsoft-resp {
        display: none; /* Esconde esse elemento por padrão */
    }
}

/* Estilização do carrossel */
.slide {
    .carousel-control-prev, .carousel-control-next {
         top: 300px; /* Ajusta a posição dos botões de navegação */
    }

    .img-carousel-resp {
        display: none; /* Oculta imagens responsivas por padrão */
    }

}

/* Configuração do conteúdo dentro do carrossel */
.slide .carousel-item .slider-items {
    width: 30%; /* Define a largura do conteúdo */
    margin-left: 5%;
    position: absolute;
    top: 80px; /* Ajusta a posição vertical */

    h2 {
        font-size: 1.8rem; /* Define o tamanho do título */
        font-weight: 600;
        line-height: 1.2;
 
    }

    p {
        font-size: 1.0rem;
        font-weight: 400;
        margin-bottom: 10px;
    }

    button {
        background-color: #0067b8; /* Define a cor de fundo do botão */
        color: #fff !important; /* Define a cor do texto e garante prioridade sobre outros estilos */
        padding: 10px 20px;  /* Espaçamento interno do botão */
        font-weight:  500;
        border: none; /* Remove a borda do botão */

    }

    a {
        font-size: 1.2rem;
        margin-left: 10px;
        font-weight: 600;

    }
}

/* Seção de links */
.links {
    display: flex; 
    gap: 50px;  /* Espaçamento entre os links */
    align-items: center;
    justify-content: center;
    margin: 80px 0;
    width: 100%;

    div {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 10px;


        img {
            height: 40px;
        }

        a {
            color: 0067b8;
            font-size: 1.2rem;
            font-weight: 500;
        }
    }

}

/* Estilização dos cartões */
.container-cards {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 0 5%;

    .wrapper-cards {
        display: flex;
        justify-content: space-between;
        gap: 20px;
        width: 100%;
        max-width: 1500px;

        .card {
            flex-grow: 1;
            border-radius: 0;
            border: none;
            box-shadow: 0 .1875rem .4375rem 0 rgba(0, 0, 0, .13), 0 .0625rem .125rem 0 rgba(0, 0, 0, .11);

            .card-body {
                display: flex;
                flex-direction: column;
                justify-content: space-between;

                .card.text {
                    margin-bottom: 10px;
                }


            }
        }
    }
}

/* Botões */
.btn.btn-primary {
    background-color: #0067b8;
    border: none;
    border-radius: 0;
}

/* Banner principal */
.banner {
    padding: 0 5%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 80px 0;

    img {
        width: 100%;
        max-width: 1500px;

    }

    .card {
        position: absolute;
        left: 13%;
        border-radius: 0;
        border: none;
        padding: 30px;
        width: 20rem;

        h5 {

            font-size: 1.5rem;
            margin-bottom: 16px;
        }
    }

}

/* Seção de título de negócios */
.title-business {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 0 5%;
    margin-bottom: 20px;

    div {
        width: 100%;
        max-width: 1500px;

        h3 {
            font-size: 2.4rem;
            font-weight: 600;
        }
    }
}

/* Seção de mídias sociais */
.social-midia {
    display: flex;
    justify-content: center;
    padding: 0 5%;
    margin-bottom: 20px;

    div {
        width: 100%;
        max-width: 1500px;

        ul {
            display: flex;
            align-items: center;
            padding: 0;
            margin: 60px 0;
            gap: 20px;

            li {
                cursor: pointer;

                p {
                    margin: 0;
                    font-size: 1.2rem
                }

                img {

                    width: 34px;
                }
            }


        }

    }
}

/* Botão fixo no final da tela */
.btn-start {
    display: flex;
    justify-content: flex-end;
    padding-right: 20px;
    position: sticky;
    bottom: 20px;
   

    a {
        cursor: pointer;
        padding: 0.6rem 0.75rem;
        background: linear-gradient(rgba(0,0,0,.15),rgba(0,0,0,.15));
        text-decoration: none;
        color: #000;
        text-decoration: none;
    }
}
/* Rodapé */
.footer {
    display: flex;
    background-color: #f2f2f2;
    
    ul {
        margin: 30px;
        display: flex;
        flex-direction: column;
        gap: 12px;
        

    }
    ul .bold {
        font-size: 1.5rem;
        font-weight: 500;
    }
    li {
        color: #616161;
    }
}