:root {
    --unix-bg-dark: #0a0a0a;
    --unix-secondary-dark: #121212;
    --unix-highlight-green: #00ff00;
    --unix-text-green: #33ff33;
    --unix-dim-green: #00aa00;
    --unix-border-green: #004400;
    --unix-input-bg: #050505;
    --unix-shadow-green: rgba(0, 255, 0, 0.15);
    --unix-link-cyan: #00ffff;
}

body {
    background-color: var(--unix-bg-dark);
    color: var(--unix-text-green);
    font-family: 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

a {
    color: var(--unix-link-cyan);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: var(--unix-highlight-green);
    text-shadow: 0 0 5px var(--unix-highlight-green);
}

/* Navbar Customization */
.navbar-custom {
    background-color: var(--unix-secondary-dark);
    border-bottom: 1px solid var(--unix-border-green);
    box-shadow: 0 0 15px var(--unix-shadow-green);
}

.navbar-brand {
    font-weight: bold;
    color: var(--unix-highlight-green) !important;
    text-shadow: 0 0 5px rgba(0, 255, 0, 0.5);
    font-size: 1.5rem;
}

.nav-item {
    margin: 0 5px;
}

.nav-link {
    color: var(--unix-text-green) !important;
    padding: 8px 12px !important;
    border: 1px solid transparent;
    border-radius: 4px;
    transition: all 0.3s ease;
    font-weight: 500;
    white-space: nowrap;
    /* Prevents line breaks */
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.nav-link:hover,
.nav-link.active {
    color: var(--unix-highlight-green) !important;
    border-color: var(--unix-highlight-green);
    background-color: rgba(0, 255, 0, 0.1);
    box-shadow: 0 0 10px rgba(0, 255, 0, 0.2);
    text-shadow: none;
    /* Removed blur for sharper look */
}

/* Card Styles based on Principal.html */
.card {
    background: linear-gradient(135deg, var(--unix-secondary-dark) 0%, rgba(0, 0, 0, 0.9) 100%);
    border: 1px solid var(--unix-border-green);
    box-shadow: 0 0 20px rgba(0, 255, 0, 0.05);
    transition: all 0.3s ease-in-out;
}

.card:hover {
    box-shadow: 0 0 25px rgba(0, 255, 0, 0.2);
    transform: translateY(-5px);
    border-color: var(--unix-dim-green);
}

.card-body {
    padding: 2rem;
}

/* Feature Sections */
.secao-titulo {
    color: var(--unix-highlight-green);
    border-bottom: 2px solid var(--unix-border-green);
    padding-bottom: 0.8rem;
    margin-bottom: 1.5rem;
    text-shadow: 0 0 10px rgba(0, 255, 0, 0.4);
    font-weight: bold;
}

.icone-secao {
    color: var(--unix-highlight-green);
    margin-right: 0.8rem;
}

/* Highlight Box (Quem Somos Destaque) */
.quem-somos-destaque {
    background: linear-gradient(135deg, var(--unix-input-bg) 0%, rgba(0, 170, 0, 0.08) 100%);
    border: 1px solid var(--unix-border-green);
    border-left: 4px solid var(--unix-highlight-green);
    padding: 1.5rem;
    border-radius: 8px;
    height: 100%;
    transition: all 0.3s ease;
}

.quem-somos-destaque:hover {
    box-shadow: 0 0 15px rgba(0, 255, 0, 0.1);
    transform: translateY(-3px);
}

.quem-somos-destaque h5 {
    color: var(--unix-highlight-green);
    margin-bottom: 1rem;
    font-weight: bold;
}

/* Footer & Utils */
footer {
    background-color: var(--unix-secondary-dark);
    border-top: 1px solid var(--unix-border-green);
    margin-top: 4rem;
    padding: 2rem 0;
}

.text-highlight {
    color: var(--unix-highlight-green);
}

/* Cursor Animation */
.cursor {
    display: inline-block;
    width: 10px;
    height: 1em;
    background-color: var(--unix-highlight-green);
    animation: blink 1s infinite;
    vertical-align: bottom;
    margin-left: 5px;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }
}

/* Animations */
.icone-animado {
    transition: all 0.3s ease-in-out;
}

.icone-animado:hover {
    transform: scale(1.2);
    text-shadow: 0 0 15px currentColor;
}

/* Intro Box */
.intro-importante {
    background: linear-gradient(135deg, var(--unix-secondary-dark) 0%, rgba(0, 170, 0, 0.15) 100%);
    border: 2px solid var(--unix-border-green);
    border-radius: 12px;
    padding: 2rem;
    margin: 2.5rem 0;
    box-shadow: 0 0 20px var(--unix-shadow-green);
    position: relative;
    overflow: hidden;
}

.intro-importante::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--unix-highlight-green), var(--unix-link-cyan), var(--unix-highlight-green));
    animation: pulse-border 2s ease-in-out infinite;
}

