/* ===============================
   VARIÁVEIS GLOBAIS
   =============================== */
:root {
    --text-primary: #ffffff;
    --text-secondary: #ffffff;
    --accent-color: #ffffff;
    --accent-hover: #00c9fbd8;
    --bg-container: rgba(0, 0, 0, 0.863);
    --font-family: 'Montserrat', sans-serif;
}

/* ===============================
   RESET BÁSICO
   =============================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* ===============================
   ESTILOS GERAIS
   =============================== */
body {
    font-family: var(--font-family);
    color: var(--text-primary);
    background: url('seguranca-bg.jpg') no-repeat center center/cover;
    
    display: grid;
    place-items: center;
    min-height: 100vh;
    padding: 20px;
    
    position: relative;
    overflow: hidden;
}

/* Overlay escuro */
body::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.673);
    -webkit-backdrop-filter: blur(2px); 
    backdrop-filter: blur(2px);
    z-index: 0;
}

/* ===============================
   CONTAINER PRINCIPAL
   =============================== */
.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
    
    max-width: 700px;
    padding: 60px 50px;
    text-align: center;
    background: var(--bg-container);
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 5, 57, 0.867);
    
    position: relative;
    z-index: 1;
}

/* ===============================
   ELEMENTOS INTERNOS
   =============================== */
.logo {
    max-width: 220px;
}

h1 {
    font-size: 2rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
}

p {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.gears-gif {
    width: 85px;
    height: 70px;
}

/* ===============================
   CONTATO
   =============================== */
.contact p {
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 10px;
}

.contact ul {
    list-style: none;
    font-size: 0.95rem;
}

.contact li {
    margin-bottom: 8px;
}

address a {
    color: var(--accent-color);
    text-decoration: none;
    transition: all 0.3s;
    font-family: var(--font-family);
}

address a:hover {
    color: var(--accent-hover);
    text-decoration: underline;
}
