/* Centralizar todos os títulos */
h1, h2, h3 {
    text-align: center;
}
/* Galeria de fotos centralizada */
.gallery-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
}
footer.footer {
    background: #388e3c;
    color: #fff;
    text-align: center;
    padding: 6px 0 4px 0;
    font-size: 0.85em;
    letter-spacing: 0.5px;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
    margin-top: 30px;
    box-shadow: 0 -2px 8px rgba(56,142,60,0.08);
}

body {
    font-family: 'Segoe UI', Arial, sans-serif;
    background: #f0f8f5;
    margin: 0;
    padding: 0;
    color: #222;
}

header.hero {
    position: relative;
    width: 100%;
    height: 320px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #388e3c;
}
.hero-bg {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    object-fit: cover;
    filter: brightness(0.6);
    z-index: 1;
}
.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
}
.hero-content .logo {
    width: 260px;
    margin-bottom: 10px;
    display: block;
    margin-left: auto;
    margin-right: auto;
    background: transparent;
    border: none;
    border-radius: 0;
    box-shadow: none;
}
.hero-content h1 {
    font-size: 2.8em;
    margin: 10px 0 5px 0;
    letter-spacing: 2px;
}
.hero-content p {
    font-size: 1.3em;
    margin: 0;
    font-style: italic;
}

main {
    max-width: 1100px;
    margin: 0 auto;
    padding: 30px 10px 40px 10px;
}

section {
    margin-bottom: 40px;
}

section.about {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 30px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(56,142,60,0.08);
    padding: 30px 20px;
}
.about-text {
    flex: 1 1 320px;
}
.about-img {
    flex: 1 1 320px;
    max-width: 400px;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(56,142,60,0.13);
}

section.highlights {
    background: #e8f5e9;
    border-radius: 12px;
    padding: 30px 20px;
    box-shadow: 0 2px 12px rgba(56,142,60,0.07);
}
.highlights h2 {
    text-align: center;
    color: #388e3c;
    margin-bottom: 25px;
}
.cards {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}
.card {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(56,142,60,0.10);
    padding: 25px 18px;
    text-align: center;
    width: 220px;
    transition: transform 0.2s;
}
.card:hover {
    transform: translateY(-6px) scale(1.03);
    box-shadow: 0 6px 18px rgba(56,142,60,0.18);
}
.card img {
    width: 60px;
    margin-bottom: 10px;
}
.card h3 {
    margin: 10px 0 6px 0;
    color: #388e3c;
}
.card p {
    margin: 0;
    font-size: 1.05em;
}

section.videos {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(56,142,60,0.08);
    padding: 30px 20px;
}
.videos h2 {
    text-align: center;
    color: #388e3c;
    margin-bottom: 20px;
}
.video-list {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: center;
}
.video-list video {
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(56,142,60,0.10);
}

section.contacts {
    background: #e8f5e9;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(56,142,60,0.07);
    padding: 30px 20px;
    text-align: center;
}
.contacts h2 {
    color: #388e3c;
    margin-bottom: 18px;
}
.contact-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
}
.contact-item {
    font-size: 1.13em;
    background: #fff;
    border-radius: 6px;
    padding: 10px 18px;
    box-shadow: 0 1px 4px rgba(56,142,60,0.07);
    width: 100%;
    max-width: 400px;
}

@media (max-width: 900px) {
    section.about {
        flex-direction: column;
        text-align: center;
    }
    .about-img {
        max-width: 100%;
    }
    .cards {
        flex-direction: column;
        align-items: center;
    }
}
