* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background-color: rgb(151, 204, 151);
    color: #111;
}

.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: #2c3e2c;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 30px;
    z-index: 1000;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.navbar ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

.navbar a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

.alerta a {
    color: #ff6b6b;
}

.conteudo-principal {
    padding-top: 80px;
    max-width: 1000px;
    margin: 0 auto;
    padding-bottom: 50px;
}

.aviso-policial {
    background-color: white;
    border: 3px solid #d32f2f;
    text-align: center;
    padding: 30px;
    margin: 20px;
    border-radius: 10px;
}

.aviso-policial h1 {
    color: #d32f2f;
    margin-bottom: 15px;
}

.boas-vindas {
    text-align: center;
    margin: 30px 20px;
}

.telefone {
    font-size: 1.2rem;
    font-style: italic;
    margin-top: 10px;
    font-weight: bold;
}

.catalogo-gnomos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    padding: 20px;
    justify-items: center;
}

.gnomo-card {
    background-color: rgba(255, 255, 255, 0.9);
    border: 1px solid #ccc;
    border-radius: 12px;
    padding: 20px;
    width: 300px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    position: relative;
    overflow: hidden;
}

.gnomo-card::before {
    content: "APREENDIDO";
    position: absolute;
    top: 10px;
    right: -30px;
    background-color: #d32f2f;
    color: white;
    font-size: 0.7rem;
    font-weight: bold;
    padding: 5px 40px;
    transform: rotate(45deg);
    z-index: 1;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.gnomo-card h3 {
    color: #2c3e2c;
    margin-bottom: 15px;
    border-bottom: 2px solid #97cc97;
    padding-bottom: 5px;
}

.gnomo-card p {
    margin-bottom: 10px;
    font-size: 0.95rem;
    line-height: 1.4;
}

.preco {
    font-size: 1.3rem !important;
    color: #1b5e20;
    font-weight: bold;
    text-align: right;
    margin-top: 15px;
}

.rodape-legal {
    background-color: white;
    padding: 20px;
    margin: 30px 20px;
    border-radius: 8px;
    text-align: center;
    border: 1px dashed #666;
}

.texto-extra {
    margin: 40px 20px;
    color: #2c3e2c;
}

.texto-extra p {
    margin-bottom: 15px;
    line-height: 1.6;
}

@keyframes sirene {
    0% { background-color: white; }
    50% { background-color: #ffcccc; }
    100% { background-color: white; }
}

.aviso-policial {
    animation: sirene 1s infinite;
}