[data-tooltip] {
  position: relative;
}
[data-tooltip]:hover {
  opacity: 1;
}
[data-tooltip]:hover::before {
  opacity: 1;
  top: 105%;
}
[data-tooltip]:before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  content: attr(data-tooltip);
  position: absolute;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.86);
  text-transform: none;
  font-weight: normal;
  text-align: center;
  line-height: 1.36em;
  padding: 0.4em 1em;
  left: 50%;
  right: 0;
  margin: 0 auto;
  transform: translate(-50%, 0);
  width: fit-content;
  background: #111;
  border-radius: 4px;
  transition: all 0.3s ease;
  top: 50%;
  opacity: 0;
  pointer-events: none;
}

html {
  font-size: 16px;
}
@media (max-width: 767px) {
  html {
    font-size: 14px;
  }
}

#header {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.2rem 1.6rem;
  margin: 0;
  background: #fff;
  z-index: 4;
  box-shadow: 0 4px 12px 0 rgba(0, 0, 0, 0.05);
  -webkit-box-shadow: 5px 0 10px rgba(0, 0, 0, 0.5);
}
#header .logo svg {
  width: fit-content;
  height: 65px;
}

body {
  color: #555;
  font-size: 1rem;
  font-family: Montserrat, sans-serif;
  background: #141e30;
  background: -webkit-linear-gradient(-45deg, #243b55, #141e30);
  background: linear-gradient(-45deg, #243b55, #141e30);
  height: 100%;
  min-height: 100vh;
  margin: 0;
}

header {
  display: flex;
}
header .logo svg {
  width: 180px;
  height: 45px;
}

#wrapper {
  position: relative;
  min-height: 100vh;
  margin: 4rem 0 0 0;
  transition: margin 0.4s ease 0s;
  padding: 0 2rem 6rem;
}
@media (max-width: 991px) {
  #wrapper {
    padding: 0 0 6rem;
  }
}

.btn {
  text-transform: uppercase;
  letter-spacing: 0.092em;
  transition: opacity 0.3s ease;
}
@media (hover: hover) {
  .btn:hover {
    opacity: 0.45;
  }
}
.btn.active {
  outline: none;
}
.btn.active:focus, .btn.active:active, .btn.active:visited {
  outline: none;
}
.btn.active.focus {
  outline: none;
}
.btn.active.focus:focus, .btn.active.focus:active, .btn.active.focus:visited {
  outline: none;
}
.btn:focus {
  outline: none !important;
}
.btn.btn-primary {
  background: #0BB2E0;
  border-color: #0BB2E0;
}
.btn.btn-primary:hover {
  border-color: #0BB2E0;
  background: #0BB2E0;
}

.action-btn {
  color: white;
  font-size: 16px;
  padding: 10px 20px;
  border: none;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  width: fit-content;
  /*margin: 10px auto 30px;*/
}

/* Hover effect for all buttons */
.action-btn:hover {
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

/* Icon styles for all buttons */
.action-btn i {
  margin-right: 8px;
  font-size: 18px;
}

.panel {
  background: #fff;
  padding: 2.6rem;
  border-radius: 1rem;
  box-shadow: 0 3px 24px 1px rgba(0, 0, 0, 0.15);
}
.panel .title-panel {
  position: relative;
  font-size: 2.5rem;
  color: #03101f;
  margin: 0 0 1em;
  padding-bottom: 1em;
  border-bottom: 1px solid #dddddd;
}
.panel .title-panel small {
  display: block;
  margin-bottom: 0.3em;
  text-transform: uppercase;
  letter-spacing: 0.072em;
  font-size: 0.52em;
}
.panel .title-panel::after {
  content: "";
  display: inline-block;
  vertical-align: middle;
  display: none;
  height: 6px;
  width: 120px;
  position: absolute;
  left: 3rem;
  bottom: -3px;
  background: #0BB2E0;
}
.panel .title-panel:before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  height: calc(100% - 1.6rem);
  width: 4px;
  position: absolute;
  left: 1.6rem;
  top: 0;
  background: #0BB2E0;
}
@media (max-width: 767px) {
  .panel .title-panel::before {
    left: 15px;
  }
}
.panel .caption {
  text-align: center;
}
.panel .caption h2 {
  position: relative;
  font-size: 1.5rem;
  line-height: 1.42em;
  margin: 0 0 1.6rem;
  padding-bottom: 1.6rem;
  color: #03101f;
}
.panel .caption h2:before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  position: absolute;
  height: 4px;
  background: #0BB2E0;
  width: 86px;
  bottom: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
}
.panel .caption p {
  font-size: 1.125rem;
  margin: 0 0 1em;
}
.panel .caption p:last-child {
  margin-bottom: 0;
}
.panel .well {
  margin: 1.5rem auto 2.5rem;
  border: none;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.15);
  padding: 1.5rem 2rem;
  border-radius: 6px;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.panel .well .btn-lg {
  padding: 0.8em 1.5em;
}
@media (max-width: 991px) {
  .panel .title-panel {
    font-size: 2rem;
    line-height: 1.5em;
  }
}

