* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    list-style: none;
    font-family: Arial, Helvetica, sans-serif;
}

body {
    background-color: #fdf6e4;
}

header {
    background-color: #C8102E;
    padding: 20px 10%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo img {
    height: 70px;
    width: auto;
}

header h1 {
    color: #111111;
}

li {
    display: inline-block;
}

li a {
    color: white;
    font-size: 18px;
    font-weight: 440px;
    margin-right: 25px;
    text-decoration: none;
}

li a:hover {
    color: black;
    transform: scale(5);
}

button {
    width: auto;
    color: #000000;
    font-size: 16px;
    padding: 10px;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    white-space: nowrap;
}

button:hover {
    transform: scale(1.05);
}

.banner {
    position: relative;
    background-image: url('banner.jpg');
    /* Substituir pelo caminho da imagem */
    background-size: cover;
    background-position: center;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: left;
    padding: 0 2rem;
    color: white;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
}

.banner-content {
    position: relative;
    max-width: 800px;
    z-index: 1;
}

.banner h1 {
    font-family: 'Georgia', serif;
    font-size: 3rem;
    line-height: 1.2;
    margin: 0 0 1rem 0;
}

.banner p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.parent {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, 1fr);
    gap: 5px;
    margin: auto;
    padding: 30px;
    width: 90rem;
    background-color: #fdf6e4;
}

.missao h3 {
    font-family: 'Georgia', serif;
    font-size: 2rem;
    line-height: 1.2;
    margin: 0 0 1rem 0;
}

.historia {
    grid-row: span 3 / span 3;
}

.historia h2 {
    font-family: 'Georgia', serif;
    font-size: 2.5rem;
    line-height: 1.2;
    margin: 0 0 1rem 0;
    text-align: justify;
}

.ver-mais {
    text-align: right;
    position: static;
    color: #111111;
    cursor: pointer;
}

.grid-item:hover .ver-mais {
    text-decoration: underline;
}

.vissao {
    grid-row-start: 2;
}

.vissao h3 {
    font-family: 'Georgia', serif;
    font-size: 2rem;
    line-height: 1.2;
    margin: 0 0 1rem 0;
}

.estatutos {
    grid-row-start: 3;
}

.estatutos h3 {
    font-family: 'Georgia', serif;
    font-size: 2rem;
    line-height: 1.2;
    margin: 0 0 1rem 0;
    text-decoration: underline;
}

.parent p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
}