@font-face{
  font-family: 'SantanderHB';
  src: url("fonts/Santander-Headline-Bold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face{
  font-family: 'SantanderTB';
  src: url("fonts/Santander-Text-Bold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face{
  font-family: 'SantanderTI';
  src: url("fonts/Santander-Text-Italic.woff") format("woff");
  font-weight: normal;
  font-style: italic;
  font-display: swap;
}
@font-face{
  font-family: 'SantanderTL';
  src: url("fonts/Santander-Text-Light.woff") format("woff");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face{
  font-family: 'Santander';
  src: url("fonts/Santander-Text-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

.SantanderHB{ font-family: 'SantanderHB', sans-serif !important; }
.SantanderTB{ font-family: 'SantanderTB', sans-serif !important; }
.SantanderTI{ font-family: 'SantanderTI', sans-serif !important; }
.SantanderTL{ font-family: 'SantanderTL', sans-serif !important; }

.space-t{ margin-top: 2rem !important; }
.space-b{ margin-bottom: 2rem !important; }
.cursor{ cursor: pointer; }
.hand{ cursor: grab; }

@-webkit-keyframes scale-up-center {
  0% {
    -webkit-transform: scale(0.7);
    transform: scale(0.7); }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1); } }
@keyframes scale-up-center {
  0% {
    -webkit-transform: scale(0.7);
    transform: scale(0.7); }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1); } }
@-webkit-keyframes blinking {
  0% {
    -webkit-filter: brightness(1);
            filter: brightness(1); }
  0% {
    -webkit-filter: brightness(2);
            filter: brightness(2); }
  100% {
    -webkit-filter: brightness(1);
            filter: brightness(1); } }
@keyframes blinking {
  0% {
    -webkit-filter: brightness(1);
            filter: brightness(1); }
  0% {
    -webkit-filter: brightness(2);
            filter: brightness(2); }
  100% {
    -webkit-filter: brightness(1);
            filter: brightness(1); } }
.animate {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
  -webkit-transition: .3s ease;
  transition: .3s ease;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-name: zoom;
  animation-name: zoom; }

.stop-animate {
  -webkit-animation-iteration-count: 0;
  animation-iteration-count: 0; }

@-webkit-keyframes zoom {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1); }
  50% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3); }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1); } }
@keyframes zoom {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1); }
  50% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3); }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1); } }
@-webkit-keyframes slide-top {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0); }
  100% {
    -webkit-transform: translateY(-100px);
    transform: translateY(-100px); } }
@keyframes slide-top {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0); }
  100% {
    -webkit-transform: translateY(-100px);
    transform: translateY(-100px); } }
@-webkit-keyframes slide-right {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0); }
  100% {
    -webkit-transform: translateX(-100px);
    transform: translateX(-100px); } }
@keyframes slide-right {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0); }
  100% {
    -webkit-transform: translateX(-100px);
    transform: translateX(-100px); } }
@-webkit-keyframes slide1 {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0); }
  100% {
    -webkit-transform: translateY(200px);
    transform: translateY(200px); } }
@keyframes slide1 {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0); }
  100% {
    -webkit-transform: translateY(200px);
    transform: translateY(200px); } }
@-webkit-keyframes slide2 {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0); }
  100% {
    -webkit-transform: translateY(400px);
    transform: translateY(400px); } }
@keyframes slide2 {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0); }
  100% {
    -webkit-transform: translateY(400px);
    transform: translateY(400px); } }
@keyframes shake {
    0%   { transform: translateX(0); }
    25%  { transform: translateX(-6px); }
    50%  { transform: translateX(6px); }
    75%  { transform: translateX(-6px); }
    100% { transform: translateX(0); }
}
@keyframes zoomOk {
    0%   { transform: scale(1); }
    50%  { transform: scale(1.08); }
    100% { transform: scale(1); }
}

.zoom-ok {
    animation: zoomOk 0.25s ease-out;
}

.shake {
    animation: shake 0.2s; }

.accordion .item {
  border-bottom: 1px solid transparent; }
  .accordion .item button {
    border: 0;
    width: 100%;
    height: auto;
    padding: 0px;
    outline: none;
    cursor: pointer;
    text-align: left;
    position: relative; }
  .accordion .item:last-of-type {
    margin-bottom: 0; }
.accordion .item-content {
  background-color: #EC0000;
  padding: 0px; }
  .accordion .item-content p {
    padding: 1rem 3rem;
    font-size: 2.5rem;
    color: #232323; }
.accordion .collapse.show .item-content {
  border-radius: 0px; }

.card-reveal.card-reveal-hand:before {
  pointer-events: none;
  position: absolute;
  background-size: contain;
  content: "";
  bottom: 10px;
  right: 15px;
  background-image: url("../images/set-esq.png");
  background-repeat: no-repeat;
  width: 60px;
  height: 60px;
  -webkit-animation: scale-up-center 0.4s ease-in-out infinite alternate both;
  animation: scale-up-center 0.4s ease-in-out infinite alternate both;
  z-index: 10; }

.card {
  position: relative;
  width: 100%;
  background-color: transparent;
  height: 100%;
  overflow: hidden;
  border: none;
  border-radius: 0rem; }
  .card .card-body {
    background-color: transparent; }

.carousel {
  width: 100%;
  height: auto;
  margin: auto; }
  .carousel:not([data-completed="true"]) .carousel-control-next:after {
    position: absolute;
    content: "";
    background-image: url(../images/set-esq.png);
    background-repeat: no-repeat;
    width: 93px;
    height: 99px;
    background-size: contain;
    -webkit-animation: scale-up-center 0.4s ease-in-out infinite alternate both;
    animation: scale-up-center 0.4s ease-in-out infinite alternate both;
    z-index: 10;
    pointer-events: none; }
  .carousel .carousel-inner {
    margin: 0px auto; }
  .carousel .carousel-control-next,
  .carousel .carousel-control-prev {
    background-color: transparent;
    opacity: 1;
    margin: auto;
    cursor: pointer;
    position: absolute;
    display: block; }
  .carousel .carousel-control-next .carousel-control-next-icon {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    background-image: none; }
    .carousel .carousel-control-next .carousel-control-next-icon:after {
      content: "";
      width: 21px;
      height: 36px;
      background-image: url("../images/set-dir.png");
      background-size: 100%;
      background-position: center top;
      background-repeat: no-repeat; }
    .carousel .carousel-control-next .carousel-control-next-icon:hover:after {
      background-position: center bottom; }
  .carousel .carousel-control-prev .carousel-control-prev-icon {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    background-image: none; }
    .carousel .carousel-control-prev .carousel-control-prev-icon:after {
      content: "";
      width: 21px;
      height: 36px;
      background-image: url("../images/set-esq.png");
      background-size: 100%;
      background-position: center top;
      background-repeat: no-repeat; }
    .carousel .carousel-control-prev .carousel-control-prev-icon:hover:after {
      background-position: center bottom; }
  .carousel .carousel-indicators {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex; }
    .carousel .carousel-indicators li {
      position: relative;
      opacity: 1;
      text-indent: -99999px;
      cursor: pointer;
      border: none;
      -webkit-transition: all .6s ease;
      transition: all .6s ease;
      padding: 0px;
      font-size: 0px; }
      .carousel .carousel-indicators li.hand:after {
        position: absolute;
        content: "";
        background-image: url("../images/set-dir.png");
        background-repeat: no-repeat;
        background-size: contain;
        width: 93px;
        height: 99px;
        right: -12px;
        top: -10px;
        -webkit-animation: scale-up-center 0.4s ease-in-out infinite alternate both;
        animation: scale-up-center 0.4s ease-in-out infinite alternate both;
        z-index: 10;
        pointer-events: none; }

.owl-carousel {
    position: relative;
}

.owl-nav {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    pointer-events: none; /* evita bloquear o drag */
}

.owl-nav button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: all; /* reativa clique */
    background: none !important;
}