.panel-form {
  padding: 3rem 0 0;
}
.panel-form .title-panel {
  padding-left: 3rem;
  padding-right: 3rem;
}
.panel-form .form-content {
  padding: 0 3rem;
}
.panel-form .actions {
  display: flex;
  text-align: right;
  background: #eee;
  padding: 1.6rem 3rem;
  border-bottom-right-radius: 1rem;
  border-bottom-left-radius: 1rem;
  align-items: center;
  justify-content: flex-end;
  margin-top: 3rem;
}
.panel-form .actions .btn, .panel-form .actions .action-btn {
  padding: 0.8em 1.4em;
  font-size: medium;
  flex: 1;
  text-align: center;
  max-height: 60px;
  white-space: nowrap;
  overflow: hidden;
  margin: 5px;
  text-overflow: ellipsis;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.panel-form .actions i {
  text-align: center;
  font-style: normal;
}
.panel-form .actions.stacked {
  flex-direction: column;
  align-items: stretch;
}
.panel-form .actions.stacked .btn, .panel-form .actions.stacked .action-btn {
  width: 100%;
  max-width: none;
}
@media (max-width: 1000px) {
  .panel-form .actions {
    flex-direction: column;
    align-items: stretch;
  }
  .panel-form .actions .btn, .panel-form .actions .action-btn {
    width: 100%;
    max-width: none;
  }
}
@media (max-width: 991px) {
  .panel-form {
    padding: 2rem 0 0;
  }
  .panel-form .title-panel {
    padding-left: 2rem;
    padding-right: 2rem;
  }
  .panel-form .form-content {
    padding-left: 2rem;
    padding-right: 1.6rem;
  }
}

/* Hidden state: Fully clipped on the left */
.action-btn.hidebtn {
  position: absolute;
  clip-path: inset(0 0 0 100%); /* Starts fully hidden */
  pointer-events: none;
  opacity: 0;
  transition: clip-path 0.5s ease, opacity 0.5s ease;
}

/* Shown state: Fully revealed */
.action-btn.showbtn {
  position: static;
  clip-path: inset(0 0 0 0); /* Fully visible */
  pointer-events: auto;
  opacity: 1;
  transition: clip-path 0.5s ease, opacity 0.5s ease;
}

/* Moving out state: Sweeps out in the same direction (left to right) */
.action-btn.exitbtn {
  position: absolute;
  clip-path: inset(0 0 0 100%); /* Sweeps out to the right */
  pointer-events: none;
  opacity: 0;
  transition: clip-path 0.5s ease, opacity 0.5s ease;
}

.action-btn-recalcular {
  background-color: #18b3e1; /* Vibrant blue */
}

.action-btn-recalcular:hover {
  background-color: #85d3e8; /* Darker blue on hover */
}

.action-btn-enclousure {
  background-color: transparent;
  box-shadow: none;
  font-size: small;
  height: fit-content;
  white-space: unset;
}

.action-btn-recalcular:disabled {
  background-color: #d3d3d3; /* Light gray for disabled state */
  color: #8a8a8a; /* Muted gray for text */
  cursor: not-allowed; /* Show "not-allowed" cursor */
  opacity: 0.7; /* Slightly transparent to indicate disable */
}

.action-btn-simular {
  background-color: #009688; /* Vibrant blue */
}

.action-btn-simular:hover {
  background-color: #4DB6AC; /* Darker blue on hover */
}

.action-btn-salvar {
  background-color: #005c06; /* Strong red */
}

.action-btn-salvar:hover {
  background-color: #00f410; /* Darker red on hover */
}

.action-btn-compartilhar {
  background-color: #7255a4; /* Light purple */
}

.action-btn-compartilhar:hover {
  background-color: #d1c4e9; /* Even lighter purple on hover */
}

.action-btn-switch {
  background-color: #20c997; /* Light purple */
}

.action-btn-switch:hover {
  background-color: #198f6e; /* Even lighter purple on hover */
}

.action-btn-red {
  background-color: #ff0000; /* Light purple */
}

.action-btn-red:hover {
  background-color: #f55353; /* Even lighter purple on hover */
}

.action-btn-home {
  background-color: #5b8a72; /* Muted green for a calm, inviting feel */
}

.action-btn-home:hover {
  background-color: #a3d0b5; /* Softer green on hover */
}

.action-btn-home:disabled {
  background-color: #d3d3d3; /* Light gray for disabled state */
  color: #8a8a8a; /* Muted gray for text */
  cursor: not-allowed; /* Show "not-allowed" cursor */
  opacity: 0.7; /* Slightly transparent to indicate disable */
}

.action-btn-orange {
  background-color: #f68645; /* Muted green for a calm, inviting feel */
}

.action-btn-orange:hover {
  background-color: #ee9d6d; /* Softer green on hover */
}

.action-btn-whatsapp {
  background-color: #25D366; /* WhatsApp green */
}

.action-btn-whatsapp:hover {
  background-color: #1ebe57; /* Darker green on hover */
}

/* Ensure the form content takes 80% of the viewport height */
.form-content {
  /* max-height: 50vh; /* 80% of the viewport height */
  /* overflow-y: auto; /* Enable vertical scrolling */
  padding: 20px; /* Optional: Add some padding for better spacing */
  box-sizing: border-box; /* Ensure padding is included in the height calculation */
}

/* Optional: Style for the scroll bar */
.form-content::-webkit-scrollbar {
  width: 8px; /* Width of the scrollbar */
}

.form-content::-webkit-scrollbar-thumb {
  background-color: #243b55; /* Color of the scrollbar thumb */
  border-radius: 4px; /* Rounded corners for the scrollbar thumb */
}

.form-content::-webkit-scrollbar-track {
  background-color: #f1f1f1; /* Background of the scrollbar track */
}

.tab-content::-webkit-scrollbar {
  width: 8px; /* Width of the scrollbar */
}

.tab-content::-webkit-scrollbar-thumb {
  background-color: #243b55; /* Color of the scrollbar thumb */
  border-radius: 4px; /* Rounded corners for the scrollbar thumb */
}

.tab-content::-webkit-scrollbar-track {
  background-color: #f1f1f1; /* Background of the scrollbar track */
}

.form-group {
  margin-bottom: 1.6rem;
  position: relative;
}
.form-group:before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  position: absolute;
  height: 100%;
  width: 4px;
  background: #0BB2E0;
  left: -1.5rem;
  top: 3px;
}
@media (max-width: 991px) {
  .form-group:before {
    left: -1rem;
  }
}
.form-group h4, .form-group .label-group {
  font-size: 1.125rem;
  margin: 0 0 0.6em;
  line-height: 1.46em;
  position: relative;
}
.form-group h4 .btn, .form-group .label-group .btn {
  border: none;
  background: none;
  padding: 0.4em;
  position: relative;
  top: -4px;
  transition: all 0.3s ease;
}
.form-group h4 .btn:hover, .form-group .label-group .btn:hover {
  background: none;
  border: none;
  transform: scale(1.1);
  opacity: 1;
}
.form-group h4 .btn img, .form-group .label-group .btn img {
  display: none;
}
.form-group h4 .btn::before, .form-group .label-group .btn::before {
  content: "";
  line-height: 100%;
  display: block;
  vertical-align: middle;
  height: 36px;
  width: 36px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='33.959' height='34.959' viewBox='0 0 33.959 34.959'%3E%3Cg id='video-helper' transform='translate(-1656 -650.041)'%3E%3Cpath id='Caminho_1' data-name='Caminho 1' d='M16,2.667A13.333,13.333,0,1,1,2.667,16,13.348,13.348,0,0,1,16,2.667ZM16,0A16,16,0,1,0,32,16,16,16,0,0,0,16,0ZM12,22.667V9.333l12,6.861Z' transform='translate(1656 653)' fill='%23999'/%3E%3Cpath id='Caminho_3' data-name='Caminho 3' d='M5.6,0A5.6,5.6,0,1,1,0,5.6,5.6,5.6,0,0,1,5.6,0Z' transform='translate(1676.646 652.155)' fill='%23fff'/%3E%3Cpath id='Caminho_2' data-name='Caminho 2' d='M7.713,0a7.713,7.713,0,1,0,7.713,7.713A7.713,7.713,0,0,0,7.713,0Zm0,11.73a.8.8,0,1,1,.8-.8A.8.8,0,0,1,7.713,11.73Zm1.26-3.81a1.7,1.7,0,0,0-.6,1.4H7.083A2.366,2.366,0,0,1,8,7.09c.368-.35.659-.627.618-1.17a.85.85,0,0,0-.877-.788c-.456,0-.988.339-.988,1.294H5.464A2.277,2.277,0,0,1,7.771,3.887,2.267,2.267,0,0,1,9.41,4.5a2.011,2.011,0,0,1,.549,1.477A2.875,2.875,0,0,1,8.973,7.92Z' transform='translate(1674.533 650.041)' fill='%233498db'/%3E%3C/g%3E%3C/svg%3E%0A");
}
.form-group h4 .task-video-helper, .form-group .label-group .task-video-helper {
  display: inline-block;
  vertical-align: middle;
  border: none;
  background: none;
  position: relative;
  top: -4px;
  transition: all 0.3s ease;
}
.form-group h4 .task-video-helper:hover, .form-group .label-group .task-video-helper:hover {
  background: none;
  border: none;
  transform: scale(1.1);
  opacity: 1;
}
.form-group h4 .task-video-helper .icon::before, .form-group .label-group .task-video-helper .icon::before {
  content: "";
  line-height: 100%;
  display: block;
  vertical-align: middle;
  height: 36px;
  width: 36px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='33.959' height='34.959' viewBox='0 0 33.959 34.959'%3E%3Cg id='video-helper' transform='translate(-1656 -650.041)'%3E%3Cpath id='Caminho_1' data-name='Caminho 1' d='M16,2.667A13.333,13.333,0,1,1,2.667,16,13.348,13.348,0,0,1,16,2.667ZM16,0A16,16,0,1,0,32,16,16,16,0,0,0,16,0ZM12,22.667V9.333l12,6.861Z' transform='translate(1656 653)' fill='%23999'/%3E%3Cpath id='Caminho_3' data-name='Caminho 3' d='M5.6,0A5.6,5.6,0,1,1,0,5.6,5.6,5.6,0,0,1,5.6,0Z' transform='translate(1676.646 652.155)' fill='%23fff'/%3E%3Cpath id='Caminho_2' data-name='Caminho 2' d='M7.713,0a7.713,7.713,0,1,0,7.713,7.713A7.713,7.713,0,0,0,7.713,0Zm0,11.73a.8.8,0,1,1,.8-.8A.8.8,0,0,1,7.713,11.73Zm1.26-3.81a1.7,1.7,0,0,0-.6,1.4H7.083A2.366,2.366,0,0,1,8,7.09c.368-.35.659-.627.618-1.17a.85.85,0,0,0-.877-.788c-.456,0-.988.339-.988,1.294H5.464A2.277,2.277,0,0,1,7.771,3.887,2.267,2.267,0,0,1,9.41,4.5a2.011,2.011,0,0,1,.549,1.477A2.875,2.875,0,0,1,8.973,7.92Z' transform='translate(1674.533 650.041)' fill='%233498db'/%3E%3C/g%3E%3C/svg%3E%0A");
}
.form-group h4:after, .form-group .label-group:after {
  content: "";
  position: absolute;
  height: 104%;
  width: 102%;
  left: -1%;
  top: -2%;
  transform: translate(0, -2px);
  transition: all 0.3s ease;
  opacity: 0;
  pointer-events: none;
  border: 0 dashed #3498db;
  border-radius: 6px;
}
.form-group h4.hightlight::after, .form-group .label-group.hightlight::after {
  opacity: 1;
  border-width: 2px;
}
.form-group .form-control {
  padding: 0.9em 1.6em;
  border-radius: 6px;
  height: auto;
  box-shadow: none;
  transition: box-shadow 0.3s ease;
}
.form-group .form-control:focus {
  border-color: #0BB2E0;
  box-shadow: 0 0 0 2px rgba(11, 178, 224, 0.75);
}
.form-group .form-control.required:invalid {
  border-color: #f39c12;
  box-shadow: 0 0 0 2px rgba(243, 156, 18, 0.3);
}
.form-group .btn {
  padding: 0.76em 1.2em;
}
.form-group[data-toggle-visible] {
  display: none;
}
.form-group .input-group-addon {
  color: #777;
  background: #eee;
}

