nav a,
nav a:visited,
nav a:active,
nav a:focus {
    color: #fff !important;
    text-decoration: none;
    outline: none;
}

.btn-header,
.btn-header:visited,
.btn-header:focus,
.btn-header:active {
    color: #fff !important;
    text-decoration: none !important;
    outline: none;
}

.btn-header:hover {
    color: #fff !important;
}

nav a:hover {
    color: #fff;
}

header {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    padding: 15px 8%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #0b0f14;
    z-index: 1000;
}

/* LOGO */

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-img {
    width: 55px;
    height: 55px;
    object-fit: contain;
}

.logo-text {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    line-height: 1.1;
}

#d-a {
    font-size: 0.5rem;
    color: #999;
    margin-top: 2px;
}

/* MENU DESKTOP */

nav {
    display: flex;
    gap: 30px;
}

nav a {
    text-decoration: none;
    color: #fff;
    font-weight: 500;
    position: relative;
    transition: 0.3s;
}

nav a::after {
    content: "";
    position: absolute;
    width: 0%;
    height: 2px;
    bottom: -4px;
    left: 0;
    background: #f5b400;
    transition: 0.3s;
}

nav a:hover::after {
    width: 100%;
}

/* BOTÃO WPP */

.btn-header {
    background: linear-gradient(90deg, #1fae4b, #0c7c2c);
    padding: 8px 18px;
    border-radius: 50px;
    font-weight: 600;
    color: #fff;
    text-decoration: none;
    transition: 0.3s;
}

.btn-header:hover {
    transform: scale(1.05);
}

/* HAMBURGUER */

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}

.menu-toggle span {
    width: 28px;
    height: 3px;
    background: #fff;
    transition: 0.4s;
}

/* ANIMAÇÃO X */

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* ================= MOBILE ================= */

@media(max-width: 992px) {

    nav {
        position: fixed;
        top: 80px;
        right: -100%;
        width: 250px;
        height: 100vh;
        background: #111;
        flex-direction: column;
        padding: 40px 20px;
        gap: 25px;
        transition: 0.4s ease;
    }

    nav.active {
        right: 0;
    }

    .menu-toggle {
        display: flex;
    }

    .wpp-btn {
        margin-right: 15px;
    }
}

.btn-wpp {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    background: #25D366;
    color: #fff;
    padding: 12px 22px;
    border-radius: 50px;

    font-weight: 600;
    text-decoration: none;
    font-size: 15px;

    transition: all 0.3s ease;
    box-shadow: 0 6px 18px rgba(37, 211, 102, 0.35);
}

.btn-wpp i {
    font-size: 18px;
}

/* Hover elegante */
.btn-wpp:hover {
    text-decoration: none;
    color: white;
    background: #1ebe5d;
    transform: translateY(-3px);
    box-shadow: 0 10px 22px rgba(37, 211, 102, 0.45);
}

/* Clique */
.btn-wpp:active {
    transform: scale(0.97);
}

/* Mobile → só ícone */
@media (max-width: 768px) {
    .texto-wpp {
        display: none;
    }

    .btn-wpp {
        background: #00000000;
        color: #25D366;
        padding: 14px;
        border-radius: 0%;
        border-radius: 0px;
        box-shadow: 0 6px 18px rgba(37, 211, 101, 0);
    }

    .btn-wpp:hover {
        color: #25D366;
        background-color: #0b0f1400;
        box-shadow: 0 10px 22px rgba(0, 0, 0, 0);

    }

    .btn-wpp i {
        font-size: 25px;
    }
}

