/* Wrapper com borda animada */
.fbb-border-wrapper {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    padding: 4px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(90deg, #08f, #f03, #08f);     
    width: 100%;
    max-width: 923px; /* Mantém o limite máximo */
    margin: 0 auto;
    margin-bottom: 24px ;
}

/* Container principal */
.fbb-container {
    width: 100%;
    max-width: 915px;
    height: 220px;
    background-color: #f3f3f3;
    border-radius: 10px;
    overflow: hidden;
    padding: 10px;
    text-align: center;
    color: #292929;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    
}

/* Ajuste do conteúdo */
.fbb-container-bg {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left;
    margin-left: 40px;
    height: 100%;
    width: 100%;
}

/* Estilos do texto */
.fbb-container-bg h3 {
    font-size: 20px;
    margin-bottom: 5px !important;
}

.fbb-description {
 
    
    font-size: 14px;
    margin: 0px;
    margin-bottom: 18px !important;
	text-align:center;
}
.fbb-container-bg span {
    font-size: 10px;
    color: #555;
    
}

/* Botão de chamada para ação */
.fbb-btn-chamada {
    background-color: #f03;
    border-radius: 6px;
    box-shadow: 0 0 4px #a4a4a4;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 700;
    height: 40px;
    padding: 10px 20px;
    width: fit-content;
    cursor: pointer;
    margin: 0 auto;
}
/* Imagem */
.fbb-img-1 {
    width: 100%;
    max-width: 286px;
    height: auto;
    border-radius: 5px;
    object-fit: cover;
}
.fbb-span {
    display: block;
    text-align: center;
    font-size: 12px;
    color: #555;
    
}

/* ======== RESPONSIVIDADE ======== */
@media (max-width: 1024px) {
    .fbb-border-wrapper {
        width: 100%;
        max-width: 95%;
        padding: 6px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .fbb-container {
        flex-direction: column;
        min-height: auto;
        height: auto !important; /* Permite crescimento conforme o conteúdo */
        padding: 20px;
    }

    .fbb-container-bg {
        margin-left: 0;
        text-align: center;
        align-items: center;
    }

    .fbb-img-1 {
        max-width: 80%;
        height: auto;
        margin-bottom: 16px;
    }

    .fbb-btn-chamada {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 768px) {
    .fbb-border-wrapper {
        max-width: 100%;
        padding: 4px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .fbb-container {
        padding: 15px;
        flex-direction: column;
        align-items: center;
        height: auto !important; /* Remove qualquer limitação de altura */
    }

    .fbb-container-bg {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .fbb-container-bg h3 {
        font-size: 22px;
    }

    .fbb-container-bg p {
        font-size: 15px;
    }

    .fbb-container-bg span {
        font-size: 13px;
    }

    .fbb-img-1 {
        max-width: 90%;
        height: auto;
    }

    .fbb-btn-chamada {
        width: 100%;
        max-width: 280px;
    }
}

@media (max-width: 480px) {
    .fbb-border-wrapper {
        padding: 4px;
        width: 100%;
    }

    .fbb-container {
        padding: 12px;
        flex-direction: column;
        align-items: center;
        height: auto !important; /* Mantém altura flexível */
    }

    .fbb-container-bg h3 {
        font-size: 18px;
    }

    .fbb-container-bg p {
        font-size: 14px;
    }

    .fbb-container-bg span {
        font-size: 12px;
    }

    .fbb-btn-chamada {
        font-size: 14px;
        padding: 10px;
        width: 100%;
        max-width: 250px;
    }

    .fbb-img-1 {
        max-width: 100%;
        height: auto;
    }
}
