
/* Estilo Global */
body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    color: #333;
    background-color: #f9f9f9;
    line-height: 1.6;
    text-align: center;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

/* Cabeçalho (agora igual ao rodapé) */
header {
    background: #333;
    color: white;
    padding: 20px 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

header .logo {
    max-width: 140px;
    height: auto;
    margin-right: 15px;
}

.header-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left;
}

header h1 {
    font-size: 2rem;
    margin: 0;
}

header p {
    font-size: 1rem;
    margin: 5px 0 0;
}

/* Responsividade do cabeçalho */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        text-align: center;
    }

    header .logo {
        max-width: 100px;
        margin-bottom: 10px;
    }

    .header-text {
        text-align: center;
    }
}

/* Contêiner dos banners */
.banners-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 20px auto;
    max-width: 1200px;
}

/* Estilo dos Banners */
.banner {
    flex: 1;
    text-align: center;
    max-width: 380px;
}

.banner img {
    width: 100%;
    max-width: 380px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease-in-out;
}

.banner img:hover {
    transform: scale(1.02);
}

/* Responsividade dos banners */
@media (max-width: 1024px) {
    .banners-container {
        flex-wrap: wrap;
    }

    .banner {
        max-width: 45%;
    }

    .banner img {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .banners-container {
        flex-direction: column;
        align-items: center;
    }

    .banner {
        max-width: 320px;
    }

    .banner img {
        max-width: 320px;
    }
}

/* Rodapé */
footer {
    background: #333;
    color: white;
    text-align: center;
    padding: 15px 0;
    margin-top: 30px;
    font-size: 0.9rem;
}

/* Ajustes responsivos do rodapé */
@media (max-width: 768px) {
    footer {
        font-size: 0.8rem;
        padding: 10px 0;
    }
}

.produtos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 20px;
    margin-top: 20px;
}
.produto-item {
    background: #fff;
    padding: 10px;
    text-align: center;
    border-radius: 8px;
    box-shadow: 0 0 5px rgba(0,0,0,0.1);
}
.produto-item a {
    display: block;
    background: none;
}
.produto-item img {
    width: 100%;
    max-width: 120px;
    height: auto;
    margin-bottom: 10px;
    background: transparent;
    border-radius: 6px;
}

/* Ajuste de espaçamento para linhas de dispositivos Amazon */
.linhas-dispositivos {
    justify-content: center;
}

/* Estilo para destacar seções */
section.destacada {
    background-color: #ffffff;
    padding: 40px 20px;
    margin: 50px auto;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

/* Títulos destacados */
section.destacada h2 {
    font-size: 2rem;
    margin-bottom: 30px;
    color: #222;
    position: relative;
}

section.destacada h2::after {
    content: "";
    display: block;
    width: 60px;
    height: 4px;
    background-color: #4CAF50;
    margin: 10px auto 0;
    border-radius: 2px;
}