.radio > label, .checkbox > label {
  position: relative;
  display: block;
  padding: 0.8em 1.2em;
  padding-left: 32px;
  border: 1px solid #ccc;
  border-radius: 6px;
  transition: all 0.3s ease;
}
.radio > label:hover, .checkbox > label:hover {
  background: #efefef;
}

.radio-custom > label, .checkbox-custom > label {
  display: block;
  font-weight: normal;
  position: relative;
}
.radio-custom > label input, .checkbox-custom > label input {
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  margin: 0;
  margin-left: 16px;
  z-index: 2;
}
.radio-custom > label input.required:invalid ~ .task, .checkbox-custom > label input.required:invalid ~ .task {
  box-shadow: 0 0 0 2px rgba(243, 156, 18, 0.3);
  border-color: #f39c12;
}
.radio-custom > label input:checked ~ .task, .checkbox-custom > label input:checked ~ .task {
  box-shadow: 0 0 0 2px rgba(0, 120, 184, 0.3);
  border-color: #0078B8;
}
.radio-custom > label .task, .checkbox-custom > label .task {
  position: relative;
  display: block;
  padding: 0.8em 1.2em;
  padding-left: 42px;
  border: 1px solid #ccc;
  border-radius: 6px;
  transition: all 0.3s ease;
  z-index: 1;
  cursor: pointer;
}
.radio-custom > label .task:hover, .checkbox-custom > label .task:hover {
  background: #efefef;
}

