/* Estilos gerais */
body {
    margin: 0;
    padding: 0;
    font-family: 'Montserrat', sans-serif;
    background-color: #eeeeee !important;
}

#align-container{
    margin-top: 2px;
}
#container{
    background-color: #ffffff;
    box-shadow: 0 0 0.3em rgba(0, 0, 0, 0.288);


}

/* Estilo da seção 1 */
.section-1 {
    padding: 40px;

}

.section-1 h2 {
    margin-bottom: 20px;
    font-weight: bolder;
}

/* Estilo da seção 2 */
.section-2 {
    max-width: 100%;
    overflow: hidden;
}

.section-2 img {
    width: 100%;
    height: auto;
    display: block;
}
.announcements {
    background-color: #ffffff;
    padding: 40px 0;
}

.announcements h2 {
    text-align: center;
    font-size: 28px;
    margin-bottom: 3%;
    color: #923534;
}

.announcement-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}
.announcement-card {
    flex-basis: calc(29% - 20px); /* 3 cards por linha, com espaçamento entre eles */
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;

    border: 1px solid rgba(0, 0, 0, 0.217);
}

.announcement-card:hover {
    transform: translateY(-5px); /* Efeito de levantamento ao passar o mouse */
    border: 1px #7323288c;
    box-shadow: 0 0 0.5em #991e1c;
    cursor: pointer;
}

.icon-text {
    display: flex;
    align-items: center;
    font-size: 16px;
    margin-top: 10px;
}

.icon-text i {
    margin-right: 10px;
    color: #923534; /* Cor do ícone */
}

.more-info {
    text-align: center;
    margin-top: 20px;
}

.more-info a {
    text-decoration: none;
    color: #923534;
    font-weight: bold;
}

.see-more {
    text-align: center;
    margin-top: 40px;
}
.section-2{
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}
.section-2 img{
    max-width: 800px;
}

.see-more a {
    text-decoration: none;
    background-color: #923534;
    color: #ffffff;
    padding: 10px 20px;
    font-size: 18px;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.see-more a:hover {
    background-color: #732329;
}

.section-1 h3 {
    color: #923534;
    margin-top:6px;
    margin-left: 10px;
    margin-bottom: 10px;

}

/* Estilos gerais para ícones do Font Awesome */
.fa {
    font-size: 24px;
}
.hr-title{
    color: #923534;

}

#icon-sobre-nos{
    color: #923534;
}
.align-icon{
    display: flex;
    justify-content: start;
    align-items: center;
}
.align-icon p{
    margin-left: 10px;
    margin-top: 15px;
}
#info-fornecedor{
    display: flex;
    flex-direction: column;

}

.section-2 h3{
    color: #923534;
    margin-top: 5px;
    margin-left: 10px;

}

.section-2 .align-icon{
   margin-bottom: 20px;
}

#fornecedor-logo img{
    border-radius: 50%;
    width: 160px !important;
    height: 160px !important;
}

/* Responsividade */
@media (min-width:690px) and (max-width: 1040px) {
    .announcement-card {
        flex-basis: calc(45% - 20px); /* 2 cards por linha em telas menores */
    }
}

@media (max-width:689px){
    .announcement-card {
        flex-basis: calc(40% - 20px); /* 2 cards por linha em telas menores */
    }
}
@media (max-width:500px){
    .announcement-card {
        flex-basis: calc(85% - 20px); /* 2 cards por linha em telas menores */
    }
}

@media (max-width: 768px){
    #section-3{
        flex-direction: column;
    }
    .column{
        width: 90%;

    }
    .section-1{
        padding: 40px 20px 30px 20px;
    }
}
