:root {
  --blue_light: #1b89c8;
  --blue_medium: #1b89c8;
  --blue_dark: #176b9c;
  --blue_dark_2: #054587;

  --blue_dark_principal: #061d2a;
  --blue_dark_secondary: #000f18;
  --blue_dark_tertiary: #000e17;

  --yellow_light: #f0d69e;
  --yellow_medium: #f0d69e;
  --yellow_dark: #f0d69e;

  --white_color: #f8f8f8;
  --white_background: #ededed;

  --blue-light_01: #50a5ff;
  --blue-light_02: #2c79ca;
  --dark: #202020;

  --palette-yellow-01: #e9e7de;
  --palette-blue-03: #0b3c5d;
  --palette-brown-01: #3d1008;
  --palette-brown-02: #6b4943;
}

body {
  color: var(--white_color);
}

/* body::after {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-image: radial-gradient(at 20% 80%, #fff 1px, transparent 0px);
  background-size: 4px 4px;
  pointer-events: none !important;
  z-index: 9999;
  opacity: 0.05;
  mix-blend-mode: plus-lighter;
} */

img {
  -webkit-user-drag: none;
  -khtml-user-drag: none;
  -moz-user-drag: none;
  -o-user-drag: none;
  user-drag: none;
}

a:focus,
input:focus,
textarea:focus,
button:focus,
select:focus,
.btn:focus {
  outline: 0;
  border: 0;
  box-shadow: none;
}

a,
a:hover,
a:focus {
  color: var(--white_color);
  text-decoration: none;
}

/*===============================*/
/*        Scroll Lateral         */
/* Chrome, Edge e Safari */
body::-webkit-scrollbar {
  width: 5px;
  /*largura da barra*/
}

body::-webkit-scrollbar-track {
  background: #1c1c1c;
  /*cor do fundo*/
}

body::-webkit-scrollbar-thumb {
  background-color: #e7f2ff;
  /*cor do controle do scroll*/
  border-radius: 5px;
  /*arredondamento*/
  border: 0px solid #000000;
  /*borda*/
}

/* Firefox */
@-moz-document url-prefix() {
  * {
    scrollbar-width: 15px;
    scrollbar-color: #e7f2ff /*cor do controle do scroll*/ #000000;
    /*cor do fundo*/
    -moz-appearance: scrollbar;
  }
}

main {
  background-color: var(--palette-yellow-01);
}

.btn-gradient {
  color: var(--white_color);
  font-weight: bold;
  font-size: 18px;
  padding: 20px 30px;
  animation: 4s infinite textura;
  background-size: 200% 200%;
  transition: all 0.8s;
  border-radius: 0px;
  max-width: 480px;
  background: transparent;
}

.btn-gradient.blue {
  background-color: var(--blue-light_01);
  background: var(
    --G1-ONM,
    linear-gradient(
      259deg,
      var(--blue-light_01) 4.83%,
      var(--blue-light_01) 94.99%
    )
  );
  font-family: "Outfit", Sans-serif;
  font-size: 18px;
  font-weight: 700;
  fill: #ffffff;
  color: #ffffff;
  border-radius: 1000px 1000px 1000px 1000px;
  padding: 15px 40px 15px 40px;
  border: 0;
  text-transform: uppercase;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  filter: drop-shadow(0 4px 40px var(--blue-light_01));
  transition: all 0.3s ease;
}

