/* ---------------------------
   Fonte
--------------------------- */
@import url('https://fonts.googleapis.com/css2?family=Comic+Neue:wght@400;700&display=swap');

body, input, textarea, button {
    font-family: 'Comic Neue', sans-serif;
}

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

/* ---------------------------
   Body
--------------------------- */
body {
    background-color: #fff;
    color: #000;
    line-height: 1.6;
    padding-top: 60px; /* espaço para navbar fixa */
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 16px;
}

/* ---------------------------
   Navegação
--------------------------- */
nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #b82828;
    color: #fff;
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
}

.nav-left {
    display: flex;       
    align-items: center; 
    gap: 10px;           
}

.nav-left .logo {
    height: 40px;
}

.nav-left .site-link {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
}

.nav-left .site-link:hover {
    text-decoration: underline;
}

.nav-right a {
    color: #fff;
    margin-left: 15px;
    text-decoration: none;
    font-weight: bold;
}

.nav-right a:hover {
    text-decoration: underline;
}


/* ---------------------------
   Container principal
--------------------------- */
.container {
    width: 90%;
    max-width: 800px;
    margin: 20px 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
}

/* ---------------------------
   Cards simples
--------------------------- */
.card {
    background-color: #fff;
    border: 1px solid #e24040;
    border-radius: 5px;
    padding: 15px;
    margin-bottom: 15px;
}

/* ---------------------------
   Botões simples
--------------------------- */
.btn-mingle {
    background-color: #e24040;
    color: #fff;
    border: none;
    padding: 8px 16px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
    text-align: center;
    font-size: 16px;
    margin-top: 15px;
    transition: background 0.3s;
}

.btn-mingle:hover {
    background-color: #b82828;
}

.btn-mingle:disabled {
    background-color: #ccc;
    color: #666;
    cursor: not-allowed;
}

/* ---------------------------
   Inputs e textarea
--------------------------- */
input[type="text"], textarea {
    width: 100%;
    padding: 8px;
    margin: 6px 0;
    border: 1px solid #e24040;
    border-radius: 4px;
    font-family: inherit;
}

/* ---------------------------
   Links
--------------------------- */
.link {
    color: #e24040;
    text-decoration: none;
}

.link:hover {
    text-decoration: underline;
}

/* ---------------------------
   Títulos
--------------------------- */
h1, h2, h3 {
    color: #e24040;
    margin-bottom: 15px;
    text-align: left;
}

/* ---------------------------
   Listas
--------------------------- */
ul {
    list-style: disc;
    padding-left: 20px;
}

ul li {
    margin-bottom: 8px;
    color: #000;
}

.beta-warning {
    position: fixed;
    bottom: 0;
    width: 100%;
    background: #6c5ce7;
    color: white;
    text-align: center;
    padding: 8px;
    font-size: 13px;
    z-index: 999;
}
