:root {
    --cor-primaria: #193229;
    --cor-secundaria: #2c5046;
    --cor-texto: #f0f0f0;
    --cor-destaque: #4c9e8f;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f5f5f5;
    color: #333;
    line-height: 1.6;
}

header {
    background-color: var(--cor-primaria);
    color: var(--cor-texto);
    text-align: center;
    padding: 2rem 0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

h1 {
    margin: 0;
    font-size: 2.5rem;
    font-weight: 300;
    letter-spacing: 1px;
}

.logo-container {
    margin-bottom: 1rem;
}

.logo {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid var(--cor-destaque);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.intro {
    text-align: center;
    margin-bottom: 3rem;
    padding: 0 1rem;
}

.intro p {
    font-size: 1.1rem;
    max-width: 800px;
    margin: 1rem auto;
}

.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.gallery-item {
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
}

.gallery-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.gallery-caption {
    padding: 1rem;
}

.gallery-caption h3 {
    margin-top: 0;
    color: var(--cor-primaria);
}

footer {
    background-color: var(--cor-primaria);
    color: var(--cor-texto);
    text-align: center;
    padding: 2rem 0;
    margin-top: 3rem;
}

.footer-content {
    max-width: 800px;
    margin: 0 auto;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin: 1rem 0;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--cor-destaque);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: var(--cor-primaria);
    transition: background-color 0.3s ease;
}

.social-icon:hover {
    background-color: var(--cor-texto);
}

@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }

    .gallery {
        grid-template-columns: 1fr;
    }
}

a {
    color: white;
    text-decoration: none;
    font-weight: bolder;
}

a:hover {
    text-decoration: underline;
}

.footer-content .social-links a img {
    width: 40px;
    height: 40px;
    object-fit: contain; /* Opcional: mantém a proporção da imagem */
}