.btn-toggle:hover {
  opacity: 1;
}
.btn-toggle:hover .task::before {
  transform: scale(1);
  opacity: 1;
  visibility: visible;
}
.btn-toggle .task {
  position: relative;
  padding: 0 10px;
}
.btn-toggle .task::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: -5px;
  margin-top: -5px;
  height: 10px;
  width: 10px;
  margin-right: 0.3em;
  border-radius: 100%;
  background: #2ECC71;
  transition: all 0.3s ease;
  transform: scale(0.6);
}
.btn-toggle .task-red::before {
  background: #E74C3C;
}
.btn-toggle input[type=radio]:checked ~ .task::before {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}

.panel-hero {
  max-width: 560px;
  margin: 0 auto;
  padding: 0;
}
.panel-hero .caption {
  padding: 2.6rem;
}
.panel-hero .controls {
  padding: 2.6rem;
  border-bottom-right-radius: 1rem;
  border-bottom-left-radius: 1rem;
  background: #eee;
}
.panel-hero .controls .btn {
  padding-top: 1em;
  padding-bottom: 1em;
}
.panel-hero .controls .btn .icon {
  display: inline-block;
  vertical-align: middle;
  position: relative;
  top: -1px;
  margin-right: 0.3em;
}
.panel-hero .controls .btn .icon::before {
  content: "";
  line-height: 100%;
  display: block;
  vertical-align: middle;
  height: 1.6em;
  width: 1.6em;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  background-image: url("data:image/svg+xml,%3Csvg clip-rule='evenodd' fill='%23ffffff' fill-rule='evenodd' stroke-linejoin='round' stroke-miterlimit='2' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='m21 4c0-.478-.379-1-1-1h-16c-.62 0-1 .519-1 1v16c0 .621.52 1 1 1h16c.478 0 1-.379 1-1zm-16.5.5h15v15h-15zm12.5 10.75c0-.414-.336-.75-.75-.75h-8.5c-.414 0-.75.336-.75.75s.336.75.75.75h8.5c.414 0 .75-.336.75-.75zm0-3.248c0-.414-.336-.75-.75-.75h-8.5c-.414 0-.75.336-.75.75s.336.75.75.75h8.5c.414 0 .75-.336.75-.75zm0-3.252c0-.414-.336-.75-.75-.75h-8.5c-.414 0-.75.336-.75.75s.336.75.75.75h8.5c.414 0 .75-.336.75-.75z' fill-rule='nonzero'/%3E%3C/svg%3E");
}
.panel-hero .controls .btn .icon.icon-video:before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23ffffff' width='24' height='24' viewBox='0 0 24 24'%3E%3Cpath d='M12 2c5.514 0 10 4.486 10 10s-4.486 10-10 10-10-4.486-10-10 4.486-10 10-10zm0-2c-6.627 0-12 5.373-12 12s5.373 12 12 12 12-5.373 12-12-5.373-12-12-12zm-3 17v-10l9 5.146-9 4.854z'/%3E%3C/svg%3E");
}
.panel-hero .controls .btn + .btn {
  margin-top: 1rem;
}

