*{
    font-family: Arial, Helvetica, sans-serif;
    padding: 0;
    margin: 0;
}

@media (min-width: 425px) {
    .bsCategoryDiv {
        display: flex;         /* corrige o display */
        flex-wrap: wrap;       /* permite quebrar linha */
        gap: 1rem;             /* espaço entre itens, opcional */
    }

    .bsCategoryDiv > .businessCategory {
        flex: 0 0 50%;         /* cada item ocupa 50% = 2 colunas */
        box-sizing: borde
    }
}

body{
    box-sizing: border-box;
}

.debug{
    border: 1px dotted red;
}

.hidden{
    display: none;
}

.navbar {
    /* background-color: #004c9c; */
    padding: 1rem;
    list-style-type: none;
    display: flex;
    /* justify-content: space-between; */
    align-items: center;
    text-align: center;
    width: 100%;
    box-sizing: border-box; /* Adicionado */
    margin: auto;
}

.navbarLogo{
    height: 30px;
}

.navbarLogo img{
    height: 100%;
    width: 100%;
}

.navbar ul {
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* width: 30%; */
    padding: 0;
    margin: 0;
    text-align: right;
    align-items: end;
}

.navbar ul li a {
    text-decoration: none;
    color: white;
    display: block;
    padding: 0.5rem 1rem;
}

.mainLogo {
    background-color: #007DFF;
    display: flex;  
    color: #fff;
    justify-content: center;
    text-align: center;
    align-items: center;
    font-weight: 500;
    width: 100%;
    margin: auto;
    padding: 3rem 1rem;
    box-sizing: border-box;
    min-height: 100vh;

    /* background-image: url("images/rits-logorbg.png"); */
    /* background-repeat: no-repeat; */
    /* background-position: center; */
    /* background-size: contain; */
}

.title{
    font-size: 2rem;
    font-weight: 600;
}

.subtitle{
    /* color: rgb(224, 224, 224); */
    opacity: 0.8;
    font-size: 1.15rem;
    font-weight: 600;
}

.buttonCTAWhite{
    background-color: rgb(255, 255, 255);
    color: #000;
    padding: 1rem 1.5rem;
    border: none;
    font-size: 1.1rem;
    border-radius: .7rem;
}

.buttonCTABlack{
    background-color: #00346b;
    color: #fff;
    padding: 1rem 1.7rem;
    border: none;
    font-size: 1.1rem;
    border-radius: .7rem;
}

.businessCategory{
    width: 70%;
    margin: 1.5rem auto;
    border: 1px solid rgb(236, 236, 236);
    box-shadow: 3px 3px 3px rgb(211, 211, 211);
    border-radius: .5rem;
    padding: 1rem;
    font-weight: 600;
    background-color: #fff;
}

.businessCategory:hover{
    transform: scale(1.05);
    transition: transform 0.3s ease;
}

.businessIcon{
    font-size: 1.5rem;
}

.footer{
    padding: 1rem;
    list-style-type: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: center;
    border-top: 1px solid #fff;
    margin: auto;
}


.contentDiv{
    padding: 3rem 1rem ;
    display: flex;
    border: 1px solid rgb(236, 236, 236);
    text-align: center;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    max-height: fit-content;
    min-height: 100vh;
    box-sizing: border-box;
    overflow: hidden;
}

.darkerBg{
    background-color: rgb(248, 248, 248);
}

.contentDivText{  
    /* font-size: 1.3rem;   */
    display: flex;
    /* color: #fff; */
    width: 80%;
}

.contentDivTitle{
    font-size: 2rem;  
}

.contentDivImage {
    height: 100%;
    height: 50%;
    /* overflow: hidden; */
}

.contentDivImage img{
    width: 100%;
    /* height: 50%; */
    object-fit: cover;
    display: block;
}

.carousel-container {
    position: relative;
    width: 90%;
    margin: 2rem auto;
    overflow: hidden;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.carousel-card {
    min-width: 250px;
    margin: 0 1rem;
    text-align: center;
    flex-shrink: 0;
}

.carousel-card img {
    width: 100%;
    border-radius: 10px;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0,0,0,0.5);
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    cursor: pointer;
    font-size: 1.5rem;
    z-index: 10;
}

.carousel-btn.prev {
    left: 0;
}

.carousel-btn.next {
    right: 0;
}