.btn-gradient.orange {
  background: var(
    --G1-ONM,
    linear-gradient(259deg, #c16c24 4.83%, #e59530 94.99%)
  );
  font-family: "Outfit", Sans-serif;
  font-size: 24px;
  font-weight: 700;
  fill: #ffffff;
  color: #ffffff;
  border-radius: 1000px 1000px 1000px 1000px;
  padding: 15px 40px 15px 40px;
  border: 0;
  text-transform: uppercase;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  filter: drop-shadow(0 4px 40px #e59530);
  transition: all 0.3s ease;
}

.btn-gradient.blue:hover::before,
.btn-gradient.yellow:hover::before,
.btn-gradient.orange:hover::before {
  animation: brilho 0.8s linear;
}

.btn-gradient.blue:hover,
.btn-gradient.orange:hover {
  transform: scale(1.1);
}

.background-header {
  display: block;
  background-size: cover;
  background-position: bottom center;
  background-repeat: no-repeat;
  background-color: var(--palette-yellow-01);
  font-family: "Outfit", serif;
  position: relative;
  overflow: hidden;
}

.background-header::before {
  content: "";
  position: absolute;
  width: 70%;
  height: 70%;
  border-radius: 100%;
  background: #c9a286d9;
  filter: blur(200px);
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
}

.background-header .background-cover {
  position: relative;
  width: 100%;
  min-height: calc(70vh);
  background-color: transparent;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 50px 0 100px 0;
}

.background-header .background-cover .image {
  max-width: 600px;
  margin: 0 auto;
}

.background-header .background-cover .image img {
  width: 100%;
  display: block;
}

.background-header .background-cover .logo {
  max-width: 400px;
  margin: 0 auto;
}

.background-header .background-cover .logo img {
  width: 100%;
  display: block;
}

.background-header .background-cover .logo .title {
  font-family: "Merriweather", serif;
  background-color: white;
  background-image: linear-gradient(
    220deg,
    var(--palette-brown-01),
    var(--palette-brown-02)
  );
  background-size: 100%;
  background-repeat: repeat;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 900;
  font-size: 56px;
  text-align: center;
  text-transform: uppercase;
}

.background-header .background-cover .header .title {
  font-size: 64px;
  font-family: "Poppins", serif;
  color: var(--blue-light_02);
  background-color: var(--blue-light_02);
  background-image: linear-gradient(
    45deg,
    var(--blue-light_01),
    var(--blue-light_02)
  );
  background-size: 100%;
  background-repeat: repeat;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 800;
}

.background-header .background-cover .description .title {
  position: relative;
  display: block;
  background: linear-gradient(
    100deg,
    var(--blue-light_01),
    var(--blue-light_02)
  );
  padding: 5px 14px;
  font-weight: 700;
  width: fit-content;
  border-radius: 5px;
  color: var(--blue-background-01);
  -webkit-text-fill-color: var(--blue-background-01);
  font-family: "Poppins", serif;
  font-size: 22px;
}

.background-header .background-cover .description {
  margin-bottom: 30px;
}

.background-header .background-cover .subtitle {
  margin-top: 15px;
  color: #3d1008b5;
  font-weight: 800;
  font-size: 32px;
  text-align: center;
  max-width: 930px;
  margin-left: auto;
  margin-right: auto;
  font-family: "Merriweather", sans-serif;
  font-style: italic;
}

.background-header .background-cover .description .text {
  margin-top: 15px;
  color: #e9e7dede;
  font-weight: 700;
  font-size: 25px;
  text-align: center;
  max-width: 930px;
  margin-left: auto;
  margin-right: auto;
  font-family: "Merriweather", sans-serif;
}

.background-header .background-cover .description .text b {
  font-weight: 900;
  background-color: white;
  background-image: linear-gradient(220deg, #d3a569, #f7c685);
  background-size: 100%;
  background-repeat: repeat;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
/* 
.background-header .background-cover .divider {
  max-width: 500px;
  width: 100%;
  height: 2px;
  border-top: 2px dashed var(--palette-brown-02);
  margin: auto;
} */

.background-header .background-cover .bottom {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.background-header .background-cover .bottom .temperaments {
  font-size: 24px;
  color: var(--palette-yellow-01);
  font-weight: 400;
  text-align: center;
  border: 1px dashed var(--palette-yellow-01);
  border-radius: 20px;
  padding: 20px;
  letter-spacing: -1px;
}

.much-beyond-the-four-temperaments {
  display: block;
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-position: bottom center;
  background-repeat: no-repeat;
  background-color: #25150b;
  font-family: "Outfit", serif;
}

.much-beyond-the-four-temperaments:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(at 20% 80%, #fff 1px, transparent 0px);
  background-size: 4px 4px;
  pointer-events: none !important;
  z-index: 100;
  opacity: 0.05;
  mix-blend-mode: plus-lighter;
}

.much-beyond-the-four-temperaments::before {
  content: "";
  position: absolute;
  width: 70%;
  height: 70%;
  border-radius: 100%;
  background: #8b6041;
  filter: blur(200px);
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
}

.much-beyond-the-four-temperaments .background-cover {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 100px 0 75px 0;
}

.much-beyond-the-four-temperaments .background-cover .content .text {
  margin-top: 15px;
  color: #efefef;
  font-weight: 200;
  font-size: 24px;
  text-align: center;
}

.much-beyond-the-four-temperaments .background-cover .content .text b {
  background-color: white;
  background-image: linear-gradient(220deg, #db8d4a, #f7c685);
  background-size: 100%;
  background-repeat: repeat;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 700;
}

.much-beyond-the-four-temperaments .background-cover .factors {
  margin-top: 25px;
}

.much-beyond-the-four-temperaments .background-cover .factors .title {
  font-family: "Playfair Display", serif;
  background-color: white;
  background-image: linear-gradient(220deg, #db8d4a, #f7c685);
  background-size: 100%;
  background-repeat: repeat;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 700;
  font-size: 40px;
  text-align: center;
  font-style: italic;
  line-height: normal;
}

.much-beyond-the-four-temperaments .background-cover .factors .title b {
  font-weight: 900;
}

.much-beyond-the-four-temperaments .background-cover .factors .cards .box {
  border-radius: 15px;
  border: 0.5px solid var(--Gradient, var(--palette-yellow-01));
  padding: 10px 40px 10px 40px;
  color: var(--palette-yellow-01);
  text-align: left;
  font-family: "Playfair Display", serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  position: relative;
  min-height: 150px;
  display: flex;
  justify-content: center;
  align-items: center;
  backdrop-filter: blur(10px);
  margin-top: 20px;
}

.much-beyond-the-four-temperaments .background-cover .factors .cards {
  counter-reset: boxcount;
}

.much-beyond-the-four-temperaments
  .background-cover
  .factors
  .cards
  .box:before {
  content: "" counter(boxcount);
  position: absolute;
  counter-increment: boxcount;
  top: 50%;
  left: -25px;
  transform: translateY(-50%);
  outline: 0.35px solid var(--palette-yellow-01);
  border-radius: 31.5px;
  background: var(--palette-yellow-01);
  outline-offset: 4px;
  padding: 10px 10px;
  width: 45px;
  height: 45px;
  color: var(--palette-brown-01);
  line-height: 12px;
  font-weight: 700;
  text-align: center;
  font-size: 40px;
}

.much-beyond-the-four-temperaments .background-cover .content {
  margin-top: 30px;
  margin-bottom: 30px;
  padding: 30px;
  /* background: #2020205c; */
  border: 2px dashed var(--palette-brown-02);
  border-radius: 20px;
}

.much-beyond-the-four-temperaments .background-cover .content .topics {
  font-size: 24px;
  font-family: "Playfair Display", serif;
  color: var(--palette-yellow-01);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  font-weight: 200;
}

.much-beyond-the-four-temperaments .background-cover .bottom {
  display: flex;
  justify-content: center;
  align-items: center;
}

.balance {
  position: relative;
  height: 0;
}

.balance img {
  position: absolute;
  height: 200px;
  z-index: 100;
  left: 50%;
  transform: translateX(-50%);
  top: -75px;
}

.comprehension {
  display: block;
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-position: bottom center;
  background-repeat: no-repeat;
  background-color: #25150b;
  font-family: "Outfit", serif;
}

.comprehension:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(at 20% 80%, #fff 1px, transparent 0px);
  background-size: 4px 4px;
  pointer-events: none !important;
  z-index: 100;
  opacity: 0.05;
  mix-blend-mode: plus-lighter;
}

.comprehension::before {
  content: "";
  position: absolute;
  width: 70%;
  height: 70%;
  border-radius: 100%;
  background: #8b6041;
  filter: blur(200px);
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
}

.comprehension .background-cover {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 100px 0 50px 0;
}

.comprehension .background-cover .content {
  margin-top: 25px;
}

.comprehension .background-cover .content .text {
  margin-top: 15px;
  color: #efefef;
  font-weight: 200;
  font-size: 24px;
  text-align: center;
}

.comprehension .background-cover .content .text b {
  background-color: white;
  background-image: linear-gradient(220deg, #db8d4a, #f7c685);
  background-size: 100%;
  background-repeat: repeat;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 700;
}

.comprehension .background-cover .content .title {
  font-family: "Merriweather", serif;
  background-color: white;
  background-image: linear-gradient(220deg, #db8d4a, #f7c685);
  background-size: 100%;
  background-repeat: repeat;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 700;
  font-size: 32px;
  text-align: center;
  font-style: italic;
  line-height: normal;
}

.comprehension .background-cover .content .title b {
  font-weight: 900;
}

.comprehension .background-cover .box {
  padding: 25px;
  background: #00000040;
  border-radius: 15px;
  border: 1px solid var(--palette-brown-02);
  z-index: 150;
  color: var(--palette-yellow-01);
  font-weight: 600;
  font-size: 18px;
  text-align: justify;
  font-family: "Outfit", serif;
  margin-top: 25px;
  letter-spacing: 2px;
}

.comprehension .background-cover .subtitle {
  font-family: "Merriweather", serif;
  background-color: white;
  background-image: linear-gradient(220deg, #db8d4a, #f7c685);
  background-size: 100%;
  background-repeat: repeat;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 700;
  font-size: 24px;
  text-align: center;
  font-style: italic;
  line-height: normal;
  margin-top: 25px;
  max-width: 850px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 15px;
  padding-right: 15px;
}

.analysis {
  display: block;
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
  /* background-color: var(--palette-yellow-01); */
  font-family: "Outfit", serif;
  position: relative;
  overflow: hidden;
}

.analysis .background-cover {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 50px 0 50px 0;
}

.analysis .background-cover .box {
  position: absolute;
  padding: 25px;
  background: var(--palette-yellow-01);
  border-radius: 15px;
  border: 1px solid var(--palette-brown-02);
  z-index: 150;
  color: var(--palette-brown-01);
  font-weight: 300;
  font-size: 20px;
  text-align: left;
  font-family: "Outfit", serif;
}

.analysis .background-cover .title {
  font-family: "Outfit", serif;
  background-color: white;
  background-image: linear-gradient(220deg, #3d372f, #574f45);
  background-size: 100%;
  background-repeat: repeat;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 900;
  font-size: 36px;
  text-align: center;
  /* font-style: italic; */
  line-height: normal;
}

.analysis .background-cover .content {
  margin-top: 25px;
  font-family: "Outfit", serif;
  font-weight: 300;
  font-size: 22px;
  text-align: center;
  line-height: normal;
  color: #3d372f;
  margin-bottom: 25px;
}

.analysis .background-cover .divider {
  height: 2px;
  width: 100%;
  background: #898681;
  margin-top: 15px;
  margin-bottom: 15px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.analysis .background-cover .bottom {
  margin-top: 25px;
  font-family: "Merriweather", serif;
  font-weight: 800;
  font-size: 24px;
  text-align: center;
  line-height: normal;
  color: #3d372f;
  font-style: italic;
}

.analysis .background-cover .card-receive {
  background: var(--palette-yellow-01);
  border-radius: 15px;
  margin-top: 50px;
}

.analysis .background-cover .card-receive .receive-title {
  font-family: "Merriweather", serif;
  background-color: white;
  background-image: linear-gradient(220deg, #3d372f, #574f45);
  background-size: 100%;
  background-repeat: repeat;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 900;
  font-size: 36px;
  text-align: left;
}

.analysis .background-cover .card-receive .receive-topics {
  font-weight: 300;
  font-size: 20px;
  text-align: left;
  font-family: "Outfit", serif;
  margin-top: 15px;
  letter-spacing: 0px;
  color: #2b2722;
  position: relative;
}

.analysis .background-cover .card-receive .receive-topics .topic {
  display: flex;
  align-items: center;
  justify-content: left;
  position: relative;
  margin-top: 15px;
}

.analysis .background-cover .card-receive .receive-topics .topic i {
  font-size: 16px;
  background-color: #3d372f;
  text-align: left;
  margin-right: 15px;
  color: var(--palette-yellow-01);
  padding: 3px 4px;
  border-radius: 5px;
}

.analysis .background-cover .card-receive .receive-topics {
  counter-reset: boxcount;
}

.analysis .background-cover .card-receive .image {
  display: block;
  width: 100%;
  height: 100%;
}

.analysis .background-cover .card-receive .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-top-left-radius: 15px;
  border-bottom-left-radius: 15px;
}

.analysis .background-cover .reason {
  margin-top: 25px;
}

.analysis .background-cover .reason .reason-subtitle {
  font-family: "Merriweather", serif;
  background-color: white;
  background-image: linear-gradient(220deg, #3d372f, #574f45);
  background-size: 100%;
  background-repeat: repeat;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 900;
  font-size: 32px;
  text-align: center;
}

.analysis .background-cover .reason .reason-subtext {
  font-weight: 300;
  font-size: 20px;
  text-align: left;
  font-family: "Outfit", serif;
  margin-top: 10px;
  letter-spacing: 0px;
  color: #2b2722;
  position: relative;
}

.analysis .background-cover .reason .fa-quote-left {
  font-size: 50px;
  color: #3d372f;
  width: 100%;
  text-align: left;
}

.analysis .background-cover .reason .fa-quote-right {
  font-size: 50px;
  color: #3d372f;
  width: 100%;
  text-align: right;
}

.reflexion {
  display: block;
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
  padding: 25px 0;
  background: #0e0e0e;
  background-image: radial-gradient(
    circle at top center,
    /* posição do centro do gradiente */ #ffffff17 0%,
    /* amarelo forte no centro */ #ffffff0d 30%,
    /* amarelo mais fraco */ rgba(0, 0, 0, 0.514) 100% /* escurece no final */
  );
  font-family: "Outfit", serif;
  position: relative;
}

.reflexion .background-cover {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 50px 0 50px 0;
}

.banner-professor {
  display: block;
  background-position: top center;
  background-size: cover;
  background-repeat: no-repeat;
}

.banner-professor .banner-shadow {
  position: relative;
  padding: 75px 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.banner-professor .banner-shadow .content .title {
  font-family: "Merriweather", serif;
  color: var(--text-white-01);
  background-color: white;
  background-image: linear-gradient(220deg, #db8d4a, #f7c685);
  background-size: 100%;
  background-repeat: repeat;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 900;
  font-size: 32px;
}

.banner-professor .banner-shadow .content .text {
  font-size: 20px;
  line-height: normal;
  font-weight: 200;
  color: var(--text-white-01);
  text-align: justify;
}

.banner-professor .banner-shadow .content .text span {
  display: block;
  font-weight: 700;
  color: var(--text-yellow-01);
  margin-top: 20px;
  font-size: 20px;
  margin-bottom: 10px;
}

.cart {
  display: block;
}

.cart .background-cover {
  position: relative;
  padding: 50px 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.cart .background-cover .cart-image {
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
}

.cart .background-cover .cart-image img {
  position: relative;
  display: block;
  width: 100%;
  z-index: 30;
}

.cart .background-cover .cart-content {
  position: relative;
  z-index: 35;
  max-width: 550px;
  margin: 0 auto;
  margin-top: -80px;
  background: #0e0e0e;
  background-image: radial-gradient(
    circle at top center,
    /* posição do centro do gradiente */ #ffffff17 0%,
    /* amarelo forte no centro */ #ffffff0d 30%,
    /* amarelo mais fraco */ rgba(0, 0, 0, 0.514) 100% /* escurece no final */
  );
}

.cart .background-cover .cart-content .title {
  font-family: "Outfit", serif;
  color: var(--text-white-01);
  background: #db8d4a;
  font-weight: 900;
  font-size: 32px;
  width: 100%;
  padding: 15px;
  text-align: center;
}

.cart .background-cover .cart-content .card-topics {
  font-family: "Outfit", serif;
  color: var(--text-white-01);
  padding: 35px 25px;
  text-align: center;
  font-size: 24px;
}

.cart .background-cover .cart-content .card-topics span.topic {
  display: block;
  margin-top: 15px;
}

.cart .background-cover .cart-content .card-topics span.topic span.price {
  display: block;
  font-family: "Merriweather", serif;
  color: var(--card-topics-white-01);
  background-color: white;
  background-image: linear-gradient(220deg, #db8d4a, #f7c685);
  background-size: 100%;
  background-repeat: repeat;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 900;
  font-size: 36px;
}

.cart .background-cover .cart-content .card-topics span.topic span.price b {
  font-family: "Merriweather", serif;
  color: var(--text-white-01);
  background-color: white;
  background-image: linear-gradient(220deg, #db8d4a, #f7c685);
  background-size: 100%;
  background-repeat: repeat;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 900;
  font-size: 72px;
}

.cart .background-cover .cart-content .cta {
  width: 100%;
  padding-bottom: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
}

#trajectoryMarcello .modal-dialog {
  max-width: 700px;
}

#trajectoryMarcello .modal-content {
  background-color: #0000006b;
  backdrop-filter: blur(20px);
  border-radius: 15px;
  padding: 10px 25px;
}

#trajectoryMarcello .modal-header {
  border-bottom: none;
  color: #ffffff;
}

#trajectoryMarcello .btn-close {
  box-sizing: content-box;
  width: 1em;
  height: 1em;
  padding: 0.25em 0.25em;
  color: #ffffff;
  filter: invert(1);
}

.modal-open {
  padding-right: 0 !important;
}

.modal-body::-webkit-scrollbar {
  width: 8px;
}

.modal-body::-webkit-scrollbar-thumb {
  background-color: #cfcfcf; /* cor do scroll */
  border-radius: 8px;
}

.modal-body::-webkit-scrollbar-track {
  background-color: transparent;
}
.btn-close:focus {
  box-shadow: none;
}

#trajectoryMarcello .item {
  display: flex;
  flex-direction: row;

  justify-content: left;
  align-items: center;

  padding-left: 20px;
  border-style: solid;
  border-width: 0 0 0 1px;
  border-color: #ffffff;
  color: #ffffff;
  font-weight: 500;

  margin-bottom: 15px;
}

#trajectoryMarcello .item i {
  display: none;
  font-size: 28px;
  color: #ffffff;
  padding-right: 25px;
}

#trajectoryMarcello .item span {
  font-size: 14px;
  font-weight: 400;
  color: #ffffff;
  opacity: 0.96;
}

.about-questionary {
  display: block;
  background-size: cover;
  background-position: bottom center;
  background-repeat: no-repeat;
  background-color: #0e0e0e;
  position: relative;
  overflow: hidden;
}

.about-questionary::before {
  content: "";
  position: absolute;
  width: 70%;
  height: 70%;
  border-radius: 100%;
  background: #a97048;
  filter: blur(200px);
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
}

.about-questionary .background-cover {
  position: relative;
  width: 100%;
  background-color: transparent;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 50px 0 75px 0;
}

.about-questionary .background-cover .content .topics {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  font-family: "Outfit", serif;
  color: var(--palette-yellow-01);
  font-weight: 300;
}

#modalCadastro,
#modalQuestions {
  font-family: "Poppins", sans-serif;
}

#modalCadastro .modal-header {
  border-bottom: none;
  color: #202020;
  margin-top: 15px;
}

#modalCadastro .modal-content {
  background-color: var(--palette-yellow-01);
  backdrop-filter: blur(20px);
  border-radius: 15px;
  padding: 10px 25px;
  border: 1px solid var(--palette-brown-02);
}

#modalQuestions .modal-header {
  border-bottom: none;
  color: #f8f8f8;
  margin-top: 15px;
}

#modalQuestions .modal-content {
  background-color: var(--palette-yellow-01);
  backdrop-filter: blur(20px);
  border-radius: 15px;
  padding: 10px 25px;
  border: 1px solid var(--palette-brown-02);
}

#modalQuestions .btn-close {
  filter: invert(1);
}

#modalQuestions .formulario {
  padding: 0 0 10px 0;
}

#modalCadastro .formulario-hidden,
#modalQuestions .formulario-hidden {
  display: none;
}

#modalCadastro .formulario input,
#modalCadastro .formulario textarea,
#modalQuestions .formulario input,
#modalQuestions .formulario textarea {
  padding: 10px 10px;
  width: 100%;
  font-size: 14px;
  background: #ffffff;
  border: none;
  color: #101010;
  font-weight: 400;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  border-bottom-left-radius: 10px;
  display: block;
}

#modalCadastro .formulario input.error,
#modalCadastro .formulario textarea.error,
#modalQuestions .formulario input.error,
#modalQuestions .formulario textarea.error {
  border: 1px solid #dc354552;
  background-color: #fff5f5;
}

#modalCadastro .formulario select,
#modalQuestions .formulario select {
  padding: 10px 10px;
  width: 100%;
  font-size: 14px;
  background: #ffffff;
  border: none;
  color: #101010;
  font-weight: 400;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  border-bottom-left-radius: 10px;
  display: block;
}

