/* Estilos para a tela de carregamento */

.bg-danger {
    background-color: #8A2A2B !important;
}

#loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #AC3436;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    z-index: 1000;
}

.carousel-indicators {
    display: none !important;
}

.logo-container {
    max-width: 260px;
    margin-bottom: 20px;
    padding: 30px;
    background: #ffffff;
    border-radius: 20px;
}

.truck-container {
    width: 100%;
    text-align: center;
}

.truck {
    position: relative;
    animation: moveTruck 3s linear forwards;
}

@keyframes moveTruck {
    0% {
        left: -50%;
    }
    100% {
        left: calc(100% + 50px);
    }
}

/* Estilos gerais */
body {
    font-family: sans-serif;
}

.banner img {
    width: 100%;
    height: auto;
}

.content h1, .content h2 {
    margin-top: 20px;
}

ul {
    list-style-type: none;
    padding: 0;
}

ul li {
    margin-bottom: 10px;
}

.address-overlay {
    position: absolute;
    top: 0;
    left: 0;
    background-color: #AC3436;
    color: white;
    padding: 10px 20px;
    border-bottom-right-radius: 20px; /* Arredonda o canto inferior direito */
    font-size: 0.7rem; /* Ajuste conforme necessÃ¡rio */
    z-index: 10; /* Garante que fique por cima da imagem */
    line-height: 1;
}

.logo-overlay {
    position: absolute;
    bottom: 120px;
    right: 0;
    background-color: #ffffff;
    padding: 10px 20px;
    border-top-left-radius: 20px; /* Arredonda o canto inferior direito */
    z-index: 10; /* Garante que fique por cima da imagem */
}

.logo-overlay img {
    max-width: 80px;
    padding: 5px;
}

.logo-overlay.desktop img {
    max-width: 150px;
    padding: 10px;
}

.address-overlay p {
    margin: 5px 0px;
}

.font-strong {
    font-weight: bold;
}

.font-light {
    font-weight: lighter;
}

/* Cor original */
.btn-primary {
    background-color: #AC3436;
    border-color: #AC3436;
    border-radius: 8px;
}

/* Cor para o hover (aqui usando a versÃ£o mais clara) */
.btn-primary:hover {
    background-color: #821F21; /* Ou use #D44B4C para a versÃ£o mais clara */
    border-color: #821F21;
}

.banner {
    /* position: fixed;
    top: 0;
    left: 0;*/
    width: 100%; 
    z-index: 1000;
    background-color: #AC3436; /* Adicione uma cor de fundo para o caso de a imagem nÃ£o carregar */
}

/* Para garantir que o conteÃºdo nÃ£o fique por trÃ¡s do banner */
body {
    /* padding-top: 200px;  
    background: url('images/fundo-concreto.jpg');
    background-size: cover; 
    background-position: center;
    background-attachment: scroll;
    background-position: center; */
}

.logo {
    width: 100%;
    max-width: 280px;
}

.grupo-mix-logo {
    max-width: 200px;
    padding: 45px 0px 0px;
}

.card-img-top {
    height: 250px;
    object-fit: cover;
}

.modal-header {
    border-bottom: none;
    position: relative;
}
.modal-header .close {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 2.2rem;
    color: #AC3436;
    opacity: 1;
    border: none;
    background: transparent;
}
.modal-header img {
    display: block;
    margin: 0 auto;
}
.consultant-card {
    display: flex;
    align-items: center;
    padding: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    margin-bottom: 10px;
    background-color: #fff;
    border-radius: 5px;
    font-size: 12px;
}
.consultant-photo {
    width: 50px;
    /* height: 50px; */
    border-radius: 50%;
    background-color: #f0f0f0;
    margin-right: 15px;
}
.consultant-photo img {
    border-radius: 50%;
}
.consultant-info {
    flex-grow: 1;
}
.consultant-info b {
    display: block;
}
.consultant-actions {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}
.consultant-actions .btn {
    margin-bottom: 5px;
    width: 80px;
    font-size: 10px;
}
.vertical-divider {
    width: 1px;
    background-color: #ddd;
    height: 50px;
    margin: 0 15px;
}