/* Estilos Gerais (podem ser mantidos em style.css) */

body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
}

/* TOP */
.top {
    text-align: center;
    padding: 20px;
    background-color: #000;
    color: #fff;
}

.top h1, .top h2 {
    margin: 0;
}

/* MENU */
.menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    background-color: #333;
}

.menu ul li a {
    display: block;
    padding: 15px 20px;
    text-decoration: none;
    color: #fff;
}

.menu ul li a:hover {
    background-color: #fff;
    color: #010101;
}

.menu ul li a i {
    margin-right: 5px;
}

.menu ul li a i:hover {
    color: #010101;
}

/* BANNER - Carrossel de Imagens */
.banner {
    position: relative;
    overflow: hidden;
}

.carrossel {
    width: 100%;
    overflow: hidden;
}

.slides {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.slide {
    min-width: 100%;
    box-sizing: border-box;
}

.slide img.slideImg {
    width: 100%;
    height: auto;
    max-height: 650px;
    object-fit: cover;
}

.navegacao {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    padding: 0 10px;
}

.botao {
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
    font-size: 24px;
    z-index: 10;
}

/* ARTIGO - OFERTAS */
article {
    padding: 20px;
}

.tituloOfertas {
    text-align: center;
    margin-bottom: 20px;
}

.ofertas-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px; /* Espaço entre os cards */
}

.oferta-card {
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 400px;
    display: flex;
    flex-direction: column;
}

.oferta-header {
    position: relative;
    padding: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.vistoOferta {
    display: flex;
    align-items: center;
    background-color: green;
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
}

.vistoOferta img {
    width: 20px;
    margin-left: 5px;
}

.imgIconeCliente {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid #ccc;
}

.imgIconeCliente img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.oferta-body {
    display: flex;
    flex-direction: column;
}

.imgDivProduto {
    width: 100%;
}

.imgDivProduto img {
    width: 100%;
    height: 250px;
    display: block;
}

.contDivProduto {
    padding: 15px;
}

.contDivProduto h4 {
    margin: 0;
    font-size: 1.2em;
}

.contDivProduto h6 {
    color: #555;
    font-size: 0.9em;
    margin-top: 5px;
}

.contDivProduto p {
    font-size: 0.9em;
    color: #666;
}

.vlrProduto {
    display: flex;
    align-items: baseline;
    margin-top: 10px;
}

.vlrProduto span {
    font-size: 1.2em;
    margin-right: 5px;
}

.vlrProduto h1 {
    font-size: 2em;
    margin: 0;
    color: green;
}

.oferta-footer {
    text-align: center;
    padding-left: 5px;
    padding-bottom: 5px;
    font-size: 0.8em;
    display: flex;
    flex-direction: row;
    justify-content: start;
    align-items: start;
}

.link {
    text-align: center;
    padding: 20px;
}

.link a {
    background-color: #000;
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
}

/* CARROSSEL DE EMPRESAS */
.carroselImg {
    text-align: center;
    padding: 20px;
}

.carousel-container {
    position: relative;
    overflow: hidden;
    padding: 10px 0;
}

.carousel {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.carousel-item {
    min-width: 33.33%; /* Exibe 3 itens em desktop */
    box-sizing: border-box;
    padding: 0 10px;
}

.carousel-item img {
    width: 100%;
    height: auto;
    display: block;
}

.arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
    z-index: 10;
}

.arrow.left { left: 0; }
.arrow.right { right: 0; }

/* FOOTER */
footer {
    background-color: #222;
    color: #fff;
    padding: 20px;
}

.preRodape {
    display: flex;
    justify-content: space-around;
    padding-bottom: 20px;
    border-bottom: 1px solid #444;
}

.imgAcei img {
    max-width: 150px;
}

.acesseAcei a, .redesSociaisAcei i {
    display: block;
    color: #fff;
    text-decoration: none;
    margin-top: 5px;
}

.redesSociaisAcei i {
    font-size: 2em;
    margin: 0 5px;
    display: inline-block;
}

.rodape {
    text-align: center;
    padding-top: 10px;
}

/* Modal */
.modal-content {
    background-color: #000;
    color: #fff;
    border: 2px solid #fff;
}
.btn-close {
    color: #fff !important;
    filter: invert(1);
}
.btnEnviarDados {
    background-color: #101010;
    color: #fff;
    border: none;
}


/* Estilos para o formulário de filtro */
#formPgOfertas {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background-color: #f0f0f0;
    border-radius: 8px;
    margin: 20px auto;
    max-width: 800px;
}

#formPgOfertas label {
    font-weight: bold;
    color: #333;
}

#formPgOfertas select,
#formPgOfertas button {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1em;
}

#formPgOfertas button {
    background-color: #000;
    color: #fff;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

#formPgOfertas button:hover {
    background-color: #444;
}

/* Estilos para a Paginação */
.paginacao {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
    gap: 10px;
}

.paginacao span {
    color: #000;
    font-size: 1.2em;
    font-weight: bold;
}

.paginacao a {
    color: #fff;
    text-decoration: none;
    font-size: 1.1em;
    padding: 8px 12px;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.paginacao a:hover,
.paginacao a.active {
    background-color: #444;
}