/* RastaIT */

body { background-color: #050505; color: #fff; overflow-x: hidden; }

/* --- MENU MOBILE --- */
.mobile-menu-overlay {
    position: fixed; top: 0; left: 0; width: 100%; height: 100vh;
    background: #0a0a0a; z-index: 8000;
    transform: translateY(-100%);
    display: flex; flex-direction: column; justify-content: center; align-items: center;
}

/* --- PORTAS --- */
.elevator-door-container {
    position: fixed; top: 0; left: 0; width: 100%; height: 100vh;
    z-index: 9999; pointer-events: none; display: flex;
}
.elevator-door {
    position: relative; width: 50%; height: 100%;
    background: #111; border-bottom: 4px solid #000;
    will-change: transform; pointer-events: auto;
}
.door-left { border-right: 2px solid #333; }
.door-right { border-left: 2px solid #333; }
.floor-display {
    position: fixed; top: 50%; left: 50%; transform: translate(-50%, -50%);
    z-index: 10000; color: white; mix-blend-mode: normal; pointer-events: none;
}

/* --- IMAGENS E HERO --- */
.hero-bg {
    position: absolute; inset: 0;
    background-image: url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?q=80&w=1080&auto=format&fit=crop'); 
    background-size: cover; background-position: center; opacity: 0.6;
}
.card-bg-img {
    transition: transform 1s ease, filter 0.5s ease;
    filter: grayscale(100%) brightness(0.6);
}
.service-card:hover .card-bg-img {
    transform: scale(1.1);
    filter: grayscale(0%) brightness(0.8);
}

/* --- FORMS --- */
.form-input {
    background: transparent;
    border-bottom: 1px solid rgba(255,255,255,0.2);
    padding: 1rem 0;
    width: 100%;
    outline: none;
    transition: all 0.3s ease;
    border-radius: 0; 
}
.form-input:focus {
    border-bottom-color: #2563eb;
    padding-left: 10px;
}

/* --- HOLOGRAMA 3D --- */
.perspective-container {
    perspective: 1200px; 
    perspective-origin: 50% 20%; 
    overflow: hidden;
}
.holo-card {
    background: rgba(10, 10, 10, 0.95);
    border: 1px solid rgba(37, 99, 235, 0.3);
    box-shadow: 0 0 30px rgba(37, 99, 235, 0.1), inset 0 0 20px rgba(0,0,0,0.8);
    position: absolute; 
    top: 0; left: 0; width: 100%; height: 100%;
    display: flex; flex-direction: column; justify-content: center; align-items: center;
    padding: 2rem;
    text-align: center;
    border-radius: 8px;
    transform-style: preserve-3d;
    backface-visibility: hidden;
    will-change: transform, opacity;
}
.holo-card::before {
    content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 2px;
    background: linear-gradient(90deg, transparent, #2563eb, transparent);
    box-shadow: 0 0 10px #2563eb;
}
.digital-grid {
    position: absolute; top: 50%; left: -50%; width: 200%; height: 200%;
    background-image: linear-gradient(rgba(37, 99, 235, 0.1) 1px, transparent 1px), linear-gradient(90deg, rgba(37, 99, 235, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    transform: rotateX(80deg);
    transform-origin: center top;
    animation: gridMove 20s linear infinite;
    z-index: -1;
    pointer-events: none;
    mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 60%);
}
@keyframes gridMove { 0% { background-position: 0 0; } 100% { background-position: 0 50px; } }
.holo-number {
    font-family: 'Syncopate', sans-serif;
    color: #2563eb;
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 1rem;
    transform: translateZ(20px);
    text-shadow: 0 0 10px rgba(37, 99, 235, 0.5);
}
.holo-title {
    color: #fff; text-transform: uppercase; font-weight: bold; font-size: 1.8rem;
    margin-bottom: 1.5rem; letter-spacing: 0.05em;
    transform: translateZ(10px);
}
.holo-text {
    color: #d4d4d4; font-size: 1.1rem; line-height: 1.6; max-width: 600px; font-weight: 400;
}

/* --- COMPLEMENTARY SERVICES GRID --- */
.comp-card {
    background: #0f0f0f; 
    border: 1px solid rgba(255,255,255,0.1);
    padding: 2rem;
    border-radius: 4px;
    transition: all 0.3s ease;
    position: relative; overflow: hidden;
    z-index: 50; 
}
.comp-card:hover {
    border-color: #2563eb;
    background: #151515;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.1);
}

.cursor-pointer { cursor: pointer; }

/* --- FOOTER MARQUEE --- */
.marquee-container { overflow: hidden; white-space: nowrap; }
.marquee-content { display: inline-block; animation: marquee 20s linear infinite; }
@keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* --- WHATSAPP REACTOR BUTTON --- */
.whatsapp-reactor {
    position: fixed; bottom: 2rem; right: 2rem; z-index: 9999;
    width: 70px; height: 70px;
    display: flex; justify-content: center; align-items: center;
    cursor: pointer; text-decoration: none;
}
.reactor-core {
    width: 100%; height: 100%;
    background: linear-gradient(135deg, #25D366, #128C7E);
    border-radius: 50%;
    display: flex; justify-content: center; align-items: center;
    box-shadow: 0 0 0 4px rgba(37, 211, 102, 0.2);
    position: relative; z-index: 20;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.whatsapp-reactor:hover .reactor-core {
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 0 20px rgba(37, 211, 102, 0.8);
}
.reactor-wave {
    position: absolute; top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 100%; height: 100%;
    border-radius: 50%;
    border: 2px solid #25D366;
    opacity: 0;
    z-index: 10;
    animation: reactorPulse 2s infinite;
}
.delay-1 { animation-delay: 0.5s; }
.delay-2 { animation-delay: 1s; }
@keyframes reactorPulse {
    0% { width: 100%; height: 100%; opacity: 0.8; border-width: 4px; }
    100% { width: 250%; height: 250%; opacity: 0; border-width: 0px; }
}
.wa-tooltip {
    position: absolute; right: 80px; top: 50%; transform: translateY(-50%) translateX(20px);
    background: #fff; color: #000;
    padding: 8px 16px; border-radius: 4px;
    font-weight: bold; uppercase; font-family: 'Manrope', sans-serif; text-transform: uppercase; font-size: 0.8rem;
    opacity: 0; pointer-events: none; transition: all 0.3s ease;
    white-space: nowrap;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}
.wa-tooltip::after {
    content: ''; position: absolute; right: -6px; top: 50%; transform: translateY(-50%);
    border-left: 6px solid #fff; border-top: 6px solid transparent; border-bottom: 6px solid transparent;
}
.whatsapp-reactor:hover .wa-tooltip { opacity: 1; transform: translateY(-50%) translateX(0); }