:root {
    --primary-red: #cc0000;
    --dark-bg: #1a1a1a;
    --text-gray: #555;
    --light-gray: #f4f4f4;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #fff;
    color: #333;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* --- HEADER --- */
header {
    background-color: var(--primary-red);
    color: white;
    padding: 15px 0;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    font-weight: bold;
}

/* LOCAL PARA REAJUSTAR O TAMANHO DA LOGO */
.logo img {
    width: 50px;       /* Altere este valor para a largura desejada */
    height: auto;      /* Mantém a proporção da imagem */
    margin-right: 10px; /* Espaço entre a imagem e o texto ao lado */
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 15px;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-size: 14px;
}

.nav-links a.active {
    font-weight: bold;
    text-decoration: underline;
}

/* --- HERO (BANNER PRINCIPAL) --- */
.hero {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('banner.jpg');
    background-size: cover;
    background-position: center;
    height: 400px;
    display: flex;
    align-items: center;
    color: white;
}

.hero h1 { font-size: 3rem; margin-bottom: 5px; }

.btn-main {
    background: var(--primary-red);
    color: white;
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: bold;
}

/* --- PRODUCT GRID --- */
.section-title {
    text-align: center;
    margin: 40px 0;
    position: relative;
}

.section-title::before, .section-title::after {
    content: "";
    height: 1px;
    width: 20%;
    background: #ccc;
    display: inline-block;
    vertical-align: middle;
    margin: 0 15px;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
    gap: 20px;
}

.product-card {
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    text-align: left;
    display: flex;
    flex-direction: column;
}

.product-card img {
    width: 100%;
    height: 180px;
    object-fit: contain;
    margin-bottom: 15px;
}

.product-card h3 { font-size: 16px; margin: 10px 0; color: #444; height: 40px; }
.product-card .price { color: var(--primary-red); font-weight: bold; font-size: 20px; margin-bottom: 15px; }

.btn-buy {
    background: var(--primary-red);
    color: white;
    text-align: center;
    padding: 10px;
    text-decoration: none;
    border-radius: 4px;
    font-size: 13px;
    font-weight: bold;
}

/* --- FEATURED SECTION --- */
.featured-card {
    background: #fff;
    border: 1px solid #eee;
    margin: 50px 0;
    display: flex;
    align-items: center;
    padding: 30px;
    border-radius: 10px;
    position: relative;
    overflow: hidden;
}

.featured-img img { width: 250px; }
.badge { color: var(--primary-red); font-weight: bold; }
.featured-info h3 { font-size: 24px; }

/* --- BENEFITS --- */
.benefits {
    text-align: center;
    padding: 40px 0;
    border-top: 1px solid #eee;
}

.benefits-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    text-align: left;
    max-width: 800px;
    margin: 20px auto;
}

.benefits-grid div { color: #666; font-size: 14px; }
.benefits-grid i { color: #f39c12; margin-right: 10px; }