@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700&display=swap');

:root {
    --bg-main: #060908;
    --brand-green: #0b4c34;
    --brand-green-rgb: 11, 76, 52;
    --accent: #10b981;
    --accent-rgb: 16, 185, 129;
    --text-title: #ffffff;
    --font-family: 'Outfit', sans-serif;
}

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

body {
    background-color: var(--bg-main);
    color: var(--text-title);
    font-family: var(--font-family);
    overflow: hidden;
    position: relative;
}

/* Efeito radial de iluminação no centro */
body::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(var(--brand-green-rgb), 0.15) 0%, rgba(0, 0, 0, 0) 70%);
    z-index: -1;
}

/* Wrapper de centralização total */
.coming-soon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    width: 100%;
    padding: 2rem;
}

.content-center {
    max-width: 680px;
    text-align: center;
    animation: fadeIn 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* Logo minimalista */
.logo-wrapper {
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
    opacity: 0.85;
}

/* Frase Principal */
h1 {
    font-size: 2.5rem;
    font-weight: 600;
    line-height: 1.35;
    color: var(--text-title);
    margin-bottom: 2.5rem;
    letter-spacing: -0.5px;
}

h1 span {
    color: var(--accent);
    font-weight: 700;
}

/* Botão Linktree Discreto e Bonito */
.btn-linktree {
    display: inline-block;
    color: var(--accent);
    text-decoration: none;
    background: rgba(16, 185, 129, 0.03);
    border: 1px solid rgba(16, 185, 129, 0.25);
    padding: 0.8rem 2.2rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.btn-linktree:hover {
    background: var(--accent);
    color: var(--bg-main);
    border-color: var(--accent);
    box-shadow: 0 8px 24px rgba(var(--accent-rgb), 0.25);
    transform: translateY(-2px);
}

/* Animação suave de entrada */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(15px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Ajuste responsivo */
@media (max-width: 600px) {
    h1 {
        font-size: 1.85rem;
    }
    .btn-linktree {
        width: 100%;
        text-align: center;
        padding: 1rem;
    }
}
