
:root {
    --brand-color: #ff4d00;
    --dark-pure: #0a0a0a;
    --item-bg: #161616;
}

html,
body {
    min-height: 100vh;
}

body {
    background-color: var(--dark-pure);
    background-image:
        radial-gradient(circle at 50% -20%, rgba(255, 77, 0, 0.15) 0%, transparent 50%),
        radial-gradient(#1a1a1a 1px, transparent 1px);
    background-size: 100% 100%, 20px 20px;
    background-attachment: fixed;
    color: #fff;
    font-family: "Plus Jakarta Sans", sans-serif;
}

/* Animações */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(15px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulseLight {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 77, 0, 0.4);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(255, 77, 0, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 77, 0, 0);
    }
}

.animate-entry {
    animation: fadeInUp 0.8s ease-out forwards;
}

/* Layout */
.container-main {
    max-width: 400px;
    margin: 0 auto;
    padding: 40px 20px;
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.logo-img {
    width: 105px;
    height: 105px;
    border-radius: 50%;
    border: 3px solid var(--brand-color);
    box-shadow: 0 0 20px rgba(255, 77, 0, 0.2);
    margin-bottom: 8px;
    object-fit: cover;
}

.brand-name {
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: -0.5px;
}

.folga-badge {
    display: inline-block;
    color: var(--brand-color);
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

/* Divisória */
.divider-profissional {
    width: 80%;
    height: 1px;
    margin: 24px auto;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 77, 0, 0.25) 20%, var(--brand-color) 50%, rgba(255, 77, 0, 0.25) 80%, transparent 100%);
    border-radius: 2px;
    opacity: 0.85;
}

/* Redes Sociais */
.social-mini-row {
    display: flex;
    justify-content: center;
    gap: 18px;
    margin-bottom: 18px;
}

.social-mini-row a {
    color: #fff;
    font-size: 1.3rem;
    opacity: 0.7;
    transition: 0.3s;
    text-decoration: none;
    position: relative;
}

.social-mini-row a:hover {
    opacity: 1;
    transform: translateY(-3px);
}

.link-wa:hover {
    color: #25d366 !important;
}

.link-tk:hover {
    color: #00f2ea !important;
}

.link-ig:hover {
    color: #e1306c !important;
}

.icon-kwai-mini img {
    height: 1.1em;
    width: 1.1em;
    filter: brightness(0) invert(1);
}

/* Botões da Lista */
.nav-list .link-item {
    background: var(--item-bg);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 18px;
    padding: 16px 20px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #fff;
    font-weight: 700;
    transition: 0.2s;
}

.link-featured {
    background: var(--brand-color) !important;
    border: none !important;
    animation: pulseLight 2s infinite;
}

.link-item:hover {
    background: #1f1f1f;
    transform: scale(1.02);
}

.icon-box {
    width: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-delivery-img {
    height: 1.8em;
    width: 1.8em;
    filter: brightness(0) invert(1);
}

.text-center-custom {
    flex: 1;
    text-align: center;
    font-size: 0.85rem;
}

.subtitle-link {
    font-size: 0.6rem;
    opacity: 0.8;
    font-weight: 500;
}

/* Footer e Compartilhamento */
.share-top {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.footer-main {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    font-size: 0.75em;
    opacity: 0.6;
    margin-top: 50px;
}

.footer-sep,
.menubairro-highlight {
    color: var(--brand-color);
    font-weight: bold;
}
@media (max-width: 370px) {
    .nav-list .link-item {
        margin-left: 5vw !important;
        margin-right: 5vw !important;
        width: auto !important;
    }

    body {
        background-attachment: scroll !important;
    }

    .container-main {
        padding: 18px 4vw !important;
    }
}