@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');

:root {
  --yellow: #fbd106;
  --lightblue: #0187E8;
  --grey: #808080;
  --white: #fff;
  --black: #000;
}

html,
body {
  margin: 0;
  padding: 0 !important;
  font-family: 'Montserrat';
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  overflow-x: hidden !important;
}

a:hover {
  color: #000000;
}

.modal-header {
  justify-content: space-between;
}

/* header */
.header {
  /*background: url('/recrutador_assets/img/back.png');
  background-size: cover !important;
  background-position: bottom center !important;
  background-repeat: no-repeat !important;*/
  background: var(--black);
  padding: 80px 0 100px 0;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  color: var(--black);
}

/*#porto {
  background: url('/recrutador_assets/img/porto.png');
}*/
.header-txt {
  position: relative;
  z-index: 90;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-direction: column;
  margin-top: -150px;
  color: var(--white);
}

.header-txt img {
  width: 230px;
  margin-bottom: 55px;
  filter: brightness(1) invert(1);
}

.txt-box {
  background: var(--white);
  width: 85%;
  border-radius: 20px;
  padding: 35px;
}

.header-txt h1 {
  line-height: 0.95;
  font-size: 20px;
  font-weight: 400;
  font-style: normal;
  margin: 0;
}

.header-txt h1 span {
  font-size: 40px;
  font-style: italic;
  font-weight: 700;
  border-bottom: 4px solid var(--yellow);
}

.header-txt-faro h1 {
  text-wrap: balance;
  line-height: 38px;
}

.header-txt-faro h1 span {
  font-size: 34px;
}

.header-txt h3 {
  font-size: 28px;
  font-weight: 400;
  margin: 20px 0;
}

.header-txt h3 span {
  font-weight: 700;
  font-style: italic;
}

.header-txt h6 {
  font-size: 20px;
  font-weight: 700;
  margin: 0;
}

.header-img {
  position: relative;
  display: inline-block;
  min-height: 480px;
}

.persona {
  margin-top: -30px;
  position: relative;
  z-index: 1;
  max-height: 575px;
  object-fit: contain;
}

.header-img:before {
  content: "";
  position: absolute;
  bottom: 0px;
  right: 0;
  width: 750px;
  height: 750px;
  z-index: 0;
  border-radius: 50%;
  background: rgba(251, 209, 6, 0.55);
  filter: blur(45px);
  transform: translate(15%, 50%);
}

/* section 1 */
.section1 {
  position: relative;
  margin-top: -300px;
  z-index: 999;
}

.subtract {
  min-height: 255px;
  background: url('/recrutador_assets/img/subtract.svg');
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
}

.form-section {
  background: var(--white);
  text-align: center;
  margin-bottom: 25px;
}

#contactform {
  padding: 40px 50px 60px 50px;
  background: var(--white);
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.25);
  border-radius: 20px;
  position: relative;
  top: -170px;
  margin-bottom: -100px;
}

.form-step {
  display: none;
  width: 100%;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  color: var(--black);
  text-wrap: balance;
}

.form-step.active {
  display: flex;
}

.form-step .row {
  width: 95%;
  margin-top: 10px;
}

input:not(#terms).error {
  margin: 0;
  border: 1px solid #DB524D;
  background-image: url('/img/close.svg');
  background-position: 97% center;
  background-size: 18px;
  background-repeat: no-repeat;
  margin: 0;
}

input:not(#terms).valid {
  border: 1px solid #00AB08;
  background-image: url('/img/check.svg');
  background-position: 97% center;
  background-size: 18px;
  background-repeat: no-repeat;
}

#step-5 .row {
  width: 90%;
}

.time-box {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin: 0 0 20px 0;
  position: absolute;
  right: 20px;
  bottom: -5px;
}

.time-box h3 {
  font-size: 16px;
  font-weight: 400;
  max-width: 100%;
  line-height: 1.1;
  margin: 0;
  color: var(--black);
}