section.section-form .container {
  max-width: 992px;
  margin-top: 50px;
}

.glyphicon-refresh-animate {
  -animation: spin 0.7s infinite linear;
  -webkit-animation: spin2 0.7s infinite linear;
}

@-webkit-keyframes spin2 {
  from {
    -webkit-transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
  }
}
@keyframes spin {
  from {
    transform: scale(1) rotate(0deg);
  }
  to {
    transform: scale(1) rotate(360deg);
  }
}
.container-video {
  padding: 0 1.5rem;
  margin-bottom: 1.5rem;
}
@media (max-width: 991px) {
  .container-video {
    padding: 0;
  }
}
.container-video #player {
  border-radius: 0;
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5); /* Adjust the opacity to control the blur intensity */
  backdrop-filter: blur(8px); /* Adjust the blur radius as needed */
  z-index: 9999;
  display: none; /* Hide the overlay by default */
}

#player {
  border-radius: 30px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  padding-bottom: 0%;
  width: 50%;
  height: 50%;
  margin-left: 25%;
}

#fechar {
  margin-top: 10%;
}

@media screen and (max-width: 767px) {
  #player {
    margin-top: 0%;
    max-height: 25%;
  }
  #fechar {
    margin-top: 55%;
  }
}
.field-step-second {
  display: none;
}

