/* Reset básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Configuração da página */
html, body {
    height: 100%;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    background-color: #000000;
    color: #ffffff;
}

/* Container principal */
.container {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* Conteúdo principal */
.main-content {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Seção do logo */
.logo-section {
    text-align: center;
}

/* Container do logo */
.logo-container {
    width: 384px;
    height: 384px;
    margin: 0 auto 80px auto;
}

/* Logo */
.logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Links sociais */
.social-links {
    display: flex;
    justify-content: center;
    gap: 40px;
}

/* Link social individual */
.social-link {
    display: block;
    padding: 12px;
    color: #9ca3af;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    color: #ffffff;
    transform: scale(1.1);
}

/* Ícone social */
.social-icon {
    width: 28px;
    height: 28px;
    display: block;
}

/* Footer */
.footer {
    padding-bottom: 32px;
}

/* Conteúdo do footer */
.footer-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

/* Copyright */
.copyright {
    font-size: 12px;
    color: #4b5563;
}

/* Ícone do footer */
.footer-icon {
    width: 12px;
    height: 16px;
}

/* Responsivo para tablets */
@media (max-width: 768px) {
    .logo-container {
        width: 280px;
        height: 280px;
        margin-bottom: 60px;
    }
    
    .social-links {
        gap: 30px;
    }
    
    .social-icon {
        width: 24px;
        height: 24px;
    }
}

/* Responsivo para celulares */
@media (max-width: 480px) {
    .container {
        padding: 20px;
    }
    
    .logo-container {
        width: 240px;
        height: 240px;
        margin-bottom: 40px;
    }
    
    .social-links {
        gap: 25px;
    }
    
    .social-link {
        padding: 10px;
    }
    
    .social-icon {
        width: 22px;
        height: 22px;
    }
}