.time-box svg {
  scale: 0.75;
  animation: upDown 4s ease-in-out infinite;
}

.loader-circle,
.loader-pointer,
.loader-line {
  fill: none;
  stroke-width: 1.4px;
  stroke: var(--black);
}

.loader-center {
  fill: var(--black);
}

.loader-pointer {
  -webkit-transform-origin: bottom center;
  -moz-transform-origin: bottom center;
  -ms-transform-origin: bottom center;
  transform-origin: bottom center;
  animation: spin 10s linear infinite;
  -moz-animation: spin 10s linear infinite;
  -webkit-animation: spin 10s linear infinite;
}

.loader-line {
  -webkit-transform-origin: bottom center;
  -moz-transform-origin: bottom center;
  -ms-transform-origin: bottom center;
  transform-origin: bottom center;
  animation: spin 60s linear infinite;
  -moz-animation: spin 60s linear infinite;
  -webkit-animation: spin 60s linear infinite;
}

@-moz-keyframes spin {
  from {
    -moz-transform: rotate(0deg);
    -moz-transform-origin: 50% 50%;
  }

  to {
    -moz-transform: rotate(360deg);
    -moz-transform-origin: 50% 50%;
  }
}

@-webkit-keyframes spin {
  from {
    -webkit-transform: rotate(0deg);
    -webkit-transform-origin: 50% 50%;
  }

  to {
    -webkit-transform: rotate(360deg);
    -webkit-transform-origin: 50% 50%;
  }
}

@keyframes spin {
  from {
    transform: rotate(0deg);
    transform-origin: 50% 50%;
  }

  to {
    transform: rotate(360deg);
    transform-origin: 50% 50%;
  }
}

.form-step h3 {
  font-size: 26px;
  font-weight: 700;
  color: var(--black);
}

/*.form-step h3 span {
  border-bottom: 4px solid var(--yellow);
}*/
.form-step hr {
  width: 300px;
  height: 4px;
  opacity: 1;
  background: var(--yellow);
  margin: 0 auto 10px auto;
  border: none;
}

.form-step h6 {
  margin: 0px auto 5px auto;
  font-size: 20px;
  font-weight: 400;
  font-style: italic;
}

.form-step h6 b {
  font-weight: 700;
}

.small-span {
  font-size: 14px;
  font-weight: 400;
  border: none !important;
}

.radio-buton input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.radio-buton label {
  background: var(--white);
  border: 2px var(--yellow) solid;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
  height: 120px;
  padding: 10px 10px;
  margin: 10px auto;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  color: var(--black);
  font-size: 18px;
  line-height: 1.1;
  font-weight: 700;
  text-wrap: balance;
}

.radio-buton label img {
  width: 30px;
  margin-bottom: 10px;
}

.radio-buton label:hover,
.radio-buton input[type="radio"]:checked+label {
  background: var(--yellow);
  color: var(--black);
}

.customInput {
  display: flex;
  flex-direction: column;
  position: static;
  padding: 0 7.5px;
}

.customInput label.text {
  font-size: 14px;
  color: var(--black);
  font-weight: 400;
  position: relative;
  top: 10px;
  margin: 0 0 0 15px;
  padding: 0 5px;
  background: var(--white);
  width: fit-content;
  z-index: 10;
}

.message {
  position: relative;
}

.message img {
  height: 15px;
  margin-left: 3px;
  margin-top: -2px;
}

.tooltip-title {
  min-width: 300px;
  background: #e1e1e1;
  padding: 10px 20px;
  border-radius: 10px;
  top: -50px;
  left: -10px;
  position: absolute;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.2s ease-in-out;
}

#step-3 .tooltip-title {
  left: 50%;
  transform: translateX(-50%);
  min-width: 55%;
  text-align: center;
}

#step-3 .tooltip-title p {
  text-align: center;
}

.tooltip-title p {
  margin: 0;
  font-size: 12px;
  text-align: left;
  font-weight: 500;
  color: var(--black);
}

