/* Reset básico */
body, h1, h2, h3, p, ul, li, form, input, textarea, button {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f4f4f4;
}

/* Header */
header {
    background-color: #333;
    color: white;
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header .logo {
    font-size: 24px;
    font-weight: bold;
}

header .nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
}

header .nav-links a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

header .nav-links a:hover {
    color: #ff6600;
}

/* Hero Section */
.hero {
    background: url('https://th.bing.com/th/id/OIP.K7BRkpdVU3AKsDG0ww8pGAHaDf?rs=1&pid=ImgDetMain') no-repeat center center/cover;
    color: rgb(232, 231, 231);
    text-shadow: 10px 10px 5px rgba(0, 0, 0, 0.5);
    text-align: center;
    padding: 100px 20px;
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.hero .cta {
    background-color: #ff6600;
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
}

.hero .cta:hover {
    background-color: #e65c00;
}
/* Products Section */
.products {
    padding: 50px 20px;
    text-align: center;
}

.product-list {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 20px;
}

.product-item {
    background-color: white;
    padding: 20px;
    border-radius: 5px;
    width: 100%;
    max-width: 300px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-align: justify;
    align-items: stretch;
}

.product-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 5px;
}

.product-item h3 {
    margin: 15px 0 10px;
    text-align: justify;
    min-height: 60px;
}

.product-item .price {
    font-size: 20px;
    color: #333;
    font-weight: bold;
    margin: 10px 0;
    text-align: justify;
}

.product-item .buy-button {
    background-color: #333;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    text-align: center;
}

.product-item .buy-button:hover {
    background-color: #ff6600;
}

/* Blog Section */
.blog {
    padding: 50px 20px;
    text-align: center;
}

.blog-posts {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 20px;
}

.blog-post {
    background-color: white;
    padding: 20px;
    border-radius: 5px;
    width: 45%;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.blog-post h3 {
    margin-bottom: 10px;
}

.blog-post .read-more {
    color: #ff6600;
    text-decoration: none;
    font-weight: bold;
}

.blog-post .read-more:hover {
    text-decoration: underline;
}

/* Contact Section */
.contact {
    padding: 50px 20px;
    text-align: center;
}

.contact form {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 400px;
    margin: 0 auto;
}

.contact form input, .contact form textarea {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.contact form button {
    background-color: #333;
    color: white;
    padding: 10px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
}

.contact form button:hover {
    background-color: #ff6600;
}

/* Footer */
footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 20px;
    margin-top: 50px;
}

footer p {
    margin: 0;
}

/* Responsividade */
@media (max-width: 768px) {
    .product-list, .blog-posts {
        flex-direction: column;
        align-items: center;
    }

    .product-item, .blog-post {
        width: 80%;
    }
}