body {
    font-family: 'Inter', sans-serif;
}

.hero-bg {
    background-image: url('../images/hero-bg.svg');
    background-size: cover;
    background-position: center;
}

.section {
    display: none;
}

.section.active {
    display: block;
}

html {
    scroll-behavior: smooth;
}

.fade-in {
    animation: fadeInAnimation 0.5s ease-in-out;
}

@keyframes fadeInAnimation {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

.nav-link {
    transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active-link {
    color: #3b82f6;
}

.cta-button {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.header-logo {
    height: 40px;
    width: auto;
}

.footer-logo {
    height: 50px;
    width: auto;
    margin-bottom: 0.5rem;
}

.contact-icon-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-icon-link i {
    transition: transform 0.3s ease;
}

.contact-icon-link:hover i {
    transform: scale(1.1);
}

.team-gif {
    max-width: 100%;
    /* Garante que o GIF seja responsivo */
    height: auto;
    /* Mantém a proporção do GIF */
    border-radius: 0.5rem;
    /* lg */
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    /* xl */
}