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

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
}

header {
    background: #222;
    color: white;
    padding: 1em 0;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: auto;
    padding: 0 2em;
    position: relative;
}

.logo h1 {
    font-size: 24px;
    color: #f4f4f4;
}

.nav-links {
    list-style: none;
    display: flex;
}

.nav-links li {
    margin-left: 20px;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: white;
    margin: 4px;
}

.menu-close {
    display: none;
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 24px;
    color: white;
    cursor: pointer;
}

.hero {
    background: url('/storage/background.jpg') no-repeat center center/cover;
    height: 100vh;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.hero h2 {
    font-size: 36px;
    margin-bottom: 20px;
    margin-left: 10px;
    margin-right: 10px;
}

.hero p {
    font-size: 18px;
    margin-bottom: 20px;
    margin-left: 20px;
    margin-right: 20px;
}

.cta-button {
    background: #ff5500;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
}

.container {
    max-width: 1200px;
    margin: auto;
    padding: 2em;
}

section {
    padding: 4em 0;
}

.contact form {
    display: flex;
    flex-direction: column;
}

.contact input, .contact textarea {
    margin-bottom: 1em;
    padding: 10px;
    font-size: 16px;
    width: 100%;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.contact button {
    background: #ff5500;
    color: white;
    border: none;
    padding: 10px;
    font-size: 18px;
    cursor: pointer;
}

footer {
    background: #222;
    color: white;
    text-align: center;
    padding: 1em;
}


/* Estilos gerais do artigo */
.not_found {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-color: #f8f9fa;
    font-family: Arial, sans-serif;
}

/* Container dentro do artigo */
.container {
    text-align: center;
    max-width: 600px;
    margin: 20px;
    padding: 20px;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Cabeçalho de erro */
.not_found_header {
    margin-bottom: 20px;
}

.error {
    font-size: 2rem;
    color: #dc3545; /* Cor vermelha para erro */
    margin-bottom: 10px;
}

/* Estilo do botão */
.not_found_btn {
    display: inline-block;
    padding: 10px 20px;
    font-size: 1rem;
    color: #ffffff;
    background: #28a745; /* Cor verde padrão */
    text-decoration: none;
    border-radius: 4px;
    transition: background 0.3s, transform 0.3s;
}

.not_found_btn:hover {
    background: #218838; /* Cor verde escuro ao passar o mouse */
    transform: translateY(-2px);
}

/* Gradientes e transições */
.gradient {
    background: linear-gradient(45deg, #28a745, #34c759);
    color: #ffffff;
}

.gradient-hover:hover {
    background: linear-gradient(45deg, #218838, #27a745);
}

/* Responsividade */
@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        right: -250px;
        top: 0;
        height: 100%;
        width: 250px;
        background-color: #333;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        padding-top: 50px;
        padding-left: 20px;
        transition: 0.3s ease;
        z-index: 998; /* Menu está abaixo do "X" */
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links li {
        margin: 20px 0;
    }

    .nav-links a {
        font-size: 20px;
        color: white;
    }

    .menu-toggle {
        display: flex;
        flex-direction: column;
        cursor: pointer;
        z-index: 1000; /* Ícone do menu fica acima do conteúdo */
        position: relative;
    }

    .menu-toggle.active {
        display: none; /* Esconde o menu "hambúrguer" quando o menu está aberto */
    }

    .menu-close {
        display: none;
        position: absolute;
        top: 20px;
        right: 20px;
        font-size: 24px;
        color: white;
        cursor: pointer;
        z-index: 999; /* "X" acima do menu */
    }

    .nav-links.active ~ .menu-close {
        display: block;
    }

    .hero h2 {
        font-size: 28px;
    }

    .hero p {
        font-size: 16px;
    }
}