/* style.css */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background: linear-gradient(180deg, #0B0B12, #121225, #1E1B4B);
    color: #E5E7EB;
    padding: 20px;
    display: flex;
    justify-content: center;
    min-height: 100vh;
}

.app-container {
    width: 100%;
    max-width: 415px;
    min-height: 90vh;
    box-sizing: border-box;
}

/* --- TOPO E CABEÇALHO --- */
.top-warning {
    width: 100%;
    padding: 10px;
    background: rgba(34, 211, 238, 0.08);
    border: 1px solid rgba(34, 211, 238, 0.2);
    border-radius: 12px;
    text-align: center;
    font-size: 12px;
    color: #22D3EE;
    margin-bottom: 20px;
}

h1 {
    font-size: 26px;
    font-weight: 800;
    letter-spacing: 1px;
    color: #FFFFFF;
    text-align: center;
}

.sub-logo {
    color: #22D3EE;
    font-size: 14px;
    margin-top: 5px;
    text-align: center;
}

.demo-tag {
    text-align: center;
    margin: 10px auto 5px auto;
    display: block;
    width: fit-content;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    background: rgba(255, 165, 0, 0.12);
    color: #FFC857;
    border: 1px solid rgba(255, 200, 87, 0.35);
    box-shadow: 0 0 15px rgba(255, 200, 87, 0.15);
}

.user-welcome-tag {
    text-align: center;
    font-size: 15px;
    color: #E5E7EB;
    margin-top: 15px;
    margin-bottom: 2px;
    font-weight: bold;
}

.location-box {
    margin-top: 15px;
    padding: 14px;
    text-align: center;
    font-weight: bold;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(34, 211, 238, 0.2);
    border-radius: 16px;
    backdrop-filter: blur(20px);
    color: #E5E7EB;
}

/* --- CARD DE CONDIÇÕES METEOROLÓGICAS --- */
.card-condicoes {
    margin-top: 20px;
    background: #161625;
    border-radius: 20px;
    padding: 20px;
    border: 1px solid rgba(34, 211, 238, 0.15);
    box-shadow: 0 0 30px rgba(34, 211, 238, 0.12);
    margin-bottom: 25px;
}

.grid-condicoes {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.grid-condicoes div {
    background: rgba(255, 255, 255, 0.03);
    padding: 14px;
    border-radius: 14px;
    font-size: 14px;
    font-weight: bold;
    color: #E5E7EB;
    border: 1px solid rgba(255, 255, 255, 0.02);
}

/* --- BOTÕES ESTILIZADOS CYBERPUNK --- */
.btn {
    display: block;
    width: 100%;
    padding: 18px;
    margin: 15px 0;
    border: none;
    border-radius: 15px;
    font-size: 17px;
    font-weight: bold;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    box-sizing: border-box;
    transition: 0.3s;
    background: linear-gradient(135deg, #1C1C2D, #2A214F);
    border: 1px solid rgba(255, 200, 87, 0.18);
    color: white;
    box-shadow: 0 0 18px rgba(255, 200, 87, 0.08);
}

.btn:hover {
    transform: scale(1.02);
}

.btn-secondary {
    background: #161625 !important;
    color: white !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    box-shadow: none !important;
}

.btn-logout {
    background: transparent !important;
    border: 2px solid #FF4B6E !important;
    color: #FF4B6E !important;
    box-shadow: none !important;
    margin-top: 20px;
}

.btn-icon {
    color: #FFC857;
    font-size: 18px;
    margin-right: 8px;
}

/* --- FORMULÁRIOS NO MODO ESCURO --- */
form label {
    display: block;
    margin-top: 14px;
    font-weight: 600;
    font-size: 14px;
    color: #22D3EE;
}

form input, form select {
    width: 100%;
    padding: 12px;
    margin-top: 6px;
    border: 1px solid rgba(34, 211, 238, 0.2);
    border-radius: 8px;
    box-sizing: border-box;
    background: #161625;
    color: #E5E7EB;
}