/* Reset e Variáveis */
:root {
    --dark-bg: #2d2d2d;
    --darker-bg: #1f1f1f;
    --gold: #d4af37;
    --gold-dark: #b8941f;
    --aqua: #6dd3ce;
    --aqua-dark: #4fb3ae;
    --white: #ffffff;
    --gray-light: #a0a0a0;
    --gray: #808080;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--dark-bg);
    color: var(--white);
    min-height: 100vh;
    overflow-x: hidden;
}

/* Container Principal */
.container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    position: relative;
}

.content {
    max-width: 800px;
    width: 100%;
    text-align: center;
    position: relative;
    z-index: 10;
    animation: fadeIn 1s ease-out;
}

/* Logo */
.logo-container {
    margin-bottom: 40px;
    animation: scaleIn 0.8s ease-out;
}

.logo {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5),
                0 0 30px rgba(212, 175, 55, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.6),
                0 0 40px rgba(212, 175, 55, 0.3);
}

/* Ícone de Manutenção */
.maintenance-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 30px;
    color: var(--gold);
    animation: rotate 4s linear infinite, pulse 2s ease-in-out infinite;
}

.maintenance-icon svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.5));
}

/* Título */
.title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
    line-height: 1.2;
    animation: slideDown 0.8s ease-out 0.2s backwards;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

/* Subtítulo */
.subtitle {
    font-size: 1.5rem;
    color: var(--gold);
    margin-bottom: 30px;
    font-weight: 300;
    animation: slideDown 0.8s ease-out 0.4s backwards;
}

/* Descrição */
.description {
    margin-bottom: 50px;
    animation: slideDown 0.8s ease-out 0.6s backwards;
}

.description p {
    font-size: 1.1rem;
    color: var(--gray-light);
    line-height: 1.6;
    margin-bottom: 10px;
}

/* Barra de Progresso */
.progress-container {
    margin-bottom: 60px;
    animation: slideDown 0.8s ease-out 0.8s backwards;
}

.progress-bar {
    width: 100%;
    height: 8px;
    background-color: var(--darker-bg);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 15px;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.3);
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--aqua), var(--gold), var(--aqua));
    background-size: 200% 100%;
    border-radius: 10px;
    animation: progressAnimation 2s ease-in-out infinite;
    box-shadow: 0 0 10px var(--aqua);
}

.progress-text {
    font-size: 0.9rem;
    color: var(--gray);
    font-style: italic;
}

/* Redes Sociais */
.social-section {
    margin-bottom: 50px;
    animation: slideUp 0.8s ease-out 1s backwards;
}

.social-title {
    font-size: 1rem;
    color: var(--gray-light);
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 15px;
}

.social-link {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--darker-bg);
    border-radius: 50%;
    color: var(--white);
    transition: all 0.3s ease;
    text-decoration: none;
    border: 2px solid transparent;
}

.social-link svg {
    width: 24px;
    height: 24px;
}

.social-link:hover {
    background-color: var(--gold);
    color: var(--dark-bg);
    transform: translateY(-5px);
    border-color: var(--gold);
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.4);
}

.social-link:nth-child(2):hover {
    background-color: var(--aqua);
    border-color: var(--aqua);
    box-shadow: 0 5px 20px rgba(109, 211, 206, 0.4);
}

.username {
    font-size: 1.2rem;
    color: var(--gold);
    font-weight: 500;
    margin-top: 15px;
}

/* Footer */
.footer {
    animation: fadeIn 1.2s ease-out 1.2s backwards;
}

.footer p {
    font-size: 0.9rem;
    color: var(--gray);
}

/* Elementos Decorativos */
.decoration {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
    animation: float 6s ease-in-out infinite;
}

.decoration-1 {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, var(--gold), var(--aqua));
    top: -150px;
    left: -150px;
    animation-delay: 0s;
}

.decoration-2 {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, var(--aqua), var(--gold));
    bottom: -100px;
    right: -100px;
    animation-delay: 2s;
}

.decoration-3 {
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, var(--gold), var(--aqua));
    top: 50%;
    right: -75px;
    animation-delay: 4s;
}

/* Animações */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.5);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.6;
    }
}

@keyframes progressAnimation {
    0% {
        background-position: 0% 0%;
    }
    50% {
        background-position: 100% 0%;
    }
    100% {
        background-position: 0% 0%;
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

/* Responsividade */
@media (max-width: 768px) {
    .title {
        font-size: 2.5rem;
    }

    .subtitle {
        font-size: 1.2rem;
    }

    .description p {
        font-size: 1rem;
    }

    .logo {
        width: 150px;
        height: 150px;
    }

    .maintenance-icon {
        width: 60px;
        height: 60px;
    }

    .social-link {
        width: 45px;
        height: 45px;
    }

    .social-link svg {
        width: 20px;
        height: 20px;
    }
}

@media (max-width: 480px) {
    .title {
        font-size: 2rem;
    }

    .subtitle {
        font-size: 1rem;
    }

    .description p {
        font-size: 0.9rem;
    }

    .logo {
        width: 120px;
        height: 120px;
    }

    .maintenance-icon {
        width: 50px;
        height: 50px;
    }

    .social-links {
        gap: 15px;
    }

    .social-link {
        width: 40px;
        height: 40px;
    }

    .social-link svg {
        width: 18px;
        height: 18px;
    }
}

