﻿* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    background: #fff;
    color: #fff;
    padding-top: 150px;
}

.logo {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.logo-name {
    font-size: 22px;
    font-weight: 700;
    color: orange;
    letter-spacing: .3px;
}

.logo-sub {
    font-size: 14px;
    font-weight: 500;
    color: #64748b;
    margin-top: 4px;
    letter-spacing: .2px;
}

.whatsapp-float {
    position: fixed;
    bottom: 25px;
    left: 10px;
    z-index: 1000;
    background-color: #25D366;
    padding: 10px;
    border-radius: 50%;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease-in-out;
}

    .whatsapp-float:hover {
        transform: scale(1.1);
    }

.whatsapp-icon {
    width: 25px;
    height: 25px;
    display: block;
}

#scrollTopBtn {
    position: fixed;
    right: 20px;
    bottom: 30px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: none;
    background: orange;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0,0,0,.18);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all .35s ease;
    z-index: 9999;
}

    #scrollTopBtn:hover {
        transform: translateY(-4px);
        box-shadow: 0 16px 40px rgba(0,0,0,.28);
        background:orangered;
    }

    #scrollTopBtn.show {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

.cta-mini {
    padding: 28px 0;
}

.cta-mini-wrapper {
    background: #0f172a;
    max-width: 960px;
    margin: 0 auto;
    padding: 20px 28px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.cta-tag {
    display: block;
    color: orange;
    font-size: 14px;
    margin-bottom: 4px;
}

.cta-content h4 {
    color: #fff;
    margin: 0;
    font-size: 17px;
    font-weight: 500;
    line-height: 1.3;
}

.btn-mini-orange {
    background: orange;
    color: #fff;
    padding: 10px 20px;
    border-radius: 6px;
    font-size: 14px;
    text-decoration: none;
    white-space: nowrap;
    transition: .3s;
}

    .btn-mini-orange:hover {
        transform: translateY(-2px);
    }

@media (max-width: 1100px) {
    .cta-mini-wrapper {
        max-width: 90%;
    }
}

@media (max-width: 768px) {
    .cta-mini-wrapper {
        flex-direction: column;
        text-align: center;
        padding: 22px;
    }
}


