
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Arial', sans-serif;
  background-color: #f4f4f4;
  color: #333;
}
/* Botão de download */

.btn-download {
  display: inline-block;
  padding: 10px 20px;
  background-color: #003366;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: background 0.3s;
}

.important-dates {
  background-color: #003366;
  color: #fff;
  padding: 30px;
  border-radius: 10px;
  margin: 40px auto;
  max-width: 800px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.important-dates h2 {
  color: #ffd700;
  font-size: 28px;
  margin-bottom: 20px;
}

.important-dates ul {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.important-dates li {
  font-size: 18px;
  margin: 8px 0;
}

.important-dates .submit-link a {
  display: inline-block;
  background-color: #ffd700;
  color: #003366;
  padding: 10px 20px;
  font-weight: bold;
  text-decoration: none;
  border-radius: 5px;
  transition: background 0.3s;
}

.important-dates .submit-link a:hover {
  background-color: #e5c100;
}

.important-dates .note {
  margin-top: 20px;
  font-size: 16px;
  color: #ffffffcc;
}


.btn-download:hover {
  background-color: #0055aa;
}

.galeria {
  display: flex;
  justify-content: center;
  gap: 20px;
  padding: 40px;
  flex-wrap: wrap; /* Faz quebrar em telas menores */
}

/* Section Eixos Temáticos */
.eixos {
  background-color: #f4f4f4;
  color: #333;
  padding: 60px 20px;
  text-align: center;
}

.eixos h2 {
  font-size: 32px;
  margin-bottom: 40px;
}

.eixo-container {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.eixo {
  background-color: white;
  border-radius: 10px;
  padding: 20px;
  width: 300px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.eixo h3 {
  color: #0a2647;
  margin-bottom: 10px;
}

.eixo p {
  font-size: 16px;
  line-height: 1.5;
}


/* Cada item (imagem + texto) */
.item {
  text-align: center;
  width: 200px;
}

.item img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  transition: transform 0.3s ease;
}

.item img:hover {
  transform: scale(1.05);
}

/* Texto da legenda */
.item p {
  margin-top: 8px;
  font-size: 16px;
  color: #333;
}
img {
  width: 600px;
  height: auto;
}
.social-buttons {
  display: flex;
  justify-content: flex-end; /* 🔥 Leva os botões para a direita */
  gap: 20px;
  align-items: center;
  padding: 20px;
}


/* Botão WhatsApp */
.btn-whats {
  display: inline-flex;
  align-items: center;
  background-color: #25D366;
  color: white;
  padding: 10px 20px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s;
}

.btn-whats:hover {
  background-color: #1ebe5b;
}

/* Botão Instagram */
.btn-insta {
  display: inline-flex;
  align-items: center;
  background-color: #E1306C;
  color: white;
  padding: 10px 20px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s;
}

.btn-insta:hover {
  background-color: #c2185b;
}

.icon {
  width: 20px;
  height: 20px;
  margin-right: 8px;
}


.icon {
  width: 20px;
  height: 20px;
  margin-right: 8px;
}


/* Section do Comitê Científico */
.comite {
  background-color: #0a2647; /* Azul escuro elegante */
  color: white;
  padding: 50px 20px;
  text-align: center;
}

.comite h2 {
  margin-bottom: 30px;
  font-size: 32px;
  color: white
}

.comite ul {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 800px;
}

.comite li {
  font-size: 18px;
  margin-bottom: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding-bottom: 8px;
}


.whatsapp-button {
  display: inline-block;
  background-color: #25D366;
  color: white;
  padding: 12px 20px;
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  transition: background-color 0.3s;
}

.whatsapp-button:hover {
  background-color: #1ebe5b;
}


.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */

header {
  background-color: #002b5c;
  padding: 15px 0;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo img {
  width: 150px;
}

.menu {
  list-style: none;
  display: flex;
  gap: 20px;
}

.menu li a {
  color: white;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s;
}

.menu li a:hover {
  color: #ffc107;
}

/* Banner */
.banner {
  background-color: #004080;
  color: white;
  padding: 150px 20px 80px;
  text-align: center;
}

.banner h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

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

/* Seções */
section {
  padding: 80px 20px;
}

h2 {
  color: #002b5c;
  margin-bottom: 20px;
}

/* Formulário */
form {
  background: white;
  padding: 30px;
  border-radius: 8px;
  max-width: 500px;
  margin: 0 auto;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

form label {
  display: block;
  margin-top: 15px;
}

form input {
  width: 100%;
  padding: 10px;
  margin-top: 5px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

form button {
  margin-top: 20px;
  width: 100%;
  padding: 12px;
  background-color: #002b5c;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

form button:hover {
  background-color: #001a40;
}

/* Footer */
footer {
  background-color: #002b5c;
  color: white;
  text-align: center;
  padding: 20px;
}

/* Responsivo */
@media (max-width: 768px) {
  .header-container {
    flex-direction: column;
    align-items: flex-start;
  }

  .menu {
    flex-direction: column;
    gap: 10px;
  }

  .banner h1 {
    font-size: 2rem;
  }
}


/*diretório events */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  background-color: #f0f0f0;
  color: #333;
  line-height: 1.6;
}

header {
  background-color: #003366;
  color: white;
  padding: 20px;
}

nav ul {
  display: flex;
  justify-content: center;
  list-style: none;
  gap: 20px;
  margin-top: 10px;
}

nav a {
  color: white;
  text-decoration: none;
}

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

main {
  padding: 20px;
}

section {
  margin-bottom: 30px;
}

.social-buttons {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  gap: 15px;
}

.btn {
  display: inline-block;
  padding: 10px 20px;
  color: white;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
}

.btn-whats {
  background-color: #25D366;
}

.btn-insta {
  background-color: #E1306C;
}

footer {
  background-color: #003366;
  color: white;
  text-align: center;
  padding: 20px;
  position: relative;
  bottom: 0;
  width: 100%;
}

@media (max-width: 600px) {
  nav ul {
    flex-direction: column;
    gap: 10px;
  }
}

/* Diretório de abouts */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  background-color: #f0f0f0;
  color: #333;
  line-height: 1.6;
}

header {
  background-color: #003366;
  color: white;
  padding: 10px;
  text-align: center;
}

nav ul {
  display: flex;
  justify-content: center;
  list-style: none;
  margin-top: 15px;
  gap: 20px;
}

nav a {
  color: white;
  text-decoration: none;
  font-weight: bold;
}

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

main {
  padding: 30px;
}

section {
  margin-bottom: 40px;
}

section h2 {
  color: #003366;
  margin-bottom: 10px;
}

.social-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}

.btn {
  display: inline-block;
  padding: 10px 20px;
  border-radius: 4px;
  color: white;
  text-decoration: none;
  font-weight: bold;
}

.btn-whats {
  background-color: #25D366;
}

.btn-insta {
  background-color: #E1306C;
}

footer {
  background-color: #003366;
  color: white;
  text-align: center;
  padding: 20px;
  margin-top: 50px;
}

@media (max-width: 600px) {
  nav ul {
    flex-direction: column;
    gap: 10px;
  }
}
