:root {
    --irish-green: #009a44;
    --irish-orange: #ff8222;
    --brazil-blue: #002776;
    --brazil-yellow: #ffdf00;
    --gold: #d4af37;
}

body {
    font-family: 'Raleway', sans-serif;
    margin: 0;
    background-color: #f0f2f0;
    color: #2c3e50;
}

header {
    background: linear-gradient(90deg, var(--irish-green) 0%, var(--brazil-blue) 100%);
    padding: 1rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo {
    font-family: 'Cinzel', serif;
    color: white;
    font-size: 1.8rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.lang-switcher img {
    width: 35px;
    height: auto;
    cursor: pointer;
    margin-left: 15px;
    border: 2px solid transparent;
    border-radius: 4px;
    transition: transform 0.2s, border-color 0.2s;
}

.lang-switcher img:hover {
    transform: scale(1.2);
    border-color: var(--brazil-yellow);
}

/* Hero Section */
.hero {
    background: url('https://images.unsplash.com/photo-1590053132232-f3020bbb2ee3?q=80&w=2000') no-repeat center/cover;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    border-bottom: 8px solid var(--gold);
}

.hero-overlay {
    background: rgba(0, 0, 0, 0.6);
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.coat-of-arms {
    width: 150px;
    filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.8));
    margin-bottom: 20px;
}

.hero h1 {
    font-family: 'Cinzel', serif;
    color: white;
    font-size: 3rem;
    margin: 0;
    text-shadow: 0 0 20px var(--gold);
}

/* Conteúdo Principal */
.container {
    max-width: 900px;
    margin: -50px auto 40px; /* Sobe um pouco para cima do hero */
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    position: relative;
}

h2 {
    color: var(--irish-green);
    font-family: 'Cinzel', serif;
    font-size: 2rem;
    text-align: center;
}

p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #444;
}

/* Footer Decorativo */
footer {
    background: #1a1a1a;
    color: white;
    text-align: center;
    padding: 40px 0;
}

.flags-footer {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
}

.dot {
    height: 12px;
    width: 40px;
    border-radius: 20px;
}

.green { background-color: var(--irish-green); }
.yellow { background-color: var(--brazil-yellow); }
.blue { background-color: var(--brazil-blue); }
.white { background-color: #fff; }
.orange { background-color: var(--irish-orange); }

@media (max-width: 600px) {
    .hero h1 { font-size: 2rem; }
    .container { margin: -20px 15px 40px; padding: 20px; }
}