:root {
    --primary-color: #1d1d1f;
    --accent-color: #fdb813;
    --text-main: #1d1d1f;
    --text-muted: #515154;
    --border-color: rgba(0, 0, 0, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Outfit', sans-serif;
    color: var(--text-main);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow-x: hidden;
    /* Degradê sofisticado e suave */
    background: linear-gradient(135deg, #f5f7fa 0%, #e2e8f0 100%);
    background-attachment: fixed;
}

.container {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 20px;
    width: 100%;
}

.content-card {
    background: transparent;
    /* Removido o quadro branco */
    border: none;
    /* Removida a borda */
    padding: 2rem;
    text-align: center;
    max-width: 600px;
    width: 100%;
    animation: fadeInScale 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.logo-wrapper {
    margin-bottom: 3rem;
}

#main-logo {
    max-width: 180px;
    height: auto;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.1));
    animation: float 6s ease-in-out infinite;
}

h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    letter-spacing: -0.04em;
    color: var(--text-main);
}

p.description {
    color: var(--text-muted);
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 3.5rem;
    font-weight: 400;
}

.contact-info {
    border-top: 1px solid var(--border-color);
    padding-top: 2.5rem;
    text-align: center;
    /* Centralizado sem o card */
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
}

.contact-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contact-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--text-muted);
    margin-bottom: 6px;
    font-weight: 700;
}

.contact-value {
    font-weight: 600;
    font-size: 1.2rem;
    color: var(--text-main);
    text-decoration: none;
    transition: color 0.3s ease;
}

a.contact-value:hover {
    color: var(--accent-color);
}

footer {
    padding: 2.5rem;
    color: var(--text-muted);
    font-size: 0.85rem;
    font-weight: 500;
    text-align: center;
    width: 100%;
}

/* Animations */
@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.95) translateY(20px);
    }

    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }
}

/* Mobile Adjustments */
@media (max-width: 480px) {
    h1 {
        font-size: 1.8rem;
    }

    p.description {
        font-size: 1.1rem;
    }
}