/* Importação de fontes */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap');

/* Reset e estilos base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

html {
    height: auto;
    background: linear-gradient(180deg, #007a00 0%, #004d00 100%);
    background-color: #004d00;
}

body {
    min-height: 100vh;
    overflow-x: hidden;
    background: linear-gradient(180deg, #007a00 0%, #004d00 100%);
    background-color: #004d00;
    color: white;
    position: relative;
}

/* Container de Cifrões */
#cifrao-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    z-index: 1;
}

.cifrao {
    position: absolute;
    font-size: 1.8rem;
    color: rgba(255, 215, 0, 0.3);
    animation: falling 12s linear infinite;
}

/* Componentes Mobile */
.mobile-only-components {
    display: none;
    /* Oculto por padrão */
}

/* Navbar Mobile */
.navbar-mobile {
    height: 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 1.5rem;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

/* Título na Navbar */
.site-title {
    font-size: 1.2rem;
    font-weight: 800;
    background: linear-gradient(45deg, #FFA500, #ADFF2F, #40E0D0, #FFA500);
    background-size: 400%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: textGradientAnimation 6s linear infinite;
    text-shadow: 2px 2px 10px rgba(255, 215, 0, 0.3);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin: 0;
    white-space: nowrap;
}

/* Botão do Menu */
.menu-toggle {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(173, 255, 47, 0.3);
    color: #ADFF2F;
    font-size: 24px;
    cursor: pointer;
    padding: 0.5rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(173, 255, 47, 0.2);
}

.menu-toggle:hover {
    background: rgba(173, 255, 47, 0.15);
    transform: scale(1.05) translateY(-2px);
    box-shadow: 0 6px 16px rgba(173, 255, 47, 0.3);
}

.menu-toggle i {
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    filter: drop-shadow(0 0 4px rgba(173, 255, 47, 0.6));
}

/* Menu Mobile */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.1));
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    transition: right 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1001;
    overflow-y: auto;
    border-left: 1px solid rgba(255, 255, 255, 0.2);
}

.mobile-menu.active {
    right: 0;
}

/* Container principal */
.main-content {
    margin-top: 120px;
    position: relative;
    padding-top: 2.5rem;
}

/* Cabeçalho do Menu Mobile */
.mobile-auth-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.05);
}

/* Título no Menu Mobile */
.site-title-mobile {
    font-size: 1.6rem;
    font-weight: 800;
    background: linear-gradient(45deg, #FFA500, #ADFF2F, #40E0D0, #FFA500);
    background-size: 300%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: textGradientAnimation 8s linear infinite;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin: 0;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

@keyframes textGradientAnimation {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

/* Botão Fechar */
.close-menu {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(173, 255, 47, 0.3);
    color: #ADFF2F;
    font-size: 24px;
    cursor: pointer;
    padding: 0.5rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
}

.close-menu:hover {
    background: rgba(173, 255, 47, 0.15);
    transform: rotate(90deg) scale(1.05);
    box-shadow: 0 4px 12px rgba(173, 255, 47, 0.2);
}

.close-menu i {
    filter: drop-shadow(0 0 4px rgba(173, 255, 47, 0.6));
}

/* Conteúdo do Menu */
.mobile-menu-content {
    padding: 2rem 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0) 100%);
    animation: fadeIn 0.6s ease-out;
    position: relative;
    overflow: hidden;
}

/* Perfil do Usuário no Menu Mobile - Estilo Glass */
.mobile-user-profile {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-right: 15px;
    background: rgba(0, 100, 0, 0.3) !important;
    /* Verde mais escuro com transparência */
    backdrop-filter: blur(5px) !important;
    -webkit-backdrop-filter: blur(5px) !important;
    border-radius: 16px;
    padding: 8px 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.mobile-user-profile:hover {
    background: rgba(0, 100, 0, 0.4) !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.user-info-mobile {
    display: flex;
    flex-direction: column;
    text-align: right;
    background: transparent !important;
}

.user-info-mobile .user-name {
    font-weight: 600;
    font-size: 0.9rem;
    color: #fff !important;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5) !important;
    background: transparent !important;
}

.user-info-mobile .user-id {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.8) !important;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5) !important;
    background: transparent !important;
}

.mobile-menu .user-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid rgba(173, 255, 47, 0.5);
    position: relative;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    background: transparent !important;
}

.mobile-menu .user-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mobile-menu .status-indicator {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 10px;
    height: 10px;
    background-color: #00ff00;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 0 4px rgba(0, 255, 0, 0.5);
}

