* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: #e0e0e0;
    line-height: 1.6;
}

header {
    background: rgba(0, 0, 0, 0.8);
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 3px solid #d4a574;
    position: sticky;
    top: 0;
    z-index: 100;
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #d4a574, #f4a460);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: #1a1a2e;
    font-size: 20px;
}

.logo-text h1 {
    font-size: 24px;
    color: #fff;
}

.logo-text p {
    font-size: 12px;
    color: #d4a574;
}

.cta-button {
    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(34, 197, 94, 0.3);
}

.hero {
    background: linear-gradient(135deg, rgba(212, 165, 116, 0.1), rgba(244, 164, 96, 0.05)), 
                url('../images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    padding: 80px 2rem;
    text-align: center;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.hero h2 {
    font-size: 48px;
    margin-bottom: 20px;
    color: #fff;
}

.hero .highlight {
    color: #d4a574;
}

.hero p {
    font-size: 18px;
    max-width: 600px;
    margin-bottom: 30px;
    color: #b0b0b0;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary {
    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: white;
    padding: 15px 40px;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(34, 197, 94, 0.4);
}

.btn-secondary {
    background: transparent;
    color: #d4a574;
    padding: 15px 40px;
    border: 2px solid #d4a574;
    border-radius: 6px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-secondary:hover {
    background: rgba(212, 165, 116, 0.1);
    transform: translateY(-3px);
}

.stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    padding: 40px 2rem;
    text-align: center;
}

.stat-item h3 {
    font-size: 36px;
    color: #d4a574;
    margin-bottom: 10px;
}

.stat-item p {
    color: #b0b0b0;
}

.features {
    background: rgba(0, 0, 0, 0.3);
    padding: 60px 2rem;
}

.features h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    color: #fff;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    background: rgba(212, 165, 116, 0.05);
    border: 1px solid rgba(212, 165, 116, 0.2);
    padding: 30px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.feature-card:hover {
    border-color: #d4a574;
    box-shadow: 0 10px 30px rgba(212, 165, 116, 0.1);
    transform: translateY(-5px);
}

.feature-card h3 {
    color: #d4a574;
    margin-bottom: 15px;
    font-size: 20px;
}

.feature-card p {
    color: #b0b0b0;
    line-height: 1.8;
}

.products {
    padding: 60px 2rem;
}

.products h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    color: #fff;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.product-card {
    background: rgba(212, 165, 116, 0.05);
    border: 1px solid rgba(212, 165, 116, 0.2);
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s ease;
}

.product-card:hover {
    border-color: #d4a574;
    box-shadow: 0 10px 30px rgba(212, 165, 116, 0.1);
}

.product-card h3 {
    color: #fff;
    margin-bottom: 10px;
}

.product-card .category {
    color: #d4a574;
    font-size: 12px;
    margin-bottom: 10px;
}

.product-card .price {
    color: #d4a574;
    font-weight: bold;
    margin: 15px 0;
}

.contact {
    background: rgba(0, 0, 0, 0.3);
    padding: 60px 2rem;
}

.contact h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    color: #fff;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-card {
    background: rgba(212, 165, 116, 0.05);
    border: 1px solid rgba(212, 165, 116, 0.2);
    padding: 30px;
    border-radius: 8px;
    text-align: center;
}

.contact-card h3 {
    color: #d4a574;
    margin-bottom: 15px;
}

.contact-card p {
    color: #b0b0b0;
    margin-bottom: 15px;
}

.cta-section {
    background: linear-gradient(135deg, rgba(212, 165, 116, 0.1), rgba(244, 164, 96, 0.05));
    padding: 60px 2rem;
    text-align: center;
    border-top: 2px solid rgba(212, 165, 116, 0.3);
}

.cta-section h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #fff;
}

.cta-section p {
    font-size: 18px;
    margin-bottom: 30px;
    color: #b0b0b0;
}

footer {
    background: rgba(0, 0, 0, 0.8);
    padding: 40px 2rem;
    text-align: center;
    border-top: 1px solid rgba(212, 165, 116, 0.2);
}

footer p {
    color: #b0b0b0;
    margin-bottom: 10px;
}

.cnpj-info {
    color: #d4a574;
    font-weight: bold;
    margin-top: 10px;
}

@media (max-width: 768px) {
    .hero h2 {
        font-size: 32px;
    }
    
    header {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .btn-primary, .btn-secondary {
        width: 100%;
    }
}
