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

/* Configurações gerais */
body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    color: #f5f5f5;
    background-color: #000; /* Fundo preto */
}

/* Links */
a {
    color: #8cc63f; /* Verde limão */
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #d4e13e; /* Amarelo suave para hover */
}

/* Títulos */
h1, h2, h3 {
    color: #f5f5f5; /* Branco para títulos */
    font-weight: 700;
}

/* Cabeçalho */
.header {
    background-color: #000; /* Preto */
    color: #fff;
    padding: 1rem 2rem;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

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

.logo {
    font-size: 1.8rem;
    font-weight: 700;
}

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

.nav-links li a {
    color: #fff;
    font-size: 1.1rem;
    transition: color 0.3s;
}

.nav-links li a:hover {
    color: #8cc63f; /* Verde limão para links hover */
}

.actions {
    display: flex;
    gap: 0.5rem;
}

.actions .btn {
    padding: 0.8rem 1.5rem;
    border: none;
    cursor: pointer;
    color: #fff;
    border-radius: 5px;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.actions .btn:hover {
    transform: scale(1.05);
}

.btn-login {
    background-color: #444; /* Cinza escuro */
}

.btn-register {
    background-color: #8cc63f; /* Verde limão */
}

/* Hero com formulário */
.hero {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5rem 2rem;
    background-color: #111; /* Fundo escuro */
    color: white;
    animation: fadeIn 1s ease-out;
}

.hero-content {
    max-width: 50%;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 800;
    line-height: 1.3;
    animation: slideIn 1s ease-out;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

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

.hero-form label {
    margin-bottom: 0.5rem;
    font-weight: bold;
}

.hero-form input,
.hero-form select {
    width: 100%;
    padding: 1rem;
    margin-bottom: 1.5rem;
    border: 1px solid #555;
    border-radius: 8px;
    background-color: #222;
    color: white;
    font-size: 1rem;
    transition: border-color 0.3s ease, background-color 0.3s ease;
}

/* Estilização do dropdown de setor */
.hero-form select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    position: relative;
    cursor: pointer;
}

/* Mudando o visual quando o campo está em foco */
.hero-form select:focus,
.hero-form input:focus {
    outline: none;
    border-color: #8cc63f; /* Verde limão quando em foco */
    background-color: #333;
}

.hero-form select:hover,
.hero-form input:hover {
    border-color: #8cc63f; /* Verde limão no hover */
}

/* Rodapé */
.footer {
    background-color: #000;
    color: #fff;
    text-align: center;
    padding: 1rem;
    font-size: 0.9rem;
}

/* Página de exclusão de conta */
.delete-account-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
    background-color: #111; /* Fundo escuro */
    color: #f5f5f5;
}

.delete-account-section h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.delete-account-section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    text-align: center;
    max-width: 600px;
}

.delete-account-form {
    width: 100%;
    max-width: 400px;
    display: flex;
    flex-direction: column;
}

.delete-account-form label {
    margin-bottom: 0.5rem;
    font-weight: bold;
}

.delete-account-form input {
    padding: 1rem;
    margin-bottom: 1.5rem;
    border: 1px solid #555;
    border-radius: 8px;
    background-color: #222;
    color: #f5f5f5;
    font-size: 1rem;
    transition: border-color 0.3s ease, background-color 0.3s ease;
}

.delete-account-form input:focus {
    outline: none;
    border-color: #8cc63f; /* Verde limão quando em foco */
    background-color: #333;
}

.delete-account-form button {
    padding: 1rem;
    background-color: #ff4c4c; /* Vermelho */
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.delete-account-form button:hover {
    background-color: #ff7878; /* Vermelho mais claro */
    transform: scale(1.05);
}

/* Mensagem de confirmação */
#confirmationMessage {
    margin-top: 1.5rem;
    padding: 1rem;
    background-color: #8cc63f; /* Verde limão */
    color: #fff;
    border-radius: 8px;
    text-align: center;
    font-size: 1rem;
}

/* Classe para ocultar elementos */
.hidden {
    display: none;
}

/* Animações */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideIn {
    from { transform: translateX(-50px); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}