#modalCadastro .formulario select.error,
#modalQuestions .formulario select.error {
  border: 1px solid #dc354552;
  background-color: #fff5f5;
}

#modalCadastro .formulario .iti,
#modalQuestions .formulario .iti {
  width: 100%;
}

#modalCadastro .formulario .iti__country-list,
#modalQuestions .formulario .iti__country-list {
  z-index: 200 !important;
}

#modalCadastro .formulario .iti__flag-box,
#modalQuestions .formulario .iti__flag-box,
.iti__country-name {
  color: var(--dark);
}

#modalCadastro .formulario .iti__selected-flag,
#modalQuestions .formulario .iti__selected-flag {
  height: 42px !important;
  border-bottom-left-radius: 10px;
}

#modalCadastro .formulario .iti,
#modalQuestions .formulario .iti {
  width: 100%;
}

#modalCadastro .formulario p,
#modalQuestions .formulario p {
  font-size: 14px;
  color: #101010;
  font-weight: 300;
  margin-bottom: -5px;
  text-transform: uppercase;
  background: var(--palette-brown-01);
  width: fit-content;
  padding: 0 5px;
  border-radius: 5px;
  font-weight: 700;
  color: var(--text-white-01);
  z-index: 10;
  position: relative;
}

#modalCadastro .form-group,
#modalQuestions .form-group {
  margin-bottom: 20px;
  display: block;
}

