@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap");

:root {
  --red: #fe646f;
  --extralightgreen: #f4fbee;
  --orange: #ff9f18;
  --white: #fff;
  --black: #222;
  --gold: #bc955c;
}

html,
body {
  margin: 0;
  padding: 0 !important;
  font-family: "Outfit", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  line-height: 1.1;
  color: var(--black);
  overflow-x: hidden !important;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-smooth: never;
}
body {
  overflow: hidden;
}

a:hover {
  color: #000000;
}
/* general */
/* section animations */
section,
section .row,
.section3 .col-12 {
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
}
section.in-view,
section .row.in-view,
.section3 .col-12.in-view {
  opacity: 1;
  transform: translateY(0);
}
section.nav .row,
section.header,
section.header .row,
section#section-ads,
section#section-ads .row {
  opacity: 1 !important;
  transform: unset !important;
}
section {
  width: 95%;
  max-width: 1800px;
  margin: 0 auto;
}
.cta {
  min-width: 160px;
  min-height: 45px;
  padding: 5px 20px;
  background: var(--black);
  border: none;
  border-radius: 50px;
  color: #fff;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
  transition: all 0.6s ease;
}
/* .cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  background: var(--orange);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.8s ease;
  z-index: 0;
} */
.cta p {
  font-size: clamp(15px, 2vw, 25px);
  font-weight: 700;
  color: var(--white);
  margin: 0 !important;
  line-height: 1.1;
  position: relative;
  z-index: 1;
}
.cta:hover {
  transform: scale(1.1);
  background: var(--orange);
  color: var(--gold);
}
.cta:hover::before {
  width: 300%;
  height: 300%;
}
.title {
  font-size: clamp(32px, 4.6vw, 60px);
  line-height: 1.1;
  font-weight: 700;
  color: var(--gold);
  text-wrap: balance;
}
.title span {
  color: var(--gold);
}
.txt {
  font-size: clamp(28px, 3vw, 35px);
  font-weight: 700;
  color: var(--gold);
  text-wrap: balance;
}
.txt span {
  color: var(--gold);
}
.subtitle {
  text-wrap: balance;
  font-size: clamp(14px, 2vw, 20px);
  font-weight: 400;
  color: var(--black);
}
/* nav  */
.nav {
  width: 100%;
  position: fixed;
  z-index: 9999;
  top: 65px;
  left: 50%;
  opacity: 1;
  transform: translateX(-50%);
}
.nav .row {
  justify-content: space-between;
  transition: all 0.6s ease;
  border-radius: 50px;
}
.nav .row.scrolling {
  transform: scale(0.9);
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(6px);
  padding: 10px 5px;
}
.logo h1 {
  margin: 0;
  color: var(--white);
  font-size: clamp(20px, 3vw, 30px);
  font-weight: 300;
  line-height: 1.1;
  cursor: pointer;
}
.logo h1 span {
  font-weight: 700;
}
.logo img {
  width: 90%;
  filter: brightness(0) invert(1);
}
.nav-menu ul {
  padding: 0;
  margin: 0;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0 20px;
  max-width: 90%;
  margin: 0 auto;
  color: var(--white);
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(6px);
  border-radius: 50px;
  padding: 0px 30px;
  height: 45px;
}
.nav .row.scrolling .nav-menu ul {
  background: none;
  backdrop-filter: none;
}
.nav-menu ul li {
  cursor: pointer;
  position: relative;
  transition: color 0.6s ease;
  font-size: 18px;
}
.nav-menu ul li::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0%;
  height: 2px;
  background: var(--white);
  transition: width 0.6s ease;
}
.nav-menu ul li:hover::after {
  width: 100%;
}
.nav-menu ul li:hover {
  color: var(--white);
}
.nav-cta {
  text-align: right;
}
.nav-cta button {
  background: var(--white);
  margin: 0 0 0 auto;
}
.nav-cta button p {
  color: var(--gold);
}
.nav-cta button:hover {
  background: var(--black);
}
.nav-cta button:hover p {
  color: var(--white);
}
/* header */
.header {
  margin-top: 30px;
  padding: 250px 0 0 0;
  border-radius: 30px;
  background: linear-gradient(180deg, var(--gold) 10%, rgba(51, 108, 110, 0) 90%);
  position: relative;
  min-height: 750px;
}
#header-img {
  position: absolute;
  top: 170px;
  left: 50%;
  transform: translateX(-50%);
  height: 620px;
}
.userWidget {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 0 15px;
  margin-bottom: 30px;
}
.userWidget img {
  height: 30px;
}
.users_txt {
  width: 165px;
  height: 30px;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(7.5px);
  display: flex;
  justify-content: center;
  align-items: center;
}
.users_txt p {
  margin: 0;
  font-size: 18px;
  font-weight: 400;
  color: var(--white);
  font-size: clamp(12px, 1.5vw, 18px);
}

