        body {
            scroll-behavior: smooth;
        }

        .btn-alavancar {
            background-color: white;
            color: black;
            padding: 12px 24px;
            border: none;
            border-radius: 20px;
            font-size: 0.8rem;
            text-decoration: none;
            transition: background-color 0.3s ease;
        }

        .navbar {
            transition: all 0.3s ease;
            background: transparent;
        }

        .navbar-brand {
            font-weight: 700;
            color: #fff !important;
            letter-spacing: 1px;
            transition: color 0.3s;
        }

        .nav-link {
            color: #fff !important;
            font-weight: 500;
            transition: color 0.3s;
        }

        .nav-link:hover {
            color: #cce0ff !important;
        }

        .navbar.scrolled {
            background: #fff !important;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }

        .navbar.scrolled .navbar-brand {
            color: #000 !important;
        }

        .navbar.scrolled .nav-link {
            color: #000 !important;
        }

        .navbar.scrolled .nav-link:hover {
            color: black !important;
        }

        .navbar.scrolled .btn-light {
            background-color: black !important;
            color: #fff !important;
            border: none;
        }

        .top {
            color: white;
            text-align: center;
            background-image: url('../img/bg.png');
            background-position: right;
            background-attachment: fixed;
            background-repeat: no-repeat;
            background-size: cover;
        }

        @media (max-width:767px) {
            .top {
                height: 60vh;
                padding: 100px 0;
            }

            .title {
                font-size: 1.8rem;
                font-weight: 700;
            }

            .subtitle {
                font-size: 1rem;
                font-weight: 200;
            }
        }

        @media (min-width:767px) {
            .top {
                height: 80vh;
                padding: 160px 0;
            }

            .title {
                font-size: 2.8rem;
                font-weight: 700;
            }

            .subtitle {
                font-size: 1.5rem;
                font-weight: 200;
            }
        }

        .service-card {
            border: none;
            transition: all 0.3s;
        }

        .service-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
        }

        .cta {
            background: black;
            color: white;
            text-align: center;
            padding: 80px 20px;
        }

        .footer {
            align-items: center;
            display: flex;
            justify-content: center;
            padding: 20px 0;
        }

        .services {
            background-color: white;
        }

        .divider {
            margin-top: -100px;
            height: 170px;
            background-image: linear-gradient(180deg, #ffffff00 0 0%, white 50% 100%);
        }

        .whatsapp-float {
            position: fixed;
            bottom: 20px;
            right: 20px;
            background-color: #25d366;
            color: white;
            border-radius: 50%;
            width: 60px;
            height: 60px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 32px;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            z-index: 1000;
        }

        .whatsapp-float:hover {
            transform: scale(1.1);
            box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
            text-decoration: none;
            color: white;
        }