.page-review #wrapper {
  margin-top: 1.6rem;
  padding-bottom: 5px;
  min-height: initial;
}
.page-review .section-form .container {
  max-width: 100%;
  width: 100%;
}
.page-review .panel-review {
  display: flex;
  align-items: flex-start;
  gap: 1.6rem;
  background: none;
  box-shadow: none;
}
.page-review .wrap-results {
  width: 100%;
  position: relative;
  z-index: 1;
  background: #fff;
  border-radius: 12px;
  transition: width 0.5s ease, opacity 0.5s ease;
}
@media (min-width: 851px) {
  .page-review .wrap-results {
    flex: none;
    width: 33.33%;
  }
}
@media (min-width: 951px) {
  .page-review .wrap-results.hideanswer {
    transition: width 0.5s ease, opacity 0.5s ease;
    width: 0;
    opacity: 0;
    margin-left: -20px;
  }
}
.page-review .container-portfolio {
  position: relative;
  flex: 1;
  background: #fff;
  border-radius: 1rem;
  display: flex;
  flex-direction: column;
  border-bottom-right-radius: 1rem;
  z-index: 2;
}
@media (min-width: 851px) {
  .page-review .container-portfolio {
    max-height: fit-content;
  }
}
.page-review .container-portfolio .tabs-portfolio {
  display: flex;
  display: flex;
  margin: 0;
  padding: 0;
  border-bottom: 1px solid #ddd;
}
.page-review .container-portfolio .tabs-portfolio li {
  list-style: none;
  flex: 1;
}
.page-review .container-portfolio .tabs-portfolio li + li {
  border-left: 1px solid #ddd;
}
.page-review .container-portfolio .tabs-portfolio li a {
  position: relative;
  display: block;
  padding: 0.8em;
  text-align: center;
  color: #555;
}
.page-review .container-portfolio .tabs-portfolio li a:hover, .page-review .container-portfolio .tabs-portfolio li a:focus {
  text-decoration: none;
}
.page-review .container-portfolio .tabs-portfolio li a::after {
  content: "";
  display: inline-block;
  vertical-align: middle;
  display: block;
  height: 4px;
  background: #0BB2E0;
  position: absolute;
  width: 0;
  max-width: 100%;
  left: 1px;
  right: 1px;
  margin: 0 auto;
  bottom: -2px;
  opacity: 0;
  transition: all 0.3s ease;
}
.page-review .container-portfolio .tabs-portfolio li.active a {
  color: #333;
  font-weight: bold;
}
.page-review .container-portfolio .tabs-portfolio li.active a::after {
  width: 120px;
  opacity: 1;
}
.page-review .container-portfolio .tabs-portfolio li:not(.active) a:hover::after {
  background: #ddd;
  width: 120px;
  opacity: 1;
}
.page-review .container-portfolio .tab-content {
  padding: 20px;
  overflow: auto;
}
.page-review .container-portfolio .text-box {
  text-align: center;
  padding: 1.6rem;
  border-radius: 1rem;
  background: #eee;
  margin: 0 auto;
}
.page-review .container-portfolio .text-box h2 {
  font-size: 1.5rem;
  color: #03101f;
  margin: 0 0 1em;
}
.page-review .container-portfolio .text-box h2::after {
  content: "";
  display: inline-block;
  vertical-align: middle;
  height: 4px;
  display: block;
  width: 120px;
  background: #0BB2E0;
  margin: 0.6em auto 0;
}
.page-review .container-portfolio .text-box p {
  line-height: 1.5em;
}
.page-review .tab-container {
  position: relative;
}
.page-review table th, .page-review table td {
  border: none;
}
.page-review .info-rotate-device {
  display: none;
  position: fixed;
  left: 1px;
  right: 1px;
  bottom: 10px;
  padding: 1.2rem 2rem;
  border-radius: 8px;
  font-size: 14px;
  color: #fff;
  margin: 0 auto;
  width: fit-content;
  background: rgba(0, 0, 0, 0.75);
}
.page-review .info-rotate-device .icon-rotate {
  display: inline-block;
  vertical-align: middle;
  animation: rotate 1.5s ease-in-out infinite alternate;
  position: relative;
  top: -1px;
  margin-left: 10px;
}
.page-review .info-rotate-device .icon-rotate::before {
  content: "";
  line-height: 100%;
  display: block;
  vertical-align: middle;
  height: 24px;
  width: 24px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  display: inline-block;
  background-image: url("data:image/svg+xml,%3Csvg fill='%23fff' width='24' height='24' xmlns='http://www.w3.org/2000/svg' fill-rule='evenodd' clip-rule='evenodd'%3E%3Cpath d='M18 24h-12c-1.104 0-2-.896-2-2v-20c0-1.104.896-2 2-2h12c1.104 0 2 .896 2 2v20c0 1.104-.896 2-2 2zm1-5.083h-14v3.083c0 .552.449 1 1 1h12c.552 0 1-.448 1-1v-3.083zm-7 3c-.553 0-1-.448-1-1s.447-1 1-1c.552 0 .999.448.999 1s-.447 1-.999 1zm7-17h-14v13h14v-13zm-1-3.917h-12c-.551 0-1 .449-1 1v1.917h14v-1.917c0-.551-.448-1-1-1zm-4.5 1.917h-3c-.276 0-.5-.224-.5-.5s.224-.5.5-.5h3c.276 0 .5.224.5.5s-.224.5-.5.5z'/%3E%3C/svg%3E");
}
@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  50% {
    transform: rotate(-90deg);
  }
  100% {
    transform: rotate(-90deg);
  }
}
.page-review .info-rotate-device .close-info {
  position: absolute;
  right: -3px;
  top: -3px;
  background: none;
  outline: none;
  border: none;
  padding: 4px;
  display: block;
  width: 32px;
  height: 32px;
  opacity: 0.75;
  font-size: 24px;
  line-height: 0;
}
@media only screen and (max-width: 850px) and (orientation: portrait) {
  .page-review .info-rotate-device {
    display: block;
  }
}