.message:hover .tooltip-title {
  visibility: visible;
  opacity: 1;
}

.customInput input[type="text"].input,
.customInput input[type="email"].input,
.customInput textarea {
  padding: 0 10px;
  width: 100%;
  height: 55px;
  font-size: 16px;
  border: 2px var(--yellow) solid;
  border-radius: 10px;
  background: var(--white);
  color: var(--black);
}

.customInput input[type="text"].input:focus {
  outline: none;
}

.customInput .dropdown-toggle {
  padding: 11px 10px;
  font-size: 16px;
  height: 55px;
  border: 2px var(--yellow) solid;
  border-radius: 10px;
  background: var(--white);
  text-align: left;
  color: var(--black);
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.customInput .dropdown-toggle::after {
  display: none;
}

.form-option:hover,
.form-option.selected {
  background: var(--yellow) !important;
  color: var(--black) !important;
}

.customInput .dropdown-toggle:hover img {
  filter: brightness(0) invert(1);
}

.customInput .dropdown-toggle:focus-visible,
.customInput .dropdown-toggle:focus {
  box-shadow: none;
  background: #fff;
  color: #000;
}

.customInput .dropdown-menu {
  width: 100%;
  overflow-y: auto;
  max-height: 200px;
  cursor: pointer;
  border-radius: 10px;
  padding: 0;
  border: 2px solid var(--yellow) !important;
  scrollbar-width: none;
  font-size: 16px;
  margin-top: -2px;
}

.customInput .dropdown-menu::-webkit-scrollbar {
  width: 0px;
  background: transparent;
}

.customInput .dropdown-item.active,
.customInput .dropdown-item:active {
  background: lightgrey;
}

.form-option,
.no-match-message {
  padding: 10px 20px;
}

#localidade {
  background: url('/recrutador_assets/img/arrow.svg');
  background-size: 20px;
  background-position: 95% center;
  background-repeat: no-repeat;
}

.termContainer {
  width: 100%;
  font-size: 12px;
  color: var(--grey);
  margin-bottom: auto;
  margin-left: 5px;
  cursor: pointer;
  margin-top: 20px;
}

.termContainer a {
  color: var(--grey);
  cursor: pointer;
}

.termContainer input {
  display: none;
}

.termContainer a:hover {
  color: var(--black) !important;
}

.termContainer svg {
  overflow: visible;
  max-height: 15px;
  max-width: 15px;
  margin-right: 5px;
  margin-top: 1px;
  vertical-align: baseline;
  translate: 0 2px;
}

.path {
  fill: none;
  stroke: var(--black);
  stroke-width: 6px;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: stroke-dasharray 0.5s ease, stroke-dashoffset 0.5s ease;
  stroke-dasharray: 241 9999999;
  stroke-dashoffset: 0;
}

.termContainer input:checked~svg .path {
  stroke-dasharray: 70.5096664428711 9999999;
  stroke-dashoffset: -262.2723388671875;
}

.form-button {
  min-width: 200px;
  height: 55px;
  border-radius: 10px;
  border: none;
  background: var(--yellow);
  color: var(--black);
  font-size: 20px;
  font-weight: 700;
  padding: 0 30px;
  margin: 20px auto 0 auto;
  transition: all 0.4s ease;
}

.form-button:hover {
  background: var(--black);
  color: var(--yellow);
  transform: scale(1.05);
}

.error {
  font-size: 11px;
  font-weight: 400;
  color: red;
}

/* Messages */
.popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  justify-content: center;
  align-items: center;
  z-index: 1000;
  display: flex;
  justify-content: center;
  align-items: center;
}

