body * {
            transition: all .3s ease-in-out
        }

        body {
            font-family: Montserrat, sans-serif;
            color: #000;
            background-color: #f8f9fa;
            margin: 0;
            padding: 0
        }

        .navbar {
            background: rgba(255, 255, 255, 0);
            backdrop-filter: blur(10px);
            text-transform: uppercase;
            border: none;
            transition: background-color .3s ease, box-shadow .3s ease
        }

        .navbar.scrolled {
            background-color: rgba(0, 0, 0, .3);
            backdrop-filter: none;
            box-shadow: 0 2px 10px rgba(0, 0, 0, .2);
            border-bottom: 0 solid #000;
            border-radius: 50px
        }

        .navbar-brand img {
            height: 40px
        }

        .navbar-nav .nav-link {
            margin-right: 20px;
            color: #fff;
            position: relative;
            display: inline-block;
            text-decoration: none;
            transition: color .3s ease, transform .3s ease;
            font-weight: 500
        }

        .navbar-nav .nav-link::before {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 100%;
            height: 3px;
            background: #5ced73;
            transform: scaleX(0);
            transform-origin: bottom right;
            transition: transform .3s ease
        }

        .navbar-nav .nav-link:hover::before {
            transform: scaleX(1);
            transform-origin: bottom left
        }

        .navbar-nav .nav-link.active {
            color: #5ced73;
            transform: scale(1.1)
        }

        .btn-primary {
            background-color: #000;
            color: #fff;
            border: none;
            border-radius: 25px;
            padding: 10px 20px;
            text-decoration: none;
            font-weight: 700
        }

        .btn-primary:hover {
            background-color: #5ced73;
            filter: drop-shadow(1px 1px 20px #fff);
            transform: scale(1.05)
        }

        .hero {
            position: relative;
            height: 100vh;
            display: flex;
            align-items: center;
            justify-content: left;
            color: #fff;
            text-align: left;
            overflow: hidden;
            margin-bottom: 20px;
            padding: 0 20px;
            background-attachment: fixed;
            background-size: cover;
            background-position: center
        }

        #heroVideo {
            position: absolute;
            top: 50%;
            left: 50%;
            width: 100%;
            height: 100%;
            object-fit: cover;
            transform: translate(-50%, -50%);
            z-index: -1
        }

        .overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, .5);
            z-index: 1
        }

        .hero-text {
            position: relative;
            z-index: 2;
            max-width: 600px
        }

        .hero-text h1 {
            font-size: 3rem;
            font-weight: 700
        }

        .hero-text p {
            font-size: 1.5rem;
            margin-bottom: 20px
        }

        .hero-text a {
            opacity: 1;
            transform: translateY(0)
        }

        .section {
            padding: 60px 20px;
            background-color: #fff;
            border-radius: 30px;
            filter: drop-shadow(5px 5px 15px rgba(0, 0, 0, .3));
            margin-bottom: 20px;
            position: relative;
            overflow: hidden;
            text-align: center
        }

        .section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 1;
            pointer-events: none;
            transform: translateY(0);
            transition: transform .5s ease-in-out
        }

        .section:hover::before {
            transform: translateY(-10px)
        }

        .section h1,
        .section h2 {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 20px;
            position: relative;
            z-index: 2
        }

        .section p {
            font-size: 1.25rem;
            position: relative;
            z-index: 2
        }

        .service-card {
            background: #fff;
            border-radius: 15px;
            overflow: hidden;
            transition: transform .3s ease, box-shadow .3s ease;
            position: relative;
            z-index: 2
        }

        .service-card img {
            width: 100%;
            height: 200px;
            object-fit: cover
        }

        .service-card-body {
            padding: 20px
        }

        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, .2)
        }

        .service-card-title {
            font-size: 1.5rem;
            margin-bottom: 10px
        }

        .service-card-text {
            font-size: 1rem
        }

        @media (max-width:768px) {
            .hero-text h1 {
                font-size: 2rem
            }

            .hero-text p {
                font-size: 1rem
            }

            .section {
                padding: 40px 15px
            }
        }

        .service-icon {
            font-size: 2.5rem;
            color: #000;
            margin-bottom: 15px;
            transition: color .3s ease, transform .3s ease
        }

        .service-card {
            background: #fff;
            border-radius: 12px;
            padding: 25px 20px;
            text-align: center;
            box-shadow: 0 6px 20px rgba(0, 0, 0, .1);
            transition: transform .3s ease, box-shadow .3s ease;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            height: 100%
        }

        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 12px 30px rgba(0, 0, 0, .15)
        }

        .service-card:hover .service-icon {
            color: #28a745;
            transform: scale(1.2)
        }

        .service-title {
            font-size: 1.25rem;
            font-weight: 600;
            margin-top: 10px;
            color: #212529;
            transition: color .3s ease;
            text-transform: uppercase;
        }

        .service-description {
            font-size: .9rem;
            margin-top: 10px;
            color: #6c757d
        }

        .service-action {
            margin-top: 20px
        }

        .typed-text::after {
            content: '|';
            display: inline-block;
            animation: blink 1s infinite;
            color: #000
        }

        @keyframes blink {

            0%,
            100% {
                opacity: 1
            }

            50% {
                opacity: 0
            }
        }

        .modern-card {
            position: relative;
            padding: 40px;
            border-radius: 15px;
            background-color: #fff;
            color: #000;
            text-align: left;
            overflow: hidden;
            transition: all 0.3s ease-in-out;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
            z-index: 1;
            flex: 1;
            cursor: pointer;
            clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
            transition: all 0.3s ease-in-out;
        }
        .modern-card h3 {
            font-size: 1.5rem;
            margin-bottom: 15px;
            font-weight: bold;
            transition: color 0.3s;
            z-index: 2;
            position: relative;
        }
        .modern-card p {
            font-size: 1.1rem;
            margin-bottom: 0;
            transition: color 0.3s;
            z-index: 2;
            position: relative;
        }
        .modern-card .icon {
            font-size: 3rem;
            color: #5ced73;
            margin-bottom: 20px;
            transition: transform 0.3s, color 0.3s;
            z-index: 2;
            position: relative;
        }
        .modern-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, #5ced73, #38a56e);
            clip-path: circle(0% at 50% 50%);
            transition: clip-path 0.5s ease-in-out;
            z-index: 0;
        }
        .modern-card:hover::before {
            clip-path: circle(150% at 50% 50%);
        }
        .modern-card:hover .icon {
            transform: scale(1.2);
            color: #fff;
        }
        .modern-card:hover h3,
        .modern-card:hover p {
            color: #fff;
        }
        .modern-card:hover {
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
        }
        .card-container {
            display: flex;
            gap: 30px;
        }

        /* FOOTER */
.footer {
    background-color: #000; /* Fundo preto para contraste */
    color: #fff;
    padding: 40px 0;
    text-align: left;
    border-top: 3px solid #5ced73;
}

.footer .footer-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #5ced73; /* Cor verde-clara para os títulos */
    margin-bottom: 20px;
}

.footer p, .footer a {
    color: #fff;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.footer a:hover {
    color: #5ced73; /* Efeito hover com a cor verde */
    text-decoration: none;
}

.social-link {
    font-size: 1.5rem;
    margin-right: 15px;
    color: #fff;
    transition: color 0.3s ease, transform 0.3s ease;
}

.social-link:hover {
    color: #5ced73; /* Cor verde no hover */
    transform: scale(1.1);
}

/* Rodapé inferior */
.footer .text-center p {
    margin-top: 20px;
    font-size: 0.875rem;
    color: #aaa;
}

/* Responsividade */
@media (max-width: 768px) {
    .footer {
        text-align: center;
    }

    .footer-title {
        font-size: 1.25rem;
    }

    .social-link {
        font-size: 1.2rem;
    }
}
