/* =========================================
   RESET BÁSICO E CONFIGURAÇÕES GERAIS
========================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: #040814; /* Fundo escuro da imagem */
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h4, p {
    text-align: center; /* Centralizar texto no geral */
}

/* =========================================
   CABEÇALHO (HEADER) E NAVEGAÇÃO (Comum)
========================================= */
header {
    background-color: #040814;
    padding: 20px 50px;
    border-bottom: 1px solid #1a2235;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.logo img {
    height: 40px;
    width: auto;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 30px;
}

.nav-links a {
    text-decoration: none;
    color: #ffffff;
    font-weight: 500;
    font-size: 15px;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #00e5ff;
}

.nav-links a.active, .nav-links a.contact-link {
    color: #00e5ff; /* Azul ciano de destaque */
}

/* =========================================
   SEÇÃO PRINCIPAL DO PRODUTO (SCR-DRIVER)
========================================= */
.product-hero {
    padding: 60px 20px;
    display: flex;
    justify-content: center;
}

.product-container {
    display: flex;
    gap: 50px;
    max-width: 1100px;
    width: 100%;
    align-items: center; /* Centralizar verticalmente as duas colunas */
}

/* Coluna da Imagem */
.product-image img {
    max-width: 450px;
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    display: block;
    margin: 0 auto; /* Centralizar horizontalmente se a coluna for menor */
}

/* Coluna de Informações */
.product-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center; /* Centralizar conteúdo da coluna de texto */
    text-align: center;
}

.badge {
    display: inline-block;
    border: 1px solid #003366;
    color: #0077ff;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 20px;
    background-color: rgba(0, 51, 102, 0.2);
}

.product-info h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 15px;
    letter-spacing: -0.5px;
}

.description {
    color: #8b95a5; /* Texto cinza */
    font-size: 16px;
    margin-bottom: 30px;
    max-width: 600px; /* Limitar largura para centralização */
}

/* =========================================
   CAIXA DE PREÇO E BOTÕES (SCR-DRIVER)
========================================= */
.price-box {
    background-color: #1a1d24; /* Fundo cinza escuro */
    border-left: 4px solid #0055ff; /* Borda azul lateral */
    padding: 20px 25px;
    border-radius: 8px;
    margin-bottom: 25px;
    width: 100%;
    max-width: 400px; /* Limitar largura para centralização */
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.price-label {
    display: block;
    color: #8b95a5;
    font-size: 14px;
    margin-bottom: 8px;
}

.price-value {
    font-size: 36px;
    font-weight: bold;
    color: #ffffff;
}

/* Botão WhatsApp */
.whatsapp-buy-btn {
    display: block;
    width: 100%;
    max-width: 400px; /* Limitar largura para centralização */
    background-color: #25d366;
    color: #ffffff;
    text-align: center;
    padding: 16px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    transition: background-color 0.3s;
    margin-bottom: 15px;
}

.whatsapp-buy-btn i {
    margin-right: 8px;
    font-size: 20px;
}

.whatsapp-buy-btn:hover {
    background-color: #1ebc5a;
}

/* Link de Download PDF */
.download-link {
    display: inline-block;
    margin-top: 10px;
    color: #00e5ff;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s;
    text-align: center;
}

.download-link i {
    margin-right: 8px;
}

.download-link:hover {
    color: #ffffff;
    text-decoration: underline;
}

/* =========================================
   SEÇÃO DE DIFERENCIAIS (Comum, Centralizada)
========================================= */
.specs {
    padding: 60px 20px 80px;
    background-color: #02050d; /* Mais escuro para contraste */
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.section-title {
    font-size: 28px;
    margin-bottom: 40px;
    color: #ffffff;
}

.specs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1100px;
    width: 100%;
    justify-items: center; /* Centralizar os itens do grid */
}

.spec-item {
    background-color: #1a1d24;
    padding: 30px;
    border-radius: 12px;
    border-top: 3px solid #0055ff;
    transition: transform 0.3s;
    width: 100%;
    max-width: 350px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.spec-item:hover {
    transform: translateY(-5px);
}

.spec-item i {
    font-size: 30px;
    color: #00e5ff;
    margin-bottom: 15px;
}

.spec-item h4 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #ffffff;
}

.spec-item ul {
    list-style-position: inside;
    color: #8b95a5;
    text-align: left; /* Centralizar o bloco, mas alinhar os itens à esquerda */
    width: 100%;
    display: inline-block;
}

.spec-item ul li {
    margin-bottom: 10px;
    font-size: 15px;
}

/* =========================================
   PÁGINA SOBRE A EMPRESA (Unificada)
========================================= */
/* Supõe que a seção principal de sobre.html tenha a classe 'sobre-hero' */
.sobre-hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 60px 20px;
}

/* Contêiner da Logo Central */
.logo-sobre-container {
    margin-bottom: 30px;
    width: 100%;
    display: flex;
    justify-content: center;
}

/* Centralizar e Reduzir a Logo Central (Baseado na image_3.png) */
.sobre-logo {
    max-height: 150px; /* Reduzir tamanho de gigante para razoável */
    width: auto;
    display: block;
    margin: 0 auto;
}

/* Texto e Blocos da Página Sobre */
.sobre-title, .sobre-text, .sobre-subtitle, .sobre-grid {
    text-align: center;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.sobre-text {
    margin-bottom: 40px;
}

/* Grid de Serviços de Sobre */
.servicos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1000px;
    width: 100%;
    margin-top: 40px;
    justify-items: center;
    text-align: center;
}

/* =========================================
   RESPONSIVIDADE (PARA CELULARES)
========================================= */
@media (max-width: 900px) {
    .product-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .product-image img {
        max-width: 100%;
    }

    .nav-links {
        display: none; /* Em um site real, aqui entraria um menu sanduíche */
    }
}