body {
    margin: 0;
    font-family: Arial, sans-serif;
}

/* MENU */
header {
    background: #fff;
    padding: 10px 0;
    border-bottom: 1px solid #ddd;
}

.container {
    width: 90%;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    height: 100px;
}

nav a {
    margin: 0 10px;
    text-decoration: none;
    color: #333;
    font-weight: bold;
}

/* BANNER */
.banner {
    background: linear-gradient(rgba(0,0,0,0.35), rgba(0,0,0,0.35)),
                url('imagens/banner.png') no-repeat center;
    background-size: cover;
    height: 400px;
    display: flex;
    align-items: center;
    padding-left: 50px;
    color: #fff;
}

.banner-texto h1 {
    font-size: 40px;
}

.banner-texto p {
    font-size: 18px;
}

.btn {
    display: inline-block;
    margin-top: 15px;
    padding: 12px 25px;
    background: #1E88E5;
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
    transition: 0.3s;
}

.btn:hover {
    background: #1565C0;
}

/* SOBRE */
.sobre {
    padding: 40px;
    text-align: center;
}

/* RODAPÉ */
footer {
    background: #041E42;
    color: #fff;
    text-align: center;
    padding: 20px;
}
/* RESPONSIVO - CELULAR */
@media (max-width: 768px) {
    .container {
        width: 95%;
        flex-direction: column;
        gap: 15px;
    }

    .logo {
        height: 50px;
    }

    nav {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }

    nav a {
        margin: 0;
        font-size: 14px;
    }

    .banner {
        height: 320px;
        padding: 30px 20px;
        justify-content: center;
        text-align: center;
        background-position: center;
    }

    .banner-texto h1 {
        font-size: 30px;
    }

    .banner-texto p {
        font-size: 16px;
    }

    .sobre {
        padding: 30px 20px;
    }

    .sobre h2 {
        font-size: 24px;
    }

    .sobre p {
        font-size: 15px;
        line-height: 1.6;
    }
}
/* SEGMENTOS */
.segmentos {
    padding: 50px 20px;
    text-align: center;
}

.segmentos h2 {
    font-size: 28px;
    margin-bottom: 30px;
}

.cards {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.card {
    background: #fff;
    padding: 20px;
    width: 280px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: 0.3s;
}

.card:hover {
    transform: translateY(-5px);
}

.card h3 {
    color: #1E88E5;
}
/* WHATSAPP */
.whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25D366;
    color: #fff;
    font-size: 14px;
    padding: 12px 18px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.whatsapp:hover {
    transform: scale(1.1);
}

/* ANIVERSARIANTES */
.aniversariantes {
    padding: 50px 20px;
    text-align: center;
    background: #f7fbff;
}

.aniversariantes h2 {
    font-size: 28px;
    margin-bottom: 10px;
}

.subtitulo {
    color: #555;
    margin-bottom: 30px;
}

.aniversariantes-lista {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.aniversariante-card {
    background: #fff;
    width: 230px;
    padding: 20px;
    border-radius: 14px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.aniversariante-card img {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 12px;
}

.aniversariante-card h3 {
    color: #1E88E5;
    margin-bottom: 5px;
}

.aniversariante-card p {
    margin: 5px 0;
}

/* EVENTOS */
.eventos {
    padding: 50px 20px;
    text-align: center;
    background: #ffffff;
}

.eventos-lista {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.evento-card {
    width: 280px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.1);
    overflow: hidden;
    text-align: left;
    transition: 0.3s;
}

.evento-card:hover {
    transform: translateY(-6px);
}

.evento-card img {
    width: 100%;
    height: 170px;
    object-fit: cover;
}

.evento-card .conteudo {
    padding: 18px;
}

.evento-card h3 {
    margin-bottom: 8px;
    color: #1E88E5;
}

.evento-card p {
    font-size: 14px;
    color: #555;
    line-height: 1.5;
}

.evento-data {
    font-size: 13px;
    color: #888;
    margin-bottom: 8px;
}

.evento-card img {
    width: 100%;
    height: 160px;
    object-fit: cover;
}

.evento-card .conteudo {
    padding: 15px;
}

.evento-card h3 {
    margin-bottom: 8px;
    color: #1E88E5;
}

.evento-card p {
    font-size: 14px;
    color: #555;
}

.evento-data {
    font-size: 13px;
    color: #888;
    margin-bottom: 5px;
}
.banner-terceirao {
  background: url('imagens/banner-terceirao.png') center top / cover no-repeat;
  height: 45vh;
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.banner-terceirao .overlay {
  background: rgba(0, 0, 0, 0.15);
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.banner-terceirao h1 {
  color: #fff;
  font-size: 42px;
  margin-bottom: 10px;
}

.banner-terceirao p {
  color: #fff;
  font-size: 18px;
}
/* CONTADOR FORMATURA */
.contador-formatura {
    padding: 45px 20px;
    text-align: center;
    background: #f4f8ff;
}

.contador-formatura h2 {
    font-size: 28px;
    margin-bottom: 25px;
}

.contador-box {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.contador-box div {
    background: linear-gradient(135deg, #071827, #0c4080);
    color: #fff;
    width: 120px;
    padding: 20px;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    transition: 0.3s;
}

.contador-box div:hover {
    transform: translateY(-5px);
}

.contador-box span {
    display: block;
    font-size: 36px;
    font-weight: bold;
    color: #fff;
}

.contador-box p {
    margin: 5px 0 0;
    font-weight: bold;
}
/* SOBRE */
.sobre {
    padding: 60px 20px;
}

.container-sobre {
    max-width: 1100px;
    margin: auto;
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.sobre-texto {
    flex: 1;
}

.sobre-texto h2 {
    font-size: 30px;
    margin-bottom: 15px;
}

.sobre-texto p {
    margin-bottom: 15px;
    line-height: 1.6;
}

.sobre-imagem {
    flex: 1;
    text-align: center;
}

.sobre-imagem img {
    max-width: 200px;
}
/* SEGMENTOS */
.segmentos {
    padding: 60px 20px;
    text-align: center;
}

.segmentos h2 {
    font-size: 30px;
    margin-bottom: 30px;
}

.cards-segmentos {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
}

.card {
    background: #fff;
    width: 260px;
    padding: 25px;
    border-radius: 16px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.1);
    transition: 0.3s;
}

.card:hover {
    transform: translateY(-6px);
}

.card h3 {
    color: #1E88E5;
    margin-bottom: 10px;
}

.card p {
    font-size: 14px;
    line-height: 1.5;
}
/* CONTATO */
.contato {
    padding: 60px 20px;
    background: #f7fbff;
    text-align: center;
}

.contato h2 {
    font-size: 30px;
    margin-bottom: 10px;
}

.contato-box {
    max-width: 1000px;
    margin: 35px auto 0;
    display: flex;
    gap: 25px;
    justify-content: center;
    flex-wrap: wrap;
}

.contato-info,
.contato-acao {
    background: #fff;
    width: 380px;
    padding: 25px;
    border-radius: 16px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.1);
    text-align: left;
}

.contato-info h3,
.contato-acao h3 {
    color: #1E88E5;
    margin-bottom: 15px;
}

.btn {
    display: inline-block;
    padding: 12px 20px;
    background: linear-gradient(135deg, #25D366, #1ebe5d);
    color: #fff;
    text-decoration: none;
    border-radius: 10px;
    font-weight: bold;
    transition: 0.3s;
}

.btn:hover {
    transform: scale(1.05);
}
footer {
    margin-top: 40px;
}