        .botao {
            width: 210px;
            height: 35px;
            border-radius: 20px;
            border: none;
            box-shadow: 1px 1px rgba(107, 221, 215, 0.37);
            padding: 5px 15px;
            background: rgb(47, 93, 197);
            background: linear-gradient(160deg,
                    rgba(47, 93, 197, 1) 0%,
                    rgba(46, 86, 194, 1) 5%,
                    rgba(47, 93, 197, 1) 11%,
                    rgba(59, 190, 230, 1) 57%,
                    rgba(0, 212, 255, 1) 71%);
            color: #fff;
            font-family: Roboto, sans-serif;
            font-weight: 300;
            font-size: 16px;
            line-height: 1;
            margin-left: 20px;
            cursor: pointer;
            filter: drop-shadow(0 0 10px rgba(59, 190, 230, 0.568));
            transition: 0.5s linear;

            /* Added to make <a> behave like a button */
            display: inline-flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            /* removes underline */
            gap: 8px;
            /* space between icon and text */
        }

        .botao:hover {
            filter: drop-shadow(0 0 12px rgba(0, 212, 255, 0.8));
            transform: scale(1.02);
        }

        .botao svg {
            margin: 0;
            flex-shrink: 0;
        }

        .texto {
            text-transform: capitalize;
            font-family: Roboto, sans-serif;
            font-size: 16px;
            line-height: 1;
            vertical-align: middle;
        }

        @media (max-width: 991px) {
            .botao {
                width: 250px;
                height: 40px;
                font-size: 14px;
                padding: 8px 16px;
                min-width: 150px;
            }

            .botao .texto {
                font-size: 15px;
            }
        }

        @media (max-width: 480px) {
            .botao {
                width: 250px;
                height: 40px;
            }
        }

        .auth-buttons {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .auth-buttons button {
            padding: 8px 16px;
            font-weight: 600;
            border-radius: 5px;
            white-space: nowrap;
            transition: all 0.3s ease;
        }

        .auth-buttons .log {
            background-color: transparent;
            border: 2px solid #fff;
            color: #fff;
        }

        .auth-buttons .reg {
            background-color: #fff;
            border: none;
            color: #000;
        }

        /* Hover effects */
        .auth-buttons .log:hover {
            background-color: rgba(255, 255, 255, 0.2);
        }

        .auth-buttons .reg:hover {
            background-color: #f1f1f1;
            color: #000;
        }

        /* Responsive adjustments */
        @media (max-width: 768px) {
            .auth-buttons {
                flex-direction: row;
                gap: 6px;
                margin-top: 10px;
            }

            .auth-buttons button {
                width: 100%;
                font-size: 14px;
                padding: 10px;
            }
        }

        .gradient-success {
            background: linear-gradient(90deg, #28a745, #218838);
        }

        .gradient-warning {
            background: linear-gradient(90deg, #ffc107, #ff9800);
        }

        .gradient-danger {
            background: linear-gradient(90deg, #dc3545, #c82333);
        }

        .gradient-secondary {
            background: linear-gradient(90deg, #6c757d, #495057);
        }

        .contact-card {
            transition: 0.3s ease-in-out;
            background-color: #fff;
        }

        .contact-card:hover {
            background-color: #0d6efd;
            transform: translateY(-5px);
        }

        .contact-card .icon-wrap i,
        .contact-card .title,
        .contact-card .content {
            transition: color 0.3s ease-in-out;
        }

        .contact-card:hover .icon-wrap i,
        .contact-card:hover .title,
        .contact-card:hover .content {
            color: #fff !important;
        }

        .popular-plan {
            border: 2px solid #0d6efd !important;
            background-color: #f0f8ff;
            transform: scale(1.03);
            transition: 0.3s ease-in-out;
        }

        .card:hover {
            transform: translateY(-5px);
            box-shadow: 0 0 15px rgba(0, 0, 0, 0.15);
        }

        .card-title {
            font-size: 1.5rem;
        }

        @media (min-width: 992px) and (max-width: 1590px) {
            .col-lg-3.custom-col-laptop {
                flex: 0 0 33.333333%;
                max-width: 33.333333%;
            }
        }

        @keyframes zoomInOut {

            0%,
            100% {
                transform: scale(1);
            }

            50% {
                transform: scale(1.2);
            }
        }

        .toll-free-zoom {
            display: inline-block;
            animation: zoomInOut 2s infinite ease-in-out;
        }

        .mobile-only {
            display: none;
        }

        @media (max-width: 768px) {
            .mobile-only {
                display: block;
            }
        }