/* Importar fontes do Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600&family=Raleway:wght@400;700&display=swap');

body {
  font-family: 'Raleway', 'Montserrat', sans-serif;
  background-color: #f8f9fa;
  color: #212529;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

header h1 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 1.5rem;
}

.nav-link {
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: #ffc107;
}


footer {
  font-size: 0.9rem;
  color: #fff;
  padding: 2rem 1rem;
  background-image: url('../images/footer_bg.png'); 
  background-size: 12%;
  background-position: center;
  position: relative;
  z-index: 1;
}

/* Overlay escuro para legibilidade */
footer::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: -1;
}

/* Texto centralizado e responsivo */
footer .container {
  text-align: center;
}

/* Links no footer */
footer a {
  color: #ffc107;
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}
a {
  color: inherit;
}

a:hover {
  text-decoration: underline;
}

/* Estilo para a seção de introdução */
.intro {
  background: linear-gradient(to right, #0f2027, #203a43, #2c5364);
  color: #fff;
  padding: 20px 5px;
  text-align: center;
  font-family: 'Raleway','Segoe UI', sans-serif;
  font-size: 1.8rem;
  line-height: 1.6;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

/* Estilo para as seções subsequentes */
.secoes {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 40px;
  padding: 15px 5px;
  background-color: #f4f4f4;
  text-align: center;
  font-family: 'Raleway', 'Segoe UI', sans-serif;
}

.secoes > div {
  flex: 1 1 300px;
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.secoes > div:hover {
  transform: translateY(-5px);
}

.vidas-liquidas {
  background: linear-gradient(135deg, #e0f7fa, #ffffff);
  padding: 40px 20px;
  font-family: 'Segoe UI', sans-serif;
  color: #333;
}
.vidas-liquidas .container {
  max-width: 80%;
  margin: auto;
  text-align: center;
}
.vidas-liquidas h2 {
  font-size: 2em;
  margin-bottom: 20px;
  color: #00796b;
}
.vidas-liquidas .quote {
  font-style: italic;
  color: #555;
  margin-bottom: 10px;
}
.vidas-liquidas p {
  font-size: 1.2em;
  line-height: 1.4;
}
.vidas-liquidas .btn {
  display: inline-block;
  margin-top: 5px;
  padding: 9px 18px;
  background-color: #00796b;
  color: white;
  text-decoration: none;
  border-radius: 6px;
  transition: background-color 0.1s ease;
}
.vidas-liquidas .btn:hover {
  background-color: #004d40;
}
.carrossel {
  padding: 40px 20px;
  background: #f9f9f9;
  text-align: center;
}

.slides {
  position: relative;
  padding: 25px;
  margin: 5px;
  border: solid #992732;
  border-radius: 15px;
  max-width: 800px;
  margin: auto;
  
}

.slide {
  display: none;
  transition: opacity 0.5s ease;
}

.slide.active {
  display: block;
}

.slide h2 {
  font-size: 2em;
  margin-bottom: 15px;
}

.slide p {
  font-size: 1.2em;
  line-height: 1.6;
  margin-bottom: 20px;
}

.carrossel-nav {
  margin-top: 20px;
}
.carrossel-nav {
  display: none;
}

/* Estilo base dos ícones */
header .bi {
  padding: 8px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  animation: fadeInUp 0.6s ease forwards;
  transition: all 0.3s ease;
}

/* Efeito hover */
header .bi:hover {
  color: #ffc107; /* amarelo Bootstrap */
  transform: scale(1.2);
  background-color: rgba(255, 255, 255, 0.2);
}

/* Animação de entrada */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.container h2 {
  color: #047675;
}
.container h5 {
  color: #992732;
}
.container h3 {
  color: #D37D09;
}
.perfil-img {
  width: 40px;
  height: 40px;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid #fff;
}

.form-artigo textarea {
  resize: vertical;
}
.form-artigo .form-label {
  font-weight: 500;
}

.card-img-top {
  max-height: 200px;
  object-fit: cover;
  border-bottom: 1px solid #ccc;
}

.menus {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 20px; /* espaçamento entre os itens */
}

.menus li {
  display: inline-block;
}

.meumenu {
  color: #ffffff !important;
  background-color: transparent !important;
  text-decoration: none !important;
  padding: 8px 12px;
  border-radius: 4px;
  transition: color 0.3s ease;
}

.meumenu:hover {
  color: #90252E !important;
  background-color: transparent !important;
  text-decoration: none !important;
}

.card-title {
  color: #047675;
  font-weight: bold;
}