/* ===== Global ===== */
body {
    font-family: 'Inter', sans-serif;
    background: #121212;
    color: #fff;
    margin: 0;
    padding: 0;
    text-align: center;
}

a {
    text-decoration: none;
}

/* ===== Loading Screen ===== */
#loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #121212;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 1s;
}

.loading-logo {
    font-size: 3rem;
    font-weight: bold;
    color: #ff4d4d;
}

/* ===== Header ===== */
header {
    background: #1f1f1f;
    padding: 20px;
}

header h1 {
    margin: 0;
    font-size: 2rem;
}

nav a {
    color: #fff;
    margin: 0 15px;
    font-weight: bold;
    transition: color 0.3s;
}

nav a:hover {
    color: #ff4d4d;
}

/* ===== Main ===== */
main {
    padding: 50px 20px;
}

h2 {
    margin-bottom: 20px;
}

p {
    margin-bottom: 30px;
}

/* ===== Botão ===== */
.btn {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 25px;
    background: #ff4d4d;
    color: #fff;
    border-radius: 8px;
    font-weight: bold;
    transition: background 0.3s;
}

.btn:hover {
    background: #ff1a1a;
}

/* ===== Lista de executores ===== */
.executores-list {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.executores-list li {
    margin: 10px 0;
    font-size: 1.2rem;
}
