/* ==========================================================================
   Rooted Soluções em T.I. - Estilo Premium Cyber-3D (Paleta de Cores do Site)
   ========================================================================== */

:root {
    --cyber-green: #e1da18; /* Amarelo original do site! */
    --cyber-teal: #ffffff;  /* Branco/Prata para contraste tecnológico! */
    --cyber-dark: #0E0E0E;  /* Fundo escuro original do site! */
    --cyber-card-bg: rgba(255, 255, 255, 0.015);
    --cyber-glow: 0 0 20px rgba(225, 218, 24, 0.15);
}

/* 3D Canvas Background */
.premium-3d-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -2;
    pointer-events: none;
    background: radial-gradient(circle at 50% 50%, #181818 0%, #0e0e0e 100%);
    overflow: hidden;
}

/* Glassmorphism Cards with 3D perspective */
.glass-card-3d {
    background: var(--cyber-card-bg) !important;
    backdrop-filter: blur(16px) saturate(120%) !important;
    -webkit-backdrop-filter: blur(16px) saturate(120%) !important;
    border: 1px solid rgba(255, 255, 255, 0.05) !important;
    border-radius: 20px !important;
    padding: 2.5rem !important;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3) !important;
    transition: border-color 0.4s ease, box-shadow 0.4s ease !important;
    transform-style: preserve-3d;
    perspective: 1000px;
}

.glass-card-3d:hover {
    border-color: rgba(225, 218, 24, 0.25) !important;
    box-shadow: 0 20px 50px rgba(225, 218, 24, 0.08), 0 0 30px rgba(225, 218, 24, 0.03) !important;
}

/* Custom 3D Checkboxes */
.custom-checkbox-3d {
    transition: all 0.3s ease;
}
.custom-checkbox-3d.active {
    background: rgba(225, 218, 24, 0.08) !important;
    border-color: var(--cyber-green) !important;
    box-shadow: 0 0 15px rgba(225, 218, 24, 0.2) !important;
}

/* Floating 3D Graphic Shapes (CSS Parallax) */
.floating-3d-shape {
    position: absolute;
    pointer-events: none;
    z-index: -1;
    filter: blur(2px);
    opacity: 0.12;
    transition: transform 0.1s ease-out;
}

.shape-ring {
    width: 150px;
    height: 150px;
    border: 15px solid var(--cyber-green);
    border-radius: 50%;
    box-shadow: 0 0 30px rgba(225, 218, 24, 0.4);
}

.shape-cube {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--cyber-green), transparent);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    box-shadow: 0 0 35px rgba(225, 218, 24, 0.4);
}

/* Floating Animation */
@keyframes floatY {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(180deg); }
}

.floating-3d-shape.animate-float {
    animation: floatY 12s infinite ease-in-out;
}

/* Neon buttons with yellow brand glow */
.glowing-btn-neon {
    position: relative;
    overflow: hidden;
    background: var(--cyber-green) !important;
    color: var(--cyber-dark) !important;
    border: none !important;
    box-shadow: 0 0 15px rgba(225, 218, 24, 0.35) !important;
    transition: all 0.3s ease !important;
}

.glowing-btn-neon:hover {
    box-shadow: 0 0 25px rgba(225, 218, 24, 0.65) !important;
    transform: translateY(-2px);
}

/* Yellow Brand Text */
.text-brand-yellow {
    color: var(--cyber-green) !important;
}

/* Interactive HD Shredder Box */
.hd-shredder-box {
    position: relative;
    width: 100%;
    min-height: 380px;
    background: rgba(255, 255, 255, 0.01);
    border: 1px dashed rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.shredder-hdd-wrapper {
    position: relative;
    width: 120px;
    height: 170px;
    margin-bottom: 20px;
    transform-style: preserve-3d;
    perspective: 500px;
    transition: transform 0.6s ease;
}

.shredder-hdd {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.5));
}

.shredder-laser {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--cyber-green), transparent);
    box-shadow: 0 0 12px var(--cyber-green);
    display: none;
    z-index: 10;
}

/* Shredding Exploding Particles styling */
.shred-particle {
    position: absolute;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--cyber-green);
    box-shadow: 0 0 10px var(--cyber-green);
    pointer-events: none;
}

/* Hologram Certification Badge */
.hologram-badge {
    position: absolute;
    transform: scale(0);
    opacity: 0;
    background: rgba(225, 218, 24, 0.05);
    border: 1px solid rgba(225, 218, 24, 0.35);
    box-shadow: 0 0 25px rgba(225, 218, 24, 0.15), inset 0 0 15px rgba(225, 218, 24, 0.08);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 1.5rem;
    max-width: 250px;
    text-align: center;
    z-index: 20;
}

.hologram-badge i {
    font-size: 2.5rem;
    color: var(--cyber-green);
    text-shadow: 0 0 10px var(--cyber-green);
    margin-bottom: 0.5rem;
}

.hologram-badge h5 {
    color: #fff;
    font-weight: 700;
    margin-bottom: 5px;
}

.hologram-badge p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.8rem;
    margin: 0;
}

/* Form styling updates */
.glass-form-input {
    background: rgba(255, 255, 255, 0.02) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    color: #fff !important;
    border-radius: 12px !important;
    padding: 0.8rem 1.2rem !important;
    transition: all 0.3s ease !important;
}

.glass-form-input:focus {
    background: rgba(255, 255, 255, 0.04) !important;
    border-color: var(--cyber-green) !important;
    box-shadow: 0 0 15px rgba(225, 218, 24, 0.2) !important;
}

/* Submenu dynamic styling */
.nav-section-link {
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.nav-section-link:hover, .nav-section-link.active {
    background: rgba(225, 218, 24, 0.1) !important;
    border-color: rgba(225, 218, 24, 0.3) !important;
    color: var(--cyber-green) !important;
    box-shadow: 0 0 15px rgba(225, 218, 24, 0.1);
}
