/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* BASE */
body {
  font-family: 'Segoe UI', sans-serif;
  background-color: #f9f9f9;
  color: #333;
  line-height: 1.6;
}

/* HEADER */
header {
  background-color: #ffffff;
  border-bottom: 1px solid #ddd;
  padding: 15px 40px;
  position: relative;
  z-index: 10;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

.logo {
  height: 150px;
  transition: height 0.3s ease;
}

/* NAVIGATION */
#main-nav ul {
  list-style: none;
  display: flex;
  gap: 25px;
}

#main-nav ul li a {
  text-decoration: none;
  color: #222;
  font-weight: bold;
  transition: color 0.2s ease;
}

#main-nav ul li a:hover {
  color: #008080;
}

/* BOTÃO MENU */
#menu-toggle {
  display: none;
  font-size: 28px;
  background: none;
  border: none;
  color: #222;
  cursor: pointer;
}

/* CONTAINER */
.container {
  max-width: 1000px;
  margin: 30px auto;
  padding: 40px 20px;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.05);
}

.container h1 {
  font-size: 2em;
  margin-bottom: 20px;
}

img.noticia-imagem {
  max-width: 100%;
  margin: 30px 0;
  border-radius: 8px;
}

/* FOOTER */
footer {
  text-align: center;
  padding: 30px;
  font-size: 0.9em;
  color: #777;
  background-color: #f2f2f2;
  margin-top: 60px;
}

.duas-imagens {
  display: flex;
  gap: 20px;
  margin: 30px 0;
  padding: 0 20px;
}

.duas-imagens img {
  width: 50%;
  border-radius: 8px;
  object-fit: cover;
}

.uma-imagem {
  width: calc(100% - 40px);
  margin: 30px 20px;
  border-radius: 8px;
  object-fit: cover;
}

.video-container {
  margin: 30px 20px;
  border-radius: 8px;
  overflow: hidden;
}

.video-container iframe {
  width: 100%;
  height: 400px;
  border: none;
  display: block;
  border-radius: 8px;
}
.botao {
  display: inline-block;
  padding: 10px 30px;
  background-color: #008080;
  color: white !important;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  text-decoration: none;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.3s ease;
  text-align: center;
}

.botao:hover {
  background-color: #006666;
  text-decoration: none;
}

/* INFO DA EMPRESA */
.info-empresa {
  background-color: #f3f3f3;
  padding: 30px 20px;
  border-radius: 8px;
  margin-bottom: 40px;
}

.info-empresa h3 {
  color: #008080;
  font-size: 22px;
  margin-bottom: 15px;
}

.info-empresa p {
  margin-bottom: 10px;
  font-size: 16px;
  line-height: 1.5;
}

.info-empresa a {
  color: #008080;
  text-decoration: none;
}

.info-empresa a:hover {
  text-decoration: underline;
}

/* BLOCO DO FORMULÁRIO */
.bloco-contacto {
  background-color: #ffffff;
  padding: 30px 20px;
  border-radius: 8px;
  box-shadow: 0 0 25px rgba(0,0,0,0.05);
}

.titulo-secundario {
  font-size: 24px;
  color: #008080;
  margin-bottom: 10px;
}

.subtitulo {
  font-size: 16px;
  margin-bottom: 25px;
  color: #555;
}

/* FORMULÁRIO DE CONTACTO */
.form-contacto {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.form-contacto input,
.form-contacto textarea {
  padding: 12px;
  font-size: 15px;
  border: 1px solid #ccc;
  border-radius: 6px;
  outline: none;
  transition: border 0.3s ease;
}

.form-contacto input:focus,
.form-contacto textarea:focus {
  border-color: #008080;
}

/* BOTÃO */
.botao-primario {
  background-color: #008080;
  color: white;
  border: none;
  border-radius: 6px;
  padding: 12px;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.botao-primario:hover {
  background-color: #006666;
}

.subscrever-sms {

  padding: 30px;
  background-color: #f4f4f4;
  border-radius: 10px;
  text-align: center;
}

.subscrever-sms input[type="tel"],  input[id="codigo-confirmacao"]{
  padding: 12px;
  width: 250px;
  max-width: 90%;
  margin-right: 10px;
  border: 1px solid #ccc;
  border-radius: 6px;
}

.subscrever-sms button {
  background-color: #007b7f;
  color: #fff;
  padding: 12px 20px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}

.status-box {
  margin-top: 15px;
  font-weight: bold;
}

.redes-sociais {
  margin-top: 30px;
  text-align: center;
}

.titulo-redes {
  font-weight: bold;
  font-size: 1.1em;
  margin-bottom: 10px;
}

.redes-sociais a {
  margin: 0 10px;
  display: inline-block;
}

.redes-sociais img {
  width: 30px;
  height: 30px;
  filter: grayscale(100%);
  transition: filter 0.2s ease;
}

.redes-sociais img:hover {
  filter: none;
}


.conteudo-noticia a {
  display: inline-block;
  background-color: #4CAF50;
  color: #fff;
  padding: 10px 18px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  margin-top: 15px;
  transition: background-color 0.3s ease;
}

.conteudo-noticia a:hover {
  background-color: #3e8e41;
}



.episodio {
  margin-bottom: 40px;
  padding-bottom: 20px;
  border-bottom: 1px solid #ddd;
}

.video-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  margin-top: 20px;
  border-radius: 10px;
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* RESPONSIVO */
@media (max-width: 800px) {
  .logo {
    height: 100px;
    width: 100px;
  }

  #menu-toggle {
    display: block;
    z-index: 11;
  }

  #main-nav ul {
      display: none;
      flex-direction: column;
      gap: 12px;
      background-color: white;
      padding: 15px;
      position: absolute;
      top: 100%;
      right: 0;
      border: 1px solid #ddd;
      border-radius: 8px;
      box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
      min-width: 160px;
      z-index: 100;
  }

  #main-nav ul.show {
    display: flex;
  }
    
      .duas-imagens {
    flex-direction: column;
  }

  .duas-imagens img {
    width: 100%;
  }

  .video-container iframe {
    height: 300px;
  }

    
      .info-empresa, .bloco-contacto {
    padding: 20px 15px;
  }

  .form-contacto input,
  .form-contacto textarea {
    font-size: 14px;
  }

}
