/* =========================================
   VRTICE | THE EXECUTIVE MONOLITH (LINKPAGE CSS)
   Engenharia Visual: 10x Design & High-Ticket
   ========================================= */

/* --- 1. SETUP & TIPOGRAFIA DE ELITE --- */
@font-face {
    font-family: 'Abhaya Libre';
    src: url('../fonts/AbhayaLibre-Bold.ttf') format('truetype');
    font-weight: 700;
    font-display: swap;
}

@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/Montserrat-Regular.ttf') format('truetype');
    font-weight: 400;
    font-display: swap;
}

:root {
    /* Paleta Oficial VRTICE */
    --black-abs: #050505;
    --black-light: #0d0d0d;
    --blue-navy: #141d33;
    --white-off: #f1ece2;
    --gold-base: #c8a970;
    --gold-glow: rgba(200, 169, 112, 0.25);
    --glass-border: rgba(255, 255, 255, 0.06);
    
    /* Transições Arquitetônicas */
    --transition-snappy: 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-smooth: 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

* { 
    margin: 0; 
    padding: 0; 
    box-sizing: border-box; 
    -webkit-tap-highlight-color: transparent; 
}

body {
    background-color: var(--black-abs);
    color: var(--white-off);
    font-family: 'Montserrat', sans-serif;
    height: 100vh; /* No-Scroll Absoluto */
    width: 100vw;
    overflow: hidden;
    position: relative;
    display: flex;
    justify-content: center;
    /* Profundidade Radial Sutil */
    background-image: radial-gradient(circle at 50% -20%, var(--blue-navy) 0%, var(--black-abs) 65%);
}

/* =========================================
   2. O PRELOADER (BRASÃO E FILOSOFIA)
   ========================================= */
#preloader {
    position: fixed; 
    inset: 0;
    background: var(--black-abs);
    z-index: 10000;
    display: flex; 
    justify-content: center; 
    align-items: center;
}

.logo-anim-wrapper {
    display: flex; 
    flex-direction: column; 
    align-items: center;
    opacity: 0; /* JS assume o controle */
}

#vrtice-loader-svg { 
    width: 130px; 
    height: 130px; 
    margin-bottom: 25px; 
}

#motto-loader-svg { 
    width: 90vw; 
    max-width: 500px; 
    height: 60px; 
}

.vrtice-vector {
    fill: transparent;
    stroke: var(--gold-base);
    stroke-width: 8px; /* Proporcional a viewBox 1080 */
    stroke-dasharray: 8000;
    stroke-dashoffset: 8000;
}

.vrtice-motto-vector {
    font-family: 'Abhaya Libre', serif;
    font-size: 85px;
    font-weight: 700;
    fill: transparent;
    stroke: var(--gold-base);
    stroke-width: 2px; /* Linha fina e elegante */
    stroke-dasharray: 2000;
    stroke-dashoffset: 2000;
}

@media (max-width: 768px) {
    #vrtice-loader-svg { width: 110px; height: 110px; margin-bottom: 20px; }
    .vrtice-motto-vector { font-size: 60px; }
}

/* =========================================
   3. MARCA D'ÁGUA MASSIVA
   ========================================= */
.massive-watermark {
    position: absolute; 
    top: 50%; 
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: 'Abhaya Libre', serif;
    font-size: clamp(100px, 22vw, 350px);
    color: rgba(255, 255, 255, 0.015); /* Presença subliminar */
    z-index: 0; 
    pointer-events: none; 
    user-select: none;
    white-space: nowrap;
}

/* =========================================
   4. O MONOLITO CENTRAL (INTERFACE)
   ========================================= */
.monolith-wrapper {
    position: relative; 
    z-index: 1;
    width: 100%; 
    max-width: 540px;
    height: 100%;
    padding: 8vh 25px 5vh 25px;
    display: flex; 
    flex-direction: column; 
    justify-content: space-between;
}

/* --- CABEÇALHO --- */
.monolith-header { 
    text-align: center; 
    opacity: 0; 
    transform: translateY(-20px);
}

.monolith-logo {
    height: 40px; /* Logo dominante */
    width: auto;
    margin-bottom: 35px;
    filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.05));
}

