/* TRS Security - Main Styles */
html, body {
    overflow-x: hidden;
    width: 100%;
}

:root {
    --trs-gold: #C5A059;
    --trs-gold-light: #E5C585;
    --trs-dark: #0f1115;
    --trs-charcoal: #1a1d23;
    --trs-surface: #252932;
}

/* Efeitos Personalizados */
.text-glow {
    text-shadow: 0 0 20px rgba(197, 160, 89, 0.3);
}

.gold-border-left {
    border-left: 3px solid var(--trs-gold);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px -10px rgba(197, 160, 89, 0.2);
}

/* Animação de fade para troca de páginas */
.fade-in {
    animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Scrollbar Style */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--trs-dark);
}

::-webkit-scrollbar-thumb {
    background: #333;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--trs-gold);
}

/* Marquee Animation */
@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.animate-marquee {
    display: flex;
    width: max-content;
    animation: marquee 30s linear infinite;
}

.animate-marquee:hover {
    animation-play-state: paused;
}

.logo-frame {
    background: #FFFFFF !important;
    /* Force white background */
    padding: 0.75rem;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 180px;
    height: 90px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.logo-frame:hover {
    transform: scale(1.05);
}

.logo-frame img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

.logo-frame:hover img {
    filter: grayscale(0%);
}

.logo-scale {
    transform: scale(1.4);
}

@keyframes pulse-whatsapp {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

.animate-pulse-whatsapp {
    animation: pulse-whatsapp 2s infinite;
}