/* Importando uma fonte moderna */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;700&display=swap');

body, html {
    margin: 0;
    padding: 0;
    font-family: 'Inter', sans-serif;
    background-color: #0f0f0f;
    color: white;
    scroll-behavior: smooth;
}

/* O Segredo da Imagem de Fundo */
.hero-section {
    height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), 
                url('https://images.unsplash.com/photo-1550751827-4bd374c3f58b?q=80&w=2070') no-repeat center center/cover;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    border-bottom: 2px solid #d4af37; /* Linha dourada sutil */
}

h1 {
    font-size: 4rem;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 5px;
}

.highlight {
    color: #d4af37; /* Dourado */
}

p.subtitle {
    font-size: 1.2rem;
    color: #888;
    margin-top: 10px;
}

/* Botão Estilo Hacker/Moderno - Atualizado para consistência */
.btn-gold {
    margin-top: 30px;
    padding: 12px 30px;
    border: 1px solid #d4af37;
    background: transparent;
    color: #d4af37;
    text-transform: uppercase;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
    letter-spacing: 2px;
    
    /* Adições para alinhar o link com o botão */
    display: inline-block;      /* Garante que o link aceite largura/altura */
    text-decoration: none;      /* Remove o sublinhado do link */
    box-sizing: border-box;     /* Garante que o padding não aumente o botão */
    line-height: normal;        /* Centraliza o texto verticalmente */
    text-align: center;
    vertical-align: middle;
}

.btn-gold:hover {
    background: #d4af37;
    color: black;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
}
/* Seção de Serviços */
.services-section {
    padding: 100px 20px;
    background-color: #0f0f0f;
    text-align: center;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 50px;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.services-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

/* Estilo Glassmorphism com Dourado */
.service-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(212, 175, 55, 0.2); /* Borda dourada sutil */
    padding: 40px;
    border-radius: 15px;
    width: 300px;
    transition: 0.4s;
    backdrop-filter: blur(10px);
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: #d4af37; /* Dourado brilha no hover */
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.1);
}

.service-card .icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.service-card h3 {
    color: #d4af37;
    margin-bottom: 15px;
    text-transform: uppercase;
    font-size: 1.2rem;
}

.service-card p {
    color: #bbb;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Footer */
.main-footer {
    padding: 40px 20px;
    background-color: #0a0a0a;
    border-top: 1px solid #333;
    text-align: center;
    color: #666;
    font-size: 0.9rem;
}

.social-links {
    margin-top: 15px;
}

.social-links a {
    color: #d4af37;
    text-decoration: none;
    margin: 0 15px;
    transition: 0.3s;
}

.social-links a:hover {
    color: white;
    text-shadow: 0 0 10px #d4af37;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: rgba(15, 15, 15, 0.95);
    border: 1px solid #d4af37;
    padding: 20px;
    display: none; /* Escondido por padrão */
    justify-content: space-between;
    align-items: center;
    border-radius: 10px;
    backdrop-filter: blur(10px);
    z-index: 1000;
}

.btn-gold-sm {
    background: #d4af37;
    border: none;
    padding: 8px 20px;
    cursor: pointer;
    font-weight: bold;
    border-radius: 5px;
}

.contact-section { padding: 100px 20px; text-align: center; background: #0f0f0f; }
.contact-form { max-width: 600px; margin: 0 auto; display: flex; flex-direction: column; gap: 15px; }

.input-group { display: flex; gap: 15px; }
.contact-form input, .contact-form textarea {
    background: #1a1a1a;
    border: 1px solid #333;
    padding: 15px;
    color: white;
    border-radius: 5px;
    font-family: inherit;
}

.contact-form input:focus, .contact-form textarea:focus {
    border-color: #d4af37;
    outline: none;
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.2);
}

.product-image {
    height: 150px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    margin-bottom: 15px;
    border-radius: 8px;
}
.price {
    display: block;
    font-weight: bold;
    color: #fff;
    font-size: 1.2rem;
    margin-top: 10px;
}
/* Navbar Moderna e Fixa */
.main-nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(15, 15, 15, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    z-index: 1000;
    padding: 15px 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.nav-logo {
    font-weight: bold;
    font-size: 1.2rem;
    color: white;
    text-decoration: none;
    letter-spacing: 2px;
}

.nav-links {
    display: flex;
    gap: 20px;
}

.nav-item {
    color: #bbb;
    text-decoration: none;
    font-size: 0.9rem;
    text-transform: uppercase;
    transition: 0.3s;
    font-weight: bold;
}

.nav-item:hover {
    color: #d4af37; /* O seu dourado padrão */
}






/* Ajustes para Celular (Telas menores que 768px) */
@media (max-width: 768px) {
    /* 1. Navbar: Centraliza o logo e os links */
    .nav-container {
        flex-direction: column;
        gap: 10px;
    }
    
    .nav-links {
        gap: 15px;
    }

    /* 2. Hero Section: Diminui o texto para não quebrar linha feio */
    h1 {
        font-size: 2.2rem;
        letter-spacing: 2px;
    }

    p.subtitle {
        font-size: 1rem;
        padding: 0 10px;
    }

    /* 3. Botões: Deixa eles ocuparem mais largura no celular */
    .actions {
        display: flex;
        flex-direction: column;
        width: 80%;
        gap: 10px;
    }

    .btn-gold {
        margin-top: 10px;
        width: 100%; /* Botões um em cima do outro e largos */
    }

    /* 4. Formulário de Contato: Empilha Nome e E-mail */
    .input-group {
        flex-direction: column;
        gap: 15px;
    }

    /* 5. Seção de Serviços e Cards */
    .services-section {
        padding: 60px 20px;
    }

    .service-card {
        width: 100%; /* Card ocupa a largura total disponível */
        padding: 25px;
    }
}



#btn-whatsapp {

position: fixed;
bottom: 25px;
right: 25px;

background: #25d366;
color: white;

padding: 14px 22px;

border-radius: 50px;

font-weight: bold;
text-decoration: none;

box-shadow: 0px 6px 20px rgba(0,0,0,0.25);

transition: 0.3s;

z-index: 9999;

}

#btn-whatsapp:hover {

background: #1ebe5d;

transform: scale(1.08);

}