﻿
:root {
    --green-dark: #36454F;
    --green-main: #1f5e4b;
    --green-soft: #FFAA33;
    --green-light: #e6f1ed;
    --text-light: #eaf4f0;
    --brand-gradient: linear-gradient(135deg, #1f2a30, #36454F, #4f5f6a);
}

*, *::before, *::after {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    background: #fff;
    color: #fff;
    padding-top: 150px;
}

html {
    scrollbar-gutter: stable;
}

.logo {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.logo-name {
    font-size: 22px;
    font-weight: 700;
    color: #0f2f2a;
    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: 10px;
    bottom: 25px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: none;
    background: #708090;
    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: var(--brand-dark);
    }

    #scrollTopBtn.show {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

.cta-mini {
    padding: 40px 0;
}

.cta-mini-wrapper {
    background: #708090;
    max-width: 960px;
    margin: 0 auto;
    padding: 28px 34px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    box-shadow: 0 20px 50px rgba(0,0,0,.25);
}

.cta-content {
    max-width: 680px;
}

.cta-tag {
    display: block;
    color: var(--green-soft);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: .5px;
    margin-bottom: 6px;
}

.cta-content h4 {
    color: #fff;
    margin: 0;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.4;
}

.btn-mini-orange {
    display: inline-block;
    padding: 16px 40px;
    background: orange;
    color: #fff;
    text-decoration: none;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(31, 94, 75, 0.4);
    border: none;
}

    .btn-mini-orange:hover {
        background: #fff;
        color: black;
    }

@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;
    }
}
