:root {
    --cor-principal: #4CAF50;  
    --cor-secundaria: #f2f2f2;
    --cor-terciaria: #dad9d9ce;
    --cor-texto: #333333;     
    --cor-acento: #68be6f;    
    --fonte-principal: 'Arial', sans-serif;
    --fonte-secundaria: 'Georgia', serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--fonte-principal);
    background-color: var(--cor-secundaria);
    color: var(--cor-texto);
    line-height: 1.6;
    padding: 0 20px;
    overflow-x: hidden;
}

header {
    background-color: var(--cor-principal);
    color: white;
    padding: 20px;
    text-align: center;
}

header h1 {
    font-family: var(--fonte-secundaria);
    font-size: 2.5rem;
    margin-bottom: 20px;
}

nav {
    margin-top: 15px;
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 20px;
}

nav a {
    color: white;
    text-decoration: none;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

nav a:hover {
    color: var(--cor-terciaria);
}

main {
    max-width: 1200px;
    margin: 40px auto;
}

section {
    margin-bottom: 40px;
}

section h2 {
    position: relative;
    font-size: 2rem;
    color: var(--cor-principal);
    margin-bottom: 10px;
}

#sobre p {
    font-size: 1.1rem;
    margin-bottom: 15px;
    text-align: justify;
}

#galeria {
    display: flex;         
    justify-content: center; 
    align-items: center;     
    gap: 20px;               
    margin: 0 auto;
}

.galeria-img {
    width: 100%;
    max-width: 300px;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.galeria-img:hover {
    transform: scale(1.05);
}

#parceiro {
    text-align: center;
}

.img-parceiro {
    width: 250px;                       
    margin: 0 auto;
}

footer {
	background-color: var(--cor-acento);
	flex: 1 1 100vw;
	flex-direction: column;
	margin-top: 0.5%;
	
}

.text-footer{
    text-align: center;
    font-weight: bolder;
    color: var(--cor-secundaria);
}