#modalCadastro .formulario input:disabled,
#modalCadastro .formulario textarea:disabled,
#modalQuestions .formulario input:disabled,
#modalQuestions .formulario textarea:disabled {
  opacity: 0.5;
}

#modalCadastro .formulario textarea,
#modalQuestions .formulario textarea {
  height: 100px;
  resize: none;
}

#modalCadastro .formulario .label-float,
#modalQuestions .formulario .label-float {
  position: relative;
}

#modalCadastro .formulario .label-float p,
#modalQuestions .formulario .label-float p {
  position: absolute;
  top: -15px;
  left: 10px;
  font-size: 12px;
  text-transform: uppercase;
  font-weight: bold;
  text-align: left;
  margin-bottom: -15px;
  background-image: linear-gradient(
    to right top,
    var(--green_dark_1),
    var(--green_light_1)
  );
  width: fit-content;
  padding: 3px 10px;
  z-index: 15;
  border-radius: 5px;
  color: var(--white);
  transition: 0.2s ease all;
  box-shadow: 0px 0px 30px -8px var(--green_light_1);
}

#modalCadastro .formulario input:focus,
#modalCadastro .formulario textarea:focus,
#modalQuestions .formulario input:focus,
#modalQuestions .formulario textarea:focus {
  box-shadow: 0px 5px 50px -15px #202020;
}

#modalCadastro .formulario input:focus ~ p,
#modalCadastro .formulario textarea:focus ~ p,
#modalQuestions .formulario input:focus ~ p,
#modalQuestions .formulario textarea:focus ~ p {
  top: -18px;
  box-shadow: 0px 5px 20px -5px var(--blue-light_01);
}

#modalCadastro .formulario input#field_phone,
#modalQuestions .formulario input#field_phone {
  padding-left: 50px;
}

#modalCadastro .formulario label.error,
#modalQuestions .formulario label.error {
  font-size: 12px;
  margin-top: 5px;
  margin-bottom: 5px;
  text-align: left;
  width: 100%;
  color: #dc3545;
  font-weight: 600;
  display: block;
  background-color: #f8d7da;
  padding: 8px 10px;
  border-left: 3px solid #dc3545;
  border-radius: 4px;
  flex-shrink: initial;
}

#modalQuestions .formulario label.error {
  margin: 5px 12px;
}

#modalCadastro .formulario button:disabled,
#modalQuestions .formulario button:disabled {
  cursor: not-allowed;
  opacity: 0.5;
}

#modalCadastro .btn-close,
#modalQuestions .btn-close {
  box-sizing: content-box;
  width: 1em;
  height: 1em;
  padding: 0.25em 0.25em;
}

#modalCadastro .btn-close:focus,
#modalQuestions .btn-close:focus {
  box-shadow: none;
}

#modalCadastro .formulario .btn-form,
#modalQuestions .formulario .btn-form {
  padding: 20px;
  color: var(--text-white-01);
  font-weight: 700;
  border-radius: 15px;
  border: none;
  transition: 0.5s ease all;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

#modalCadastro .formulario .btn-form i,
#modalQuestions .formulario .btn-form i {
  transform: scale(0.8);
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* #modalCadastro .formulario .btn-form:hover,
#modalCadastro .formulario .btn-form:focus,
#modalQuestions .formulario .btn-form:hover,
#modalQuestions .formulario .btn-form:focus {
  filter: brightness(1.2);
} */

#modalQuestions .information {
  color: var(--palette-brown-01);
  font-family: "Outfit", sans-serif;
  font-size: 20px;
  font-weight: 300;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 15px;
}

.modal-backdrop {
  background-color: #00000096;
  backdrop-filter: blur(5px);
}

.modal-backdrop.show {
  opacity: 1;
}

.form-check-input {
  position: absolute;
  opacity: 0;
}

/* Estilo do card */
.option-card {
  background-color: #e5dfd6;
  border: 1px solid #bbb8b4;
  border-radius: 10px;
  padding: 15px 20px;
  cursor: pointer;
  transition: all 0.2s ease;
  color: var(--palette-brown-01);
  width: 100%;
}
/* Styles for the dynamically injected diagnosis modal to match existing modals */
#modalDiagnosis {
  font-family: "Poppins", sans-serif;
}