@keyframes pulse-border {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.6;
    }
}

.intro-importante p {
    color: var(--unix-text-green);
    font-size: 1.1rem;
    line-height: 1.7;
}

/* Lists */
.lista-especialidades,
.lista-valores {
    padding-left: 0;
    list-style: none;
}

.lista-especialidades li,
.lista-valores li {
    margin-bottom: 1rem;
    padding: 1rem;
    background: linear-gradient(135deg, var(--unix-input-bg) 0%, rgba(0, 170, 0, 0.05) 100%);
    border: 1px solid var(--unix-border-green);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.lista-especialidades li:hover,
.lista-valores li:hover {
    box-shadow: 0 0 15px rgba(0, 255, 0, 0.2);
    transform: translateY(-2px);
    border-color: var(--unix-highlight-green);
}

.texto-enfase {
    color: var(--unix-link-cyan);
    font-weight: 600;
}

/* Services Page Specifics */
.list-group-item {
    background-color: var(--unix-input-bg);
    border-color: var(--unix-border-green);
    color: var(--unix-text-green);
    margin-bottom: 5px;
}

.list-group-item h5 {
    color: var(--unix-link-cyan);
    font-weight: bold;
}

/* Unix Table Style */
.table-unix {
    background-color: var(--unix-bg-dark);
    border: 1px solid var(--unix-border-green);
    color: var(--unix-text-green);
    box-shadow: 0 0 10px var(--unix-shadow-green);
    border-radius: 8px;
    overflow: hidden;
}

.table-unix th,
.table-unix td {
    border-color: var(--unix-border-green);
    background-color: transparent;
    color: var(--unix-text-green);
    vertical-align: middle;
}

.table-unix thead th {
    background-color: var(--unix-secondary-dark);
    color: var(--unix-highlight-green);
    border-bottom: 2px solid var(--unix-highlight-green);
    text-shadow: 0 0 5px rgba(0, 255, 0, 0.3);
}

.table-unix tbody tr:hover td {
    background-color: rgba(0, 255, 0, 0.1);
    color: var(--unix-highlight-green);
    cursor: default;
}

.table-unix tbody tr:hover i {
    color: var(--unix-highlight-green);
}

/* Warranty Alert */
.alert-unix {
    background-color: var(--unix-secondary-dark);
    border: 1px solid var(--unix-border-green);
    color: var(--unix-text-green);
    box-shadow: 0 0 15px var(--unix-shadow-green);
}

.alert-unix .alert-heading {
    color: var(--unix-highlight-green);
}

/* Contact Page Specifics */
.form-control {
    background-color: #0d0d0d;
    border-color: var(--unix-border-green);
    color: var(--unix-highlight-green);
    box-shadow: 0 0 5px rgba(0, 255, 0, 0.1);
    transition: all 0.3s ease-in-out;
}

.form-control:focus {
    box-shadow: 0 0 8px rgba(0, 255, 0, 0.4);
    border-color: var(--unix-highlight-green);
    background-color: #050505;
    color: var(--unix-highlight-green);
}

.form-control::placeholder {
    color: rgba(0, 255, 0, 0.4);
}

.btn-primary {
    background-color: var(--unix-border-green);
    border-color: var(--unix-dim-green);
    color: var(--unix-highlight-green);
    font-weight: bold;
    text-shadow: 0 0 5px rgba(0, 255, 0, 0.5);
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: var(--unix-dim-green);
    border-color: var(--unix-highlight-green);
    box-shadow: 0 0 15px var(--unix-shadow-green);
    color: #fff;
}

/* Unix Modal Style */
.modal-unix .modal-content {
    background-color: var(--unix-bg-dark);
    border: 2px solid var(--unix-highlight-green);
    box-shadow: 0 0 20px var(--unix-shadow-green);
    color: var(--unix-text-green);
}

.modal-unix .modal-header {
    border-bottom: 1px solid var(--unix-border-green);
}

.modal-unix .modal-title {
    color: var(--unix-highlight-green);
    font-weight: bold;
    text-shadow: 0 0 5px rgba(0, 255, 0, 0.5);
}

.modal-unix .modal-footer {
    border-top: 1px solid var(--unix-border-green);
}

.modal-unix .btn-close {
    filter: invert(1) grayscale(100%) brightness(200%) sepia(100%) hue-rotate(50deg) saturate(1000%) contrast(100%);
}