/* Importando a fonte 'Outfit' do Google Fonts para um visual moderno e limpo */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;700&display=swap');

/* Variáveis de cores - Tema Verde Moderno */
:root {
    --bg-color: #022c22;
    /* Verde escuro profundo (Teal Dark) */
    --text-color: #ecfdf5;
    /* Menta muito claro para texto */
    --accent-color: #34d399;
    /* Esmeralda vibrante */
    --secondary-accent: #a3e635;
    /* Lima suave */
    --glass-bg: rgba(2, 44, 34, 0.7);
    /* Fundo translúcido */
}

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

/* Estilos gerais do corpo da página */
body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-color);
    /* Gradientes complexos para criar um fundo rico em tons de verde */
    background-image:
        radial-gradient(at 0% 0%, hsla(160, 84%, 10%, 1) 0, transparent 50%),
        radial-gradient(at 50% 0%, hsla(140, 70%, 15%, 1) 0, transparent 50%),
        radial-gradient(at 100% 0%, hsla(180, 60%, 15%, 1) 0, transparent 50%);
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--text-color);
    overflow: hidden;
    position: relative;
}

/* Container principal */
.container {
    text-align: center;
    padding: 2rem;
    max-width: 90%;
    /* Melhor uso de espaço em mobile */
    width: 800px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1.2s cubic-bezier(0.22, 1, 0.36, 1) forwards;
    z-index: 1;
}

/* Estilo do subtítulo */
.subtitle {
    font-size: clamp(1rem, 4vw, 1.25rem);
    /* Responsivo */
    font-weight: 300;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #6ee7b7;
    /* Verde claro suave */
    margin-bottom: 1rem;
    display: block;
}

/* Estilo do título principal (Nome) */
h1 {
    font-size: clamp(3rem, 10vw, 6rem);
    /* Escala fluida para mobile e desktop */
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 2rem;
    /* Gradiente de texto em tons de verde e lima */
    background: linear-gradient(135deg, #ffffff 0%, var(--accent-color) 50%, var(--secondary-accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    /* Sombra suave esmeralda */
    text-shadow: 0 10px 40px rgba(52, 211, 153, 0.3);
}

/* Linha decorativa */
.decoration {
    width: 120px;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-color), var(--secondary-accent));
    margin: 0 auto;
    border-radius: 2px;
    opacity: 0.9;
    box-shadow: 0 0 15px rgba(52, 211, 153, 0.5);
}

/* Animação de entrada */
@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Efeito de brilho de fundo (Glow) */
.glow {
    position: absolute;
    width: 80vw;
    height: 80vw;
    max-width: 600px;
    max-height: 600px;
    background: radial-gradient(circle, rgba(52, 211, 153, 0.15) 0%, rgba(0, 0, 0, 0) 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 0;
    pointer-events: none;
}
