/* Reset e Estilos Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
    color: #f0000a;
    transition: color 0.3s ease;
}

a:hover {
    color: #c00008;
}

h1, h2, h3 {
    font-weight: 700;
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 2rem;
}

h3 {
    font-size: 1.25rem;
}

p {
    margin-bottom: 1rem;
}

ul {
    list-style: none;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 0;
}

section {
    padding: 4rem 0;
}

/* Animação de Fade-in */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

section {
    animation: fadeIn 0.8s ease-out;
}

/* Botões */
.btn-primary, .btn-secundario {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    border-radius: 4px;
    font-weight: 700;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: #f0000a;
    color: white;
    border: 2px solid #f0000a;
}

.btn-primary:hover {
    background-color: #c00008;
    border-color: #c00008;
    color: white;
}

.btn-secundario {
    background-color: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secundario:hover {
    background-color: white;
    color: #f0000a;
}

/* Container de botões na hero */
.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    align-items: center;
    margin-top: 1rem;
    flex-wrap: wrap;
}

/* Botão de download do catálogo */
.btn-download {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    border-radius: 4px;
    font-weight: 700;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    background-color: white;
    color: #f0000a;
    border: 2px solid white;
}

.btn-download:hover {
    background-color: #f0000a;
    color: white;
    border-color: #f0000a;
}

/* Cabeçalho da seção produtos com botão */
.produtos-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('imagens/fundo-home.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    z-index: -1;
}

.hero-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.7), rgba(0,0,0,0.5));
}

.hero-content {
    position: relative;
    z-index: 1;
    color: #fff;
    text-align: center;
    padding: 2rem;
}

.logo {
    max-width: 250px;
    margin-bottom: 2rem;
}

.subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

/* Sobre a Marca */
.sobre {
    background-color: #f9f9f9;
}

.historia {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.features {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 2rem;
}

.feature {
    flex: 1;
    min-width: 200px;
    text-align: center;
}

.icon {
    margin-bottom: 1rem;
}

/* Produtos */
.produtos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.produto {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    padding: 1.5rem;
    transition: transform 0.3s ease;
}

.produto:hover {
    transform: translateY(-5px);
}

.produto img {
    border-radius: 4px;
    margin-bottom: 1rem;
}

.beneficio {
    color: #f0000a;
    font-weight: 500;
}

/* Por que escolher */
.porque-escolher {
    background-color: #0d0d0d;
    color: white;
}

.cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.card {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    background-color: rgba(255, 255, 255, 0.1);
}

/* CTA Final */
.cta-final {
    background-color: #f0000a;
    color: white;
    text-align: center;
}

/* Newsletter */
.newsletter {
    background-color: #f9f9f9;
    text-align: center;
}

.newsletter-form {
    display: flex;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 4px 0 0 4px;
    font-family: 'Poppins', sans-serif;
}

.newsletter-form button {
    border-radius: 0 4px 4px 0;
    padding: 0 1.5rem;
    border: none;
}

/* Footer */
.footer {
    background-color: #0d0d0d;
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-logo, .links-rapidos, .redes-sociais {
    flex: 1;
    min-width: 200px;
}

.logo-small {
    max-width: 150px;
}

.links-rapidos ul li {
    margin-bottom: 0.5rem;
}

.links-rapidos a {
    color: white;
}

.links-rapidos a:hover {
    color: #f0000a;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.copyright {
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1rem;
    font-size: 0.9rem;
}

/* Responsividade */
@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    .produtos-grid, .cards {
        grid-template-columns: 1fr;
    }
    
    .features {
        flex-direction: column;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-form input, .newsletter-form button {
        width: 100%;
        border-radius: 4px;
        margin-bottom: 0.5rem;
    }
} 