        .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;
            }
        }

/* CSS moved from header.blade.php */
.sky-header {
        background: linear-gradient(135deg, #0a1628 0%, #0f2044 60%, #0d1f3c 100%);
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        position: sticky;
        top: 0;
        z-index: 50;
    }

    .sky-header::before {
        content: '';
        position: absolute;
        top: -50%;
        right: -5%;
        width: 350px;
        height: 350px;
        background: radial-gradient(circle, rgba(37, 99, 235, 0.1) 0%, transparent 70%);
        pointer-events: none;
    }

    /* Nav links */
    .sky-nav-link {
        position: relative;
        padding: 9px 18px;
        font-size: 16px;
        font-weight: 500;
        color: rgba(255, 255, 255, 0.65);
        text-decoration: none;
        border-radius: 8px;
        transition: color 0.2s ease, background 0.2s ease;
    }

    .sky-nav-link::after {
        content: '';
        position: absolute;
        bottom: 4px;
        left: 50%;
        transform: translateX(-50%) scaleX(0);
        width: 55%;
        height: 2px;
        background: #3b82f6;
        border-radius: 2px;
        transition: transform 0.25s ease;
    }

    .sky-nav-link:hover {
        color: #ffffff;
        background: rgba(255, 255, 255, 0.07);
    }

    .sky-nav-link:hover::after {
        transform: translateX(-50%) scaleX(1);
    }

    /* Phone button */
    .sky-phone-btn {
        display: flex;
        align-items: center;
        gap: 8px;
        padding: 8px 14px;
        border-radius: 8px;
        color: rgba(255, 255, 255, 0.75);
        text-decoration: none;
        font-size: 15px;
        background: rgba(255, 255, 255, 0.04);
        transition: all 0.2s ease;
    }

    .sky-phone-btn:hover {
        color: #ffffff;
        background: rgba(255, 255, 255, 0.1);
        border-color: rgba(255, 255, 255, 0.22);
    }

    .sky-phone-icon {
        width: 28px;
        height: 28px;
        background: rgba(37, 99, 235, 0.25);
        border-radius: 6px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #60a5fa;
        flex-shrink: 0;
    }

    /* Login button */
    .sky-btn-login {
        padding: 9px 20px;
        font-size: 15px;
        font-weight: 600;
        color: rgba(255, 255, 255, 0.8);
        border: 1.5px solid rgba(255, 255, 255, 0.18);
        border-radius: 8px;
        text-decoration: none;
        transition: all 0.2s ease;
        background: transparent;
    }

    .sky-btn-login:hover {
        color: #ffffff;
        border-color: rgba(255, 255, 255, 0.45);
        background: rgba(255, 255, 255, 0.06);
    }

    /* Sign Up button */
    .sky-btn-signup {
        padding: 9px 22px;
        font-size: 15px;
        font-weight: 600;
        color: #ffffff;
        background: linear-gradient(135deg, #2563eb, #1d4ed8);
        border: none;
        border-radius: 8px;
        text-decoration: none;
        position: relative;
        overflow: hidden;
        box-shadow: 0 4px 14px rgba(37, 99, 235, 0.4);
        transition: all 0.25s ease;
    }

    .sky-btn-signup::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.12), transparent);
        transition: left 0.4s ease;
    }

    .sky-btn-signup:hover::before {
        left: 100%;
    }

    .sky-btn-signup:hover {
        background: linear-gradient(135deg, #1d4ed8, #1e40af);
        box-shadow: 0 6px 20px rgba(37, 99, 235, 0.55);
        transform: translateY(-1px);
        color: #ffffff;
    }

    /* Mobile menu toggle */
    .sky-mobile-toggle {
        width: 36px;
        height: 36px;
        border: 1px solid rgba(255, 255, 255, 0.15);
        border-radius: 8px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: rgba(255, 255, 255, 0.7);
        background: rgba(255, 255, 255, 0.05);
        cursor: pointer;
        transition: all 0.2s ease;
    }

    .sky-mobile-toggle:hover {
        background: rgba(255, 255, 255, 0.1);
        color: #ffffff;
        border-color: rgba(255, 255, 255, 0.25);
    }

    /* Mobile call button */
    .sky-mobile-call {
        width: 36px;
        height: 36px;
        background: linear-gradient(135deg, #2563eb, #1d4ed8);
        border-radius: 8px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #ffffff;
        box-shadow: 0 4px 12px rgba(37, 99, 235, 0.4);
        transition: all 0.2s ease;
    }

    .sky-mobile-call:hover {
        box-shadow: 0 6px 18px rgba(37, 99, 235, 0.55);
        transform: translateY(-1px);
    }

    /* Mobile menu */
    .sky-mobile-menu {
        background: #0c1a32;
        border-top: 1px solid rgba(255, 255, 255, 0.07);
    }

    .sky-mobile-nav-link {
        display: block;
        padding: 10px 12px;
        border-radius: 8px;
        font-size: 16px;
        color: rgba(255, 255, 255, 0.85);
    }

    .sky-mobile-nav-link:hover {
        background: rgba(255, 255, 255, 0.07);
        color: #ffffff;
    }

    .sky-mobile-divider {
        border-top: 1px solid rgba(255, 255, 255, 0.07);
        margin: 4px 0;
        padding-top: 12px;
    }

    .sky-mobile-login {
        flex: 1;
        text-align: center;
        padding: 11px;
        font-size: 15px;
        font-weight: 600;
        color: rgba(255, 255, 255, 0.8);
        border: 1.5px solid rgba(255, 255, 255, 0.18);
        border-radius: 8px;
        text-decoration: none;
        transition: all 0.2s ease;
    }

    .sky-mobile-login:hover {
        color: #ffffff;
        border-color: rgba(255, 255, 255, 0.4);
        background: rgba(255, 255, 255, 0.06);
    }

    .sky-mobile-signup {
        flex: 1;
        text-align: center;
        padding: 11px;
        font-size: 15px;
        font-weight: 600;
        color: #ffffff;
        background: linear-gradient(135deg, #2563eb, #1d4ed8);
        border-radius: 8px;
        text-decoration: none;
        box-shadow: 0 4px 12px rgba(37, 99, 235, 0.35);
        transition: all 0.2s ease;
    }

    .sky-mobile-signup:hover {
        background: linear-gradient(135deg, #1d4ed8, #1e40af);
        box-shadow: 0 6px 16px rgba(37, 99, 235, 0.5);
    }

    /* App banner */
    .sky-app-banner {
        background: #0c1a32;
        border-top: 1px solid rgba(255, 255, 255, 0.08);
        box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    }


/* === Blog Page Styles === */
body {
    font-family: 'Inter', sans-serif;
}

.blog-card {
    transition: all 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}



.service-card {
    transition: all 0.3s ease;
}
.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1), 0 10px 10px -5px rgba(0,0,0,0.04);
}

/* ===================================================
   PLAN PAGE  (plan.blade.php)
=================================================== */
.plan-card {
    border-radius: 20px;
    background: #fff;
    border: 2px solid #E2E8F0;
    transition: transform 0.25s, box-shadow 0.25s;
}
.plan-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 48px -12px rgba(37,99,235,0.15);
}
.plan-card.featured {
    border-color: #2563EB;
    box-shadow: 0 20px 60px -15px rgba(37,99,235,0.3);
}
.plan-pill {
    display: inline-block;
    background: #EFF6FF;
    color: #2563EB;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.3rem 1rem;
    border-radius: 100px;
}
.plan-divider {
    width: 48px;
    height: 4px;
    background: #2563EB;
    border-radius: 2px;
    margin: 0.75rem auto 0;
}

/* ===================================================
   BLOG DETAIL / RICH TEXT CONTENT  (blog-details.blade.php)
=================================================== */
.blog-content {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #374151;
}
.blog-content p { margin-bottom: 1.5rem; }
.blog-content h2, .blog-content h3, .blog-content h4 {
    color: #111827; font-weight: 700;
    margin-top: 2rem; margin-bottom: 1rem;
}
.blog-content h2 { font-size: 1.875rem; }
.blog-content h3 { font-size: 1.5rem; }
.blog-content h4 { font-size: 1.25rem; }
.blog-content ul, .blog-content ol {
    margin-bottom: 1.5rem; padding-left: 1.5rem;
}
.blog-content ul  { list-style-type: disc; }
.blog-content ol  { list-style-type: decimal; }
.blog-content li  { margin-bottom: 0.5rem; }
.blog-content a   { color: #2563eb; text-decoration: underline; }
.blog-content a:hover { color: #1d4ed8; }
.blog-content blockquote {
    border-left: 4px solid #3b82f6;
    padding: 1rem 1.5rem;
    font-style: italic;
    color: #4b5563;
    background: #f3f4f6;
    border-radius: 0 0.5rem 0.5rem 0;
    margin: 1.5rem 0;
}
.blog-content img {
    max-width: 100%; height: auto;
    border-radius: 0.5rem; margin: 1.5rem 0;
}
.sidebar-card {
    background: white;
    border-radius: 1rem;
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.05), 0 2px 4px -1px rgba(0,0,0,0.03);
    border: 1px solid #f3f4f6;
    padding: 1.5rem;
    margin-bottom: 2rem;
}
.sidebar-title {
    font-size: 1.25rem; font-weight: 700;
    color: #111827; margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #e5e7eb;
    position: relative;
}
.sidebar-title::after {
    content: ''; position: absolute;
    bottom: -2px; left: 0;
    width: 50px; height: 2px;
    background-color: #3b82f6;
}

/* ===================================================
   SERVICE DETAIL CONTENT  (service.blade.php)
=================================================== */
.service-content h2 { font-size: 1.875rem; font-weight: 700; color: #1f2937; margin-top: 2rem; margin-bottom: 1rem; }
.service-content h3 { font-size: 1.5rem; font-weight: 600; color: #374151; margin-top: 1.5rem; margin-bottom: 0.75rem; }
.service-content p  { color: #4b5563; line-height: 1.75; margin-bottom: 1.25rem; }
.service-content ul { list-style-type: disc; padding-left: 1.5rem; color: #4b5563; margin-bottom: 1.25rem; }
.service-content li { margin-bottom: 0.5rem; }
.service-content strong { color: #111827; }

/* ===================================================
   POLICY PAGES  (privacy, terms, refund, agreement)
=================================================== */
.policy-content h1, .policy-content h2, .policy-content h3 {
    font-weight: 700; color: #111827;
    margin-top: 2rem; margin-bottom: 1rem;
}
.policy-content h1 { font-size: 2.25rem; }
.policy-content h2 { font-size: 1.875rem; }
.policy-content h3 { font-size: 1.5rem; }
.policy-content p  { color: #4b5563; line-height: 1.75; margin-bottom: 1.25rem; }
.policy-content ul, .policy-content ol { padding-left: 1.5rem; color: #4b5563; margin-bottom: 1.25rem; }
.policy-content ul { list-style-type: disc; }
.policy-content ol { list-style-type: decimal; }
.policy-content li { margin-bottom: 0.5rem; }
.policy-content a  { color: #2563eb; text-decoration: underline; }
.policy-content a:hover { color: #1d4ed8; }

/* ===================================================
   ABOUT SECTION  (index.blade.php)
=================================================== */
.about-text-content {
    font-size: 1.15rem; color: #4b5563;
    line-height: 1.8; text-align: left;
    background: white; padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -1px rgba(0,0,0,0.06);
    border: 1px solid #f3f4f6;
}
.about-text-content p { margin-bottom: 1.25rem; }
.about-text-content strong, .about-text-content b { color: #1e3a8a; font-weight: 800; }
.about-text-content ul { padding-left: 0; margin-top: 1rem; list-style-type: none; }
.about-text-content li { margin-bottom: 0.75rem; position: relative; padding-left: 2rem; }
.about-text-content li::before { content: '\2714'; position: absolute; left: 0; color: #2563eb; font-weight: bold; }