.monolith-titles { 
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.monolith-h1 {
    font-family: 'Abhaya Libre', serif;
    font-size: 2.2rem;
    color: var(--gold-base);
    line-height: 1.1;
    letter-spacing: 1px;
}

.monolith-subhead {
    font-size: 0.85rem;
    color: #888;
    line-height: 1.5;
    font-weight: 400;
    padding: 0 10px;
}

/* =========================================
   5. MÓDULOS DE ELITE (NAVEGAÇÃO)
   ========================================= */
.monolith-nav { 
    display: flex; 
    flex-direction: column; 
    gap: 14px; 
    width: 100%;
}

.elite-module {
    position: relative;
    display: flex; 
    align-items: center;
    width: 100%;
    padding: 22px 25px;
    background: linear-gradient(90deg, var(--black-light) 0%, var(--black-abs) 100%);
    border: 1px solid var(--glass-border);
    border-radius: 4px;
    text-decoration: none;
    overflow: hidden;
    transition: var(--transition-smooth);
    opacity: 0; 
    transform: translateY(20px);
}

/* Barra de Sotaque Oculta */
.module-accent {
    position: absolute; 
    left: 0; 
    top: 0;
    height: 100%; 
    width: 3px;
    background: var(--gold-base);
    opacity: 0;
    transform: scaleY(0);
    transform-origin: center;
    transition: var(--transition-snappy);
}

.module-num {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem; 
    font-weight: 700;
    color: #444;
    margin-right: 22px;
    transition: color var(--transition-snappy);
}

.module-text {
    flex: 1;
    display: flex; 
    flex-direction: column; 
    gap: 4px;
}

.m-title {
    font-size: 0.85rem; 
    font-weight: 700; 
    letter-spacing: 1.5px;
    color: #ccc;
    transition: color var(--transition-snappy);
}

.m-desc {
    font-size: 0.65rem; 
    font-weight: 400; 
    color: #666;
    transition: color var(--transition-snappy);
}

.module-icon {
    font-size: 1.4rem; 
    color: #555;
    transition: var(--transition-snappy);
}

/* --- HOVER ESTADO PADRÃO --- */
.elite-module:hover {
    border-color: rgba(200, 169, 112, 0.2);
    background: linear-gradient(90deg, #121212 0%, #080808 100%);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
}

.elite-module:hover .module-accent { 
    opacity: 1; 
    transform: scaleY(1); 
}
.elite-module:hover .module-num { color: var(--gold-base); }
.elite-module:hover .m-title { color: var(--white-off); }
.elite-module:hover .m-desc { color: #aaa; }
.elite-module:hover .module-icon { 
    color: var(--gold-base); 
    transform: translateX(4px); 
}

/* --- MÓDULO OURO (ALTO CONTRASTE) --- */
.module-gold {
    background: var(--gold-base);
    border: 1px solid var(--gold-base);
}

.module-gold .module-num,
.module-gold .m-title,
.module-gold .m-desc,
.module-gold .module-icon { 
    color: var(--black-abs); 
}

.module-gold .m-title { font-weight: 800; }
.module-gold .m-desc { font-weight: 600; opacity: 0.75; }

/* Inversão Implacável no Hover */
.module-gold:hover {
    background: var(--black-abs);
    border-color: var(--gold-base);
    box-shadow: 0 0 25px var(--gold-glow);
}

.module-gold:hover .module-num,
.module-gold:hover .m-title,
.module-gold:hover .module-icon { color: var(--gold-base); }
.module-gold:hover .m-desc { color: var(--white-off); }

/* --- FLUID TOUCH PROTOCOL (MOBILE) --- */
@media (max-width: 968px) {
    .elite-module:active { 
        transform: scale(0.97) !important; 
        transition: transform 0.1s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
    }
}

/* =========================================
   6. RODAPÉ DE SISTEMA
   ========================================= */
.monolith-footer {
    display: flex; 
    flex-direction: column; 
    align-items: center; 
    gap: 15px; 
    opacity: 0; 
}

.footer-socials { 
    display: flex; 
    gap: 25px; 
}

.footer-socials a { 
    color: #444; 
    font-size: 1.6rem; 
    transition: color var(--transition-snappy); 
}

.footer-socials a:hover { 
    color: var(--gold-base); 
    transform: translateY(-2px);
}

.footer-tech-stamp { 
    font-size: 0.6rem; 
    font-weight: 600;
    letter-spacing: 3px; 
    color: #333; 
}