.popup-content {
  background: var(--white);
  border-radius: 20px;
  padding: 40px;
  width: 650px;
  min-height: 400px;
  margin: 0 auto;
  position: relative;
  z-index: 99;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.popup-content img {
  margin-bottom: 40px;
  height: 130px;
}

.popup-content h3 {
  font-size: 30px;
  font-weight: 700;
  color: var(--blue);
  line-height: 1.1;
  margin-bottom: 20px;
  text-wrap: balance;
}

.popup-content h3 span {
  border-bottom: 4px solid var(--yellow);
}

.popup-content p {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.1;
  text-wrap: balance;
}

.popup-content h6 {
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 20px 0;
  line-height: 1.1;
  text-wrap: balance;
}

#cvform {
  width: 80%;
}

.form-upload {
  text-align: center;
  width: 100%;
}

#cv-upload {
  display: none;
}

.upload-btn {
  width: 90%;
  height: 55px;
  margin: 0 auto;
  display: inline-block;
  border-radius: 50px;
  background: var(--white);
  border: 2px solid var(--yellow);
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--black);
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.4s ease;
}

.upload-btn:hover {
  background: var(--black);
  color: var(--yellow);
  transform: scale(1.05);
}

/* Adstrategy */
#section-ads {
  text-align: center;
  padding: 30px 0;
  display: none;
}

/* Media Queries */
@media only screen and (max-width: 1440px) {
  .txt-box {
    width: 90%;
  }

  #contactform {
    margin-bottom: -130px;
  }
}

@media only screen and (max-width: 1200px) {
  .time-toggle {
    padding: 0 10px;
  }

  .time-toggle::after {
    background-size: 15px;
    width: 15px;
    height: 15px;
  }

  .header-txt h3,
  .header-txt h6 {
    font-size: 22px;
  }

  .header-img:before {
    transform: translate(30%, 50%);
  }

  .message-box p {
    max-width: 90%;
  }

  #contactform {
    padding: 40px 20px 60px 20px;
  }

  .form-step .row {
    width: 95%;
  }

  .txt-box {
    width: 100%;
  }

  .header-txt h1 span {
    font-size: 26px;
  }

  .header-txt h6 {
    font-size: 18px;
  }
}

@media only screen and (max-width: 991px) {
  .header-txt h1 span {
    font-size: 32px;
    line-height: 1.1;
  }

  .header-img:before {
    transform: translate(45%, 50%);
  }

  .header-txt {
    margin-top: 0;
  }

  .txt-box {
    padding: 35px 30px;
  }

  .header-txt h6 {
    font-size: 14px;
  }

  .persona {
    width: 400px;
  }

  .dropdown {
    top: -10px;
  }

  .header-txt {
    padding-bottom: 40px;
  }

  .header-img {
    text-align: center;
  }

  .time-select {
    margin-top: 20px;
  }

  .form-check label span {
    max-width: 100%;
  }

  .form-check label {
    font-size: 10px;
  }

  #contactform {
    top: -100px;
    margin-bottom: -50px;
  }
}

@media only screen and (max-width: 767px) {

  .header-txt h1,
  .header-txt h2,
  .header-txt h3,
  .header-txt h6 {
    text-align: center;
  }

  .header-txt h3 {
    max-width: 80%;
    margin: 30px auto;
  }

  .form-step .row {
    width: 100%;
  }

  .container {
    max-width: 90%;
  }

  .header {
    text-align: center;
    padding: 30px 0 100px 0;
  }

  .header-img:before {
    transform: translate(20%, 50%);
  }

  .header-txt {
    justify-content: center;
    align-items: center;
  }

  .header-txt img {
    margin-bottom: 35px;
  }

  .header-txt h6 {
    font-size: 18px;
  }

  #contactform {
    top: -200px;
    margin-bottom: -120px;
  }

  .tooltip-title {
    left: -15px;
  }

  .header-txt h1 span {
    font-size: 38px;
  }
}

@media only screen and (max-width: 600px) {
  .header-txt h1 span {
    font-size: 25px;
  }

  .popup-content {
    width: 95%;
  }

  .form-step hr {
    max-width: 70%;
  }
}