#modalDiagnosis .modal-header {
  border-bottom: none;
  color: #202020;
  margin-top: 15px;
}

#modalDiagnosis .modal-content {
  background-color: #ffffffef;
  backdrop-filter: blur(20px);
  border-radius: 15px;
  padding: 10px 25px;
  border: 1px solid #ffdf804a;
}

#modalDiagnosis .btn-close {
  box-sizing: content-box;
  width: 1em;
  height: 1em;
  padding: 0.25em 0.25em;
  filter: invert(1);
}

#modalDiagnosis .formulario {
  padding: 0 0 10px 0;
}

#modalDiagnosis .formulario .btn-form {
  padding: 20px;
  background: #4c95e2;
  color: var(--text-white-01);
  font-weight: 700;
  border-radius: 15px;
  border: none;
  transition: 0.5s ease all;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

#modalDiagnosis .formulario .btn-form i {
  transform: scale(0.8);
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

#modalDiagnosis .formulario .btn-form:hover,
#modalDiagnosis .formulario .btn-form:focus {
  filter: brightness(1.2);
}

#modalDiagnosis .diagnosis-character-image {
  display: flex;
  justify-content: left;
  align-items: center;
}

/* Hover */
.option-card:hover {
  border-color: var(--palette-brown-02);
  background-color: #e5dfd6;
}

/* Quando selecionado */
.form-check-input:checked + .option-card {
  border-color: var(--palette-brown-02);
  background-color: #e5dfd6;
  transform: translateX(5px);
}

.form-check-input:checked + .option-card .option-badge {
  background-color: var(--palette-brown-02);
  color: var(--palette-yellow-01);
}

/* Error state para cards */
.form-check-input:invalid + .option-card {
  border: 2px solid #dc3545;
  background-color: #3d1f1f;
}

.form-check-input:invalid + .option-card .option-badge {
  background-color: #cdcdcd;
}

/* Badge da letra */
.option-badge {
  background-color: #efede2;
  border-radius: 6px;
  padding: 4px 10px;
  font-weight: bold;
  margin-right: 10px;
}

footer {
  color: var(--text-white-01);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 25px 0;
  background: #0e0e0e;
  background-image: radial-gradient(
    circle at top center,
    /* posição do centro do gradiente */ #ffffff17 0%,
    /* amarelo forte no centro */ #ffffff0d 30%,
    /* amarelo mais fraco */ rgba(0, 0, 0, 0.514) 100% /* escurece no final */
  );
  border-top: 1px solid #ffffff1a;
}

footer h3 {
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
}

footer h4 {
  font-size: 12px;
  text-align: center;
  text-transform: uppercase;
}

footer .logo {
  display: flex;
  justify-content: center;
  align-items: center;
}

footer .logo img {
  max-width: 150px;
}

footer .links {
  display: flex;
  justify-content: center;
  align-items: center;
}

footer .links li {
  text-align: center;
}

footer .links a {
  color: var(--text-white-01);
  font-weight: 300;
  font-size: 14px;
}

footer .content {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  color: var(--text-white-01);
}

footer .social-title {
  margin-top: 15px;
}

footer .social-title h4 {
  font-size: 11px;
  margin-bottom: 5px;
  font-weight: 400;
  text-transform: uppercase;
}

footer .social {
  display: flex;
  flex-direction: row;
  width: 100%;
  justify-content: space-evenly;
  margin-top: 5px;
  min-width: 200px;
  max-width: 225px;
}

footer .social a {
  transition: 0.3s ease all;
}

footer .social a:hover {
  transform: translateY(-3px);
}

footer .social a .social-button {
  width: 40px;
  height: 40px;
  color: var(--text-white-01);
  border-radius: 50px;
}

footer .social a .social-button .icon-content {
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

footer .social a .social-button .icon-content i {
  transition: 0s;
  color: var(--text-white-01);
  text-align: center;
  font-size: 24px;
}

/* ================================= */
/* Multi-Step Form Styles           */
/* ================================= */

.form-progress {
  width: 100%;
  padding: 20px 0;
}

.progress-indicator {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
}

.progress-step {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #e0e0e0;
  color: #666;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  font-size: 14px;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  cursor: pointer;
  position: relative;
  z-index: 2;
}

.progress-step.active {
  background: linear-gradient(
    135deg,
    var(--palette-brown-01),
    var(--palette-brown-02)
  );
  color: #fff;
  box-shadow: 0 4px 15px rgb(111 55 28 / 40%);
  transform: scale(1.1);
}

.progress-step.completed {
  background: #75a774;
  color: #fff;
}

.progress-line {
  width: 40px;
  height: 2px;
  background: #e0e0e0;
  position: relative;
  margin: 0 -15px;
  z-index: 1;
}

.progress-line.active {
  background: #75a774;
}

/* Form Steps */
.form-step {
  display: none;
  animation: fadeInStep 0.5s ease-in-out;
}

.form-step.active {
  display: block;
}

.form-step .text-question {
  font-size: 16px;
  color: #202020;
  margin-bottom: 10px;
  font-weight: 500;
}

@keyframes fadeInStep {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.step-header {
  margin-bottom: 30px;
  text-align: center;
  padding-bottom: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

#modalDiagnosis .step-header {
  padding: 0 15px;
  padding-bottom: 20px;
}

.step-header h3 {
  font-size: 24px;
  color: var(--palette-brown-01);
  font-weight: 700;
  margin-bottom: 0;
  padding-top: 5px;
  font-family: "Outfit", sans-serif;
}

.step-header p {
  font-size: 14px;
  font-weight: 300;
  margin-bottom: -5px;
  text-transform: uppercase;
  background: var(--palette-brown-01);
  width: fit-content;
  padding: 0 5px;
  border-radius: 5px;
  font-weight: 700;
  color: var(--text-white-01);
  z-index: 10;
  position: relative;
}

/* Summary Container */
.summary-container {
  background: #f9f9f9;
  border-radius: 10px;
  padding: 25px;
  max-height: 500px;
  overflow-y: auto;
}

.summary-section {
  margin-bottom: 25px;
}

.summary-section:last-child {
  margin-bottom: 0;
}

.summary-section h4 {
  font-size: 14px;
  font-weight: 700;
  color: #4c95e2;
  text-transform: uppercase;
  margin-bottom: 15px;
  padding-bottom: 10px;
  border-bottom: 2px solid #4c95e2;
  letter-spacing: 0.5px;
}

.summary-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid #e0e0e0;
}

.summary-item:last-child {
  border-bottom: none;
}

.summary-item .label {
  font-size: 13px;
  font-weight: 600;
  color: #666;
  text-transform: uppercase;
}

.summary-item .value {
  font-size: 14px;
  font-weight: 500;
  color: #202020;
  text-align: right;
  max-width: 50%;
  word-break: break-word;
}

/* Confirmation Info */
.confirmation-info {
  background: linear-gradient(
    135deg,
    rgba(76, 175, 80, 0.1),
    rgba(76, 175, 80, 0.05)
  );
  border-left: 4px solid #4caf50;
  padding: 15px 20px;
  border-radius: 5px;
  display: flex;
  align-items: center;
  gap: 15px;
}

.confirmation-info i {
  color: #4caf50;
  font-size: 24px;
}

.confirmation-info p {
  margin: 0;
  font-size: 14px;
  color: #333;
  background: none;
  padding: 0;
  width: 100%;
}

/* Form Navigation */
.form-navigation {
  margin-top: 30px;
}

.form-navigation .col-md-6 {
  padding-left: 7.5px;
  padding-right: 7.5px;
}

#modalCadastro .btn-prev,
#modalCadastro .btn-next,
#modalQuestions .btn-prev,
#modalQuestions .btn-next {
  padding: 15px 20px !important;
  font-size: 13px !important;
  letter-spacing: 0.5px;
  font-weight: 700;
  transition: all 0.3s ease;
  border-radius: 10px !important;
}

