/* assets/css/style.css */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #000000;
    color: #ffffff;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    text-align: center;
}

/* Logo */
.logo-container {
    margin-bottom: 2rem;
    animation: fadeInDown 1s ease;
}

.logo {
    max-width: 500px;
    height: auto;
    filter: drop-shadow(0 0 20px rgba(0, 255, 136, 0.3));
}

/* Título EM MANUTENÇÃO */
.maintenance-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 3rem;
    text-transform: uppercase;
    letter-spacing: 5px;
    background: linear-gradient(45deg, #00ff88, #9b59b6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: glow 2s ease-in-out infinite alternate;
}

/* Grid de Cards */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

/* Cards */
.service-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(0, 255, 136, 0.1);
    border-radius: 15px;
    padding: 2rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    animation: fadeInUp 1s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: #00ff88;
    box-shadow: 0 10px 30px rgba(0, 255, 136, 0.2);
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #00ff88;
}

.service-card h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #9b59b6;
}

.service-card p {
    font-size: 0.9rem;
    color: #cccccc;
    line-height: 1.6;
}

/* Link Admin */
.admin-link {
    position: fixed;
    bottom: 20px;
    right: 20px;
    opacity: 0.3;
    transition: opacity 0.3s ease;
}

.admin-link:hover {
    opacity: 1;
}

.admin-link a {
    color: #00ff88;
    text-decoration: none;
    font-size: 0.9rem;
    padding: 5px 10px;
    border: 1px solid #00ff88;
    border-radius: 5px;
}

/* Animações */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes glow {
    from {
        text-shadow: 0 0 10px #00ff88, 0 0 20px #9b59b6;
    }
    to {
        text-shadow: 0 0 20px #00ff88, 0 0 40px #9b59b6;
    }
}

/* Responsividade */
@media (max-width: 768px) {
    .maintenance-title {
        font-size: 2.5rem;
    }
    
    .logo {
        max-width: 800px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
}

/* Botão de logout na página principal */
.logout-btn-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000;
}

.logout-btn-site {
    background: linear-gradient(45deg, #ff4444, #ff0000);
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s;
    border: none;
    box-shadow: 0 2px 10px rgba(255, 0, 0, 0.3);
}

.logout-btn-site:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(255, 0, 0, 0.5);
}

/* Ajuste no admin-link */
.admin-link {
    position: fixed;
    bottom: 20px;
    right: 20px;
    opacity: 0.3;
    transition: opacity 0.3s ease;
    z-index: 1000;
}