/* ========================================= */
/* 1. VARIÁVEIS E RESET BÁSICO */
/* ========================================= */
:root {
    --primary-color: #A5002D; /* Vermelho escuro, baseado no logo */
    --secondary-color: #2c3e50; /* Cinza escuro para texto/fundo */
    --light-bg: #f4f4f4;
    --text-color: #333;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: white;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Estilo do botão principal */
.btn {
    display: inline-block;
    background-color: var(--primary-color);
    color: white;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 5px;
    margin-top: 15px;
    transition: background-color 0.3s;
    border: none;
    cursor: pointer;
}

.btn:hover {
    background-color: #8c0022; /* Tonalidade mais escura do vermelho */
}

/* ========================================= */
/* 2. CABEÇALHO E NAVEGAÇÃO */
/* ========================================= */
.header {
    background: white;
    padding: 10px 0;
    border-bottom: 3px solid var(--primary-color);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap; /* Para responsividade */
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 60px;
    margin-right: 10px;
}

.logo h1 {
    font-size: 1.8em;
    color: var(--secondary-color);
}

.navbar ul {
    list-style: none;
    display: flex;
}

.navbar ul li a {
    text-decoration: none;
    color: var(--secondary-color);
    padding: 10px 15px;
    display: block;
    font-weight: bold;
    transition: color 0.3s;
}

.navbar ul li a:hover, .navbar ul li a.active {
    color: var(--primary-color);
    border-bottom: 2px solid var(--primary-color);
}

/* ========================================= */
/* 3. CARROSSEL (HOME) */
/* ========================================= */
.carousel-section {
    position: relative;
    max-width: 100%;
    overflow: hidden;
}

.carousel {
    position: relative;
}

.carousel-slide {
    display: none; 
    width: 100%;
    height: 450px; 
    position: relative;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.6);
    color: white;
    padding: 20px;
    width: 100%;
}

/* Controles do Carrossel */
.carousel .prev, .carousel .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 16px;
    margin-top: -22px;
    color: white;
    font-weight: bold;
    font-size: 30px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
    background-color: rgba(0, 0, 0, 0.4);
    border: none;
    z-index: 10;
}

.carousel .next {
    right: 0;
    border-radius: 3px 0 0 3px;
}

.carousel .prev:hover, .carousel .next:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

/* ========================================= */
/* 4. LAYOUT GERAL E PRODUTOS EM DESTAQUE (HOME) */
/* ========================================= */
.content, .page-content {
    padding: 40px 0;
    min-height: 60vh;
}

.featured-products h2 {
    text-align: center;
    margin-bottom: 30px;
    color: var(--primary-color);
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.product-card {
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    transition: box-shadow 0.3s;
}

.product-card:hover {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.product-card img {
    width: 100%;
    max-height: 200px;
    object-fit: contain;
    margin-bottom: 15px;
}

.product-card h3 {
    color: var(--secondary-color);
    margin-bottom: 10px;
}

/* ========================================= */
/* 5. PÁGINA QUEM SOMOS */
/* ========================================= */
.about-us-hero {
    text-align: center;
    padding: 30px 0;
}

.about-us-hero h1 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.about-us-hero p {
    font-size: 1.1em;
    max-width: 800px;
    margin: 0 auto;
}

.mission-vision-values h2, .differentiators h2 {
    text-align: center;
    color: var(--secondary-color);
    margin: 40px 0 20px;
}

.mvv-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    text-align: center;
}

.mvv-card {
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    background: var(--light-bg);
}

.mvv-card h3 {
    color: var(--primary-color);
    margin-bottom: 10px;
}

.differentiators ul {
    list-style-type: '👉 ';
    padding-left: 20px;
    max-width: 800px;
    margin: 20px auto 40px;
}

.differentiators li {
    margin-bottom: 10px;
}

.call-to-action {
    text-align: center;
    background-color: #f0f0f0;
    padding: 30px;
    border-radius: 8px;
    margin-top: 30px;
}

.call-to-action p {
    font-size: 1.2em;
    margin-bottom: 15
	
/* ===== TABELA DE CARACTERÍSTICAS ===== */

.product-specs {
    max-width: 900px;
    margin: 40px auto;
}

.product-specs h2 {
    font-size: 1.2rem;
    margin: 20px 0 10px;
}

.spec-table {
    width: 100%;
    border-collapse: collapse;
    background-color: #f2f2f2;
    border-radius: 6px;
    overflow: hidden;
    margin-bottom: 25px;
}

.spec-table td {
    padding: 12px 16px;
    font-size: 0.95rem;
}

.spec-table tr:nth-child(even) {
    background-color: #ffffff;
}

.spec-table td:first-child {
    font-weight: 600;
    width: 45%;
}
``