.maximizer {
  position: relative;
  max-width: 80px;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: transparent;
  border: none;
}
@media only screen and (max-width: 940px) {
  .maximizer {
    display: none;
  }
}

.maximizer::after {
  content: "";
  position: absolute;
  bottom: -2px; /* Position the underline just below the text */
  left: 10%;
  width: 0;
  height: 0px;
  background-color: #0BB2E0; /* Blue color for the underline */
  transform: scaleX(0); /* Start with no underline */
  transform-origin: left; /* Start animation from the left */
  transition: all 0.3s ease;
  border-radius: 1px;
}

.maximizer:hover::after {
  transform: scaleX(1); /* Full underline on hover */
  width: 80%;
  height: 4px;
  transition: all 0.3s ease;
}

.panel-review {
  padding: 0;
}
.panel-review [class*=col-] {
  width: 100% !important;
}
.panel-review h4 {
  min-height: initial;
}
.panel-review .title-panel {
  font-size: 1.25rem;
  padding: 1.6rem;
  margin: 0 0 15px;
}
.panel-review .title-panel::before {
  top: 100%;
  height: 4px;
  width: 120px;
  margin-top: -2px;
}
@media (min-width: 851px) {
  .panel-review .title-panel {
    margin: 0 0 5px;
  }
}
.panel-review .form-content {
  padding: 0 1.6rem;
}
.panel-review .form-group:not(.field-first-step) h4 {
  font-size: 14px;
  min-height: auto;
  margin: 0 0 0.6em;
  flex: none;
  width: 100%;
}
@media (min-width: 1200px) {
  .panel-review .form-group:not(.field-first-step) {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: 10px 0;
  }
  .panel-review .form-group:not(.field-first-step)::before {
    display: none;
  }
  .panel-review .form-group:not(.field-first-step) h4 {
    width: 40%;
    margin: 0;
  }
  .panel-review .form-group:not(.field-first-step).show {
    display: flex !important;
  }
}
.panel-review .form-group .input-group {
  margin: 0;
  flex: 1;
}
.panel-review .form-group .form-control {
  text-align: right;
}
.panel-review .form-group .form-control[type=number] {
  padding-right: 6px;
}
.panel-review .actions {
  margin: 0;
}

.d-none {
  display: none !important;
}

/* Container for the toggle */
.checkbox-container {
  display: flex;
  align-items: center;
}

