/* Argus TI - Styles */
body {
    font-family: 'Inter', sans-serif;
}

/* Hero Section Animations */
.hero-section .opacity-0 {
    opacity: 0;
}

.hero-section .transform {
    transition: all 1s ease-out;
}

.hero-section.loaded h1 {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0s;
}

.hero-section.loaded p {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.2s;
}

.hero-section.loaded a {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.4s;
}

/* Services Section Animations */
.services-section .opacity-0 {
    opacity: 0;
}

.services-section .transform {
    transition: all 0.8s ease-out;
}

.services-section.loaded .opacity-0 {
    opacity: 1;
    transform: translateY(0);
}

.services-section.loaded .delay-200 {
    transition-delay: 0.2s;
}

/* Tab Content Animation */
.tab-content {
    transition: opacity 0.5s ease-out;
}

.tab-content.opacity-0 {
    opacity: 0;
}

.tab-content.loaded {
    opacity: 1;
}

/* General Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fadeInUp {
    animation: fadeInUp 0.8s ease-out forwards;
}

/* Button Hover Effects */
.hover-scale:hover {
    transform: scale(1.05);
}

/* Tab Button Active States */
.tab-button.active-infra {
    background-color: #0077b5 !important;
    color: white !important;
    border-bottom-color: #0077b5 !important;
}

.tab-button.active-suporte {
    background-color: #22d3ee !important;
    color: black !important;
    border-bottom-color: #22d3ee !important;
}

.tab-button.active-backup {
    background-color: #d946ef !important;
    color: white !important;
    border-bottom-color: #d946ef !important;
}

/* Logo Hover Effects */
.logo-grid img {
    transition: filter 0.3s ease;
}

.logo-grid img:hover {
    filter: grayscale(0%) !important;
}