/* Copyright: (c) 2026 - Guillermo Roger Hernandez Chandia. 
Status: All Rights Reserved. 
Contexto: Tech Analytics - ADS
*/

@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@700&family=Rajdhani:wght@400;600&display=swap');

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

body { 
    background: #000; 
    color: #fff; 
    font-family: 'Rajdhani', sans-serif; 
    overflow-x: hidden; 
}

/* 1. ENGINE DE FUNDO */
.video-bg-fixo {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    z-index: -1; background: #000;
}

.video-bg-fixo video {
    width: 100%; height: 100%; object-fit: cover;
    filter: brightness(0.22) contrast(1.15) blur(1px);
}

.video-bg-fixo::after {
    content: ""; position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: radial-gradient(circle, rgba(0,0,0,0) 35%, rgba(0,0,0,0.95) 100%);
    z-index: 1;
}

/* 2. INTERFACE */
.main-content {
    position: relative; z-index: 10;
    display: flex; flex-direction: column; align-items: center;
    padding: 60px 20px; min-height: 100vh;
}

.logo {
    font-family: 'Cinzel', serif; color: #d4af37;
    font-size: clamp(2rem, 8vw, 3rem); letter-spacing: 15px;
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
    margin-bottom: 5px;
}

.badge {
    color: #bc13fe; font-size: 0.75rem; letter-spacing: 6px;
    margin-bottom: 60px; font-weight: bold; opacity: 0.7;
}

/* 3. CARDS - GLASSMORPHISM AVANÇADO */
.grid-layout { display: flex; gap: 40px; flex-wrap: wrap; justify-content: center; }

.gold-card {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border: 1px solid rgba(188, 19, 254, 0.12);
    width: 340px; border-radius: 2px;
    overflow: hidden; transition: 0.5s cubic-bezier(0.2, 1, 0.3, 1);
}

.gold-card:hover {
    transform: translateY(-12px);
    border-color: #bc13fe;
    box-shadow: 0 10px 40px rgba(188, 19, 254, 0.2);
}

.video-container { width: 100%; height: 400px; background: #000; }
.video-container video { width: 100%; height: 100%; object-fit: cover; }

.card-body { padding: 30px; text-align: center; }
.card-body h2 { font-family: 'Cinzel', serif; font-size: 1.4rem; margin-bottom: 20px; }

/* 4. BOTÃO DE ELITE */
.btn-link {
    display: inline-block; padding: 12px 28px;
    border: 1px solid #d4af37; color: #d4af37;
    text-decoration: none; font-weight: bold; letter-spacing: 2px;
    clip-path: polygon(10% 0, 100% 0, 90% 100%, 0 100%);
    transition: 0.4s;
}

.btn-link:hover {
    background: #d4af37; color: #000;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
}

/* 5. FOOTER ÉTICO */
.footer-rights {
    position: relative; z-index: 10;
    width: 100%; padding: 40px 20px;
    text-align: center; background: rgba(0,0,0,0.9);
    border-top: 1px solid rgba(212, 175, 55, 0.1);
}

.footer-rights p {
    color: rgba(255,255,255,0.3); font-size: 0.7rem;
    letter-spacing: 1px; line-height: 1.8;
}
