* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Segoe UI', Arial, sans-serif;
  background: #ffffff;
  color: #333333;
  line-height: 1.6;
}

/* HEADER */
header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 24px;
  background: #ffffff;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.logo-placeholder {
  width: 120px;   /* aumenta este valor até ao tamanho que quereres */
  height: 60px;   /* ajusta consoante o formato do teu logo (retangular, quadrado, etc.) */
  object-fit: contain;
  flex-shrink: 0;
  margin-left: -10px;
}

.lang-selector {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 15px;
  color: #333333;
  cursor: default;
}

.lang-selector .globe-icon {
  width: 20px;
  height: 20px;
  stroke: #333333;
}

/* CONTEÚDO */
main {
  max-width: 800px;
  margin: 0 auto;
  padding: 16px 24px 0;
}

.bloco {
  margin-bottom: 26px;
}

.bloco2 {
  margin-bottom: 0px;
}

.colunas {
  display: flex;
  gap: 60px;
}

.titulo-grande {
  font-size: 34px;
  font-weight: 700;
  color: #333333;
  margin-top: 24px;
  margin-bottom: 8px;
}

.titulo-grande-smaller {
  font-size: 28px;
  font-weight: 700;
  color: #333333;
  margin-top: 24px;
  margin-bottom: 8px;
}


.titulo-grande-evensmaller {
  font-size: 28px;
  font-weight: 700;
  color: #333333;
  margin-top: 24px;
  margin-bottom: 8px;
}


.titulo-grande-outro {
  font-size: 34px;
  font-weight: 700;
  color: #333333;
  margin-top: 24px;
  margin-bottom: 8px;
}

.titulo-medio {
  font-size: 20px;
  font-weight: 700;
  color: #333333;
  margin-top: 20px;
  margin-bottom: 8px;
}

.texto-cinza {
  font-size: 15px;
  font-weight: 400;
  color: #999999;
}

.texto-cinzaescuro {
  font-size: 15px;
  font-weight: 400;
  color: #5a5959;
}

.texto-cinzaescuro-espacado {
  font-size: 15px;
  font-weight: 400;
  color: #5a5959;
  margin-top: 8px;
  margin-bottom: 8px;
}

.texto-normal {
  font-size: 15px;
  font-weight: 400;
  color: #333333;
}

/* AVISO */
.aviso {
  margin-top: 40px;
  padding: 20px 0 40px;
  border-top: 1px solid #e0e0e0;
}

.aviso-conteudo {
  margin-left: auto;
  width: 340px;
  max-width: 100%;
}

.aviso-topo {
  display: flex;
  gap: 10px;
}

.aviso-icone {
  flex-shrink: 0;
  margin-top: 2px;
}

.aviso-texto .texto-normal {
  margin-bottom: 4px;
}

.aviso-botoes {
  display: flex;
  justify-content: flex-end; /* encosta tudo à direita */
  gap: 10px; /* espaço entre os botões */
  margin-top: 40px;
}

.botao-aviso {
  border: none;
  border-radius: 999px;
  padding: 12px 28px;
  font-size: 15px;
  font-weight: 700;
  color: #ffffff;
  background: #e3231a;
  cursor: pointer;
}

/* CARTÕES DE ESCOLHA */
.opcoes {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 320px;
  margin-top: 32px; /* espaço entre "Linha 2" e os cartões */
}

.opcao-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #ffffff;
  border: 1px solid #e6e6e6;
  border-radius: 16px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  padding: 18px 20px;
  text-decoration: none;
}

.opcao-nome {
  color: #e3231a;
  font-weight: 700;
  font-size: 15px;
}

/* FORM DE LOGIN */
.login-form {
  max-width: 460px;
  margin-top: 24px;
}

.campo {
  position: relative;
  margin-bottom: 26px;
}

.campo input {
  width: 100%;
  padding: 16px;
  border: 1.5px solid #cfe0dd;
  border-radius: 10px;
  font-size: 15px;
  color: #333333;
  outline: none;
  font-family: inherit;
  transition: border-color 0.15s ease;
}

.campo label {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: #999999;
  font-size: 15px;
  pointer-events: none;
  transition: all 0.15s ease;
  background: transparent;
  padding: 0;
}

.campo input:focus,
.campo input:not(:placeholder-shown) {
  border-color: #17796b;
  border-width: 2px;
}

.campo input:focus + label,
.campo input:not(:placeholder-shown) + label {
  top: 0;
  left: 14px;
  font-size: 13px;
  font-weight: 600;
  color: #17796b;
  background: #ffffff;
  padding: 0 6px;
}

.campo input::placeholder {
  color: #999999;
}

.link-esqueceu {
  display: inline-block;
  color: #777777;
  font-size: 14px;
  text-decoration: none;
  margin-bottom: 34px;
}

.login-acoes {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.link-registo {
  color: #e3231a;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
}

.login-extra {
  display: flex;
  gap: 24px;
  margin-top: 40px;
}

.login-extra a {
  color: #666666;
  font-size: 14px;
  text-decoration: none;
}

.link-esqueceu {
  color: #17796b;
  text-decoration: none;
  font-weight: 500;
  display: inline-block;
  margin-bottom: 8px;
}

.link-esqueceu:hover {
  text-decoration: underline;
}

.link-esqueceu:visited {
  color: #1dc4c4;
}

.linha-reenvio {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.botao-enviar {
  background-color: #E3231A;
  color: #fff;
  border: none;
  padding: 12px 28px;
  border-radius: 25px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
}
.botao-enviar:hover {
  background-color: #c41d15;
}