#modalCadastro .btn-next,
#modalQuestions .btn-next {
  background: linear-gradient(
    135deg,
    #231715,
    var(--palette-brown-01)
  ) !important;
  color: #fff !important;
  box-shadow: 0 4px 15px #2b2b2b4d;
}

#modalCadastro .btn-next:hover:not(:disabled),
#modalQuestions .btn-next:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px #2b2b2b4d;
}

#modalCadastro .btn-prev,
#modalQuestions .btn-prev {
  background: #d6cec2 !important;
  color: #333 !important;
}

#modalCadastro .btn-prev:hover:not(:disabled),
#modalQuestions .btn-prev:hover:not(:disabled) {
  background: #d6cec2 !important;
  transform: translateY(-2px);
}

#modalCadastro .btn-form:disabled,
#modalQuestions .btn-form:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

/* Scrollbar para summary */
.summary-container::-webkit-scrollbar {
  width: 6px;
}

.summary-container::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 10px;
}

.summary-container::-webkit-scrollbar-thumb {
  background: #4c95e2;
  border-radius: 10px;
}

.summary-container::-webkit-scrollbar-thumb:hover {
  background: #2c79ca;
}

/* Responsivo */
@media (max-width: 768px) {
  .progress-step {
    width: 30px;
    height: 30px;
    font-size: 12px;
  }

  .progress-line {
    width: 30px;
    margin: 0 -10px;
  }

  .step-header h3 {
    font-size: 20px;
  }

  .form-navigation .col-md-6 {
    width: 100%;
    margin-bottom: 10px;
  }

  .form-navigation .col-md-6:last-child {
    margin-bottom: 0;
  }

  .summary-container {
    max-height: 400px;
  }
}

/* ================================= */
/* Diagnosis Modal Styles           */
/* ================================= */

#modalDiagnosis {
  font-family: "Poppins", sans-serif;
}

#modalDiagnosis .modal-header {
  border-bottom: none;
  color: #202020;
  margin-top: 15px;
}

#modalDiagnosis .modal-title {
  font-weight: 700;
  color: #202020;
  font-size: 18px;
}

#modalDiagnosis .modal-content {
  background-color: var(--palette-yellow-01);
  backdrop-filter: blur(20px);
  border-radius: 15px;
  padding: 10px 25px;
  border: 1px solid var(--palette-brown-02);
}

#modalDiagnosis .modal-body {
  padding: 20px 0px 5px 0;
}

#modalDiagnosis .modal-footer {
  padding: 20px 0;
}

.diagnosis-results {
  display: flex;
  flex-direction: column;
  gap: 25px;
  padding: 25px;
  border-radius: 20px;
  background: #d6cec2;
  margin-left: 15px;
  margin-right: 15px;
}

.diagnosis-dimensions {
  width: 100%;
}

.diagnosis-subtitle {
  font-size: 18px;
  font-weight: 700;
  color: #202020;
  margin: 0 0 15px 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.diagnosis-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
  font-family: "Outfit", sans-serif;
  font-size: 16px;
  color: var(--palette-brown-01);
  text-transform: uppercase;
  padding: 10px 10px 10px 20px;
  border-radius: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 5px;
  background: var(--palette-yellow-01);
  box-shadow: 0 10px 20px #2b2b2b26;
}

.diagnosis-item:last-child {
  border-bottom: none;
}

.diagnosis-item:hover {
  transform: translateX(5px);
}

.diagnosis-item:hover + .diagnosis-badge {
  font-weight: 700;
}

.diagnosis-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 14px;
  letter-spacing: -1px;
}

.badge-emotion {
  /* border: 1px solid #bbb8b4; */
  /* border-radius: 10px; */
  transition: all 0.2s ease;
  color: var(--palette-brown-01);
}

.badge-activity {
  /* border: 1px solid #bbb8b4; */
  /* border-radius: 10px; */
  transition: all 0.2s ease;
  color: var(--palette-brown-01);
}

.badge-secondary {
  transition: all 0.2s ease;
  color: var(--palette-brown-01);
}

/* .diagnosis-temperament {
  background: linear-gradient(15deg, #231715, #451d0d) !important;
  padding: 25px;
  border-radius: 20px;
  outline: 1px solid var(--palette-brown-01);
  outline-offset: 3px;
} */

.diagnosis-character-name {
  letter-spacing: 1px;
  font-family: "Merriweather", serif;
  background-color: white;
  background-image: linear-gradient(135deg, #4f3323, #93572c);
  background-size: 100%;
  background-repeat: repeat;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 900;
  font-size: 40px;
  text-align: left;
}

.diagnosis-character-code {
  font-family: "Outfit", sans-serif;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 3px;
  opacity: 0.6;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--palette-brown-01);
}

.diagnosis-character-image img {
  max-height: 170px;
  display: block;
}

.diagnosis-description {
  font-size: 17px;
  color: var(--palette-brown-01);
  line-height: normal;
  margin-top: 15px;
  padding-top: 15px;
  font-weight: 300;
  border-top: 1px solid #0000000f;
}

.diagnosis-reason {
  font-size: 13px;
  color: var(--palette-brown-01);
  margin-top: 12px;
  padding: 10px 12px;
  background: rgb(95 61 26 / 10%);
  border-left: 3px solid var(--palette-brown-01);
  border-radius: 4px;
  display: none;
}

.diagnosis-reason[style*="display: block"],
.diagnosis-reason:not([style*="display: none"]) {
  display: block;
}

/* Modal Footer Buttons */
#modalDiagnosis .form-navigation {
  margin: 0;
}

#modalDiagnosis .btn-form {
  padding: 15px 20px !important;
  font-size: 13px !important;
  letter-spacing: 0.5px;
  font-weight: 700;
  transition: all 0.3s ease;
  border-radius: 10px !important;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

#modalDiagnosis .col-md-6 {
  padding: 0 7.5px;
}

#modalDiagnosis .btn-next,
#modalDiagnosis .btn-prev {
  width: 100%;
}

#modalDiagnosis .btn-next {
  background: linear-gradient(
    135deg,
    #231715,
    var(--palette-brown-01)
  ) !important;
  color: #fff !important;
  box-shadow: 0 4px 15px #2b2b2b4d;
}

#modalDiagnosis .btn-next:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px #2b2b2b4d;
}

#modalDiagnosis .btn-next:active:not(:disabled) {
  transform: translateY(0);
}

#modalDiagnosis .btn-prev {
  background: #d6cec2 !important;
  color: #333 !important;
  border: none;
}

#modalDiagnosis .btn-prev:hover:not(:disabled) {
  background: #d6cec2 !important;
  transform: translateY(-2px);
}

#modalDiagnosis .btn-prev:active:not(:disabled) {
  transform: translateY(0);
}

#modalDiagnosis .btn-form:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

#modalDiagnosis .btn-form i {
  transform: scale(0.9);
  display: flex;
  justify-content: center;
  align-items: center;
}

#modalDiagnosis .about-class {
  margin-top: 15px;
  padding: 15px 15px 0 15px;
  color: var(--palette-brown-01);
  font-family: "Outfit", sans-serif;
  font-size: 20px;
  line-height: normal;
}

#modalDiagnosis .about-class .text {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

#modalDiagnosis .about-class .text p {
  margin: 0;
}

.background-aulas {
  display: block;
  background-size: cover;
  background-position: bottom center;
  background-repeat: no-repeat;
  background-color: #25150b;
  font-family: "Outfit", serif;
  position: relative;
  overflow: hidden;
}

