/* Reset básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #222;
    background: #fff;
}

header {
    background: #444;
    color: #fff;
    padding: 2rem 0;
    text-align: center;
}

header h1 {
    font-size: 2.2rem;
}

header p {
    font-size: 1.1rem;
}

.container {
    width: 90%;
    max-width: 1080px;
    margin: auto;
    padding: 1rem 0;
}

h2 {
    margin: 1rem 0 .5rem;
    color: #333;
}

section p, section ul {
    margin-bottom: 1rem;
}

.gallery img {
    width: 100%;
    height: auto;
    margin-top: 1rem;
    border-radius: 8px;
}

footer {
    background: #f4f4f4;
    padding: 1rem;
    margin-top: 2rem;
    text-align: center;
}

footer .links-grid {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

footer .links-grid li a {
    text-decoration: none;
    color: #0073e6;
    font-weight: bold;
}

footer p {
    font-size: .9rem;
    color: #555;
}

/* Responsive */
@media (min-width: 768px) {
    header h1 { font-size: 3rem; }
    .gallery img { height: 400px; object-fit: cover; }
}
