
/*
css do carousel  
*/
.custom-section-bgc {
    position: relative;
    overflow: hidden;
    height: 70vh; /* Altura ajustada */
    display: flex;
    align-items: center;
    justify-content: flex-start; /* Alinha os itens à esquerda */
}
.custom-intro-item {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}
.custom-intro-item.active {
    opacity: 1;
}
.custom-intro-content {
    position: relative;
    z-index: 2;
    color: white;
    text-align: left; /* Alinha o texto à esquerda */
    padding: 2rem;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 8px;
    margin-left: 2rem; /* Adiciona margem à esquerda */
    max-width: 400px; /* Limita a largura máxima do conteúdo */
}
.custom-btn-group {
    margin-top: 1rem;
}
.custom-btn {
    display: inline-block;
    padding: 0.5rem 1rem;
    margin: 0 0.5rem 0 0; /* Adiciona margem à direita */
    border: 1px solid white;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    transition: background 0.3s;
}
.custom-btn:hover {
    background: white;
    color: black;
}