.header-txt h1 {
  font-size: clamp(50px, 4.5vw, 70px);
  font-weight: 600;
  color: var(--white);
  line-height: 1;
  margin-bottom: 20px;
}
/*.header-txt h1 span {
  color: var(--orange);
}*/
.header-txt h6 {
  font-size: clamp(14px, 1.5vw, 22px);
  font-weight: 400;
  color: var(--black);
  line-height: 1.1;
  margin-bottom: 35px;
}
.headerWidgets {
  min-width: 430px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0 25px;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 66;
}
.blur-widget {
  min-width: 100px;
  min-height: 35px;
  padding: 6px 15px;
  border-radius: 50px;
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(5px);
  font-size: 22px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0 10px;
  color: var(--white);
  transition: all 0.6s ease;
  cursor: pointer;
}
.blur-widget:hover {
  transform: scale(1.1);
  box-shadow: 0 0 10px 5px rgba(255, 159, 24, 0.2);
}
/* form */
.progressBar {
  width: 100%;
  max-width: 270px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  margin-bottom: 20px;
}
.progress-line {
  position: absolute;
  width: 100%;
  height: 4px;
  background: #d3d3d3;
}
.progress-line-fill {
  width: 0%;
  height: 4px;
  background: var(--gold);
  transition: all 0.6s ease;
}
.number {
  width: 23px;
  height: 23px;
  aspect-ratio: 1;
  border-radius: 50px;
  background: #d3d3d3;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--white);
  font-size: 16px;
  line-height: 1;
  position: relative;
  z-index: 33;
  transition: all 0.6s ease;
}
.number.active {
  background: var(--gold);
}
#contactform {
  width: 380px;
  margin: 0 0 0 auto;
  background: var(--white);
  border-radius: 20px;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 30px;
  position: relative;
  z-index: 666;
}
#contactform h3 {
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 400;
  line-height: 1.1;
  margin: 0;
  color: var(--black);
  text-wrap: balance;
  margin-bottom: 20px;
}
#contactform h3 span {
  font-weight: 700;
}
.form-step {
  display: none;
}
.form-step.active {
  display: block;
}
.radio-opt {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  width: 100%;
}
.radio-button {
  width: 100%;
}
.radio-button input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}
.radio-button label {
  background: transparent;
  border: 1px solid var(--gold);
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
  max-width: 270px;
  height: 45px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--gold);
  font-size: clamp(15px, 2vw, 18px);
  font-weight: 700;
}
.radio-opt-normal .radio-button label {
  width: 100%;
  margin: 0 auto;
  padding: 0 0 0 10px;
}
.radio-button label:hover,
.radio-button input[type="radio"]:checked + label {
  background: var(--gold);
  border: 1px solid var(--gold);
  color: var(--white);
}
.radio-button label:hover {
  transform: scale(1.05);
}
.form-input {
  margin: 5px 0;
  width: 100%;
}
.form-input label {
  text-align: left;
  margin: 0 0 5px 0;
  padding-left: 17px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  width: 280px;
  max-width: 100%;
}
.form-input input {
  width: 100%;
  max-width: 270px;
  height: 45px;
  border-radius: 10px;
  border: 1px solid var(--gold);
  font-size: 16px;
  color: var(--gold) !important;
  font-weight: 400 !important;
  padding: 0 15px;
  -webkit-appearance: none;
  text-align: left !important;
  line-height: 1;
  margin: 0 auto;
}
.form-input input:focus-visible {
  outline: none !important;
}
::-webkit-input-placeholder {
  color: rgba(0, 0, 0, 0.4);
}
:-moz-placeholder {
  color: rgba(0, 0, 0, 0.4);
  opacity: 1;
}
::-moz-placeholder {
  color: rgba(0, 0, 0, 0.4);
  opacity: 1;
}
:-ms-input-placeholder {
  color: rgba(0, 0, 0, 0.4);
}
::-ms-input-placeholder {
  color: rgba(0, 0, 0, 0.4);
}
::placeholder {
  color: rgba(0, 0, 0, 0.4);
}
input[name="telefono"] {
  background-image: url("/img/icons/spain.svg");
  background-position: 15px center;
  background-size: 20px;
  background-repeat: no-repeat;
  padding: 0 0 0 45px;
}
.form-input input.error {
  border: 1px solid var(--red);
  background-image: url("/img/icons/error.svg");
  background-position: 96% center;
  background-size: 20px;
  background-repeat: no-repeat;
  margin: 5px auto 0 auto;
}
.form-input input.valid {
  border: 1px solid var(--gold);
  background-image: url("/img/icons/check.svg");
  background-position: 96% center;
  background-size: 20px;
  background-repeat: no-repeat;
  margin: 5px auto;
}
input[name="telefono"].error {
  background: url("/img/icons/spain.svg"), url("/img/icons/error.svg");
  background-position:
    15px center,
    96% center;
  background-size: 20px;
  background-repeat: no-repeat;
  margin: 5px auto 0 auto;
}
input[name="telefono"].valid {
  background: url("/img/icons/spain.svg"), url("/img/icons/check.svg");
  background-position:
    15px center,
    96% center;
  background-size: 20px;
  background-repeat: no-repeat;
  margin: 5px auto;
}
.form-check {
  text-align: center;
  padding: 0;
  margin-top: 5px;
}
.form-check label {
  margin: 0;
  position: relative;
  padding-left: 18px;
  cursor: pointer;
  line-height: 1;
  color: var(--black);
  font-size: 11px;
  font-weight: 400;
}
.form-check input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}
.checkmark {
  position: absolute;
  top: -1px;
  left: 0;
  height: 12px;
  width: 12px;
  background-color: transparent;
  border: 1px solid var(--gold);
  border-radius: 3px;
  padding-right: 5px;
  color: var(--gold);
}
.form-check input[type="checkbox"]:checked + .checkmark::after {
  content: "\2713";
  display: block;
  text-align: center;
  line-height: 12px;
  margin-left: 0px;
  margin-top: 0px;
  font-size: 14px;
}
#politica-link {
  color: var(--black);
  text-decoration: none;
}
#politica-link:hover {
  color: var(--gold);
  text-decoration: underline;
}
label.error,
#termos-error {
  width: 100%;
  text-align: center;
  font-size: 10px;
  color: var(--red);
  font-weight: 400;
  padding: 0;
  margin: 0;
  line-height: 1;
}
#contactform .cta {
  margin: 15px auto 0 auto;
}
/* section1 */
.section1 {
  position: relative;
  min-height: 1260px;
  text-align: center;
  padding: 100px 0 0 0;
}
.section1 .container {
  position: relative;
  z-index: 33;
}
.simulation_panel {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 130px;
}
.hair-options {
  background: var(--black);
  color: var(--white);
  padding: 30px;
  width: 375px;
  text-align: left;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  gap: 10px 0;
  border-radius: 20px;
}
.simbox-txt h6 {
  font-size: clamp(18px, 2vw, 26px);
  font-weight: 700;
  line-height: 1.2;
}
.simbox-txt p {
  font-size: clamp(8px, 2vw, 12px);
  font-weight: 400;
}
.checkHair input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}
.checkHair,
.checkHair label {
  width: 100%;
}
.checkHair {
  margin: 5px 0;
}
.checkHair label {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 0 10px;
  color: var(--white);
  font-size: clamp(12px, 1.5vw, 18px);
  cursor: pointer;
}
.checkHair label span {
  width: 20px;
  height: 20px;
  aspect-ratio: 1;
  border-radius: 50px;
  background: transparent;
  border: 1px solid var(--white);
  transition: all 0.6s ease;
}
.checkHair label:hover span,
.checkHair input[type="checkbox"]:checked + label span {
  background: var(--orange);
}
.hair-results {
  text-align: right;
}
.hair-results h6 {
  color: var(--gold);
  font-size: clamp(16px, 2vw, 22px);
  font-weight: 400;
  margin-bottom: 20px;
}
.results {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 0 10px;
  margin: 10px 0;
}
.results p {
  margin: 0;
  color: var(--black);
  font-size: clamp(18px, 3.2vw, 40px);
  font-weight: 400;
}
.results span {
  font-size: clamp(24px, 3.2vw, 40px);
  font-weight: 700;
  color: var(--gold);
}
.hair-results button {
  margin: 30px 0 0 auto;
}
.head_simulation {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
}
.head_simulation svg {
  position: absolute;
  top: 11%;
  left: 49.5%;
  transform: translateX(-50%);
  width: 370px;
  z-index: 55;
}
.head_simulation img {
  width: 100%;
}
.overlay-zone {
  opacity: 0;
  cursor: pointer;
  pointer-events: auto;
  transition: all 0.6s ease;
}

