/* NAVBAR */
.hamburger-menu {
  display:none;
}

.green-navbar {
  position: fixed;
  border-radius: 10px;
  margin: 2em;
  width: 90%;
  color: #F9F6EE;
  display: flex;
  justify-content: left;
  align-items: center;
  padding: 1em 2em;
  z-index: 2;
  background-color: rgba(1, 48, 31, 0.9);
  box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.2);
}

.green-navbar ul {
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 38px;
  display: flex;
}

.green-navbar ul li a {
  color: #F9F6EE;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.green-navbar ul li a:hover {
  text-decoration: underline;
}

/* Logótipo */
.green-navbar .logo {
  margin-right: 1.5em;
  display: flex;
  align-items: center;
}

.green-navbar .logo-img {
  height: 3.5em;
  margin-right: 15px; 
}
  
.two-columns {
  display: flex;
  gap: 20px; 
  align-items: flex-start; 
}


.column {
  padding: 10px;
  font-size: 1rem;
  line-height: 1.5;
  border-radius: 5px;
}

.column-large {
  flex: 1.5; 
}
.column-small {
  align-items: center;
  flex: 1;
}
/* Para centrar verticalmente o conteúdo da coluna de texto */
.content-center {
  display: flex;
  align-items: center;
}

.text-content {
  max-width: 100%;
}

/* Para centrar horizontalmente o vídeo */
.video-center {
  display: flex;
  justify-content: center;
  align-items: center;
}

.teaser video {
  width: 100%;
  max-width: 300px; /* Ajusta conforme desejado */
  display: block;
  border-radius: 8px; /* Opcional, só para dar um aspeto mais moderno */
}

/* Divisor */
.divider {
  margin-left:2em;
  width: 2px;
  background-color: #B7E6CA; 
  height: auto;
  align-self: stretch; 
}

video{
  height: 30em !important;
}

.teaser-container {
  display: flex;
  justify-content: center;
  align-items: center;
}

.teaser {
  position: relative;
  display: inline-block;
}