/* Suporte alternativo para iOS */
@supports (-webkit-touch-callout: none) {
    .mobile-user-profile {
        background: rgba(0, 80, 0, 0.5) !important;
        -webkit-backdrop-filter: none !important;
        backdrop-filter: none !important;
    }
}

/* Menu de Navegação Mobile - Botões */
.mobile-nav-menu {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 1rem;
    padding: 0 1.5rem;
}

/* Estilo dos Botões do Menu Mobile */
.mobile-menu-button {
    width: 100%;
    height: 52px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    padding: 0 1.2rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    text-shadow: 0 1px 1px rgba(0, 0, 0, 0.2);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.mobile-menu-button:hover {
    transform: translateY(-2px) scale(1.01);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
    border-color: rgba(255, 255, 255, 0.25);
}

.mobile-menu-button:active {
    transform: translateY(1px);
}

.mobile-menu-button i {
    font-size: 1.2rem;
    margin-right: 12px;
    color: rgba(173, 255, 47, 0.9);
    filter: drop-shadow(0 0 3px rgba(173, 255, 47, 0.3));
}

/* Botão de Comprar Produtos */
.mobile-menu-button:nth-child(1) {
    background: linear-gradient(135deg, rgba(255, 165, 0, 0.2), rgba(173, 255, 47, 0.2));
}

.mobile-menu-button:nth-child(1):hover {
    background: linear-gradient(135deg, rgba(255, 165, 0, 0.3), rgba(173, 255, 47, 0.3));
}

/* Botão de Minha Conta */
.mobile-menu-button:nth-child(3) {
    background: linear-gradient(135deg, rgba(64, 224, 208, 0.2), rgba(173, 255, 47, 0.2));
}

.mobile-menu-button:nth-child(3):hover {
    background: linear-gradient(135deg, rgba(64, 224, 208, 0.3), rgba(173, 255, 47, 0.3));
}

/* Botão de Meus Produtos */
.mobile-menu-button:nth-child(5) {
    background: linear-gradient(135deg, rgba(173, 255, 47, 0.2), rgba(64, 224, 208, 0.2));
}

.mobile-menu-button:nth-child(5):hover {
    background: linear-gradient(135deg, rgba(173, 255, 47, 0.3), rgba(64, 224, 208, 0.3));
}

/* Botão de Ferramentas */
.mobile-menu-button:nth-child(7) {
    background: linear-gradient(135deg, rgba(0, 191, 255, 0.2), rgba(64, 224, 208, 0.2));
}

.mobile-menu-button:nth-child(7):hover {
    background: linear-gradient(135deg, rgba(0, 191, 255, 0.3), rgba(64, 224, 208, 0.3));
}

/* Botão de Logout */
.logout-button {
    margin-top: 0.5rem;
    background: linear-gradient(135deg, rgba(255, 99, 71, 0.2), rgba(255, 165, 0, 0.2));
    border-color: rgba(255, 99, 71, 0.3);
}

.logout-button:hover {
    background: linear-gradient(135deg, rgba(255, 99, 71, 0.3), rgba(255, 165, 0, 0.3));
}

.logout-button i {
    color: rgba(255, 99, 71, 0.9);
    /* Tom avermelhado para o ícone de logout */
    filter: drop-shadow(0 0 3px rgba(255, 99, 71, 0.3));
}

/* Separador Horizontal */
.mobile-menu-divider {
    height: 1px;
    width: 92%;
    margin: 0.2rem auto;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.2), transparent);
}

/* Elemento Decorativo Flutuante */
.floating-decoration {
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: linear-gradient(45deg, rgba(173, 255, 47, 0.1), rgba(64, 224, 208, 0.1));
    filter: blur(80px);
    top: -150px;
    right: -150px;
    z-index: -1;
    animation: floatAnimation 15s infinite alternate ease-in-out;
}

