* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
  }

body {
background-color: #f4f4f4;
}

.container {
width: 90%;
max-width: 1100px;
margin: auto;
}

/* HEADER */
header {
background: #5961AC;
color: rgb(255, 255, 255);
padding: 20px 0;
}

.header-content {
display: flex;
justify-content: space-between;
align-items: center;
}

header img {
width: 80px;
}

/* MENU */
nav {
background: #40467a;
}

nav ul {
display: flex;
list-style: none;
justify-content: center;
}

nav li {
margin: 10px;
}

nav a {
color: white;
text-decoration: none;
font-weight: bold;
}

nav a:hover {
text-decoration: underline;
}

/* BANNER */
.banner {
background: url('banner01.png') no-repeat center/cover;
color: white;
text-align: center;
padding: 100px 20px;
}

.banner h2 {
font-size: 2.5em;
}

.banner p {
margin: 15px 0;
}

.btn {
background: rgb(125, 197, 125);
color: white;
padding: 10px 20px;
text-decoration: none;
border-radius: 5px;
}

/* SOBRE */
.sobre {
padding: 40px 0;
text-align: center;
}

/* AÇÕES */
.acoes {
background: #989dbd;
padding: 40px 0;
}

.cards {
display: flex;
gap: 20px;
flex-wrap: wrap;
}

.card {
background: white;
padding: 20px;
flex: 1;
min-width: 250px;
border-radius: 10px;
text-align: center;
}

/* FOOTER */
footer {
background: #40467a;
color: white;
text-align: center;
padding: 15px 0;
margin-top: 20px;
}

.qrcode {
    margin-top: 30px;
    text-align: center;
}

.qrcode img {
    width: 200px;
    margin-bottom: 15px;
    border: 5px solid #ddd;
    border-radius: 10px;
}

/* CONTATO BONITO */
.contato {
    padding: 40px 0;
    text-align: center;
}

.contato p {
    margin-bottom: 20px;
}

.contato-cards {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 20px;
}

.contato-card {
    background: white;
    padding: 25px;
    border-radius: 10px;
    width: 280px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    transition: 0.3s;
}

.contato-card:hover {
    transform: translateY(-5px);
}

.contato-card h3 {
    margin-bottom: 10px;
    color: #40467a;
}

/* REDES SOCIAIS */
.redes {
    margin-top: 30px;
}

.redes a {
    margin: 10px;
    display: inline-block;
}

.galeria {
    padding: 40px 0;
    text-align: center;
}

.galeria-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
    margin-top: 25px;
}

.galeria-grid img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 15px;
    border: 5px solid white;
    box-shadow: 0 6px 15px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}

/* efeito mais bonito */
.galeria-grid img:hover {
    transform: scale(1.07) rotate(1deg);
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}