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

html, body {
    width: 100%;
    height: 100%;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    color: #ffffff;
}

.container {
    width: 100%;
    max-width: 800px;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.content {
    text-align: center;
    animation: fadeIn 0.8s ease-in;
}

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

.logo-wrapper {
    margin-bottom: 40px;
    display: flex;
    justify-content: center;
}

.logo {
    max-width: 100%;
    height: auto;
    max-height: 300px;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.5));
    animation: slideDown 0.8s ease-out;
}

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

.title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #00ff00 0%, #ffff00 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 2px;
    animation: slideUp 0.8s ease-out 0.2s both;
}

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

.message {
    font-size: 1.2rem;
    color: #cccccc;
    margin-bottom: 50px;
    animation: slideUp 0.8s ease-out 0.4s both;
}

.contact-section {
    animation: slideUp 0.8s ease-out 0.6s both;
}

.contact-label {
    font-size: 1rem;
    color: #999999;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-link {
    display: inline-block;
    font-size: 1.5rem;
    color: #00ff00;
    text-decoration: none;
    padding: 15px 30px;
    border: 2px solid #00ff00;
    border-radius: 50px;
    transition: all 0.3s ease;
    font-weight: 600;
    background: rgba(0, 255, 0, 0.05);
}

.contact-link:hover {
    background: rgba(0, 255, 0, 0.15);
    box-shadow: 0 0 20px rgba(0, 255, 0, 0.4);
    transform: translateY(-3px);
}

.contact-link:active {
    transform: translateY(-1px);
}

/* Responsivo para dispositivos móveis */
@media (max-width: 768px) {
    .title {
        font-size: 2rem;
        letter-spacing: 1px;
    }

    .message {
        font-size: 1rem;
    }

    .contact-link {
        font-size: 1.1rem;
        padding: 12px 24px;
    }

    .logo {
        max-height: 200px;
    }
}

@media (max-width: 480px) {
    .title {
        font-size: 1.5rem;
        margin-bottom: 15px;
    }

    .message {
        font-size: 0.9rem;
        margin-bottom: 30px;
    }

    .contact-link {
        font-size: 1rem;
        padding: 10px 20px;
    }

    .logo {
        max-height: 150px;
    }

    .logo-wrapper {
        margin-bottom: 30px;
    }
}