@media only screen and (max-width: 500px) {
  .header-txt h1 br {
    display: none;
  }

  .header-txt h1 {
    text-wrap: balance;
  }

  .header-txt h1 span {
    font-size: 26px;
  }

  .persona {
    width: 280px;
  }

  .message-box p {
    font-size: 16px;
  }

  .dropdown {
    right: 20px;
  }

  .header-txt img {
    width: 200px;
  }

  .flag-toggle img,
  .flag-list li img {
    height: 25px;
    width: 25px;
    margin: 0;
  }

  .section1 {
    margin-top: -450px;
  }

  #contactform {
    padding: 40px 30px 60px 30px;
  }

  .form-step h3 {
    font-size: 20px;
    margin-bottom: 10px;
  }

  .next,
  .form-button {
    font-size: 16px;
  }

  .termContainer {
    min-width: 100%;
    margin: unset;
    display: block;
    margin-top: 10px;
  }

  .termContainer a {
    width: 100%;
  }

  .form-step h3 br {
    display: none;
  }

  .form-step h3 {
    font-size: 16px;
    text-wrap: balance;
  }

  .form-step h6 {
    font-size: 13px;
  }
}

@media only screen and (max-width: 475px) {
  .header-txt h3 {
    font-size: 18px;
  }

  .form-check {
    max-width: 100%;
  }

  .section1 {
    margin-top: -500px;
  }

  #step-3 .tooltip-title {
    min-width: 100%;
  }

  .header-txt h1 {
    font-size: 14px;
  }

  .next,
  .form-button {
    font-size: 15px;
    min-width: 100%;
  }
}

@media only screen and (max-width: 435px) {

  .next,
  .form-button {
    font-size: 14px;
    padding: 0;
  }

  .popup-content {
    padding: 30px 20px;
  }

  .header-txt h6 {
    text-wrap: balance;
  }

  .header-txt h3 {
    font-size: 20px;
    margin: 30px auto 20px auto;
  }

  .header-txt h1 span {
    font-size: 30px;
  }

  .tooltip-title {
    left: -25px;
  }
}

@media only screen and (max-width: 390px) {

  .header-txt h3,
  .header-txt h6 {
    font-size: 18px;
  }

  .header-txt img {
    width: 150px;
  }

  .flag-toggle img,
  .flag-list li img {
    height: 20px;
    width: 20px;
    margin: 0;
  }

  .persona {
    width: 220px;
  }

  .message-box img {
    max-width: 95%;
  }

  .section1 {
    margin-top: -540px;
  }

  #contactform {
    padding: 30px 20px 60px 20px;
  }

  #localidade {
    background: none;
  }
}

@media only screen and (max-width: 375px) {

  .header-txt h3,
  .header-txt h6 {
    font-size: 18px;
  }

  .header-txt h3 {
    font-size: 15px;
  }

  .header-txt h3 {
    max-width: 90%;
  }

  .header-txt img {
    width: 150px;
  }

  .flag-toggle img,
  .flag-list li img {
    height: 20px;
    width: 20px;
    margin: 0;
  }

  .persona {
    width: 220px;
  }

  .message-box img {
    max-width: 95%;
  }

  .section1 {
    margin-top: -540px;
  }

  .form-step h3 {
    font-size: 16px;
    text-wrap: balance;
  }

  .form-step h6 {
    font-size: 14px;
  }

  .popup-content h3 {
    font-size: 24px;
  }

  .popup-content p {
    font-size: 13px;
  }

  .upload-btn {
    width: 100%;
  }

  .popup-content h6 {
    font-size: 16px;
  }
}

@media only screen and (max-width: 345px) {

  .header-txt h3,
  .header-txt h6 {
    font-size: 16px;
  }

  .time-selects {
    flex-direction: column;
  }

  .select-box {
    margin: 0 auto 10px auto;
    width: 100%;
  }

  .form-check {
    margin-top: 15px;
  }

  .next,
  .form-button {
    font-size: 12px;
  }
}