/* Variáveis de Cores */
:root {
    --primary-blue: #0044cc;
    --dark-blue: #002255;
    --light-bg: #f5f7fa;
    --text-dark: #1a1a1a;
    --text-gray: #666;
    --white: #ffffff;
}

/* Reset Básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    color: var(--text-dark);
    background-color: var(--white);
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* Top Bar */
.top-bar {
    background-color: #1a1a2e;
    color: var(--white);
    font-size: 0.85rem;
    padding: 8px 0;
}

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

.top-bar img {
    width: 14px;
    margin-right: 5px;
    vertical-align: middle;
}

.top-bar-right a {
    margin-left: 15px;
    color: var(--white);
}

/* Header */
header {
    border-bottom: 1px solid #eee;
    padding: 15px 0;
    background-color: var(--white);
    position: relative;
    z-index: 10; /* Garante que o header fique acima do vídeo */
}

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

.logo img {
    max-height: 100px; /* AGORA O LOGO TÁ GRANDE PORRA */
}

nav ul {
    display: flex;
    gap: 30px;
    font-weight: 600;
}

nav ul li a.active {
    color: var(--primary-blue);
    border-bottom: 2px solid var(--primary-blue);
    padding-bottom: 5px;
}

/* Botões */
.btn {
    padding: 10px 24px;
    border-radius: 6px;
    font-weight: bold;
    cursor: pointer;
    display: inline-block;
}

.btn-primary {
    background-color: var(--primary-blue);
    color: var(--white);
}

.btn-large {
    padding: 15px 30px;
    font-size: 1.1rem;
}

.btn-white {
    background-color: var(--white);
    color: var(--dark-blue);
}

/* =========================================
   HERO SECTION - VÍDEO 100% FUNDO E TEXTO POR CIMA
   ========================================= */
.hero {
    position: relative;
    min-height: 80vh; /* Alturona pra ver o escorpião */
    display: flex;
    align-items: center;
    padding: 60px 20px;
    overflow: hidden; /* Corta o vídeo que vazar */
}

/* Vídeo cobrindo TUDO no fundo */
.hero-bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

/* Container alinhado em cima do vídeo */
.hero-container {
    position: relative;
    z-index: 2; /* Joga o texto para a frente do vídeo */
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    display: flex;
    justify-content: flex-start; /* Mantém na esquerda */
}

/* O BLOCO DE TEXTO LIMPO (Sem cartão, sem fundo, sem borda) */
.hero-content {
    max-width: 600px;
    /* Removido o background, o blur e o box-shadow */
}

.hero-content h1 {
    font-size: 4rem;
    color: var(--white); /* AGORA TÁ BRANCO PORRA */
    text-shadow: 0 2px 8px rgba(0,0,0,0.8); /* Sombra pesada pra dar leitura */
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero-content > p {
    font-size: 1.2rem;
    color: var(--white); /* AGORA TÁ BRANCO PORRA */
    text-shadow: 0 2px 6px rgba(0,0,0,0.8); /* Sombra pesada pra dar leitura */
    margin-bottom: 30px;
    font-weight: 500;
}

.hero-features {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    font-weight: bold;
    color: var(--white); /* AGORA TÁ BRANCO PORRA */
    text-shadow: 0 2px 4px rgba(0,0,0,0.8); /* Sombra pesada pra dar leitura */
}

.feature-item img {
    width: 40px;
    height: 40px;
    /* Removidas as bordinhas que estavam no ícone antes também */
}

/* Products Section */
.products-section {
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.section-title h2 {
    color: var(--dark-blue);
    font-size: 2.2rem;
    margin-bottom: 10px;
}

.section-title p {
    color: var(--text-gray);
    margin-bottom: 40px;
}

.products-grid {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.product-card {
    background: var(--light-bg);
    border-radius: 8px;
    padding: 20px;
    width: 200px;
    text-align: left;
}

.product-card img {
    width: 100%;
    border-radius: 4px;
    margin-bottom: 15px;
}

.product-card h3 {
    font-size: 1.1rem;
    color: var(--dark-blue);
    margin-bottom: 5px;
}

.product-card p {
    font-size: 0.85rem;
    color: var(--text-gray);
}

.view-all {
    margin-top: 20px;
}

.view-all a {
    color: var(--primary-blue);
    font-weight: bold;
}

/* Features Middle Section */
.features-section {
    background-color: #f1f8ff;
    padding: 40px 20px;
}

.features-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    text-align: center;
}

.feat-box img {
    width: 50px;
    margin-bottom: 15px;
}

.feat-box h4 {
    color: var(--dark-blue);
    margin-bottom: 10px;
}

.feat-box p {
    font-size: 0.9rem;
    color: var(--text-gray);
}

/* CTA Banner */
.cta-banner {
    background-color: var(--primary-blue);
    padding: 40px 20px;
}

.cta-container {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--white);
}

.cta-content {
    display: flex;
    align-items: center;
    gap: 20px;
}

.cta-content img {
    width: 60px;
}

.cta-content h2 {
    font-size: 1.8rem;
    margin-bottom: 5px;
}

/* Footer */
footer {
    background-color: #0b132b;
    color: #a0aabf;
    padding: 60px 20px 20px 20px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 40px;
}

.footer-col {
    flex: 1;
    min-width: 200px;
}

.brand .footer-logo {
    max-width: 180px;
    margin-bottom: 15px;
}

.socials {
    margin-top: 15px;
}

.socials img {
    width: 30px;
    margin-right: 10px;
}

.footer-col h4 {
    color: var(--white);
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.footer-col ul li {
    margin-bottom: 10px;
    font-size: 0.9rem;
}

.footer-col ul li a:hover {
    color: var(--white);
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    border-top: 1px solid #1c2541;
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
}