html {
  scroll-behavior: smooth;
}

/* Global Scroll Offset for Fixed Navbar */
:target,
[id] {
  scroll-margin-top: 100px;
  /* Adjust based on navbar height */
}

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

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

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

.green-navbar ul li a {
  color: #FFFFFF;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
  white-space: nowrap;
  font-size: 0.8rem;
}

.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 styles handled in specific sections */

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

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