.owl-nav .owl-prev {
    left: -60px; /* distância pra fora */
}

.owl-nav .owl-next {
    right: -60px;
}

.owl-nav img {
    width: 40px;
    height: auto;
}


.click-reveal {
  overflow: hidden; }
  .click-reveal *[data-component="click"] {
    cursor: pointer;
    position: relative; }
    .click-reveal *[data-component="click"].hand:after {
      position: absolute;
      content: "";
      background-image: url(../images/set-esq.png);
      background-repeat: no-repeat;
      background-size: contain;
      width: 60px;
      height: 60px;
      top: 0px;
      left: 0px;
      right: 0px;
      bottom: 0px;
      margin: auto;
      -webkit-animation: scale-up-center 0.4s ease-in-out infinite alternate both;
      animation: scale-up-center 0.4s ease-in-out infinite alternate both;
      z-index: 10;
      pointer-events: none; }
  .click-reveal[data-completed="true"] *[data-component="click"] {
    cursor: default; }
    .click-reveal[data-completed="true"] *[data-component="click"].hand:after {
      display: none; }

.card.card-reveal {
  overflow: hidden;
  cursor: pointer; }
  .card.card-reveal .card-front {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 2;
    border: 0rem;
    background-color: transparent;
    padding: 0rem;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center; }
  .card.card-reveal .card-back {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    border: 0rem;
    background-color: transparent;
    padding: 0rem;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center; }

.generic-tab .nav-tabs {
  border-bottom: 0px; }
  .generic-tab .nav-tabs .nav-item {
    margin-bottom: 0px; }
    .generic-tab .nav-tabs .nav-item.hand:before {
      pointer-events: none;
      position: absolute;
      content: "";
      background-image: url("../images/set-esq.png");
      background-repeat: no-repeat;
      background-size: contain;
      width: 93px;
      height: 99px;
      -webkit-animation: scale-up-center 0.4s ease-in-out infinite alternate both;
      animation: scale-up-center 0.4s ease-in-out infinite alternate both;
      z-index: 10; }
