/* ======= GERAL ======= */
body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    background: #f9fafc;
    color: #222;
}

/* ======= CABEÇALHO ======= */
header {
    background: linear-gradient(135deg, #2a2a72, #009ffd);
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 10%;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.logo h1 {
    font-size: 1.5em;
    letter-spacing: 1px;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

nav a {
    text-decoration: none;
    color: white;
    font-weight: 500;
    transition: 0.3s;
}

nav a:hover, nav a.active {
    color: #ffeb3b;
}

/* ======= SEÇÃO INTRO ======= */
.intro {
    text-align: center;
    padding: 80px 10%;
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    border-radius: 15px;
    margin: 50px 10%;
}

.intro h2 {
    color: #2a2a72;
    margin-bottom: 20px;
}

.intro p {
    line-height: 1.8;
    color: #444;
}

/* ======= MISSÃO ======= */
.missao {
    background: #eaf3ff;
    text-align: center;
    padding: 60px 10%;
}

.missao h2 {
    color: #1b263b;
    margin-bottom: 40px;
}

.valores {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
}

.valor-card {
    background: white;
    padding: 25px;
    border-radius: 12px;
    width: 280px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    transition: 0.3s;
}

.valor-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.15);
}

.valor-card h3 {
    color: #2a2a72;
    margin-bottom: 10px;
}

/* ======= VERSÍCULO ======= */
.versiculo {
    text-align: center;
    padding: 70px 10%;
    background: #fff;
    font-style: italic;
    color: #333;
}

.versiculo blockquote {
    font-size: 1.2em;
    max-width: 700px;
    margin: auto;
    line-height: 1.6;
}

.versiculo span {
    display: block;
    margin-top: 15px;
    font-weight: bold;
    color: #2a2a72;
}

/* ======= RODAPÉ ======= */
footer {
    background: #2a2a72;
    color: white;
    text-align: center;
    padding: 20px;
    font-size: 0.9em;
}

footer a {
    color: #ffeb3b;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

/* ======= RESPONSIVIDADE ======= */
@media (max-width: 768px) {
    .valores {
        flex-direction: column;
        align-items: center;
    }

    .valor-card {
        width: 90%;
    }

    header {
        flex-direction: column;
        gap: 10px;
    }
}
// aqui é o css da mensagem 
/* ==== SEÇÃO DE EVENTOS ==== */
#eventos-atual {
  margin-top: 50px;
  text-align: center;
}

#eventos-atual h2 {
  color: #333;
  font-size: 1.8em;
  margin-bottom: 20px;
}

/* ==== CARD DE EVENTO ==== */
.evento-card {
  max-width: 800px;
  margin: 30px auto;
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.evento-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.25);
}

.evento-card img {
  width: 100%;
  height: auto;
  display: block;
}

/* ==== CONTEÚDO DO CARD ==== */
.evento-card div {
  padding: 20px;
  text-align: left;
}

.evento-card h3 {
  color: #222;
  margin-top: 0;
  font-size: 1.3em;
}

.evento-card p {
  color: #444;
  line-height: 1.6;
  white-space: pre-line;
  margin: 10px 0;
}

.evento-card a {
  display: inline-block;
  margin-top: 15px;
  background: #0066cc;
  color: #fff;
  padding: 10px 20px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s ease;
}

.evento-card a:hover {
  background: #004da3;
}

/* ==== RESPONSIVIDADE ==== */
@media (max-width: 600px) {
  .evento-card {
    margin: 20px 10px;
  }

  .evento-card h3 {
    font-size: 1.1em;
  }

  .evento-card p {
    font-size: 0.95em;
  }

  .evento-card a {
    font-size: 0.9em;
    padding: 8px 15px;
  }
}