.background-aulas::before {
  content: "";
  position: absolute;
  width: 70%;
  height: 70%;
  border-radius: 100%;
  background: #8b6041;
  filter: blur(200px);
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
}

.background-aulas:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(at 20% 80%, #fff 1px, transparent 0px);
  background-size: 4px 4px;
  pointer-events: none !important;
  z-index: 5;
  opacity: 0.05;
  mix-blend-mode: plus-lighter;
}

.background-aulas .background-cover {
  position: relative;
  width: 100%;
  min-height: calc(100vh);
  background-color: transparent;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 50px 0 100px 0;
  z-index: 10;
}

.background-aulas .background-cover .image {
  max-width: 200px;
  width: 100%;
  filter: brightness(50);
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 5px;
}

.background-aulas .background-cover .image img {
  width: 100%;
  display: block;
}

.background-aulas .background-cover .logo {
  font-family: "Merriweather", serif;
  background-color: white;
  background-image: linear-gradient(220deg, var(--palette-yellow-01), #ffdcad);
  background-size: 100%;
  background-repeat: repeat;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 900;
  font-size: 20px;
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 25px;
}

.background-aulas .background-cover .top {
  margin-bottom: 30px;
}

.background-aulas .background-cover .top .col-md-3 {
  padding-right: 10px;
  padding-left: 10px;
}

.background-aulas .background-cover .top .video-button {
  background-color: #e5dfd6;
  border: 2px solid #bbb8b4;
  border-radius: 10px;
  padding: 15px 20px;
  cursor: pointer;
  transition: all 0.2s ease;
  color: var(--palette-brown-01);
  width: 100%;
  font-family: "Outfit", serif;
  display: flex;
  justify-content: left;
  align-items: center;
  gap: 10px;
  height: 100%;
  line-height: normal;
  font-size: 18px;
  font-weight: 400;
  min-height: 90px;
}

.background-aulas .background-cover .top .video-button .badge {
  background-color: #efede2;
  border-radius: 6px;
  padding: 4px 10px;
  font-weight: bold;
  margin-right: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
  color: var(--palette-brown-02);
  height: 100%;
  font-size: 13px;
  font-weight: 800;
}

.background-aulas .background-cover .video-button.active {
  background-color: var(--palette-brown-02);
  background: var(
    --G1-ONM,
    linear-gradient(259deg, #3f1e07 4.83%, var(--palette-brown-02) 94.99%)
  );
  color: #efede2;
  transform: scale(1.05);
}

.background-aulas .background-cover .video-button.active + .badge {
  background-color: var(--palette-brown-02);
  color: var(--palette-yellow-01);
}

.background-aulas .background-cover #video-iframe {
  width: 100%;
  height: 500px;
  border: 0;
  background-color: transparent;
  position: relative;
  outline: 2px dashed var(--palette-brown-02);
  outline-offset: 4px;
  border-radius: 20px;
  max-width: 850px;
}

.background-aulas .background-cover .educa-danuca {
  display: flex;
  justify-content: center;
  align-items: baseline;
  flex-direction: column;
  gap: 10px;
  margin-top: 25px;
  max-width: 850px;
  margin-left: auto;
  margin-right: auto;
  font-size: 20px;
  font-family: "Outfit", serif;
  font-weight: 300;
}

.background-aulas .background-cover .educa-danuca .title {
  font-family: "Merriweather", serif;
  background-color: white;
  background-image: linear-gradient(220deg, #db8d4a, #f7c685);
  background-size: 100%;
  background-repeat: repeat;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 900;
  font-size: 24px;
  text-align: left;
}

.background-aulas .background-cover .educa-danuca .text span {
  font-family: "Merriweather", serif;
  color: var(--palette-yellow-01);
  font-weight: 900;
  font-size: 24px;
  text-align: left;
}

.background-aulas .background-cover .educa-danuca .text b {
  background-color: white;
  background-image: linear-gradient(90deg, #db8d4a, #f7c685);
  background-size: 100%;
  background-repeat: repeat;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 700;
}

.background-aulas .background-cover .bottom {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 25px;
  flex-direction: column;
}

.background-aulas .background-cover .bottom .description {
  font-size: 16px;
  color: #edededee;
  line-height: normal;
  max-width: 850px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  font-weight: 300;
  margin-top: 10px;
}

.background-aulas .auth-form {
  background-color: var(--palette-yellow-01);
  backdrop-filter: blur(20px);
  border-radius: 15px;
  padding: 50px 25px 25px 25px;
  border: 1px solid var(--palette-brown-02);
}

.background-aulas .auth-form h2 {
  font-size: 28px;
  color: var(--palette-brown-01);
  font-weight: 700;
  margin-bottom: 0;
  padding-top: 5px;
  font-family: "Outfit", sans-serif;
}

.background-aulas .auth-form h3 {
  font-size: 20px;
  color: var(--palette-brown-01);
  font-weight: 500;
  margin-bottom: 0;
  padding-top: 5px;
  font-family: "Outfit", sans-serif;
}

.background-aulas .auth-form .btn {
  padding: 15px 20px !important;
  font-size: 13px !important;
  letter-spacing: 0.5px;
  font-weight: 700;
  transition: all 0.3s ease;
  border-radius: 10px !important;
}

.background-aulas .auth-form .btn-next {
  background: linear-gradient(
    135deg,
    #231715,
    var(--palette-brown-01)
  ) !important;
  color: #fff !important;
  box-shadow: 0 4px 15px #2b2b2b4d;
  width: 100%;
}

.background-aulas .auth-form .btn-next:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px #2b2b2b4d;
}

.background-aulas .auth-form .btn-again {
  width: 100%;
  background: #d6cec2 !important;
  color: #333 !important;
}

.background-aulas .auth-form label.input-label {
  font-size: 14px;
  color: #101010;
  font-weight: 300;
  margin-bottom: -5px;
  text-transform: uppercase;
  background: var(--palette-brown-01);
  width: fit-content;
  padding: 0 5px;
  border-radius: 5px;
  font-weight: 700;
  color: var(--text-white-01);
  z-index: 10;
  position: relative;
}

.background-aulas .auth-form input,
.background-aulas .auth-form textarea {
  padding: 10px 10px;
  width: 100%;
  font-size: 14px;
  background: #ffffff;
  border: none;
  color: #101010;
  font-weight: 400;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  border-bottom-left-radius: 10px;
  display: block;
  outline: 0;
  border: 0;
  box-shadow: none;
}

.background-aulas .auth-form input.error,
.background-aulas .auth-form textarea.error {
  border: 1px solid #dc354552;
  background-color: #fff5f5;
}

.background-aulas .caderno-de-ativacao {
  width: 100%;
  text-align: center;
  background-image: linear-gradient(220deg, #db8d4a, #e7ae63);
  max-width: 850px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 17px;
  padding: 15px 10px;
  border-radius: 5px;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.background-aulas .caderno-de-ativacao #caderno-de-ativacao-link {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.background-aulas .caderno-de-ativacao i {
  font-size: 22px;
}

.background-aulas .caderno-de-ativacao span {
  font-size: 24px;
  font-weight: 800;
  font-family: "Outfit", serif;
  color: #ededed;
}

.background-aulas .slick-initialized .slick-slide {
  padding: 10px;
}

.slick-prev,
.slick-next {
  width: 35px !important;
  height: 35px !important;
  z-index: 1000 !important;
}

.slick-next {
  right: -35px;
}

.slick-prev {
  left: -35px;
}

.background-aulas .cartas-slide .carta-button {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #e5dfd6;
  background: var(
    --G1-ONM,
    linear-gradient(216deg, #efede2 4.83%, #ddc7b4 94.99%)
  );
  border: 2px solid #7b5340;
  border-radius: 10px;
  padding: 15px 20px;
  cursor: pointer;
  transition: all 0.2s ease;
  color: var(--palette-brown-01);
  width: 100%;
  font-family: "Merriweather", serif;
  font-style: italic;
  gap: 10px;
  line-height: normal;
  font-size: 22px;
  font-weight: 900;
  min-height: 90px;
  letter-spacing: -1px;
}

#modalCarta1,
#modalCarta2,
#modalCarta3,
#modalCarta4 {
  font-family: "Poppins", sans-serif;
  color: #000e17;
}

#modalCarta1 .modal-header,
#modalCarta2 .modal-header,
#modalCarta3 .modal-header,
#modalCarta4 .modal-header {
  border-bottom: none;
  color: #202020;
  margin-top: 15px;
}

#modalCarta1 .modal-content,
#modalCarta2 .modal-content,
#modalCarta3 .modal-content,
#modalCarta4 .modal-content {
  background-color: var(--palette-yellow-01);
  backdrop-filter: blur(20px);
  border-radius: 15px;
  padding: 10px 25px;
  border: 1px solid var(--palette-brown-02);
}

#modalCarta1 .modal-header,
#modalCarta2 .modal-header,
#modalCarta3 .modal-header,
#modalCarta4 .modal-header {
  border-bottom: none;
  color: #f8f8f8;
  margin-top: 15px;
}