.overlay-zone:hover,
.overlay-zone.active {
  opacity: 0.5;
}
/* section2 */
.section2 {
  text-align: center;
  padding: 100px 0 60px 0;
}
/*.intervencoes_grid {
  display: flex;
  align-items: center;
  justify-content: space-around;
  margin-top: 50px;
}*/
.compare-slider {
  width: 100%;
}
.compare-slider .slick-track {
  padding: 50px 0 20px 0;
}
.custom-container {
  --max-width: 1180px;
  --padding: 1rem;
  width: min(var(--max-width), 100% - (2 * var(--padding)));
  margin: 0 auto;
}
.slide-wrapper {
  width: 95%;
  min-height: auto;
  padding: 5px;
  border-radius: 15px;
  background: var(--white);
  box-shadow: 0 0 10px 2px rgba(0, 0, 0, 0.15);
  margin: 0 auto;
  cursor: pointer;
}
.container-slide {
  display: flex;
  gap: 2px;
  width: 100%;
  height: 325px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 12px;
  position: relative;
}
.container-slide .img {
  position: relative;
  flex: 1;
  height: 100%;
  background-size: cover;
  background-position: center;
  z-index: 1;
}
.container-slide .before-img {
  border-radius: 13px 0 0 13px;
}
.container-slide .after-img {
  border-radius: 0 13px 13px 0;
}
.slide-stamp {
  width: 130px;
  height: 30px;
  border-radius: 0 15px 0 0;
  background: var(--gold);
  color: var(--white);
  font-size: 15px;
  font-weight: 700;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  z-index: 55;
  left: 0;
  bottom: 0;
}
.success-value {
  text-align: left;
  padding: 0px;
  height: 0;
  opacity: 0;
  transition: all 0.6s ease;
}
.success-value.active {
  padding: 20px 20px 10px 20px;
  height: auto;
  opacity: 1;
}
.success-value h6 {
  color: var(--black);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.1;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.success-value h6 span {
  color: var(--gold);
  font-weight: 700;
  font-size: 26px;
}
.slide-cta {
  padding: 10px;
}
.slide-cta .cta {
  font-weight: 700;
  min-width: 100px;
  height: 40px;
  margin: 0 0 0 auto;
  background: var(--white);
  border: 1px solid var(--gold);
}
.slide-cta .cta:hover {
  border: 1px solid var(--orange);
}
.slide-cta .cta p {
  font-size: 16px;
  color: var(--gold);
}
.slide-cta .cta:hover {
  background: var(--black);
  border: 1px solid var(--black);
}
.slide-cta .cta:hover p {
  color: var(--white);
}
.section2 button {
  margin: 40px auto 0 auto;
}
/* secction3 */
.section3 {
  text-align: center;
  padding: 80px 30px;
  margin: 60px auto;
  border-radius: 30px;
  background: #fff;
}
.section3 .title {
  margin-bottom: 80px;
}
.section3 img {
  width: 100%;
}
.steps-box,
.progress-dot-line {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
}
.step {
  width: 15%;
  text-align: left;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 0 10px;
}
.step-icon {
  background: rgba(188, 149, 92, 0.1);
  width: 65px;
  height: 65px;
  aspect-ratio: 1;
  border-radius: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.6s ease;
}
.step-icon img {
  height: 35px;
  filter: brightness(0);
}
.step-icon:hover {
  transform: scale(1.2) rotate(-15deg);
}
.step-txt h6 {
  font-size: 16px;
  font-weight: 400;
  color: var(--black);
  line-height: 1.1;
}
.step-txt h6 span {
  font-size: 20px;
  color: var(--gold);
  font-weight: 700;
}
.step-txt p {
  font-size: 14px;
  font-weight: 700;
  margin: 0;
  line-height: 1.1;
  color: var(--gold);
  margin-top: 5px;
}
.progress-dot-line {
  position: relative;
  margin: 40px 0 0 -40px;
}
.progress-dot-line::before {
  content: "";
  width: 77%;
  height: 2px;
  background: var(--black);
  opacity: 0.5;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.dot-outer {
  width: 16%;
  position: relative;
  z-index: 22;
}
.progress-dot {
  width: 18px;
  height: 18px;
  aspect-ratio: 1;
  border-radius: 50px;
  margin: 0 auto;
  background: var(--black);
}
.section3 .step {
  opacity: 0;
  transform: translateY(25px);
  transition: all 1s ease;
}
.section3 .step.active {
  opacity: 1;
  transform: translateY(0);
}
.section3 .dot-outer {
  opacity: 0;
  transform: scale(0.6);
  transition: all 1s ease;
}
.section3 .dot-outer.active {
  opacity: 1;
  transform: scale(1);
}
/* secction4 */
.section4 {
  text-align: center;
  padding: 40px 0;
}
.section4 .subtitle {
  color: var(--black);
  width: 100%;
  max-width: 780px;
  margin: 10px auto 0 auto;
}
.video-reviews {
  margin-top: 60px;
  border-radius: 30px;
  background: linear-gradient(98deg, #333 1.28%, #575757 39.89%, #575757 59.66%, #333 99.22%);
  padding: 40px 40px 20px 40px;
}
.review-box {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  text-align: left;
}
.names {
  width: 25%;
  padding-top: 25px;
  color: var(--white);
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  gap: 10px 0;
}
.name-progress {
  width: 100%;
  max-width: 190px;
  height: 1px;
  background: rgba(255, 255, 255, 0.3);
  position: relative;
}
.name-progress::before {
  width: var(--progress-width, 0%);
  height: 100%;
  background: var(--white);
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  transition: width 0.1s linear;
}
.name {
  width: 100%;
}
.names h4 {
  font-size: clamp(14px, 2vw, 22px);
  font-weight: 400;
  margin: 10px 0;
  cursor: pointer;
}
.names h4.active {
  font-weight: 700;
}
.section4 .persona {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 0 15px;
}
.section4 .persona img {
  max-width: 120px;
}
.section4 .persona h6 {
  font-size: clamp(14px, 1.5vw, 20px);
  font-weight: 600;
  margin: 0 0 5px 0;
  color: var(--white);
}
.section4 .persona p {
  font-weight: 400;
  color: var(--white);
  opacity: 1;
  font-size: clamp(11px, 1.5vw, 16px);
  margin: 0;
}
.text-review {
  margin-top: 30px;
  color: var(--white);
  width: 100%;
  max-width: 400px;
}
.text-review p {
  font-size: clamp(13px, 1.5vw, 24px);
  line-height: 1.2;
  font-weight: 300;
}
.review-video {
  width: 30%;
}
.review-text {
  width: 50%;
  padding: 0 30px;
}
.review-video {
  position: relative;
}
/*.review-video::after {
  position: absolute;
  content: "";
  background: url("/img/reviews/play.svg");
  background-size: 100%;
  width: 40px;
  height: 40px;
  aspect-ratio: 1;
  top: 50%;
  left: 45%;
  transform: translate(-50%, -50%);
}*/
.review-video video, .review-video img {
  width: 90%;
  border-radius: 20px;
  margin-bottom: -60px;
}
.video-sound-toggle {
  position: absolute;
  right: 50px;
  bottom: -40px;
  z-index: 5;
  border: 0;
  border-radius: 999px;
  padding: 10px 14px;
  font-size: 14px;
  line-height: 1;
  cursor: pointer;
  background: rgba(0, 0, 0, 0.75);
  color: #fff;
}
.video-sound-toggle.is-on {
  background: rgba(255, 255, 255, 0.9);
  color: #000;
}
#persona2,
#video2 {
  display: none;
}
.mobile-review-accordion {
  display: none;
}
/* section 5 */
.section5 {
  text-align: center;
  padding: 70px 0;
}
.team-slider .slick-track {
  padding: 20px 0;
}
.slider-ctrl {
  margin-top: 20px;
}
.section5 .slider-ctrl {
  margin-top: 40px;
}
.slider-ctrl {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0 20px;
}
.slider-ctrl .next-arrow {
  transform: rotate(180deg);
}
.slider-ctrl img {
  transition: all 0.6s ease;
  cursor: pointer;
}
.slider-ctrl img:hover {
  transform: scale(1.1);
}
.slider-ctrl .next-arrow:hover {
  transform: scale(1.1) rotate(180deg);
}
.team-slider {
  margin-top: 40px;
  width: 110%;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
}
.doctor-card {
  width: 90%;
  height: 450px;
  margin: 0 auto;
  overflow: hidden;
  padding: 20px 15px;
  border-radius: 20px;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  background-size: cover !important;
  background-position: top center !important;
  background-repeat: no-repeat !important;
  transition: all 0.6s ease;
}
.doctor-card:hover {
  transform: scale(1.05);
  box-shadow: 0 0 10px 5px rgba(183, 227, 141, 0.5);
}
.doc1 {
  background: url("/img/team/minet.jpg");
}
.doc2 {
  background: url("/img/team/echezuria.jpg");
}
.doc3 {
  background: url("/img/team/javier.jpg");
}
.doc4 {
  background: url("/img/team/mancinelli.jpg");
}
.doc5 {
  background: url("/img/team/basilisa.jpg");
}
.doc-info {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(7.5px);
  text-align: center;
  width: 100%;
  padding: 20px 0;
  transition: all 0.6s ease;
  overflow: hidden;
}
.doc-info h6 {
  color: var(--gold);
  font-size: clamp(16px, 2vw, 25px);
  font-weight: 700;
  margin: 0 0 5px 0;
}
.doc-info p {
  margin: 0;
  color: var(--black);
  font-size: 11px;
  /*opacity: 0;
  transform: translateY(150px);
  max-height: 0;
  overflow: hidden;
  transition: all 0.8s ease;*/
}
.doc-info p:first-of-type {
  color: var(--gold);
  font-weight: 700;
  font-size: 20px;
  line-height: 1.3;
  margin-bottom: 5px;
}
/*.doctor-card:hover .doc-info p {
  opacity: 1;
  transform: translateY(0);
  max-height: 80px;
}*/
.section5-cta button {
  background: var(--black);
  margin: 20px auto 0 auto;
}
.section5-cta .chat:hover {
  background: var(--orange);
}
/* footer */
.footer {
  background: linear-gradient(98deg, #ab7526 1.28%, #bc955c 39.89%, #bc955c 59.66%, #ab7526 99.22%);
  border-radius: 30px;
  min-height: 260px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 120px;
  color: var(--white);
}
.footer .container-fluid {
  padding: 0 50px;
}
.footer-content {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-img {
  width: 100%;
  height: 300px;
}
.footer-img img {
  height: 440px;
  top: -130px;
  left: -30px;
  position: absolute;
}
.footer-txt {
  width: 100%;
  margin-bottom: 30px;
}
.footer .title {
  color: var(--white);
  font-size: 50px;
  text-wrap: unset;
}
.footer .text {
  text-wrap: balance;
  font-size: clamp(14px, 3vw, 22px);
}
.footer-cta {
  width: 35%;
}
.footer .cta {
  background: var(--white);
  margin: 0 auto;
  width: 90%;
  height: 50px;
}
.footer .cta p {
  color: var(--black);
  font-size: 22px;
}
.footer .cta:hover {
  background: var(--black);
}
.footer .cta:hover p {
  color: var(--white);
}
.footer-vant-box {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  gap: 0 40px;
  width: 80%;
  padding: 0 15px 0 0;
}
.footer-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0 10px;
  flex: 1 1 0;
  min-width: 0;
}
.left-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-icon img {
  height: 45px;
  filter: brightness(0) invert(1);
}
.footer-vant-txt {
  text-wrap: balance;
  width: 100%;
}
.footer-vant-txt h6 {
  font-size: 19px;
  font-weight: 700;
  line-height: 1.1;
  margin: 0;
}
.footer-vant-txt p {
  font-size: 13px;
  margin: 5px 0 0 0;
  text-wrap: balance;
}
/* Adstrategy */
#section-ads {
  text-align: center;
  padding: 30px 0;
}
/* Media Queries */
@media only screen and (min-width: 1800px) {
  .head_simulation svg {
    top: 13.5%;
    width: 400px;
  }
}
@media only screen and (max-width: 1680px) {
  .head_simulation svg {
    top: 9%;
    width: 320px;
  }
  .container-slide {
    height: 335px;
  }
  .container-slide .img {
    background-size: cover;
  }
  .step-icon {
    height: 50px;
    width: 50px;
  }
  .step-icon img {
    height: 25px;
  }
  .footer .cta {
    width: 100%;
  }
  .footer .cta p {
    font-size: 19px;
  }
  .footer-img img {
    height: 390px;
    top: -85px;
    left: -50px;
  }
}
@media only screen and (max-width: 1440px) {
  .head_simulation svg {
    top: 7%;
    width: 300px;
  }
  .section1 {
    min-height: 1050px;
  }
  .simulation_panel {
    margin-top: 70px;
  }
  .footer-vant-box {
    width: 80%;
  }
  .footer-cta {
    width: 33%;
  }
  .footer-icon img {
    height: 35px;
  }
  .footer-vant-txt h6 {
    font-size: 16px;
  }
  .footer-vant-txt p {
    font-size: 11px;
  }
  .footer .title {
    font-size: 40px;
  }
  .footer .text {
    font-size: 18px;
  }
  .footer .container-fluid {
    padding: 0 20px;
  }
  .footer-img img {
    height: 370px;
    top: -75px;
    left: -60px;
  }
}
@media only screen and (max-width: 1360px) {
  .head_simulation svg {
    top: 5%;
    width: 280px;
  }
  .section1 {
    min-height: 900px;
  }
  .step-txt h6 {
    font-size: 13px;
  }
  .doc-info h6 {
    font-size: 22px;
  }
}
@media only screen and (max-width: 1260px) {
  .head_simulation svg {
    top: 3%;
    width: 250px;
  }
  .section1 {
    min-height: 850px;
  }
  #contactform {
    margin: 0 0 0 -40px;
  }
  .container-slide {
    height: 240px;
  }
  .container-slide .img {
    background-size: cover;
  }
  .step-icon {
    height: 40px;
    width: 40px;
  }
  .step-icon img {
    height: 22px;
  }
  .doc-info h6 {
    font-size: 18px;
  }
  .doc-info p:first-of-type {
    font-size: 15px;
  }
  .footer .cta p {
    font-size: 16px;
  }
}
@media only screen and (max-width: 1200px) {
  .section1 .container {
    max-width: 95%;
    margin: 0 auto;
  }
  .hair-options {
    width: 340px;
  }
  .head_simulation svg {
    top: -2%;
    width: 240px;
  }
  .left-footer {
    flex-wrap: wrap;
    gap: 20px 0;
  }
  .hair-results {
    padding: 25px;
    box-shadow: 0 0 10px 2px rgba(51, 108, 110, 0.25);
    background: var(--white);
    border-radius: 20px;
    width: 100%;
    max-width: 280px;
    text-wrap: balance;
  }
  .footer-vant-box,
  .footer-cta {
    width: 100%;
  }
  .footer-cta .cta {
    margin: 0 0 0 auto;
  }
  .footer-vant-txt {
    text-align: right;
  }
  .footer-vant-box {
    justify-content: flex-end;
  }
  .footer-icon {
    flex-direction: row-reverse;
  }
  .footer .cta {
    width: 300px;
    margin-top: 20px;
  }
  .footer-txt {
    text-align: right;
  }
}
@media only screen and (max-width: 1080px) {
  #header-img {
    height: 550px;
  }
  #contactform {
    width: 330px;
    padding: 30px 20px;
  }
  .head_simulation svg {
    top: -5%;
    width: 220px;
  }
  .section1 {
    min-height: 700px;
  }
  .simulation_panel {
    align-items: flex-start;
  }
  .hair-options {
    width: 300px;
  }
  .nav-menu ul {
    gap: 0 10px;
    padding: 0 15px;
    max-width: 100%;
  }
  .nav-menu ul li {
    font-size: 13px;
  }
  .nav .cta p {
    font-size: 18px;
  }
  .footer-vant-box {
    gap: 0 15px;
  }
  .footer-vant-txt h6 {
    font-size: 13px;
  }
  .container-slide {
    height: 210px;
  }
  .container-slide .img {
    background-size: cover;
  }
  .steps-box {
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px 10px;
  }
  .step {
    justify-content: center;
    width: 31%;
    gap: 0 15px;
  }
  .progress-dot-line {
    display: none;
  }
  .step-icon {
    height: 50px;
    width: 50px;
  }
  .step-icon img {
    height: 25px;
  }
  .step-txt h6 {
    font-size: 15px;
  }
  .section5 .slider-ctrl {
    margin: 30px auto;
  }
}
@media only screen and (max-width: 991px) {
  .header {
    padding: 180px 0 0 0;
    min-height: 650px;
  }
  #header-img {
    display: none;
  }
  #contactform {
    width: 380px;
    padding: 30px;
    margin: 0 0 0 auto;
  }
  .nav .container,
  .section4 .container {
    max-width: 90%;
  }
  .review-video video {
    width: 100%;
  }
  .review-video img {
    width: 80%;
    margin-bottom: 0px;
  }
  .video-reviews {
    padding: 30px 20px 30px 20px;
  }
  .video-sound-toggle {
    right: 20px;
  }
  .section1 {
    min-height: 600px;
  }
  .simulation_panel {
    margin-top: -80px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 55;
    gap: 10px 0;
  }
  .head_simulation svg {
    top: -19%;
    width: 240px;
  }
  .head_simulation {
    position: relative;
  }
  .hair-options {
    width: 100%;
    max-width: 400px;
    text-align: center;
    align-items: center;
    margin: 0 auto;
    justify-content: center;
  }
  .hair-results {
    width: 100%;
    max-width: 400px;
    text-align: center;
    align-items: center;
    margin: 0 auto;
    justify-content: center;
  }
  .results {
    justify-content: center;
  }
  .hair-results button {
    margin: 30px auto 0 auto;
  }
  .simbox-txt {
    margin: 0 auto;
  }
  .simbox-txt h6 {
    font-size: 22px;
  }
  .checkHair label {
    font-size: 16px;
  }
  .checkHair,
  .checkHair label {
    width: 100%;
    max-width: 250px;
  }
  .head_simulation img {
    position: relative;
    width: 145%;
    left: 50%;
    transform: translateX(-50%);
    margin-top: -120px;
  }
  .container-slide {
    height: 245px;
  }
  .container-slide .img {
    background-size: cover;
  }
  .blur-widget {
    font-size: 16px;
  }
  .footer-img img {
    height: 330px;
    top: -25px;
    left: -50px;
  }
}
@media only screen and (max-width: 880px) {
  .head_simulation svg {
    top: -35%;
    width: 180px;
  }
  .head_simulation img {
    width: 105%;
    margin-top: -70px;
  }
  .footer-img img {
    height: 300px;
    top: -5px;
    left: -50px;
  }
  .footer .title {
    font-size: 36px;
  }
  .footer .text {
    font-size: 15px;
  }
  .container-slide {
    height: 225px;
  }
  .container-slide .img {
    background-size: cover;
  }
}
@media only screen and (max-width: 820px) {
  .footer-img img {
    height: 260px;
    top: 25px;
    left: -50px;
  }
}
@media only screen and (max-width: 768px) {
  .nav {
    top: 50px;
  }
  .header {
    text-align: center;
    padding: 120px 0 0 0;
  }
  .headerWidgets {
    display: none;
  }
  .userWidget {
    justify-content: center;
  }
  .header .cta {
    margin: 30px auto;
  }
  .header-txt h6 {
    color: var(--white);
    text-wrap: balance;
  }
  .head_simulation svg {
    top: 25px;
    width: 125px;
    height: auto;
  }
  .head_simulation {
    height: 380px;
  }
  .section3 img {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
  }
  .footer,
  .footer .logo {
    text-align: center;
  }
  .section3 {
    padding: 50px 30px;
    margin: 30px auto;
  }
  .section3 .title {
    margin-bottom: 40px;
  }
  #contactform {
    margin: 0 auto;
    width: 95%;
    max-width: 400px;
  }
  .review-box {
    flex-wrap: wrap;
  }
  .video-reviews {
    padding: 10px 20px 20px 20px;
  }
  .names {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    margin-bottom: 40px;
  }
  .name {
    text-align: center;
  }
  .review-video {
    width: 45%;
  }
  .text-review p {
    font-size: 16px;
  }
  .footer {
    min-height: auto;
    padding: 40px 10px;
    margin: 0 auto;
    text-align: center;
    text-wrap: balance;
  }
  .footer-cta .cta {
    margin: 0 auto;
  }
  .footer-icon {
    flex-direction: row;
    margin: 20px auto;
  }
  .footer-txt {
    text-align: center;
    margin-bottom: 10px;
  }
  .footer-vant-txt {
    text-align: left;
  }
  .names h4 {
    text-wrap: balance;
    font-size: 18px;
    max-width: 70%;
    margin: 10px auto;
  }
  .container-slide {
    height: 215px;
  }
  .container-slide .img {
    background-size: cover;
  }
}

