:root {
    --primary-color: #14a31e; 
    --secondary-color: #ffffff; 
    --background-color: #1c1c1c; 
    --text-color: #f0f0f0; 
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: Arial, sans-serif;
    background-color: var(--background-color);
    color: var(--text-color);
    line-height: 1.6;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.visually-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }

/* --- HEADER --- */
.header {
    background-color: var(--background-color); 
    padding: 10px 20px; 
    border-bottom: 2px solid var(--primary-color);
    position: relative;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between; 
    max-width: 1200px;
    margin: 0 auto;
    height: 140px;
}

.logo-side img { max-height: 90px; mix-blend-mode: lighten; }

.logo-center {
    position: absolute;
    left: 50%; top: 50%;
    transform: translate(-50%, -50%);
}
.logo-center img { max-height: 130px; mix-blend-mode: lighten; }

.header-links a { color: var(--secondary-color); font-size: 2em; margin-left: 15px; transition: 0.3s; }
.header-links a:hover { color: var(--primary-color); }

/* --- CARROSSEL --- */
#carousel-section { position: relative; max-width: 1000px; margin: 30px auto 10px auto; overflow: hidden; border-radius: 8px; }
.carousel-slider { display: flex; transition: 0.5s; }
.carousel-slider img { width: 100%; max-height: 500px; object-fit: cover; flex-shrink: 0; }
.carousel-btn { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(0,0,0,0.5); color: white; border: none; padding: 15px; cursor: pointer; z-index: 10; }
.next { right: 0; } .prev { left: 0; }

/* --- SEÇÃO DO BOTÃO --- */
.cta-section {
    text-align: center;
    padding: 20px 0;
}

.cta-button {
    display: inline-block;
    background-color: var(--primary-color);
    color: #000;
    padding: 18px 45px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 1.1em;
    box-shadow: 0 4px 15px rgba(20, 163, 30, 0.4);
    transition: 0.3s;
}

.cta-button:hover { background-color: #1edb30; transform: scale(1.05); }

/* --- TEXTO --- */
#content-section { text-align: center; padding: 30px 20px; max-width: 800px; margin: 0 auto; }
#content-section h3 { color: var(--primary-color); font-size: 2em; margin-bottom: 15px; }

/* --- RODAPÉ --- */
.footer { background: #000; padding: 40px 20px; border-top: 2px solid var(--primary-color); margin-top: auto; }
.footer-content { display: flex; flex-wrap: wrap; justify-content: space-around; max-width: 1000px; margin: 0 auto; gap: 30px; }
.footer-info { flex: 1; min-width: 250px; }
.footer-info h3 { color: var(--primary-color); margin-bottom: 15px; }

/* MAPA CORRIGIDO */
.map-container { 
    flex: 2; 
    min-width: 300px; 
    height: 350px; 
    border-radius: 8px; 
    overflow: hidden; 
    border: 1px solid var(--primary-color); 
}

.map-container iframe {
    width: 100%;
    height: 100%;
}

/* --- MOBILE --- */
@media (max-width: 768px) {
    .header-content { flex-direction: column; height: auto; padding: 20px 0; }
    .logo-center { position: static; transform: none; margin: 15px 0; }
    .logo-center img { max-height: 100px; }
}