body {
    font-family: sans-serif;
    margin: 0;
    padding: 0;
    color: rgb(237,236,233);
}

header {
    background-color: rgb(237,236,233);
    padding: 20px;
}

.logo-container {
    background-color: rgb(237,236,233);
    display: flex;
    justify-content: center;
    align-items: center;     
    height: 200px;           
}
  
.logo {
    max-width: 100%;
    height: 200px;
}

.top-bar {
    background-color: #fff;
    display: flex;
    justify-content:space-between;
    align-items: center;
    margin-bottom: 10px;
    padding: 20px;
}

.top-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
}

.top-menu li {
    margin-left: 20px;
}

.top-menu a {
    text-decoration: none;
    color: #555;
    font-size: 15px;
}

.contact-info span {
    color:rgb(237,236,233);
    background-color: rgb(179, 12, 179);
    padding: 8px 15px;
    border-radius: 5px;
    font-size: 15;
}

.promo-banners {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    padding: 15px;
}

.banner {
    text-align: center;
    border-radius: 5px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 60px;
    font-size: 15px;
}

.banner:first-child {
    background-color: white;
    color: #00008B;
    flex-grow: 1; 
}

.banner:nth-child(2),
.banner:nth-child(3) {
    background-color: rgb(179, 12, 179);
    color: white;
    flex-grow: 2;
}

.code {
    font-weight: bold;
}

.nome-logo h1 {
    text-align: center;
    margin-bottom: 15px;
    color: #222;
    font-size: 40px;
    font-weight: bold;
    letter-spacing: 1px;
}

.main-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    background-color: #fff;
    border-bottom: 1px solid #ddd;
    padding: 10px 0;
}

.main-menu li {
    margin: 0 15px;
}

.main-menu a {
    text-decoration: none;
    color: #333;
    font-weight: bold;
    font-size: 15px;
}

main {
    padding: 20px;
}

.new-arrivals h2 {
    text-align: center;
    margin-bottom: 20px;
    color: #333;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.product-card {
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
}

.product-card img {
    width: 100%;
    display: block;
    height: 500px;
}

.product-info {
    padding: 30px;
    text-align: center;
}

.price {
    font-weight: bold;
    color: red;
    display: block;
    margin-bottom: 10px;
}

.description {
    font-size: 20px;
    color: #555;
}

footer {
    background-color: #333;
    color: white;
    padding: 30px 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    margin-bottom: 20px;
}

.footer-logo h3 {
    font-size: 30px;
    margin-bottom: 10px;
}

.footer-links h4 {
    font-size: 20px;
    margin-bottom: 10px;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    text-decoration: none;
    color: #ddd;
    font-size: 15px;
}

.newsletter form {
    display: flex;
}

.newsletter input[type="email"] {
    padding: 10px;
    border: none;
    border-radius: 5px 0 0 5px;
    flex-grow: 1;
    color: #333;
}

.newsletter button {
    background-color: rgb(179, 12, 179);
    color: white;
    border: none;
    padding: 10px 15px;
    border-radius: 0 5px 5px 0;
    cursor: pointer;
}

.copyright {
    text-align: center;
    font-size: 12px;
    color: #ccc;
    margin-top: 20px;
}