#modalCarta1 .modal-title,
#modalCarta2 .modal-title,
#modalCarta3 .modal-title,
#modalCarta4 .modal-title {
  border-bottom: none;
  font-size: 28px;
  color: var(--palette-brown-01);
  font-weight: 700;
  margin-bottom: 0;
  padding-top: 5px;
  font-family: "Outfit", sans-serif;
}

#modalCarta1 .modal-content,
#modalCarta2 .modal-content,
#modalCarta3 .modal-content,
#modalCarta4 .modal-content {
  background-color: var(--palette-yellow-01);
  backdrop-filter: blur(20px);
  border-radius: 15px;
  padding: 10px 25px;
  border: 1px solid var(--palette-brown-02);
}

#modalCarta1 .btn-close,
#modalCarta2 .btn-close,
#modalCarta3 .btn-close,
#modalCarta4 .btn-close {
  box-sizing: content-box;
  width: 1em;
  height: 1em;
  padding: 0.25em 0.25em;
}

#modalCarta1 .divider-line,
#modalCarta2 .divider-line,
#modalCarta3 .divider-line,
#modalCarta4 .divider-line {
  width: 100%;
  height: 2px;
  background-color: #0000002e;
  margin: 20px 0;
}

/* Responsivo XXL */
@media (max-width: 1400px) {
  .background-aulas .background-cover .top .col-xxl {
    margin-bottom: 10px;
  }

  .background-aulas .background-cover .top .video-button {
    margin-left: auto;
    margin-right: auto;
  }
}

@media only screen and (max-width: 1199px) {
  .background-aulas .caderno-de-ativacao i {
    font-size: 16px;
  }

  .background-aulas .caderno-de-ativacao span {
    font-size: 18px;
    font-weight: 800;
    font-family: "Outfit", serif;
    color: #ededed;
  }

  .background-aulas .background-cover {
    padding: 50px 15px 50px 15px;
  }

  .background-aulas .background-cover .educa-danuca .title {
    font-size: 22px;
    text-align: left;
    line-height: normal;
  }

  .background-aulas .background-cover .educa-danuca .text span {
    font-size: 20px;
    text-align: left;
    line-height: normal;
  }

  .background-aulas .background-cover #video-iframe {
    width: 100%;
    height: 300px;
  }

  .background-header .background-cover .logo {
    padding: 0 15px;
  }

  .background-header .background-cover .logo .title {
    font-size: 32px;
    text-transform: uppercase;
    line-height: normal;
    letter-spacing: -1px;
    margin-top: 15px;
  }

  .background-header .background-cover .description {
    padding: 0 15px;
  }

  .background-header .background-cover .description .text {
    font-size: 20px;
    line-height: normal;
  }

  .background-header .background-cover .bottom {
    padding: 0 15px;
  }

  .background-header .background-cover .bottom .temperaments {
    font-size: 20px;
    line-height: normal;
  }

  .balance img {
    height: 175px;
  }

  .much-beyond-the-four-temperaments .background-cover .factors .cards {
    padding: 0 20px;
  }

  .much-beyond-the-four-temperaments .background-cover .factors .title {
    font-size: 24px;
    text-align: center;
    line-height: normal;
  }

  .much-beyond-the-four-temperaments .background-cover .factors {
    padding: 0 15px;
    margin-top: 15px;
  }

  .much-beyond-the-four-temperaments .background-cover .factors .cards .box {
    text-align: center;
    font-size: 20px;
    min-height: 125px;
  }

  .much-beyond-the-four-temperaments .background-cover .content {
    margin-left: 15px;
    margin-right: 15px;
    padding: 20px;
  }

  .much-beyond-the-four-temperaments .background-cover .content .topics {
    font-size: 18px;
    line-height: normal;
    gap: 10px;
  }

  .much-beyond-the-four-temperaments .background-cover .content .topics p {
    margin-bottom: 0;
  }

  .comprehension .background-cover .content {
    padding: 0 15px;
  }

  .comprehension .background-cover .content .title {
    font-size: 24px;
  }

  .comprehension .background-cover .content .text {
    font-size: 20px;
  }

  .comprehension .background-cover .subtitle {
    font-size: 22px;
  }

  .analysis .background-cover .title {
    font-size: 28px;
    padding: 0 15px;
  }

  .analysis .background-cover .content {
    font-weight: 400;
    font-size: 20px;
  }

  .analysis .background-cover .content {
    padding: 0 15px;
  }

  .analysis .background-cover .divider {
    width: 80%;
  }

  .analysis .background-cover .bottom {
    font-size: 21px;
    padding: 0 15px;
  }

  .analysis .background-cover .card-receive .image {
    max-height: 400px;
  }

  .analysis .background-cover .card-receive .image img {
    border-top-right-radius: 15px;
    border-bottom-left-radius: 0;
  }

  .analysis .background-cover .card-receive .receive-title {
    font-size: 30px;
    text-align: left;
  }

  .analysis .background-cover .reason .reason-subtitle {
    font-size: 30px;
    text-align: center;
  }

  .analysis .background-cover .reason .fa-quote-right,
  .analysis .background-cover .reason .fa-quote-left {
    font-size: 35px;
  }

  .banner-professor .banner-shadow .content {
    padding: 15px;
  }
}

/* Responsivo */
@media (max-width: 768px) {
  .diagnosis-subtitle {
    font-size: 16px;
  }

  .diagnosis-character-name {
    font-size: 36px;
    line-height: normal;
  }

  .diagnosis-description {
    font-size: 16px;
    font-weight: 400;
  }

  #modalDiagnosis .col-md-6 {
    width: 100%;
    margin-bottom: 8px;
  }

  #modalDiagnosis .col-md-6:last-child {
    margin-bottom: 0;
  }

  #modalDiagnosis .diagnosis-character-image {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 15px;
  }

  #modalDiagnosis .about-class {
    font-size: 18px;
    line-height: normal;
    font-weight: 300;
  }

  .diagnosis-item {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0px;
  }

  .diagnosis-label {
    width: 100%;
    text-align: center;
  }

  .diagnosis-badge {
    width: 100%;
    justify-content: center;
    letter-spacing: 0;
  }

  .background-aulas .caderno-de-ativacao span {
    font-size: 13px;
  }

  .slick-next {
    right: -10px;
  }

  .slick-prev {
    left: -10px;
  }
  
  .slick-prev, .slick-next {
    width: 20px !important;
    height: 20px !important;
  }

  .background-aulas .background-cover .video-button.active {
    transform: scale(1);
  }
}
