* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', 'Arial', sans-serif;
    background: linear-gradient(145deg, #e8e0d8 0%, #d5c8bc 100%);
    color: #2c1a12;
    line-height: 1.6;
}

/* CABEÇALHO */
header {
    background: linear-gradient(145deg, #1f3b2c, #14281d);
    color: #e8f0e8;
    text-align: center;
    padding: 25px 20px;
    border-bottom: 4px solid #c9a87b;
}

header h1 {
    font-size: 2.5rem;
    font-family: 'Georgia', serif;
    letter-spacing: 2px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    margin-bottom: 8px;
}

header p {
    font-size: 0.95rem;
    color: #c9d4b5;
    font-style: italic;
}

/* NAVEGAÇÃO */
nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
    flex-wrap: wrap;
}

nav a {
    color: #e8f0e8;
    text-decoration: none;
    padding: 10px 20px;
    background-color: #2a5a42;
    border-radius: 25px;
    font-weight: bold;
    transition: all 0.3s ease;
    display: inline-block;
}

nav a:hover {
    background-color: #c9a87b;
    color: #14281d;
    transform: scale(1.05);
}

/* CONTEÚDO PRINCIPAL */
main {
    max-width: 1000px;
    margin: 40px auto;
    padding: 0 20px;
}

/* SEÇÕES */
section {
    background-color: #fffef8;
    margin-bottom: 30px;
    padding: 25px;
    border-radius: 16px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

section:hover {
    transform: translateY(-5px);
}

/* PRIMEIRA SEÇÃO - DESTAQUE ESPECIAL */
section:first-child {
    background: linear-gradient(135deg, #fffef8, #f5efe5);
    border-top: 5px solid #2a5a42;
    border-bottom: 5px solid #c9a87b;
}

/* TÍTULOS PRINCIPAIS */
h2 {
    color: #1f3b2c;
    font-size: 1.8rem;
    font-family: 'Georgia', serif;
    text-align: center;
    margin-bottom: 25px;
    padding-bottom: 12px;
    border-bottom: 3px double #c9a87b;
}

/* TÍTULOS SECUNDÁRIOS */
h3 {
    color: #2a5a42;
    font-size: 1.4rem;
    font-family: 'Georgia', serif;
    margin: 20px 0 10px 0;
    padding: 8px 15px;
    background: linear-gradient(90deg, #e8e0d8, transparent);
    border-radius: 20px;
}

h3:first-of-type {
    margin-top: 0;
}

/* PARÁGRAFOS */
p {
    margin-bottom: 15px;
    color: #3a2a1f;
    padding: 0 10px;
    text-align: justify;
}

/* LISTA ORDENADA (PRÊMIOS) */
ol {
    margin: 15px 0;
    padding-left: 40px;
}

ol li {
    margin: 12px 0;
    font-size: 1.05rem;
    color: #1f3b2c;
    font-weight: bold;
    padding: 5px 10px;
    background-color: #f5efe5;
    border-radius: 10px;
    list-style-position: inside;
}

/* IMAGEM */
img {
    display: block;
    margin: 25px auto;
    border-radius: 20px;
    border: 4px solid #c9a87b;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    max-width: 100%;
    height: auto;
    transition: all 0.3s ease;
}

img:hover {
    transform: scale(1.03);
    border-color: #2a5a42;
}

/* RODAPÉ */
footer {
    background: linear-gradient(145deg, #1f3b2c, #14281d);
    color: #c9d4b5;
    text-align: center;
    padding: 20px;
    margin-top: 40px;
    font-size: 0.8rem;
    border-top: 1px solid #2a5a42;
}

footer p {
    padding: 0;
    margin: 0;
    text-align: center;
}

/* RESPONSIVIDADE PARA CELULAR */
@media (max-width: 600px) {
    header h1 {
        font-size: 1.8rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    h3 {
        font-size: 1.2rem;
    }
    
    section {
        padding: 15px;
    }
    
    ol li {
        font-size: 0.9rem;
    }
    
    p {
        text-align: left;
    }
    
    nav a {
        padding: 6px 12px;
        font-size: 0.85rem;
    }
}

/* ESTILO PARA OS PRÊMIOS (EFEITO ESPECIAL) */
ol li:nth-child(1) {
    border-left: 5px solid #ffd700;
}

ol li:nth-child(2) {
    border-left: 5px solid #c0c0c0;
}

ol li:nth-child(3) {
    border-left: 5px solid #cd7f32;
}

ol li:nth-child(4) {
    border-left: 5px solid #c9a87b;
}