@media only screen and (max-width: 767px) {
    .footer-img {
        display: none;
    }
}
@media only screen and (max-width: 645px) {
  .head_simulation svg {
    top: 15px;
    width: 125px;
    height: auto;
  }
  .head_simulation {
    height: 330px;
  }
  .container-slide {
    height: 330px;
  }
  .container-slide .img {
    background-size: cover;
  }
}
@media only screen and (max-width: 605px) {
  .head_simulation svg {
    top: 10px;
    width: 115px;
    height: auto;
  }
  .head_simulation {
    height: 330px;
  }
  .nav {
    max-width: 90%;
  }
  .persona img {
    width: 50%;
  }
}
@media only screen and (max-width: 565px) {
  .head_simulation svg {
    top: 2px;
    width: 100px;
    height: auto;
  }
  .head_simulation {
    height: 290px;
  }
  .section5-cta button {
    margin: 30px auto 0 auto;
  }
  .footer-vant-box {
    flex-direction: column;
  }
  .footer-vant-box,
  .footer-icon {
    justify-content: flex-start;
  }
  .footer-icon {
    margin: 20px 0;
  }
  .footer-vant-box {
    margin: 0 auto;
    max-width: 90%;
  }
  .footer-icon {
    width: 100%;
    max-width: 100%;
  }
  .footer-icon txt {
    width: auto;
  }
  .names h4 {
    font-size: 14px;
  }
  .footer-icon {
    display: none;
  }
  .footer-txt {
    margin: 0;
  }
  .footer .title {
    font-size: 40px;
  }
  .steps-box {
    justify-content: space-between;
  }
  .step {
    width: 40%;
  }
  .container-slide {
    height: 330px;
  }
  .container-slide .img {
    background-size: cover;
  }
}
@media only screen and (max-width: 505px) {
  .head_simulation svg {
    top: -5px;
    width: 90px;
    height: auto;
  }
  .head_simulation {
    height: 250px;
  }
  .review-text {
    width: 100%;
  }
  .review-video {
    width: 80%;
    margin: 0 auto;
  }
  .persona {
    justify-content: center;
  }
  .persona-txt {
    text-align: left;
  }
  .text-review p {
    text-align: center;
    margin-bottom: 30px;
  }
  .section4 .persona {
    justify-content: flex-start;
    align-items: center;
    text-align: center;
    gap: 0 20px;
  }
  .section4 .persona img {
    width: 150px;
  }
  .section4 .persona h6 {
    font-size: 22px;
  }
  .section4 .persona p {
    font-size: 14px;
  }
  .container-slide {
    height: 300px;
  }
  .container-slide .img {
    background-size: cover;
  }
  .step {
    width: 100%;
    justify-content: flex-start;
    margin: 0;
    padding: 15px 0;
  }
  .section3 .col-12 {
    display: flex;
    flex-direction: row;
    align-items: stretch;
  }
  .steps-box {
    flex: 1;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: space-evenly;
    align-items: flex-start;
    gap: 0;
  }
  .progress-dot-line {
    display: flex;
    position: relative;
    top: auto;
    left: auto;
    flex-direction: column;
    justify-content: space-evenly;
    margin: 0;
    height: auto;
    width: 35px;
    flex-shrink: 0;
    order: -1;
  }
  .dot-outer {
    width: 100%;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .progress-dot-line::before {
    width: 2px;
    height: 90%;
  }
  .step-txt h6 br:last-of-type {
    display: none;
  }
  .video-reviews {
    margin-top: 40px;
    padding: 30px;
    border-radius: 28px;
  }
  .review-box {
    display: none;
  }
  .mobile-review-accordion {
    display: block;
  }
  .mobile-review-item {
    padding: 18px 0 0 0;
  }
  .mobile-review-item:first-child {
    padding-top: 0;
  }
  .mobile-review-item:last-child {
    border-bottom: 0;
  }
  .mobile-review-header {
    width: 100%;
    padding: 0;
    border: 0;
    background: transparent;
    text-align: left;
    color: var(--white);
    cursor: pointer;
  }
  .mobile-review-header .name-progress {
    width: 100%;
    max-width: 100%;
    margin-bottom: 14px;
  }
  .mobile-review-header h4 {
    font-size: 22px;
    font-weight: 400;
    margin: 0;
    color: var(--white);
  }
  .mobile-review-header h4.active {
    font-weight: 700;
  }
  .mobile-review-content {
    padding-top: 22px;
  }
  .mobile-video {
    width: 100%;
    margin-bottom: 28px;
  }
  .mobile-video video {
    width: 100%;
    border-radius: 18px;
    margin-bottom: 0;
    display: block;
  }
  .mobile-video .video-sound-toggle {
    right: 16px;
    bottom: 16px;
  }
  .section4 .mobile-review-content .persona {
    margin-top: 20px;
  }
  .mobile-review-content .text-review {
    margin-top: 22px;
    max-width: 100%;
  }
  .mobile-review-content .text-review p {
    font-size: 22px;
    line-height: 1.2;
    text-align: left;
  }
}
@media only screen and (max-width: 475px) {
  .header-txt h1 {
    font-size: 50px;
  }
  .users_txt {
    width: 130px;
  }
  .head_simulation svg {
    top: 6px;
    width: 80px;
    height: auto;
  }
  .head_simulation {
    height: 220px;
  }
  .head_simulation img {
    margin-top: -50px;
  }
  .section1 {
    min-height: auto;
    padding: 60px 0 0 0;
  }
  .nav .container {
    max-width: 100%;
  }
  .nav .row.scrolling {
    transform: scale(0.95);
  }
  .text-review {
    margin-top: 15px;
  }
  .names {
    flex-wrap: wrap;
  }
  .name {
    width: 50%;
  }
  .progress-dot-line {
    left: -8%;
  }
  .footer-icon {
    width: 80%;
    max-width: 80%;
  }
  .footer .title {
    font-size: 23px;
  }
  .container-slide {
    height: 250px;
  }
  .container-slide .img {
    background-size: cover;
  }
  .nav .cta {
    padding: 0 15px;
  }
  .nav .cta p {
    font-size: 15px;
  }
}
@media only screen and (max-width: 435px) {
  .container-slide {
    height: 210px;
  }
  .container-slide .img {
    background-size: cover;
  }
}
@media only screen and (max-width: 390px) {
  .head_simulation svg {
    top: 40px;
    width: 135px;
    height: auto;
  }
  .head_simulation img {
    width: 600px;
  }
  .simulation_panel {
    margin-top: 50px;
  }
  .container-slide {
    height: 200px;
  }
  .review-text {
    padding: 0;
  }
  .cta {
    min-width: 100px;
  }
  .nav .cta {
    padding: 0 15px;
  }
  .nav .cta p {
    font-size: 14px;
  }
  #contactform .cta {
    width: 200px;
  }
  .intervencoes_grid {
    margin-top: 30px;
  }
  .container-slide {
    height: 210px;
  }
  .container-slide .img {
    background-size: cover;
  }
  .step-txt h6 {
    font-size: 14px;
  }
  .step {
    width: 100%;
  }
  .step-icon {
    width: 40px;
    height: 40px;
  }
  .step-icon img {
    height: 20px;
  }
  .progress-dot-line {
    left: -8%;
  }
  .footer .cta {
    width: 100%;
  }
  .footer .cta p {
    font-size: 16px;
  }
}
@media only screen and (max-width: 375px) {
  .section4 .persona img {
    width: 80px;
  }
  .section4 .persona {
    gap: 0 10px;
  }
  .mobile-review-content .text-review p {
    font-size: 18px;
  }
  .section4 .persona h6 {
    font-size: 17px;
  }
}
@media only screen and (max-width: 350px) {
  .header-txt h1 {
    font-size: 40px;
  }
  .nav .cta {
    height: 30px;
    padding: 0 10px;
  }
  .nav .cta p {
    font-size: 11px;
  }
  #contactform h3 {
    font-size: 16px;
  }
  .checkHair label {
    font-size: 13px;
  }
  .checkHair label span {
    width: 16px;
    height: 16px;
  }
  .hair-options {
    padding: 30px 20px;
  }
  .footer-icon {
    width: 100%;
    max-width: 100%;
  }
  .footer .title {
    font-size: 25px;
  }
  .container-slide {
    height: 190px;
  }
  .container-slide .img {
    background-size: cover;
  }
  .mobile-review-header h4 {
    font-size: 20px;
  }
}
