/* ---------- Variáveis ---------- */
:root {
    /* Cores */
    --green: #9FE007;
    --green-dark: #6F9C05;
    --white: #FFFFFF;
    --gray-light: #F4F4F4;
    --gray: #D9D9D9;
    --gray-dark: #333333;
    --black: #101010;
    --black-opacity-30: rgba(0, 0, 0, 0.3);
    --black-opacity-90: rgba(0, 0, 0, 0.9);
    

    /* Tamanhos */
    --container-max-width: 1600px;
    --container-padding-lg: 60px;
    --container-padding-sm: 30px;
    
    /* Espaçamento */
    --spacing-xs: 10px;
    --spacing-sm: 15px;
    --spacing-md: 20px;
    --spacing-lg: 30px;
    
    /* Fontes */
    --font-primary: 'Poppins', sans-serif;
    --font-size-xs: 0.9rem;
    --font-size-sm: 1rem;
    --font-size-md: 1.1rem;
    --font-size-lg: 1.2rem;
    --font-size-xl: 2rem;
    --font-size-xxl: 32px;
    --font-size-xxxl: 40px;
    
    /* Transições */
    --transition-fast: 0.3s ease;
    --transition-slow: 1s ease;
    
    /* Z-index */
    --z-dots: 10;
    --z-arrow: 10;
}

/* ---------- Fontes ---------- */
@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

body, html {
    margin: 0;
    padding: 0;
    font-family: var(--font-primary);
    color: #F4F4F4;
    background: #101010;
    height: 100%;
    overflow: hidden;
}

h1 {
    font-size: 42px;
    margin-bottom: 20px;
}

p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 30px;
}

button {
    height: 60px;
    padding: var(--spacing-xs) var(--spacing-md);
    align-items: center;
    background-color: var(--green);
    border: 3px solid transparent;
    border-radius: 30px;
    font-size: var(--font-size-md);
    font-weight: bold;
    color: var(--black);
    cursor: pointer;
    transition: all var(--transition-fast);
}

button:hover {
    background-color: transparent;
    border: 3px solid var(--green);
    color: var(--green);
}

button i {
    margin-right: 10px
}

a {
    text-decoration: none;
}

.container {
    display: flex;
    flex-direction: column;
    min-width: 100%;
    height: 100svh;
    background: url('../images/backgrounds/background_s03.jpg') center center;
}

.content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 100px;
    padding: 32px 24px;
    position: relative;
    overflow: hidden;
}

.error-code {
    font-size: 180px;
    font-weight: bold;
    margin: 0;
    color: var(--black);
    position: absolute;
    z-index: 1;
    opacity: 0.5;
}

.error-message {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.green-text {
    color: #9FE007;
}


.footer {
    padding: var(--container-padding-sm);
    color: #F4F4F4;
    font-size: 12px;
    text-align: center;
}

.footer img {
    width: 175px;
}

.footer p {
    margin: 5px 0;
    font-size: 12px;
}

.pulse {
    animation: pulse 2s infinite;
}

@media (max-width: 768px) {
    .error-code {
        font-size: 120px;
    }
    
    h1 {
        font-size: 32px;
    }
}