@keyframes floatAnimation {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }

    100% {
        transform: translate(-50px, 50px) rotate(15deg);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Wrapper para título e ícone */
.welcome-wrapper {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1rem;
    transform: translateX(-20px);
    animation: slideIn 0.8s ease-out forwards;
}

/* Ícone decorativo */
.welcome-icon {
    font-size: 1.8rem;
    color: #ffffff;
    opacity: 0.9;
    filter: drop-shadow(0 0 8px rgba(144, 238, 144, 0.6));
    animation: pulse 2s infinite ease-in-out;
}

/* Títulos e Subtítulos */
.auth-title {
    font-size: 2.2rem;
    font-weight: 800;
    background: linear-gradient(135deg, #32CD32 0%, #00CED1 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    letter-spacing: 0.5px;
}

/* Efeito Glow no título */
.auth-title::after {
    content: attr(data-text);
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
    background: linear-gradient(135deg, #32CD32 0%, #00CED1 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: blur(12px);
    opacity: 0.6;
}

.auth-subtitle {
    color: #444444;
    font-size: 1.15rem;
    margin-bottom: 2.5rem;
    font-weight: 400;
    line-height: 1.6;
    letter-spacing: 0.3px;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.2);
    transform: translateY(10px);
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 0.4s forwards;
    position: relative;
    padding-left: 1rem;
    border-left: 2px solid #32CD32;
}

/* Animação de fade in */
@keyframes fadeInUp {
    from {
        transform: translateY(10px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Botões de Autenticação */
.auth-options {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    opacity: 0;
    animation: fadeIn 0.8s ease-out 0.6s forwards;
}

/* Botões de Autenticação Mobile */
.mobile-auth-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 1.2rem;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: #000;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

/* Animações */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
    }
}

@keyframes float {
    0% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(10deg);
    }

    100% {
        transform: translateY(0) rotate(0deg);
    }
}

.auth-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
    border-color: rgba(255, 255, 255, 0.6);
}

/* Botão Google Mobile */
.mobile-google-button {
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.mobile-google-button:hover {
    background: #ffffff;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* Divisor */
.divider {
    display: flex;
    align-items: center;
    text-align: center;
    color: rgba(0, 0, 0, 0.7);
    margin: 2rem 0;
}

.divider::before,
.divider::after {
    content: '';
    flex: 1;
    border-bottom: 2px solid rgba(0, 0, 0, 0.15);
}

.divider span {
    padding: 0 1.5rem;
    text-transform: uppercase;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 2px;
}

/* Efeitos de Hover nos Botões */
.login-button {
    background: linear-gradient(135deg, rgba(255, 165, 0, 0.15), rgba(173, 255, 47, 0.15));
}

.login-button:hover {
    background: linear-gradient(135deg, rgba(255, 165, 0, 0.25), rgba(173, 255, 47, 0.25));
}

.register-button {
    background: linear-gradient(135deg, rgba(64, 224, 208, 0.15), rgba(255, 165, 0, 0.15));
}

.register-button:hover {
    background: linear-gradient(135deg, rgba(64, 224, 208, 0.25), rgba(255, 165, 0, 0.25));
}

/* Mantém o resto do seu CSS original ... */


.site-title {
    font-size: 2.2rem;
    font-weight: 800;
    background: linear-gradient(45deg, #FFA500, #ADFF2F, #40E0D0, #FFA500);
    background-size: 400%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: textGradientAnimation 6s linear infinite;
    text-shadow: 2px 2px 10px rgba(255, 215, 0, 0.5);
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

/* Estilo do header desktop com efeito glass */
.desktop-header {
    height: 80px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(0, 51, 0, 0.75);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(0, 153, 0, 0.1);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
}

/* Ajuste para o conteúdo principal */
.main-content {
    margin-top: 160px;
    padding-top: 3rem;
    position: relative;
    z-index: 1;
}



/* Estados padrão para mobile/desktop */
.mobile-only-components {
    display: none;
}

/* Container Principal */
.main-container {
    padding: 2rem;
    padding-top: 140px;
    /* Adjusted for quick-access-bar */
    max-width: 1500px;
    margin: 0 auto;
}

/* ========================================
   QUICK ACCESS BAR
======================================== */
.quick-access-bar {
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    height: 48px;
    z-index: 999;
    background: rgba(0, 35, 0, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(173, 255, 47, 0.15);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.quick-access-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    height: 100%;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 1rem;
}

.quick-access-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.quick-access-item i {
    color: #ADFF2F;
    font-size: 1.15rem;
    filter: drop-shadow(0 0 4px rgba(173, 255, 47, 0.5));
    transition: all 0.3s ease;
}

.quick-access-item span {
    transition: all 0.3s ease;
}

.quick-access-item:hover {
    background: rgba(173, 255, 47, 0.12);
    transform: translateY(-2px);
    color: #fff;
}

.quick-access-item:hover i {
    filter: drop-shadow(0 0 8px rgba(173, 255, 47, 0.8));
    transform: scale(1.1);
}

.quick-access-item.active {
    background: rgba(173, 255, 47, 0.15);
    color: #fff;
}

.quick-access-item.active i {
    color: #FFD700;
}

.quick-access-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #ADFF2F, #40E0D0);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.quick-access-item:hover::after,
.quick-access-item.active::after {
    width: 80%;
}

/* Responsivo - Mobile */
@media (max-width: 991px) {
    .quick-access-bar {
        top: 60px;
        height: 50px;
    }

    .quick-access-container {
        gap: 1.5rem;
    }

    .quick-access-item {
        flex-direction: column;
        gap: 0.2rem;
        padding: 0.4rem 0.8rem;
    }

    .quick-access-item span {
        font-size: 0.7rem;
    }

    .quick-access-item i {
        font-size: 1.2rem;
    }

    .main-container {
        padding-top: 160px;
        /* navbar (60px) + quick-access-bar (50px) + spacing */
    }
}

@media (max-width: 480px) {
    .quick-access-container {
        gap: 1rem;
    }

    .quick-access-item span {
        display: none;
    }

    .quick-access-item {
        padding: 0.5rem 1rem;
    }

    .quick-access-item i {
        font-size: 1.4rem;
    }
}

.section-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 2rem;
}

/* Slogan */
.slogan {
    font-size: 28px;
    font-weight: bold;
    text-transform: uppercase;
    text-align: center;
    color: #FFD700;
    text-shadow: 3px 3px 15px rgba(255, 215, 0, 0.8);
    margin-top: 120px;
    margin-bottom: 2rem;
    animation: sloganAnimation 3s infinite alternate;
}

/* Barra de Estatísticas */
.stats-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(90deg, #003d00, #005a00);
    border-radius: 10px;
    padding: 1.5rem 2.5rem;
    box-shadow: 0 4px 10px rgba(255, 215, 0, 0.4);
    margin: 2rem 0 4rem;
    min-width: 300px;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 1.5rem;
}

.stat-value {
    font-size: 1.75rem;
    font-weight: bold;
    color: #FFD700;
    text-shadow: 2px 2px 8px rgba(255, 215, 0, 0.7);
}

.stat-label {
    font-size: 0.875rem;
    font-weight: bold;
    color: white;
}

.stat-divider {
    width: 2px;
    height: 40px;
    background-color: rgba(255, 215, 0, 0.6);
}

/* Container Principal dos Cards */
.cards-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 60px;
    /* Espaçamento entre os cards */
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
    justify-items: center;
}

/* Card Style */
.module-card {
    background: linear-gradient(160deg, #002200 0%, #001100 100%);
    border-radius: 12px;
    width: 300px;
    height: 350px;
    padding: 1rem;
    border: 1px solid rgba(255, 215, 0, 0.3);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s;
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
}

/* Card Header */
.module-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.module-image {
    width: 32px;
    height: 32px;
    border-radius: 6px;
    overflow: hidden;
    border: 2px solid rgba(255, 215, 0, 0.3);
}

.module-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.module-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: white;
}

/* Features List */
.features-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin: 0.75rem 0;
    flex: 1;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    padding: 0.5rem 0.75rem;
    background: rgba(0, 50, 0, 0.3);
    border-radius: 6px;
    font-size: 0.875rem;
}

.feature-item i {
    color: #FFD700;
    font-size: 1rem;
}

.feature-text {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.9);
}

/* Product Selection */
.product-selection {
    margin-top: auto;
    padding-top: 0.75rem;
    position: relative;
}

.product-select {
    width: 100%;
    padding: 0.75rem 1rem;
    background: rgba(0, 40, 0, 0.8);
    border: 1px solid #FFD700;
    color: white;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.875rem;
    height: 42px;
    appearance: none;
    -webkit-appearance: none;
}

.purchase-controls {
    margin-top: 0.75rem;
    display: none;
    animation: fadeIn 0.3s;
}

.buy-btn {
    width: 100%;
    padding: 0.75rem;
    background: linear-gradient(45deg, #FFA500, #FF8C00);
    border: none;
    border-radius: 6px;
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: filter 0.3s;
    font-size: 0.875rem;
}

.buy-btn:hover {
    filter: brightness(1.1);
}

/* Responsividade */
@media (max-width: 1200px) {
    .cards-wrapper {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        max-width: 900px;
    }
}

@media (max-width: 768px) {
    .cards-wrapper {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 20px;
        padding: 15px;
    }

    .module-card {
        width: 300px;
    }
}

@media (max-width: 480px) {
    .cards-wrapper {
        grid-template-columns: 1fr;
        padding: 10px;
    }

    .module-card {
        width: 100%;
        max-width: 300px;
        height: auto;
        min-height: 350px;
    }
}

/* Responsividade */
@media (max-width: 1200px) {
    .cards-wrapper {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        max-width: 900px;
    }
}

@media (max-width: 768px) {
    .cards-wrapper {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 15px;
        padding: 15px;
    }

    .module-card {
        width: 100%;
        max-width: 280px;
    }
}

@media (max-width: 480px) {
    .cards-wrapper {
        grid-template-columns: 1fr;
        padding: 10px;
    }

    .module-card {
        height: auto;
        min-height: 350px;
    }
}

/* Animações */
@keyframes falling {
    from {
        transform: translateY(-100vh) rotate(0deg);
    }

    to {
        transform: translateY(100vh) rotate(360deg);
    }
}

@keyframes borderAnimation {
    0% {
        background-position: 0%;
    }

    100% {
        background-position: 400%;
    }
}

@keyframes textGradientAnimation {
    0% {
        background-position: 0%;
    }

    100% {
        background-position: 400%;
    }
}

@keyframes sloganAnimation {
    0% {
        text-shadow: 3px 3px 15px rgba(255, 215, 0, 0.4);
    }

    100% {
        text-shadow: 5px 5px 20px rgba(255, 140, 0, 1);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Personalização do Scroll */
::-webkit-scrollbar {
    width: 5px;
}

::-webkit-scrollbar-track {
    background: transparent;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(45deg, #FFA500, #ADFF2F, #40E0D0, #FFA500);
    background-size: 400%;
    border-radius: 50px;
    box-shadow: 0 0 8px rgba(255, 215, 0, 0.8);
    transition: opacity 0.3s;
    opacity: 0;
    min-height: 30px;
}

::-webkit-scrollbar-thumb:hover {
    opacity: 1;
}

body.scrolling ::-webkit-scrollbar-thumb {
    opacity: 1;
}

/* Estilos do Footer */
.footer {
    background: linear-gradient(180deg, #003300 0%, #001a00 100%);
    padding: 3rem 0 0;
    margin-top: 4rem;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    color: white;
}

.footer-brand {
    font-size: 1.8rem;
    font-weight: 800;
    background: linear-gradient(45deg, #FFA500, #ADFF2F, #40E0D0, #FFA500);
    background-size: 400%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: textGradientAnimation 6s linear infinite;
    text-shadow: 2px 2px 10px rgba(255, 215, 0, 0.5);
    letter-spacing: 1.5px;
}

.footer-title {
    color: #FFD700;
    font-size: 1.2rem;
    font-weight: 600;
    text-shadow: 2px 2px 8px rgba(255, 215, 0, 0.4);
}

.footer p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    line-height: 1.6;
}

.footer ul li {
    margin-bottom: 0.8rem;
}

.footer ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease, transform 0.3s ease;
    display: inline-block;
}

.footer ul li a:hover {
    color: #FFD700;
    transform: translateX(5px);
}

.contact-info li {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.contact-info li i {
    color: #FFD700;
    font-size: 1.1rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 215, 0, 0.2);
    padding: 1.5rem 0;
    margin-top: 2rem;
    background: rgba(0, 0, 0, 0.2);
}

.footer-bottom p {
    margin-bottom: 0;
    font-size: 0.85rem;
}

/* Menu Dropdown Desktop */
.profile-dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-menu {
    /* ... outros estilos ... */
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

.dropdown-menu.show {
    /* mudamos de .active para .show */
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.profile-toggle {
    background: linear-gradient(140deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.03));
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    padding: 8px 16px;
    color: #ffffff;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.profile-toggle:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-1px);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    right: 0;
    width: 220px;
    background: linear-gradient(140deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.03));
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    padding: 8px 0;
    margin-top: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.dropdown-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    color: #ffffff;
    text-decoration: none;
    transition: background-color 0.2s ease;
}

.dropdown-item:hover {
    background: rgba(255, 255, 255, 0.1);
}

.dropdown-item i {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
}

/* Avatar e Informações do Usuário */
.user-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.user-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.user-info {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.user-name {
    font-size: 14px;
    font-weight: 500;
    color: #ffffff;
}

.user-id {
    font-size: 12px;
    opacity: 0.8;
    color: #ffffff;
}

/* Ajustes no botão do profile */
.profile-toggle {
    background: linear-gradient(140deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.03));
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    /* Aumentado para ficar mais arredondado */
    padding: 6px 12px;
    /* Reduzido padding vertical */
    min-width: 200px;
    /* Garante largura mínima */
}

/* Ajustes no avatar */
.user-avatar {
    position: relative;
    width: 28px;
    /* Reduzido tamanho */
    height: 28px;
    /* Reduzido tamanho */
    border-radius: 50%;
    overflow: visible;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Ajuste no status */
.status-indicator {
    position: absolute;
    bottom: -1px;
    right: -1px;
    width: 8px;
    /* Reduzido tamanho */
    height: 8px;
    /* Reduzido tamanho */
    border-radius: 50%;
    background: rgb(34, 197, 94);
    border: 1px solid #1e2028;
    /* Reduzida borda */
    animation: pulse 2s infinite;
    z-index: 2;
}

/* Ajustes no texto */
.user-name {
    font-size: 13px;
    font-weight: 500;
    color: #ffffff;
}

.user-id {
    font-size: 11px;
    opacity: 0.7;
    color: #ffffff;
}

/* Ajuste no ícone de dropdown */
.profile-toggle i {
    font-size: 12px;
    /* Reduzido tamanho */
    opacity: 0.8;
}

/* Formulários */
.auth-input-group {
    margin-bottom: 1.2rem;
}

.auth-input-group label {
    display: block;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0.4rem;
    font-weight: 500;
    font-size: 0.9rem;
}

.auth-input-group input {
    width: 100%;
    padding: 0.7rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    transition: all 0.3s ease;
}

.auth-input-group input:focus {
    outline: none;
    border-color: #32CD32;
    background: rgba(255, 255, 255, 0.15);
}

.password-input {
    position: relative;
}

.password-toggle {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
}

.input-hint {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 0.4rem;
}

/* Botões de Autenticação */
.auth-options {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.auth-button {
    width: 100%;
    height: 45px;
    /* Reduzido para combinar com o menu desktop */
    border-radius: 12px;
    /* Ajustado para combinar */
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    gap: 10px;
}

.auth-button:hover {
    transform: scale(1.02);
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
}

.google-button {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
}

.auth-button.login-button {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.8), rgba(50, 205, 50, 0.8));
    color: #ffffff;
}

.auth-button.register-button {
    background: linear-gradient(135deg, rgba(50, 205, 50, 0.8), rgba(0, 206, 209, 0.8));
    color: #ffffff;
}

/* Divisor */
.divider {
    width: 100%;
    display: flex;
    align-items: center;
    margin: 1.2rem 0;
    gap: 1rem;
}

.divider::before,
.divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: rgba(255, 255, 255, 0.2);
}

.divider span {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    font-weight: 500;
}

/* Links */
.create-account {
    text-align: center;
    margin-top: 1.5rem;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.create-account a {
    color: #32CD32;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s;
}

.create-account a:hover {
    color: #00CED1;
}

.forgot-password {
    display: block;
    text-align: right;
    color: #32CD32;
    text-decoration: none;
    font-size: 0.85rem;
    margin-top: 0.4rem;
}

.forgot-password:hover {
    color: #00CED1;
}

/* Animações */
@keyframes slideIn {
    from {
        transform: translateX(-20px);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        transform: translateY(10px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Responsividade - Breakpoints organizados do maior para o menor */

@media (max-width: 1200px) {
    .cards-wrapper {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 991px) {

    /* Mobile e Desktop toggles */
    .mobile-only-components {
        display: block !important;
    }

    .desktop-header,
    .desktop-header {
        display: none !important;
    }

    .main-container {
        padding-top: 80px;
    }
}

@media (max-width: 768px) {

    /* Header */
    header {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem;
    }

    .site-title {
        font-size: 1.8rem;
        text-align: center;
    }


    /* Cards e Stats */
    .cards-wrapper {
        grid-template-columns: 1fr;
    }

    .stats-bar {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem;
    }

    .stat-divider {
        width: 80%;
        height: 2px;
    }

    .slogan {
        font-size: 1.5rem;
    }

    /* Footer */
    .footer {
        padding: 2rem 0 0;
    }

    .footer-brand {
        font-size: 1.5rem;
    }

    .footer-title {
        margin-top: 1.5rem;
    }

    .contact-info li {
        font-size: 0.85rem;
    }
}

@media (max-width: 500px) {
    .auth-modal-content {
        width: 85%;
        max-width: 320px;
        padding: 0.8rem;
        margin: 5px auto;
        height: auto;
        max-height: 85vh;
        /* Diminuído de 90vh para 85vh */
        overflow-y: auto;
    }

    .welcome-wrapper {
        margin-bottom: 0.4rem;
    }

    .auth-title {
        font-size: 1.1rem;
        margin-bottom: 0.2rem;
    }

    .auth-input-group {
        margin-bottom: 0.5rem;
    }

    .auth-input-group input {
        padding: 0.4rem 0.6rem;
        height: 35px;
    }

    .divider {
        margin: 0.6rem 0;
    }

    .auth-options {
        gap: 0.6rem;
    }

    .auth-button {
        height: 35px;
        font-size: 0.85rem;
    }

    .create-account {
        margin-top: 0.8rem;
        font-size: 0.85rem;
    }

    /* Reduzindo os textos de ajuda */
    .input-hint {
        font-size: 0.7rem;
        margin-top: 0.1rem;
    }
}

@media (max-width: 480px) {

    /* Header */
    .site-title {
        font-size: 1.5rem;
    }


    /* Cards e Stats */
    .module-card {
        padding: 1rem;
    }

    .stat-value {
        font-size: 1.5rem;
    }

    .stat-label {
        font-size: 0.75rem;
    }

    /* Footer */
    .footer-brand {
        font-size: 1.3rem;
    }

    .footer-title {
        font-size: 1.1rem;
    }
}

/* Media Queries para Mobile */
@media (max-width: 768px) {
    .mobile-only-components .animated-button {
        position: static;
        width: 100%;
        max-width: 250px;
    }
}

@media (max-width: 480px) {
    .mobile-only-components .animated-button {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}

/* Novos estilos para o footer */
.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 0 2rem;
}

.footer-section {
    flex: 1;
    min-width: 250px;
    margin: 1rem;
}

.footer-bottom p {
    text-align: center;
}

/* Media query para dispositivos móveis */
@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        padding: 0 1rem;
    }

    .footer-section {
        margin: 0.5rem 0;
    }
}

.mobile-menu-button {
    /* Suas propriedades CSS existentes */
    text-decoration: none;
    color: inherit;
    display: flex;
    align-items: center;
}

/* ==================== BOTÃO DE STATUS ==================== */
.status-button {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
    border: none;
    padding: 8px 12px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.status-button:hover {
    background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
}

.status-button.checking {
    opacity: 0.7;
    pointer-events: none;
}

.status-button.checking i {
    animation: pulse 1s infinite;
}

/* ==================== INDICADORES DE STATUS (SEMÁFORO) ==================== */
.status-indicator {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-left: 8px;
    white-space: nowrap;
}

.status-indicator.all-live {
    background: rgba(76, 175, 80, 0.2);
    color: #4CAF50;
    border: 1px solid rgba(76, 175, 80, 0.3);
}

.status-indicator.mixed {
    background: rgba(255, 152, 0, 0.2);
    color: #FF9800;
    border: 1px solid rgba(255, 152, 0, 0.3);
}

.status-indicator.all-dead {
    background: rgba(244, 67, 54, 0.2);
    color: #f44336;
    border: 1px solid rgba(244, 67, 54, 0.3);
}

.status-indicator i {
    font-size: 0.9rem;
}

/* ==================== MODAL DE DETALHES DO STATUS ==================== */
.status-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    animation: fadeIn 0.3s;
    overflow-y: auto;
    padding: 20px;
}

.status-modal-content {
    background: linear-gradient(135deg, #0a2e0a 0%, #1a4d1a 100%);
    margin: 0 auto;
    padding: 0;
    border: 2px solid #4CAF50;
    border-radius: 12px;
    width: 100%;
    max-width: 700px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    animation: slideDown 0.3s;
}

.status-modal-header {
    background: linear-gradient(135deg, #124e12 0%, #1a6b1a 100%);
    padding: 20px;
    border-bottom: 2px solid #4CAF50;
    border-radius: 10px 10px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
}

.status-modal-header h2 {
    margin: 0;
    color: #fff;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1;
    min-width: 0;
}

.status-modal-header h2 i {
    flex-shrink: 0;
}

.status-modal-close {
    color: #fff;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s;
    flex-shrink: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.status-modal-close:hover {
    color: #4CAF50;
}

.status-modal-body {
    padding: 25px;
    max-height: calc(90vh - 100px);
    overflow-y: auto;
}

.status-summary {
    background: rgba(0, 0, 0, 0.3);
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    border-left: 4px solid #4CAF50;
}

.status-summary h3 {
    margin: 0 0 15px 0;
    color: #4CAF50;
    font-size: 1.2rem;
}

.summary-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 15px;
}

.summary-stat {
    text-align: center;
    padding: 15px 10px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 6px;
    transition: transform 0.3s ease;
}

.summary-stat:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.08);
}

.summary-stat-value {
    font-size: 2rem;
    font-weight: bold;
    color: #fff;
    display: block;
    line-height: 1;
}

.summary-stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    display: block;
    margin-top: 8px;
}

.status-items-list {
    margin-top: 20px;
}

.status-items-list h3 {
    color: #4CAF50;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.status-item {
    background: rgba(0, 0, 0, 0.2);
    padding: 15px;
    border-radius: 6px;
    margin-bottom: 10px;
    border-left: 3px solid #4CAF50;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.status-item-info {
    flex: 1;
    min-width: 0;
}

.status-item-name {
    font-weight: 600;
    color: #fff;
    margin-bottom: 5px;
    word-break: break-word;
}

.status-item-uid {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    font-family: monospace;
    word-break: break-all;
}

.status-item-badge {
    padding: 8px 14px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.85rem;
    white-space: nowrap;
    flex-shrink: 0;
}

.status-item-badge.live {
    background: rgba(76, 175, 80, 0.2);
    color: #4CAF50;
    border: 1px solid rgba(76, 175, 80, 0.4);
}

.status-item-badge.die {
    background: rgba(244, 67, 54, 0.2);
    color: #f44336;
    border: 1px solid rgba(244, 67, 54, 0.4);
}

.status-item-badge.error {
    background: rgba(158, 158, 158, 0.2);
    color: #9e9e9e;
    border: 1px solid rgba(158, 158, 158, 0.4);
}

/* ==================== ANIMAÇÕES ==================== */
@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideDown {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* ==================== RESPONSIVIDADE - TABLETS ==================== */
@media (max-width: 768px) {
    .status-modal {
        padding: 10px;
    }

    .status-modal-content {
        width: 100%;
        max-width: 100%;
    }

    .status-modal-header {
        padding: 15px;
    }

    .status-modal-header h2 {
        font-size: 1.2rem;
    }

    .status-modal-body {
        padding: 15px;
        max-height: calc(90vh - 80px);
    }

    .status-summary {
        padding: 15px;
    }

    .summary-stats {
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
        gap: 10px;
    }

    .summary-stat {
        padding: 12px 8px;
    }

    .summary-stat-value {
        font-size: 1.5rem;
    }

    .summary-stat-label {
        font-size: 0.8rem;
    }

    .status-item {
        padding: 12px;
    }

    .status-indicator {
        font-size: 0.75rem;
        padding: 3px 8px;
        margin-left: 6px;
    }

    /* Ajusta botões de ação na tabela */
    .acoes-col .action-button {
        padding: 6px 10px;
        font-size: 0.9rem;
    }
}

/* ==================== RESPONSIVIDADE - MOBILE ==================== */
@media (max-width: 480px) {
    .status-modal {
        padding: 5px;
    }

    .status-modal-header {
        padding: 12px;
        flex-wrap: wrap;
    }

    .status-modal-header h2 {
        font-size: 1.1rem;
        width: 100%;
    }

    .status-modal-close {
        position: absolute;
        right: 10px;
        top: 10px;
    }

    .status-modal-body {
        padding: 12px;
    }

    .status-summary {
        padding: 12px;
    }

    .status-summary h3 {
        font-size: 1rem;
    }

    .summary-stats {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .summary-stat {
        padding: 10px;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .summary-stat-value {
        font-size: 1.8rem;
    }

    .summary-stat-label {
        font-size: 0.85rem;
        margin-top: 0;
        text-align: left;
    }

    .status-items-list h3 {
        font-size: 1rem;
    }

    .status-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        padding: 10px;
    }

    .status-item-badge {
        align-self: flex-end;
        width: 100%;
        text-align: center;
        padding: 10px;
    }

    .status-indicator {
        display: block;
        margin-left: 0;
        margin-top: 5px;
        text-align: center;
    }

    /* Oculta o texto "Verificar Status" no mobile, deixa só o ícone */
    .status-button[data-tooltip]::after {
        content: attr(data-tooltip);
        position: absolute;
        bottom: -30px;
        left: 50%;
        transform: translateX(-50%);
        background: rgba(0, 0, 0, 0.9);
        color: white;
        padding: 5px 10px;
        border-radius: 4px;
        font-size: 0.75rem;
        white-space: nowrap;
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.3s;
        z-index: 1000;
    }

    .status-button:hover::after {
        opacity: 1;
    }
}

/* ==================== AJUSTES PARA DARK MODE ==================== */
@media (prefers-color-scheme: dark) {
    .status-modal-content {
        background: linear-gradient(135deg, #0a2e0a 0%, #1a4d1a 100%);
    }
}

/* ==================== SCROLLBAR PERSONALIZADA ==================== */
.status-modal-body::-webkit-scrollbar {
    width: 8px;
}

.status-modal-body::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 4px;
}

.status-modal-body::-webkit-scrollbar-thumb {
    background: #4CAF50;
    border-radius: 4px;
}

.status-modal-body::-webkit-scrollbar-thumb:hover {
    background: #45a049;
}