.generic-tab ul li {
  margin-right: 0.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
  position: relative; }
  .generic-tab ul li a {
    background-color: #ffffff;
    position: relative;
    color: #333;
    margin-top: 0rem;
    text-decoration: none;
    width: auto;
    height: 5rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center; }
    .generic-tab ul li a.active {
      background-color: #f3f3f3;
      color: #333; }
    @media (max-width: 575.99px) {
      .generic-tab ul li a {
        width: 100%; } }
  @media (max-width: 575.99px) {
    .generic-tab ul li {
      display: block;
      width: 100%;
      margin-right: 0px;
      border-bottom: 3px solid transparent;
      background-color: transparent; } }
.generic-tab .tab-content {
  background-color: #ffffff; }
  .generic-tab .tab-content .tab-pane {
    position: relative;
    z-index: 1; }

html,
body {
  width: 100%;
  font-size: 62.5%;
  margin-right: 0 !important;
  overflow-x: hidden; }
  @media (max-width: 767.98px) {
    html,
    body {
      font-size: 57%; } }

body {
  font-family: "Santander" !important;
  font-weight: normal;
  margin: 0px;
  color: #707070;
  background-size: cover;
  background-attachment: fixed; }

body::-webkit-scrollbar-track {
  background-color: #EC0000;
  width: 10px; }

body::-webkit-scrollbar {
  background-color: #EC0000;
  width: 10px; }

body::-webkit-scrollbar-thumb {
  background-color: #1a1a1a;
  border-radius: 15px; }

* {
  outline: none !important; }

object {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block; }

img {
  width: auto;
  height: auto;
  max-width: 100%;
  display: block;
  margin: auto; }

strong {
  font-weight: bold; }

input[type='text']{
  margin-left: 1rem;
  width: 99%;
  border: none;
}

::-webkit-input-placeholder {
  color: #bebebe; }

::-moz-placeholder {
  color: #bebebe; }

:-ms-input-placeholder {
  color: #bebebe; }

:-moz-placeholder {
  color: #bebebe; }

section {
  position: relative;
  z-index: 2; }

footer {
  min-height: 125px;
  max-width: 1920px;
  opacity: 1;
  left: 0;
  right: 0;
  margin: auto;
  background-color: #9ee4e9;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center; }

#content {
  overflow: hidden;
  width: 100%;
  max-width: 1920px;
  height: auto;
  margin: 0 auto;
  -webkit-box-shadow: 0px 0px 15px 5px rgba(0, 0, 0, 0.15);
          box-shadow: 0px 0px 15px 5px rgba(0, 0, 0, 0.15); }

.container {
  padding: 0 15px; }

h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0; }
  h1:not(:first-of-type),
  h2:not(:first-of-type),
  h3:not(:first-of-type),
  h4:not(:first-of-type),
  h5:not(:first-of-type),
  h6:not(:first-of-type),
  p:not(:first-of-type) {
    margin-top: 2rem; }

h1 {
  font-size: 2rem;
  line-height: 2.5rem;
  text-align: left;
  font-weight: 400; }

h2 {
  font-size: 4.2rem;
  line-height: 5rem;
  text-align: left;
  font-weight: 500; }

h3 {
  font-size: 3rem;
  line-height: 3.8rem;
  text-align: left;
  font-weight: 500; }

h4 {
  font-size: 3.5rem;
  line-height: 4.3rem;
  text-align: left;
  font-weight: normal; }

h5 {
  font-size: 2.5rem;
  line-height: 3rem;
  text-align: left;
  font-weight: 300; }

ul {
  margin: 0px;
  padding: 0px;
  padding-left: 3rem; }

p {
  font-size: 2.3rem;
  line-height: 3.2rem;
  font-weight: normal;
  text-align: left; }
  p strong {
    font-weight: 800;
    color: #707070; }

li {
  font-size: 1.8rem;
  line-height: 2.3rem;
  text-align: left;
  font-weight: 400; }

ul li {
  margin: 0px;
  padding: 1rem 0px;
  list-style: none;
  position: relative; }

ul.list li {
  position: relative; }
  ul.list li:before {
    position: absolute;
    content: '\25CF';
    top: 9px;
    left: -1.5rem;
    font-size: 2rem; }

.default-button {
  border: 0;
  border-radius: 3.2rem;
  background-color: #1a1a1a;
  padding: 1.2rem 3rem;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear; }
  .default-button p {
    color: #05a1ad;
    font-size: 2.3rem;
    line-height: 2.6rem;
    font-weight: 800;
    text-transform: uppercase; }
  .default-button:hover:not(.disabled) {
    -webkit-filter: saturate(5) drop-shadow(0px 0px 8px rgba(0, 0, 0, 0.4));
            filter: saturate(5) drop-shadow(0px 0px 8px rgba(0, 0, 0, 0.4)); }
  .default-button.disabled {
    opacity: 0.8;
    -webkit-filter: saturate(0);
            filter: saturate(0);
    pointer-events: none; }

.owl-theme .owl-stage-outer .owl-stage .owl-item {
  opacity: 0;
  scale: 0.5;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  -webkit-filter: saturate(0) blur(15) !important;
          filter: saturate(0) blur(15) !important; }
  .owl-theme .owl-stage-outer .owl-stage .owl-item.active {
    -webkit-filter: saturate(1) blur(0) !important;
            filter: saturate(1) blur(0) !important;
    opacity: 1;
    scale: 1; }
.owl-theme .owl-nav {
  margin-top: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%); }
  .owl-theme .owl-nav [class*='owl-'] {
    position: relative;
    -webkit-transition: all 0.3s linear;
    transition: all 0.3s linear; }
    .owl-theme .owl-nav [class*='owl-'].disabled {
      pointer-events: none;
      -webkit-filter: saturate(0) !important;
              filter: saturate(0) !important; }
    .owl-theme .owl-nav [class*='owl-']:hover {
      background: transparent !important; }
      .owl-theme .owl-nav [class*='owl-']:hover:not(.disabled) {
        -webkit-filter: saturate(3.5);
                filter: saturate(3.5); }
  .owl-theme .owl-nav .owl-prev {
    left: -66px; }
  .owl-theme .owl-nav .owl-next {
    right: -66px; }
.owl-theme .owl-dots {
  margin-top: 3rem !important; }
  .owl-theme .owl-dots .owl-dot {
    -webkit-transition: all 0.3s linear;
    transition: all 0.3s linear; }
    .owl-theme .owl-dots .owl-dot:hover {
      -webkit-filter: saturate(3.5);
              filter: saturate(3.5); }
    .owl-theme .owl-dots .owl-dot span {
      width: 16px !important;
      height: 16px !important;
      background-color: transparent !important;
      border: 2px solid #9ee4e9 !important;
      -webkit-transition: all 0.3s linear !important;
      transition: all 0.3s linear !important; }
    .owl-theme .owl-dots .owl-dot.active span {
      background-color: #9ee4e9 !important; }

.img-caption {
    display: inline-block; }

.img-caption img {
    display: block; }

.img-caption figcaption {
    padding-right: 4rem;
    font-size: 1.4rem;
    text-align: right; }

.generic-tab ul {
  width: auto;
  position: relative;
  z-index: 2; }
  .generic-tab ul.nav.nav-tabs {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center; }
    .generic-tab ul.nav.nav-tabs li {
      padding: 0; }
      .generic-tab ul.nav.nav-tabs li.nav-item {
        width: 100%;
        height: auto;
        min-height: 92px;
        position: relative;
        margin: 0;
        margin-bottom: 2rem;
        -webkit-transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275); }
        .generic-tab ul.nav.nav-tabs li.nav-item a {
          width: 100%;
          height: 100%;
          background: none;
          color: unset;
          background-color: #05a1ad;
          border: 1px solid #f5ecec;
          border-radius: 9px;
          color: #f5ecec;
          font-size: 3rem;
          line-height: 3rem;
          font-weight: 900;
          text-align: center; }
          .generic-tab ul.nav.nav-tabs li.nav-item a.active {
            background-color: #f5ecec;
            color: #05a1ad; }
        .generic-tab ul.nav.nav-tabs li.nav-item:hover a {
          background-color: #f5ecec;
          color: #05a1ad; }
        .generic-tab ul.nav.nav-tabs li.nav-item.active {
          pointer-events: none; }
          .generic-tab ul.nav.nav-tabs li.nav-item.active:after {
            content: '';
            width: 71px;
            height: 32px;            
            background-size: cover;
            position: absolute;
            bottom: -37px;
            left: 0;
            right: 0;
            margin: auto;
            z-index: 3; }
        .generic-tab ul.nav.nav-tabs li.nav-item:before {
          display: none; }
.generic-tab .tab-content {
  position: relative;
  margin-top: 0rem;
  background-color: #f5ecec;
  padding: 7rem 4rem;
  padding-bottom: 4rem;
  border-radius: 9px; }
  .generic-tab .tab-content .container-01 .inner-row-01 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center; }
    .generic-tab .tab-content .container-01 .inner-row-01 .inner-col-01 img {
      margin: auto; }
    @media (max-width: 990.98px) {
      .generic-tab .tab-content .container-01 .inner-row-01 .inner-col-01 {
        padding-bottom: 3rem; } }
    .generic-tab .tab-content .container-01 .inner-row-01 .inner-col-02 ul {
      margin: 0;
      padding: 0; }
    .generic-tab .tab-content .container-01 .inner-row-01 .inner-col-02 p,
    .generic-tab .tab-content .container-01 .inner-row-01 .inner-col-02 li {
      color: #05a1ad;
      font-size: 2.4rem;
      line-height: 3.2rem;
      font-weight: 200;
      margin: 0;
      margin-bottom: 2rem;
      text-align: left;
      padding-left: 0; }
      .generic-tab .tab-content .container-01 .inner-row-01 .inner-col-02 p strong,
      .generic-tab .tab-content .container-01 .inner-row-01 .inner-col-02 li strong {
        font-weight: bold;
        color: #05a1ad; }
    .generic-tab .tab-content .container-01 .inner-row-01 .inner-col-02 li {
      display: block; }
      .generic-tab .tab-content .container-01 .inner-row-01 .inner-col-02 li span {
        color: #232323;
        margin-right: 10px; }

[class^='element-'] {
  position: absolute;
  pointer-events: none;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  width: auto;
  max-width: none;
  margin: auto; }

header.general-header {
  position: fixed;
  width: 100%;
  max-width: 1920px;
  height: auto;
  top: 0;
  left: -15px;
  right: 0px;
  margin: auto;
  z-index: 100;
  pointer-events: none; }
  header.general-header .header-menu-button {
    width: 261px;
    height: 136px;
    margin: auto;
    margin-right: 0;
    -webkit-transition: all 0.3s linear;
    transition: all 0.3s linear;
    background-image: url(../images/menu-button.svg);
    background-size: contain;
    background-position: top center;
    background-repeat: no-repeat;
    cursor: pointer;
    pointer-events: all; }
    header.general-header .header-menu-button:hover {
      background-image: url(../images/menu-button-hover.svg); }
    @media (max-width: 1367px) {
      header.general-header .header-menu-button {
        width: 195px;
        height: 101px; } }
    @media (max-width: 1199.98px) {
      header.general-header .header-menu-button {
        width: 175px;
        height: 91px; } }
    @media (max-width: 990.98px) {
      header.general-header .header-menu-button {
        width: 165px;
        height: 86px; } }
    @media (max-width: 767.98px) {
      header.general-header .header-menu-button {
        width: 120px;
        height: 63px; } }

.custom-feedback .section-menu {
  display: none;
  width: 100%;
  max-width: 1920px;
  margin: auto;
  height: auto;
  min-height: 100vh;
  background-image: url(../images/background-menu.jpg);
  background-position: top center;
  background-size: cover;
  background-repeat: no-repeat;
  overflow: hidden !important; }
  .custom-feedback .section-menu .container-fluid-01 .container-01 .row-01 .col-01 button {
    width: 261px;
    height: 123px;
    border: none;
    background: transparent;
    background-image: url(../images/close-menu-button.svg);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat; }
    .custom-feedback .section-menu .container-fluid-01 .container-01 .row-01 .col-01 button:hover {
      background-image: url(../images/close-menu-button-hover.svg); }
    @media (max-width: 1367px) {
      .custom-feedback .section-menu .container-fluid-01 .container-01 .row-01 .col-01 button {
        width: 195px;
        height: 92px; } }
    @media (max-width: 1199.98px) {
      .custom-feedback .section-menu .container-fluid-01 .container-01 .row-01 .col-01 button {
        width: 175px;
        height: 83px; } }
    @media (max-width: 990.98px) {
      .custom-feedback .section-menu .container-fluid-01 .container-01 .row-01 .col-01 button {
        width: 165px;
        height: 78px; } }
    @media (max-width: 575.99px) {
      .custom-feedback .section-menu .container-fluid-01 .container-01 .row-01 .col-01 button {
        width: 120px;
        height: 57px; } }
  .custom-feedback .section-menu .container-fluid-01 .container-01 .row-02 {
    margin-top: 2.5rem; }
    .custom-feedback .section-menu .container-fluid-01 .container-01 .row-02 .col-01 h2 {
      text-align: center;
      font-weight: 900;
      color: #05a1ad; }
      .custom-feedback .section-menu .container-fluid-01 .container-01 .row-02 .col-01 h2 span {
        color: #232323; }
      @media (max-width: 1367px) {
        .custom-feedback .section-menu .container-fluid-01 .container-01 .row-02 .col-01 h2 {
          font-size: 3.5rem;
          line-height: 4rem; } }
      @media (max-width: 990.98px) {
        .custom-feedback .section-menu .container-fluid-01 .container-01 .row-02 .col-01 h2 {
          font-size: 3rem;
          line-height: 3.5rem; } }
  .custom-feedback .section-menu .container-fluid-02 {
    margin-top: 100px;
    padding: 0;
    padding-bottom: 60px; }
    .custom-feedback .section-menu .container-fluid-02 .owl-carousel .owl-stage-outer {
      overflow: visible; }
      .custom-feedback .section-menu .container-fluid-02 .owl-carousel .owl-stage-outer .owl-item .item {
        width: 220px !important;
        max-width: 220px;
        height: auto;
        border-radius: 110px;
        cursor: pointer;
        -webkit-transition: all 0.5s ease-in-out;
        transition: all 0.5s ease-in-out;
        pointer-events: none;
        position: relative;
        margin: auto; }
        @media (max-width: 990.98px) {
          .custom-feedback .section-menu .container-fluid-02 .owl-carousel .owl-stage-outer .owl-item .item {
            width: 200px !important; } }
        @media (max-width: 767.98px) {
          .custom-feedback .section-menu .container-fluid-02 .owl-carousel .owl-stage-outer .owl-item .item {
            width: 165px !important; } }
        .custom-feedback .section-menu .container-fluid-02 .owl-carousel .owl-stage-outer .owl-item .item .item-wrapper {
          -webkit-filter: blur(3px) grayscale(0.6);
                  filter: blur(3px) grayscale(0.6);
          width: 100%;
          height: auto; }
        .custom-feedback .section-menu .container-fluid-02 .owl-carousel .owl-stage-outer .owl-item .item:hover {
          -webkit-transform: scale(1.209);
              -ms-transform: scale(1.209);
                  transform: scale(1.209);
          -webkit-box-shadow: 0px 0px 30px rgba(10, 219, 227, 0.9);
                  box-shadow: 0px 0px 30px rgba(10, 219, 227, 0.9); }
        .custom-feedback .section-menu .container-fluid-02 .owl-carousel .owl-stage-outer .owl-item .item.current {
          pointer-events: all; }
          .custom-feedback .section-menu .container-fluid-02 .owl-carousel .owl-stage-outer .owl-item .item.current .item-wrapper {
            -webkit-filter: blur(0px) grayscale(0);
                    filter: blur(0px) grayscale(0); }
          .custom-feedback .section-menu .container-fluid-02 .owl-carousel .owl-stage-outer .owl-item .item.current:before {
            -webkit-transition: all 0.5s ease-in-out;
            transition: all 0.5s ease-in-out;
            content: '';
            position: absolute;
            width: 72px;
            height: 72px;
            background-image: url(../images/menu-icon-02-hover.svg);
            background-size: cover;
            top: 0;
            right: 0;
            bottom: 0;
            left: 0;
            margin: auto;
            z-index: 2; }
          .custom-feedback .section-menu .container-fluid-02 .owl-carousel .owl-stage-outer .owl-item .item.current:hover:before {
            background-image: url(../images/menu-icon-02.svg); }
        .custom-feedback .section-menu .container-fluid-02 .owl-carousel .owl-stage-outer .owl-item .item.completed {
          pointer-events: all; }
          .custom-feedback .section-menu .container-fluid-02 .owl-carousel .owl-stage-outer .owl-item .item.completed .item-wrapper {
            -webkit-filter: blur(0px) grayscale(0);
                    filter: blur(0px) grayscale(0); }
          .custom-feedback .section-menu .container-fluid-02 .owl-carousel .owl-stage-outer .owl-item .item.completed:before {
            -webkit-transition: all 0.5s ease-in-out;
            transition: all 0.5s ease-in-out;
            content: '';
            position: absolute;
            width: 62px;
            height: 62px;
            background-image: url(../images/menu-icon-01.svg);
            background-size: cover;
            top: 0;
            right: 0;
            bottom: 0;
            left: 0;
            margin: auto;
            z-index: 2; }
        .custom-feedback .section-menu .container-fluid-02 .owl-carousel .owl-stage-outer .owl-item .item:before {
          -webkit-transition: all 0.5s ease-in-out;
          transition: all 0.5s ease-in-out;
          content: '';
          position: absolute;
          width: 61px;
          height: 62px;
          background-image: url(../images/menu-icon-03.svg);
          background-size: cover;
          top: 0;
          right: 0;
          bottom: 0;
          left: 0;
          margin: auto;
          z-index: 2; }
    .custom-feedback .section-menu .container-fluid-02 .owl-carousel .owl-nav {
      display: -webkit-box !important;
      display: -ms-flexbox !important;
      display: flex !important;
      width: 283px;
      margin: auto;
      margin-top: 70px; }
      .custom-feedback .section-menu .container-fluid-02 .owl-carousel .owl-nav .owl-prev {
        width: 45px;
        height: 45px;
        background-image: url(../images/slider-orange-prev.svg);
        background-size: cover;
        margin: auto;
        margin-left: 0;
        -webkit-transition: all 0.3s ease-in-out;
        transition: all 0.3s ease-in-out; }
        .custom-feedback .section-menu .container-fluid-02 .owl-carousel .owl-nav .owl-prev:hover {
          background-image: url(../images/slider-orange-prev-hover.svg); }
      .custom-feedback .section-menu .container-fluid-02 .owl-carousel .owl-nav .owl-next {
        width: 45px;
        height: 45px;
        background-image: url(../images/slider-orange-next.svg);
        background-size: cover;
        margin: auto;
        margin-right: 0;
        -webkit-transition: all 0.3s ease-in-out;
        transition: all 0.3s ease-in-out; }
        .custom-feedback .section-menu .container-fluid-02 .owl-carousel .owl-nav .owl-next:hover {
          background-image: url(../images/slider-orange-next-hover.svg); }
      @media (max-width: 1367px) {
        .custom-feedback .section-menu .container-fluid-02 .owl-carousel .owl-nav {
          margin-top: 45px; } }
    .custom-feedback .section-menu .container-fluid-02 .owl-carousel .owl-dots {
      display: -webkit-box !important;
      display: -ms-flexbox !important;
      display: flex !important;
      width: 153px;
      margin: auto;
      margin-top: -32px;
      -ms-flex-pack: distribute;
          justify-content: space-around; }
      .custom-feedback .section-menu .container-fluid-02 .owl-carousel .owl-dots .owl-dot {
        width: 21px;
        height: 21px;
        background-color: transparent;
        border: 1px solid #fff;
        border-radius: 100px;
        -webkit-transition: all 0.3s ease-in-out;
        transition: all 0.3s ease-in-out; }
        .custom-feedback .section-menu .container-fluid-02 .owl-carousel .owl-dots .owl-dot.active {
          background-color: rgba(255, 255, 255, 0.35); }
    @media (max-width: 1367px) {
      .custom-feedback .section-menu .container-fluid-02 {
        margin-top: 45px; } }
.custom-feedback .mfp-close {
  display: none; }

.section-menu-wrapper {
  display: none; }

.mfp-hide-custom {
  opacity: 0;
  visibility: hidden;
  width: 0;
  height: 0;
  overflow: hidden;
  min-height: 0; }

.mfp-bg.custom-feedback {
  overflow: hidden !important;
  width: 100% !important;
  height: 100% !important;
  position: fixed !important; }

h2.situacao-audio{
  font-size: 2.8rem;
  color: #fff;
  text-align: center;
  padding-bottom: 0.2rem; }
p.situacao-audio{
  font-size: 2.4rem;
  color: #fff;
  text-align: center;
  padding-bottom: 1rem; }
  
.item-check {
  position: relative;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer; }

.item-check input {
    display: none; }

/* caixa */
.checkmark {
    width: 25px;
    height: 25px;
    border: 2px solid #EC0000;
    background: #DEEDF2;
    border-radius: 6px;
    position: relative;
    flex-shrink: 0; }

/* check */
.item-check input:checked + .checkmark::after {
    content: '';
    position: absolute;
    left: 8px;
    top: 4px;
    width: 6px;
    height: 10px;
    border: solid #EC0000;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg); }
hr{
  margin: 4rem auto;
  border: none;
  border-top: 1px solid #EC0000; }

.controle-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 3rem;
    gap: 1.5rem; }

.label {
    color: #666; }
.hidden{
  display: none; }

.controle-range {
    -webkit-appearance: none;
    appearance: none;
    width: 220px;
    height: 55px;
    background: #dbeef4;
    border-radius: 30px;
    outline: none;
    border: 2px solid #e53935;
    cursor: pointer; }

/* trilho */
.controle-range::-webkit-slider-runnable-track {
    height: 55px;
    background: transparent; }

/* botão (bola vermelha) */
.controle-range::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 51px;
    height: 51px;
    background: #e53935;
    border-radius: 50%;
    margin-top: 2px;
    cursor: pointer; }

.controle-range::-moz-range-thumb {
    width: 45px;
    height: 45px;
    background: #e53935;
    border-radius: 50%;
    border: none; }

ul.sit2 {
    padding: 1rem 3rem;
    font-family: 'SantanderHB'; }

ul.sit2 li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 2rem 0 !important;
    border-bottom: 3px dotted #000; }

ul.sit2 li:last-child {
    border-bottom: none; }

/* texto da esquerda */
ul.sit2 .label {
    color: #000;
    font-size: 2.3rem;
    font-family: 'SantanderHB'; }
ul.sit2 .label.lock {
    opacity: .4;
    pointer-events: none;
    cursor: default; }

/* pílula da direita */
ul.sit2 .pill {
    padding: 0.5rem 1.5rem;
    cursor: grab;
    border-radius: 20px;
    border: 1px solid #707070;
    color: #fff;
    font-size: 2rem;
    text-align: center;
    width: 45rem;
    margin-right: 5rem;
    transition: transform .15s ease;
    font-family: 'SantanderTI'; }

ul.sit2 .pill.ok {
    background: #2db84c;
    color: #fff; }

ul.sit2 .pill.lock {
    pointer-events: none; }

/* cores */
ul.sit2 .green {
    background: #2db84c; }

ul.sit2 .red {
    background: #e00000; }

.menor{
  margin: 0 auto;
  max-width: 60%; }

.stepper {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 60%;
    margin: 40px auto; }

/* linha */
.stepper::before {
    content: '';
    position: absolute;
    top: 50px;
    left: 0;
    right: 0;
    height: 3px;
    background: #e00000; }

/* label */
.stepper label {
    position: relative;
    text-align: center;
    cursor: pointer;
    z-index: 1; }

/* esconde o radio real */
.stepper input {
    position: absolute;
    opacity: 0;
    pointer-events: none; }

/* número */
.stepper label span {
    display: block;
    font-family: 'SantanderTB';
    font-size: 2.2rem;
    transition: transform .25s ease, background-color .25s ease;
    color: #000; }

/* bolinha */
.stepper label span::after {
    content: '';
    display: block;
    width: 25px;
    height: 25px;
    border: 2px solid #eC0000;
    border-radius: 50%;
    background: #DEEDF2;
    margin: 6px auto 0;
    transition: all 0.2s ease; }

/* marcado */
.stepper input:checked + span::after {
  margin-top: -4px;
  background: #e00000; }

.stepper label.active span {
    transform: scale(1.3);
}


.toggle-cards li {
    position: relative;
    overflow: hidden;
    padding: 0;
    height: 334px; }

.toggle-cards .card-wrap {
    transition: transform .3s ease; }

.toggle-cards img {
    display: block;
    width: 100%;
    height: 334px; }

.toggle-cards li.active .card-wrap {
    transform: translateY(-334px); }

.toggle-cards-02 li {
    position: relative;
    overflow: hidden;
    padding: 0;
    height: 257px; }

.toggle-cards-02 .card-wrap {
    transition: transform .3s ease; }

.toggle-cards-02 img {
    display: block;
    width: 100%;
    height: 257px; }

.toggle-cards-02 li.active .card-wrap {
    transform: translateY(-257px); }

.carousel-0x .item {
    position: relative;
    overflow: hidden;
    height: 334px; /* altura real da imagem */
    cursor: pointer; }

.carousel-0x .card-wrap {
    transition: transform .3s ease; }

.carousel-0x .item img {
    display: block;
    width: 100%;
    height: 334px; }

.carousel-0x .item.active .card-wrap {
    transform: translateY(-334px); }


.elipse-wrapper {
  pointer-events: none;
  text-align: center; }

.elipse-text {
  position: absolute;
  inset: 0;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  font-family: 'SantanderTI';
  width: 240px;
  margin: 0 auto;
  color: #fff;
  font-size: 2.8rem; }

.tooltip-word {
    position: relative;
    cursor: pointer;
    background: none;
    z-index: 999;
    display: inline-block; }

/* ícone tipo "copyright" */
.tooltip-word::after {
    content: '';
    position: absolute;
    line-height: 0.1rem;
    top: -0.1rem;
    right: -1rem;
    width: 12px;
    height: 12px;
    background-repeat: no-repeat;
    background-size: contain; }
.tooltip-word[data-tamanho="menor"] {
    background:
      linear-gradient(
        to top,
        #DEEDF2 35%,
        transparent 45%
      ); }
/* tamanho do ícone */
.tooltip-word[data-tamanho="menor"]::after {
    background-image: url('../images/tooltip-menor.png'); }

.tooltip-word[data-tamanho="maior"]::after {
    background-image: url('../images/tooltip-maior.png');
    width: 16px;
    height: 16px; }

/* caixa da tooltip */
.tooltip-word::before {
    content: attr(data-texto);
    position: absolute;
    display: block;
    box-sizing: border-box;
    width: max-content;
    max-width: 50rem;
    white-space: normal;
    opacity: 0;
    /*pointer-events: none;*/
    transition: opacity 0.2s ease, transform 0.2s ease;
    background: #C3DEE7;
    border: 2px solid #EC0000;
    border-radius: 1.5rem;
    padding: 1.5rem;
    font-family: 'SantanderTI';
    text-align: center;
    color: #6F7779;
    line-height: 2.8rem;
    font-size: 1.8rem;
    z-index: 10000; }

/* ativa hover e mobile */
.tooltip-word:hover::before,
.tooltip-word:focus::before {
    opacity: 1; }

/* DIREÇÕES */

/* TOP */
.tooltip-word[data-direcao="top"]::before {
    bottom: calc(100% + 1rem);
    left: 50%;
    transform: translateX(-50%) translateY(5px); }

.tooltip-word[data-direcao="top"]:hover::before,
.tooltip-word[data-direcao="top"]:focus::before {
    transform: translateX(-50%) translateY(0); }

/* BOTTOM */
.tooltip-word[data-direcao="bottom"]::before {
    top: calc(100% + 1rem);
    left: 50%;
    transform: translateX(-50%) translateY(-5px); }

.tooltip-word[data-direcao="bottom"]:hover::before,
.tooltip-word[data-direcao="bottom"]:focus::before {
    transform: translateX(-50%) translateY(0); }

/* LEFT */
.tooltip-word[data-direcao="left"]::before {
    right: 2rem;
    top: 10%;
    transform: translateY(-50%) translateX(5px); }

.tooltip-word[data-direcao="left"]:hover::before,
.tooltip-word[data-direcao="left"]:focus::before {
    transform: translateY(-50%) translateX(0); }

/* RIGHT */
.tooltip-word[data-direcao="right"]::before {
    left: calc(100% + 1rem);
    top: 50%;
    transform: translateY(-50%) translateX(-5px); }

.tooltip-word[data-direcao="right"]:hover::before,
.tooltip-word[data-direcao="right"]:focus::before {
    transform: translateY(-50%) translateX(0); }

.impacto-emocional {
  position: relative; }

.feedback-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999; }

.hiddens {
    display: none !important; }

.feedback-box {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 28px;
    border-radius: 12px;
    max-width: 470px;
    text-align: left;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    border: 2px solid #000;
    color: #000 !important;
    font-family: 'SantanderTB'; }
.feedback-box p strong{
  font-size: 3.4rem;
  color: #000 !important; }
.feedback-box.ok {
    background-color: #c6dfc3dd;
    color: #000 !important; }
.feedback-box.erro {
    background-color: #ffccccdd;
    color: #000 !important; }

.cronograma-wrapper {
    position: relative; }
.cronograma{
  margin-top: 2rem;
  padding: 0; }
.cronograma li{
  font-family: 'SantanderTI';
  font-size: 2.2rem;
  display: flex;
  justify-content: flex-start;
  gap: 5px; }

.estilo-wrapper {
    position: relative; }
.estilo, .microacao{
  margin-top: 2rem;
  padding: 0; }
.estilo li, .microacao li{
  font-family: 'SantanderTI';
  font-size: 2.2rem;
  display: flex;
  justify-content: flex-start;
  gap: 5px; }

.feedback-cronograma {
    position: absolute;
    top: 70px;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 380px;
    padding: 1rem 2rem;
    border-radius: 8px;
    z-index: 10;
    text-align: center;
    font-size: 1.8rem; }

.feedback-cronograma img{
  position: absolute;
  top: -30px;
  left: -30px; }

.feedback-cronograma.ok {
    background: #458F33ee;
    border: 3px solid #17360E;
    color: #FFF !important; }

.feedback-cronograma.erro {
    background: #E23737dd;
    border: 2px solid #410E0E;
    color: #FFF !important; }
.feedback-cronograma.alerta {
    background: #E2CB37dd;
    border: 2px solid #816116;
    color: #000 !important; }

.feedback-cronograma p.titulo {
    font-family: 'SantanderTB';
    color: #fff !important;
    text-align: center;
    display: block;
    font-size: 2.2rem !important;
    margin-bottom: 6px; }

.feedback-estilo {
    position: absolute;
    top: 70px;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 380px;
    padding: 0.3rem 2rem;
    border-radius: 12px;
    z-index: 10;
    text-align: center;
    font-size: 1.8rem; }

.feedback-estilo img{
  position: absolute;
  top: -30px;
  left: -30px; }

.feedback-estilo.ok {
    background: #458F33ee;
    border: 3px solid #17360E;
    color: #FFF !important; }

.feedback-estilo.erro {
    background: #EC0000;
    border: 3px solid #990000;
    color: #FFF !important; }
.feedback-estilo.alerta {
    background: #E2CB37dd;
    border: 2px solid #816116;
    color: #000 !important; }

.feedback-estilo p.titulo {
    font-family: 'Santander' !important;
    color: #fff !important;
    text-align: center;
    display: block;
    padding: 0 !important;
    font-size: 2rem !important;
    margin-bottom: 3px; }

.sit-wrapper {
    position: relative; }

.feedback-sit {
    position: absolute;
    top: 100px;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 360px;
    padding: 1rem 2rem;
    border-radius: 8px;
    z-index: 10;
    text-align: center;
    font-size: 1.8rem; }

.feedback-sit img{
  position: absolute;
  top: 0px;
  right: -40px;
  width: 50px; }

.feedback-sit.ok {
    background: #277201ee;
    border: 2px solid #FFF;
    color: #FFF !important; }

.feedback-sit.erro {
    background: #EC0000DD;
    border: 2px solid #fff;
    color: #FFF !important; }

.feedback-sit p.titulo {
    font-family: 'SantanderHB';
    color: #fff !important;
    text-align: center;
    display: block;
    font-size: 2.2rem !important; }

.perg-wrapper {
    position: relative; }

.feedback-perg {
    position: absolute;
    top: 100px;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 360px;
    padding: 1rem 2rem;
    border-radius: 8px;
    z-index: 10;
    text-align: center;
    font-size: 1.8rem; }

.feedback-perg.ok {
    background: #277201ee;
    border: 2px solid #FFF;
    color: #FFF !important; }

.feedback-perg.erro {
    background: #6F7779DD;
    border: 2px solid #fff;
    color: #FFF !important; }

.feedback-perg p.titulo {
    font-family: 'SantanderHB';
    color: #fff !important;
    text-align: center;
    display: block;
    font-size: 2.2rem !important; }

.box-fala{
  position: relative;
  background-color: rgba(236,0,0,0.3);
  padding: 1rem 1rem 1rem 8rem;
  margin: 3rem auto;
  border-radius: 1rem;
  color: #000; }
.box-fala p{
  font-size: 2.3rem; }
.box-fala img{
  position: absolute;
  top: -2px;
  left: -70px;
  max-width: 145px; }
.box-fala img.cima{
  position: absolute;
  top: -32px;
  left: -70px;
  max-width: 145px; }
.box-fala .nome-fala{
  font-size: 1.6rem;
  font-weight: 600;
  font-style: normal !important;
  color: #eC0000 }

.radio li{
  width: 260px;
  font-size: 2.4rem; }

.controles .range{
  max-width: 400px;
  margin: 0 auto;
}

.controles input[type=range] {
  /*pointer-events: none;*/
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 4px;
  background: red;
  border-radius: 2px;
  outline: none;
  margin: 10px 0 5px; }

.controles input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #fff;
  border: 3px solid red;
  cursor: pointer; }

.controles input[type=range]::-moz-range-thumb {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #fff;
  border: 3px solid red;
  cursor: pointer; }

.range-labels span {
  user-select: none; }

.box-resposta {
  position: relative;
  margin: 40px auto 20px;
  padding: 12px 30px;
  border-radius: 10px;
  background: #C3DEE7;
  border: 5px solid #9BC3D3;
  color: #6b6b6b;
  width: fit-content;
  display: flex;
  align-items: center;
  justify-content: center; /* centra o texto */
  text-align: center;
  gap: 15px;
  font-style: italic; }

.box-resposta .texto {
    flex: 1;
}

.box-resposta .texto{
  color: #707070;
  font-family: 'SantanderTI';
  font-size: 2.4rem !important; }

.box-resposta.ativo {
  font-size: 3rem !important;
  font-family: 'SantanderTB' !important;
  background: #EC0000 !important;
  border: 5px solid #990000;
  color: #ffffff !important; }

.box-resposta.ativo .texto {
  font-size: 3rem !important;
  font-family: 'SantanderTB' !important;
  color: #ffffff !important; }

.box-resposta .reset {
  width: 35px;
  cursor: pointer;
  position: absolute;
  right: -20px; /* metade pra fora */
  top: 50%;
  transform: translateY(-50%); }

.alert-box {
  background-color: #e30613;
  border-radius: 12px;
  padding: 1rem 1rem 1rem 8rem;
  margin-top: 8rem;
  margin-bottom: 4rem;
  min-height: 90px; }

.icon-box {
  position: absolute;
  left: -40px;
  top: 10%;
  transform: translateY(-50%);
  color: #fff; }

.alert-box p {
  font-family: 'SantanderHB' !important;
  font-size: 2.6rem;
  line-height: 1.4; }

.sliders-wrapper {
  gap: 8rem; }

.ranger {
  width: 45%;
  text-align: center; }
.ranger h3{
  color: #000;
  text-align: center; }
.range-box {
  position: relative;
  margin: 2rem 0 1rem; }

.range-box input[type=range] {
  width: 100%;
  -webkit-appearance: none;
  appearance: none;
  height: 4px;
  background: red;
  border-radius: 2px; }

.range-box input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #fff;
  border: 3px solid red;
  cursor: pointer; }

.labels {
  font-size: 1.8rem;
  color: #000;
  display: flex;
  justify-content: space-between;
  font-style: italic; }

.resposta-box {
  max-width: 70%;
  margin: 3rem auto 0;
  background: #EC0000;
  border: 4px solid #990000;
  color: #fff;
  padding: 15px 25px;
  border-radius: 10px;
  font-size: 2rem;
  text-align: center; }

.resposta-box strong {
  display: block;
  font-size: 2.6rem; }

.resposta-inicial{
  max-width: 40%;
  margin:3rem auto 0;
  color: #707070;
  background-color: #C3DEE7;
  border: 4px solid #6F7779; }
.resposta-inicial p{
  text-align: center; }

.lista-wrapper{
  list-style: none;
  padding: 0;
  margin: 3rem 0 0; }

.lista-wrapper li{
  display: flex;
  justify-content: flex-start;
  padding-bottom: 1.5rem;
  padding-top: 1.5rem;
  border-bottom: 1px dashed #6F7779; }

.lista-wrapper li span:first-child{
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 1rem;
  font-family: 'SantanderTB';
  color: #EC0000;
  font-size: 2.4rem;
  width: 190px;
  text-align: left;
  flex-shrink: 1; }

.lista-wrapper li span:first-child img{
  display: block;
  margin: 0;
  width: 30px; }

.lista-wrapper li span:last-child{
  font-family: 'SantanderTI';
  font-size: 2rem;
  color: #000; }

.lista-wrapper li:last-child{
  border: none; }

.questionnaire-wrapper .questionnaire-item button{
  border: 2px solid #990000;
  background-color: #EC0000;
  font-size: 1.4rem;
  padding: 0.1rem 2rem;
  border-radius: 0.5rem;
  margin-top: 5px;
  float: left;
  color: #fff; }

.questionnaire-wrapper .questionnaire-item textarea {
  background-color: #fff;
  width: 100%;
  max-width: 100%;
  min-height: 150px;
  border: none;
  font-family: 'SantanderTI';
  font-size: 1.5rem;
  line-height: 2.5rem;
  display: flex;
  align-items: center;
  padding: 1rem;
  margin-top: 1rem;
  margin-bottom: 0;
  resize: none; }
.questionnaire-wrapper .questionnaire-item textarea:disabled {
  color: #fff;
  opacity: 1 !important;
  background-color: #fff !important;
  border: none;
  pointer-events: none !important; }
.questionnaire-wrapper .questionnaire-item textarea.ready {
  border-color: #2be242; }
.questionnaire-wrapper .questionnaire-item textarea::-webkit-input-placeholder {
  color: #6F7779; }
.questionnaire-wrapper .questionnaire-item textarea::-moz-placeholder {
  color: #6F7779; }
.questionnaire-wrapper .questionnaire-item textarea:-ms-input-placeholder {
  color: #6F7779; }
.questionnaire-wrapper .questionnaire-item textarea::-ms-input-placeholder {
  color: #6F7779; }
.questionnaire-wrapper .questionnaire-item textarea::placeholder {
  color: #6F7779; }
.questionnaire-wrapper .questionnaire-item .char-count {
  color: #6F7779;
  text-align: right;
  font-size: 1rem !important;
  margin-top: -2rem;
  pointer-events: none; }

.btn-gravar{
  width: 20rem;
  margin: 0 auto -4rem;
  border: none;
  padding: 0.5rem;
  background-color: #990000;
  border-radius: 12px; }
.btn-gravar button{
  width: 100%;
  font-family: 'SantanderHB';
  font-size: 2rem;
  color: #fff;
  text-align: center;
  background-color: #EC0000;
  border: 1px solid #fff;
  border-radius: 8px; }