/* Reset básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #f0f0f0;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

header {
    background-color: #D7F205;
    color: #5581D9;
    padding: 10px 0;
}

.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    font-size: 24px;
}

.search {
    text-align: right;
}

.search form {
    display: inline-block;
}

.search input[type="text"] {
    padding: 8px;
    width: 300px;
    border: 1px solid #ccc;
    border-radius: 4px 0 0 4px;
}

.search button {
    padding: 8px 15px;
    background-color: black;
    color: white;
    border: 1px solid black;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
}

nav ul {
    list-style-type: none;
    display: flex;
    justify-content: center;
    background-color: #444;
    margin-top: 10px;
}

nav ul li {
    margin: 0 10px;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    padding: 10px 15px;
    display: inline-block;
}

nav ul li a:hover {
    background-color: #555;
}

hr {
    border: none;
    border-top: 1px solid #ccc;
    margin: 20px 0;
}

.showroom {
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.product {
    display: flex;
    flex-wrap: wrap;
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.product-image {
    flex: 1 1 300px;
    padding: 20px;
    text-align: center;
}

.product-image img {
    max-width: 100%;
    display: block;
    border-radius: 8px;
    transition: transform 0.2s ease-in-out;
}

.product-image img:hover {
    transform: scale(1.1);
}

.product-details {
    flex: 1 1 calc(100% - 320px);
    padding: 20px;
}

.product-details h2 {
    font-size: 24px;
    margin-bottom: 10px;
}

.product-details p {
    margin-bottom: 10px;
}

.product-details ul {
    list-style-type: none;
    padding-left: 0;
}

.product-details ul li {
    margin-bottom: 5px;
}

.product-details strong {
    font-weight: bold;
}

footer {
    background-color: #5581D9;
    color: #fff;
    text-align: center;
    padding: 10px 0;
}

.contact-info p {
    margin-bottom: 5px;
}
/* Estilo básico do menu de navegação */
nav ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: space-around;
    background-color: #5581D9;
}

nav ul li {
    display: inline;
}

nav ul li a {
    display: block;
    color: white;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
}

nav ul li a:hover {
    background-color: #111;
}

/* Estilo para telas menores (responsivo) */
@media screen and (max-width: 600px) {
    nav ul {
        flex-direction: column;
        width: 100%;
    }
    
    nav ul li {
        display: block;
        text-align: center;
    }
    
    nav ul li a {
        padding: 10px;
        border-bottom: 1px solid #ddd;
    }
    
}