/* Toggle switch */
.checkbox-container input[type=checkbox] {
  width: 40px;
  height: 20px;
  background-color: #b4a8a8; /* Gray when unselected */
  border-radius: 15px;
  position: relative;
  appearance: none;
  cursor: pointer;
  outline: none;
  transition: background-color 0.3s ease;
}

/* Circle inside the toggle */
.checkbox-container input[type=checkbox]::before {
  content: "";
  width: 16px;
  height: 16px;
  background-color: white;
  border-radius: 50%;
  position: absolute;
  top: 2px;
  left: 2px;
  transition: transform 0.3s ease;
}

/* When checked */
.checkbox-container input[type=checkbox]:checked {
  background-color: #f68645; /* Orange when selected */
}

/* Move the circle when checked */
.checkbox-container input[type=checkbox]:checked::before {
  transform: translateX(20px);
}

/* Add a checkmark inside the circle when selected */
.checkbox-container input[type=checkbox]:checked::after {
  font-family: "Font Awesome 5 Free";
  font-weight: 500;
  color: #ffffff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 12px;
}

/* Switch-checkbox specific styles */
.checkbox-container input[type=checkbox].switch-checkbox {
  background-color: #f68645; /* Keep the background color the same */
  min-width: 80px;
}

/* Move the circle twice the distance */
.checkbox-container input[type=checkbox].switch-checkbox:checked::before {
  transform: translateX(60px); /* Double the distance */
}

/* Remove background change on switch-checkbox */
.checkbox-container input[type=checkbox].switch-checkbox:checked {
  background-color: #f68645; /* Keep the background unchanged */
}

/* Label styling */
.checkbox-container label {
  color: #162338;
  font-size: 18px;
  cursor: pointer;
  margin: 4px 0 0;
}

/* Label styling */
.checkbox-container label.switch-checkbox {
  font-size: small;
}

/* Keyframes to animate both the circle and the checkmark */
@keyframes drawCircle {
  0% {
    transform: scale(0);
    opacity: 0.5;
  }
  50% {
    transform: scale(1.2);
    opacity: 1;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
.info-scrollable {
  position: fixed;
  bottom: 50%;
  left: 50%;
  transform: translate(-50%, 20px); /* Start slightly below */
  background-color: rgba(0, 0, 0, 0.8);
  color: #fff;
  padding: 10px 20px;
  border-radius: 5px;
  z-index: 9999;
  display: flex;
  align-items: center;
  opacity: 1;
  transition: opacity 0.3s ease, transform 0.3s ease; /* Smooth transition */
  flex-wrap: wrap; /* Allow wrapping of items */
}

.close-info {
  background: none;
  border: none;
  color: #fff;
  font-size: 16px;
  margin-right: 10px;
  cursor: pointer;
}

.icon-container {
  margin-left: 10px;
  font-size: 20px; /* Adjust the icon size if needed */
  flex-grow: 1; /* Allow the arrow to take available space */
  text-align: center; /* Center the arrow */
}

.i-nord-logo {
  display: inline-block;
  width: 2em; /* Doubled from 2em to 4em */
  height: 2em; /* Doubled from 2em to 4em */
  background-image: url("/static/images/menu-nord-icon3.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: bottom; /* Align the image to the center */
  margin-right: 0px;
  float: left;
  margin-top: -5px;
  margin-left: -7px;
}

.i-nord-logo-white {
  filter: invert(1);
  width: 3em; /* Doubled from 2em to 4em */
  height: 3em;
}

@media (min-width: 940px) {
  .row .col-md-6:nth-child(2) .form-group::before {
    display: none;
  }
  .row .col-md-4:nth-child(2) .form-group::before {
    display: none;
  }
  .row .col-md-4:nth-child(3) .form-group::before {
    display: none;
  }
}
.custom-progress {
  margin-top: 20px;
  width: 100%;
  background-color: #e0e0e0;
  height: 10px;
  border-radius: 5px;
  position: relative;
  overflow: hidden;
}

.custom-progress .progress-bar {
  width: 0;
  height: 100%;
  background-color: #0f7000;
  transition: width 0.1s linear;
}

@media (min-width: 950px) {
  .form-content-scrollable {
    max-height: 50vh;
    overflow-y: auto;
  }
}
@media (max-width: 950px) {
  .invisible-div {
    width: 70vw; /* 70% of the viewport width */
    height: 70vh; /* 70% of the viewport height */
    visibility: hidden; /* Invisible but still takes space */
  }
}
.cls-1 {
  fill-rule: evenodd;
}

.cls-1, .cls-2 {
  fill: #1a1a1a;
}

.cls-3 {
  fill: url(#Gradiente_sem_nome_166);
}