/* CSS Reset */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

*>img {
  display: block;
  max-width: 100%;
}

:root {
  font-size: 10px;

  --section-full-width: 1920px;
  --section-max-width: 1440px;
  --section-padding: 42px;
  --section-extra-padding: 120px;
  --section-gap: 120px;

  --beige500: #f8f6ed;
  --gray400: #6a6a6a;
  --gray500: #3c3b3b;
  --gray500-op: #3c3b3b2b;
  --rose500: #e36386;
  --rose500: #e36386;
  --yellow450: #f6d44d;
  --yellow500: #E4AF1F;
  --yellow600: #c59206;
  --blue500: #8fcbb2;
  --orange500: #efa06b;
}

html,
body {
  text-size-adjust: none;
  scroll-behavior: smooth;
  overflow-x: hidden;
  background-color: var(--beige500);
}

li {
  list-style: none;
}

a {
  text-decoration: none;
}

a,
li,
button {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

button {
  background-color: transparent;
}

button,
input,
select,
textarea {
  border: none;
}

body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
  margin-block-end: 0;
}

@font-face {
  font-family: 'Oswald';
  src: url('../assets/fonts/Oswald/Oswald-VariableFont_wght.ttf') format("trueType");
  font-display: swap;
}

@font-face {
  font-family: 'Futura LT Light';
  src: url('../assets/fonts/futura/futura\ light\ bt.ttf') format("trueType");
  font-display: swap;
}

@font-face {
  font-family: 'Futura Light Italic';
  src: url('../assets/fonts/futura/Futura\ Light\ Italic\ font.ttf') format("trueType");
  font-display: swap;
}

@font-face {
  font-family: 'Futura LT Bold';
  src: url('../assets/fonts/futura-lt/FuturaLT-Bold.woff2') format("trueType");
  font-display: swap;
}

@font-face {
  font-family: 'Futura';
  src: url('../assets/fonts/futura-lt/FuturaLT.woff2') format("woff2");
  font-display: swap;
}

@font-face {
  font-family: 'Futura Medium';
  src: url('../assets/fonts/futura/futura\ medium\ bt.ttf') format("trueType");
  font-display: swap;
}

@font-face {
  font-family: 'Futura Bold';
  src: url('../assets/fonts/futura/Futura\ Bold\ font.ttf') format("trueType");
  font-display: swap;
}

@font-face {
  font-family: 'OhNo Blazeface 12 Point';
  src: url('../assets/fonts/ohno-blazeface/OhnoBlazeface-12Point.woff2') format("woff2");
  font-display: swap;
}

/* Header */

.header {
  width: 100%;
  padding: 20px var(--section-padding);
  background: var(--beige500);
}

.header__wrapper-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 36px;
  max-width: var(--section-max-width);
  margin: 0 auto;
}

.header__logo {
  display: block;
  width: 20vw;
  max-width: 200px;
  min-width: 90px;
}

.header__list-navigation {
  display: flex;
}

.header__list-navigation li {
  display: flex;
  align-items: center;
  gap: clamp(24px, 2vw, 36px);
  margin-right: clamp(24px, 2vw, 36px);
}

.header__list-navigation li + li::before {
  content: '';
  display: block;
  height: 70%;
  width: 2px;
  background-color: #3c3b3b;
}

.header__list-navigation li a {
  font-family: 'Futura';
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  font-weight: normal;
  color: #3c3b3b;
  text-transform: uppercase;
  text-wrap: nowrap;
  transition: color .3s;
}

.header__list-navigation li a:hover,
.header__list-navigation li a:focus {
  color: var(--gray400);
}

.header__hamburguer-button {
  display: none;
}

.header__social-media-navigation {
  display: none;
}

/* Hero Banner */

.hero-banner {
  position: relative;
  width: 100%;
  height: 100vh;
  max-height: 900px;
  background-color: var(--gray500);
}

.hero-banner__wrapper-content {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  max-width: var(--section-max-width);
  height: 100%;
  margin: 0 auto;
  padding: clamp(136px, 10vw, 136px) var(--section-padding);
  z-index: 2;
}

.hero-banner__wrapper-text {
  width: 60vw;
  max-width: 910px;
}

.hero-banner__wrapper-text h1 {
  font-size: clamp(2.8rem, 5vw, 3.5rem);
  font-family: 'OhNo Blazeface 12 Point', serif;
  color: #fff;
  text-transform: uppercase;
}

.hero-banner__wrapper-text h1 span {
  position: relative;
}

.hero-banner__wrapper-text h1 span::after {
  content: '';
  position: absolute;
  top: 96%;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: var(--yellow500);
}

.hero-banner__wrapper-text p {
  margin: 24px 0 0 0;
  font-size: clamp(1.6rem, 5vw, 2.1rem);
  font-family: 'Futura', sans-serif;
  color: #fff;
}

.hero__list-benefits {
	display: flex;
	align-items: start;
	justify-content: center;
  gap: 12px;
	width: 60vw;
	max-width: 910px;
	margin: 42px 0 0 0;
}

.hero__list-benefits li {
  max-width: 180px;
  text-align: center;
  font-size: clamp(1.6rem, 5vw, 1.8rem);
  font-family: 'OhNo Blazeface 12 Point', sans-serif;
  text-transform: uppercase;
  color: #fff;
}

.hero__list-benefits li > div {
	max-width: 42px;
  margin: 0 auto 12px auto;
}

.hero-banner__wrapper-image {
  position: relative;
  width: 100%;
  height: 100vh;
  max-height: 900px;
}

.hero-banner__wrapper-image::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.hero-banner__wrapper-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__cta {
  width: 60vw;
	max-width: 910px;
	margin: 0 auto 0 0;
}

.hero__cta-button {
	display: block;
	width: 100%;
	max-width: 460px;
	margin: 36px auto 0 auto;
	padding: 20px 0;
	font-family: 'Futura LT Bold', sans-serif;
	font-size: clamp(1.6rem, 5vw, 1.8rem);
	color: #fff;
	background-color: #000;
	text-align: center;
	text-transform: uppercase;
	transition: all .4s;
}

.hero__cta-button:hover {
	background-color: #131212;
}

/* Float Form */

.float-form {
  position: fixed;
  top: 50%;
  left: 0;
  right: 0;
  width: 100%;
  max-width: var(--section-max-width);
  margin: 0 auto;
  padding: 0 var(--section-padding) 0 0;
  pointer-events: none;
  transform: translateY(-50%);
  z-index: 2;
}


.float-form__wrapper-content {
  width: 100%;
  max-width: 380px;
  margin: 0 0 0 auto;
}

.float-form__form {
  width: 100%;
  padding: 42px 24px 16px 24px;
  background: #000;
  border-radius: 12px;
  pointer-events: all;
}

.float-form h2 {
  font-family: 'Futura Medium', sans-serif;
  font-size: clamp(2.4rem, 5vw, 3.2rem);
}

.float-form__fieldset {
  border: none;
}

.float-form__fieldset legend {
  display: block;
  max-width: 220px;
  height: 67px;
  margin: 0 auto 36px auto;
}

.float-form__wrapper-input {
  position: relative;
  width: 100%;
  margin: 0 0 16px 0;
}

.float-form__wrapper-input label {
  display: block;
  max-height: 0;
  color: #fff;
  overflow: hidden;
}

.float-form__wrapper-input input {
  width: 100%;
  padding: 6px 8px;
  font-family: 'Futura Medium', sans-serif;
  font-size: clamp(1.4rem, 5vw, 1.6rem);
  color: #000;
  border: none;
  border-radius: 4px;
}

input:-webkit-autofill {
  -webkit-text-fill-color: #000;
  -webkit-box-shadow: 0 0 0px 1000px #fff inset;
}

.float-form__message-alert {
  position: absolute;
  top: 0;
  right: 105%;
  display: flex;
  gap: 8px;
  align-items: center;
  width: max-content;
  margin: 0 16px 0 0;
  padding: 4px 16px;
  font-family: 'Futura Medium', sans-serif;
  font-size: clamp(1.2rem, 5vw, 1.4rem);
  color: #fff;
  background-color: #3c3b3b;
  border-radius: 4px;
  visibility: hidden;
  opacity: 0;
  transition: all .5s;
}

.float-form__message-alert.--alert-input-active {
  right: 100%;
  visibility: visible;
  opacity: 1;
}

.float-form__message-alert::after {
  content: '';
  position: absolute;
  bottom: 12px;
  left: 99%;
  width: 0;
  height: 0;
  border-top: 5px solid transparent;
  border-left: 10px solid #3c3b3b;
  border-bottom: 5px solid transparent;
  border-radius: 0;
}

.float-form__message-alert span {
  display: block;
}

.float-form__message-alert svg  {
  max-width: 24px;
  max-height: 24px;
}

.float-form__wrapper-input input::placeholder {
  color: #000;
}

.float-form__contact-method p {
  display: block;
  width: 100%;
  margin: 10px 0 0 0;
  text-align: center;
  font-family: 'Futura Medium', sans-serif;
  font-size: clamp(1.4rem, 5vw, 1.6rem);
  color: #fff;
}

.float-form__wrapper-radio-inputs {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin: 10px 0 0 0;
}

.float-form__wrapper-input.--radio-input {
  display: flex;
  align-items: start;
  gap: 4px;
  width: initial;
  margin: initial;
}

.float-form__wrapper-input.--radio-input input {
  width: max-content;
  accent-color: var(--yellow500);
  cursor: pointer;
}

.float-form__wrapper-input.--radio-input label {
  display: flex;
  max-height: initial;
  margin: -2px 0 0 0;
  font-family: 'Futura Medium', sans-serif;
  font-size: clamp(1.2rem, 5vw, 1.4rem);
  color: #fff;
  cursor: pointer;
}

.float-form__button-submit {
  position: relative;
  display: block;
  width: 65%;
  margin: 24px auto 0 auto;
  padding: 8px 16px;
  font-family: 'Futura Medium', sans-serif;
  font-size: clamp(1.2rem, 5vw, 1.6rem);
  border-radius: 6px;
  background-color: var(--yellow500);
  color: #000;
  cursor: pointer;
  transition: all .4s;
}

.float-form__button-submit:hover {
  background-color: var(--yellow600);
}

.loading-spinner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 20px;
  height: 20px;
  border: 3px solid rgba(255, 255, 255, 0.3);
  border-top-color: #000;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  opacity: 0;
  transition: all .3s;
}

.float-form__button-contact {
  position: relative;
  display: flex;
  justify-content: end;
  width: 60%;
  margin: 12px auto 0 auto;
  padding: 6px 16px;
  background-color: #000;
  border-radius: 12px;
  pointer-events: all;
}

.float-form__contact-icon {
  position: absolute;
  top: 0;
  bottom: 0;
  left: -16px;
  display: flex;
  align-items: center;
  max-width: 52px;
}

.float-form__button-contact h2 {
  font-family: 'Futura Bold', sans-serif;
  font-size: clamp(2.8rem, 5vw, 2.8rem);
  color: #fff;
}

.float-form__dialog-box {
	position: absolute;
  right: -200vw;
  bottom: -24px;
	display: flex;
	align-items: center;
	width: 364px;
	height: auto;
	margin-top: 10px;
	padding: 0 16px 0 0;
	background-color: var(--beige500);
	transition: ease-in-out .5s;
	box-shadow: 2px 7px 7px 3px rgba(0, 0, 0, 0.25);
	border-radius: 8px;
  overflow: hidden;
  visibility: hidden;
  z-index: 1;
}

.float-form__dialog-box.--active-form-dialog {
  visibility: visible;
  right: 24px;
}

.float-form__dialog-icon {
  display: flex;
  align-items: center;
  height: 68px;
  padding: 0 8px;
  background-color: var(--gray400);
}

.float-form__dialog-icon svg path {
  display: none;
}

.float-form__dialog-box.--active-form-dialog.--danger .float-form__dialog-icon {
  background-color: var(--gray400);
  transition: all .3s;
}

.float-form__dialog-box.--active-form-dialog.--danger .float-form__dialog-icon svg .--icon-error{
  display: flex !important;
}

.float-form__dialog-box.--active-form-dialog.--success .float-form__dialog-icon {
  background-color: #3F612D;
}

.float-form__dialog-box.--active-form-dialog.--success .float-form__dialog-icon svg .--icon-success{
  display: flex !important;
}

.float-form__dialog-box p {
  margin: 0 0 0 16px;
  font-family: 'Futura', sans-serif;
  font-size: clamp(1.4rem, 5vw, 1.6rem);
  color: var(--gray500);
}

/* Product Problem */

.product-problem {
  width: 100%;
  max-width: 100%;
  margin: var(--section-extra-padding) auto;
}

.product-problem__wrapper-content {
  display: flex;
  gap: 24px;
  width: 100%;
  height: 100%;
  max-width: var(--section-max-width);
  margin: 0 auto;
}

.product-problem__wrapper-text {
  width: 67vw;
  max-width: 940px;
  margin: auto 0;
  padding: 0 var(--section-padding);
}

.product-problem__wrapper-text h2 {
  margin: 0 0 24px 0;
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-family: 'OhNo Blazeface 12 Point', serif;
  font-weight: normal;
  color: #000;
  text-transform: uppercase;
}

.product-problem__wrapper-text h2 span {
  display: block;
  color: var(--orange500);
}

.product-problem__wrapper-text p {
  margin: 0 0 16px 0;
  font-family: 'Futura LT Light', sans-serif;
  font-size: clamp(1.4rem, 5vw, 2rem);
  line-height: 1.5;
  color: #000;
}

.product-problem__card-item {
  display: flex;
  gap: 16px;
  margin: 42px 0 0 0;
  border: 1px solid #d2d2d2;
  box-shadow: 4px 4px 21px rgba(0, 0, 0, 0.025);
}

.product-problem__card-item > img {
  max-width: 400px;
  min-height: 100%;
  object-fit: cover;
  object-position: center;
}

.product-problem__item-wrapper-text {
  flex: 1;
  padding: 24px 24px 36px 24px;
}

.product-problem__item-wrapper-text h3 {
  position: relative;
  display: flex;
  flex-direction: column;
  font-family: 'OhNo Blazeface 12 Point';
  font-size: clamp(1.8rem, 5vw, 3.2rem);
  text-transform: uppercase;
}

.product-problem__item-wrapper-text h3::before {
  content: url('../assets/icons/bullet-point.png');
}

.product-problem__item-wrapper-text h4 {
  margin: 6px 0 0 0;
  font-family: 'Futura';
  font-size: clamp(1.4rem, 5vw, 1.6rem);
  text-transform: uppercase;
}

.product-problem__list {
  margin: 24px 0 0 0;
  padding: 0 0 0 24px;
}

.product-problem__list li {
  position: relative;
  margin: 16px 0 0 -16px;
  font-family: 'Futura Bold', sans-serif;
  font-size: clamp(1.4rem, 5vw, 1.8rem);
  text-transform: uppercase;
  color: var(--orange500);
}

.product-problem__list > li {
  margin: 24px 0 0 -16px;
}

.product-problem__sub-list li::before {
	content: '';
  position: absolute;
  top: 50%;
  right: calc(100% + 6px);
  transform: translateY(-50%);
  display: block;
  width: 16px;
  height: 16px;
  background: url('../assets/icons/bullet-point.png');
  background-size: 16px 16px;
}

.product-problem__sub-list {
  padding: 0 0 0 40px;
}

.product-problem__sub-list li {
  font-family: 'Futura Medium', sans-serif;
  font-size: clamp(1rem, 5vw, 1.2rem);
  color: #000;
}

/* 
.product-problem__list-problems li {
  position: relative;
  display: flex;
  align-items: center;
  margin: 0 0 16px 0;
  padding: 0 0 0 24px;
  font-family: 'Futura LT Light', sans-serif;
  font-size: clamp(1.4rem, 5vw, 1.8rem);
  color: #000;
  text-align: justify;
}

.product-problem__list-problems li::before {
  content: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIzMiIgaGVpZ2h0PSIzMiIgZmlsbD0iIzAwMDAwMCIgdmlld0JveD0iMCAwIDI1NiAyNTYiPjxwYXRoIGQ9Ik0yMDUuNjYsMTk0LjM0YTgsOCwwLDAsMS0xMS4zMiwxMS4zMkwxMjgsMTM5LjMxLDYxLjY2LDIwNS42NmE4LDgsMCwwLDEtMTEuMzItMTEuMzJMMTE2LjY5LDEyOCw1MC4zNCw2MS42NkE4LDgsMCwwLDEsNjEuNjYsNTAuMzRMMTI4LDExNi42OWw2Ni4zNC02Ni4zNWE4LDgsMCwwLDEsMTEuMzIsMTEuMzJMMTM5LjMxLDEyOFoiPjwvcGF0aD48L3N2Zz4=');
  display: flex;
  align-items: center;
  padding: 0 6px 0 0;
}

.product-problem__wrapper-text h3 {
  margin: 42px 0 24px 0;
  font-size: clamp(1.8rem, 5vw, 2.2rem);
  font-family: 'OhNo Blazeface 12 Point', serif;
  font-weight: normal;
  color: #fff;
  text-transform: uppercase;
}

.product-problem__wrapper-text h3 span {
  display: block;
  color: #000;
}

.product-problem__list-challenges {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(80px, 200px));
  align-items: center;
  justify-content: center;
  margin: 64px 0;
}

.product-problem__list-challenges li {
  max-width: 160px;
  text-align: center;
  font-size: clamp(1.6rem, 5vw, 1.8rem);
  font-family: 'OhNo Blazeface 12 Point', sans-serif;
  text-transform: uppercase;
  color: #000;
}

.product-problem__list-challenges li > div {
	max-width: 42px;
  margin: 0 auto 12px auto;
}

.product-problem__list-challenges li > div img {
	width: 100%;
	height: 100%;
} */

/* Product Solution */

.product-solution {
  max-width: var(--section-max-width);
  margin: 0 auto;
}

.product-solution__wrapper-content {
  width: 67vw;
  max-width: 940px;
  margin: var(--section-gap) 0;
  padding: 0 var(--section-padding);
}

.product-solution__wrapper-content h2 {
  margin: 0 0 42px 0;
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-family: 'OhNo Blazeface 12 Point', serif;
  font-weight: normal;
  color: #000;
  text-transform: uppercase;
}

.product-solution__wrapper-content h2 span {
  position: relative;
  background-image: linear-gradient(120deg, var(--yellow500) 0%, var(--yellow500) 100%);
  background-repeat: no-repeat;
  background-size: 100% 0.2em;
  background-position: 0 88%;
}

.product-solution__wrapper-content p {
  margin: 16px 0 0 0;
  font-family: 'Futura', sans-serif;
  font-size: clamp(1.4rem, 5vw, 2.2rem);
  color: #000;
}

.product-solution__wrapper-benefits {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 56px;
  max-width: 940px;
  margin: 36px auto 0 auto;
}

.product-solution__wrapper-text {
  max-width: 480px;
  flex: 1 1 270px;
}

.product-solution__wrapper-text h3 {
  margin: 0 0 16px 0;
  font-size: clamp(2.4rem, 5vw, 2.8rem);
  font-family: 'OhNo Blazeface 12 Point', serif;
  font-weight: normal;
  color: #000;
  text-transform: uppercase;
}

.product-solution__wrapper-text p {
  margin: 16px 0 0 0;
  font-family: 'Futura LT Light', sans-serif;
  font-size: clamp(1.4rem, 5vw, 1.8rem);
  color: #000;
  text-align: justify;
}

.product-solution__wrapper-image {
  max-width: 360px;
}

.product-solution__wrapper-image img {
  object-fit: cover;
}

.product-solution__list-benefits {
  margin: 36px auto 0 auto;
  padding: 0 16px;
}
.product-solution__list-benefits li {
  margin: 24px 0 0 0;
}

.product-solution__list-benefits h4 {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 0 0 0 -16px;
  font-family: 'Futura LT Light', sans-serif;
  font-size: clamp(1.4rem, 5vw, 1.8rem);
}

.product-solution__list-benefits h4::before {
  content: url('../assets/icons/bullet-point.png');
}

.product-solution__list-benefits p {
  margin: 6px 0 0 0;
}

/* Partners */

.partners {
  max-width: var(--section-max-width);
  margin: var(--section-extra-padding) auto;
}

.partners__wrapper-content {
  width: 67vw;
  max-width: 940px;
  margin: var(--section-gap) 0;
  padding: 0 var(--section-padding);
}

.partners__wrapper-content h2 {
  margin: 0 0 24px 0;
  text-align: left;
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-family: 'OhNo Blazeface 12 Point', serif;
  font-weight: normal;
  color: #000;
  text-transform: uppercase;
}

.partners__wrapper-content h2 span {
  position: relative;
  background-image: linear-gradient(120deg, var(--yellow500) 0%, var(--yellow500) 100%);
  background-repeat: no-repeat;
  background-size: 100% 0.2em;
  background-position: 0 88%;
}

.partners__wrapper-content p {
	margin: 0 0 16px 0;
	font-family: 'Futura LT Light', sans-serif;
	font-size: clamp(1.4rem, 5vw, 2rem);
	line-height: 1.5;
	color: #000;
}

.partners-splide  {
  margin: 42px 0 0 0;
}
.partners-splide .splide__slide {
	position: relative;
  display: flex;
  align-items: center;
	max-height: 500px;
}

.partners-splide .splide__slide div {
	max-width: 100px;
	height: 100px;
}

.partners-splide .splide__slide div img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* About */

.about {
  max-width: var(--section-max-width);
  margin: var(--section-extra-padding) auto var(--section-gap) auto;
}

.about__wrapper-content {
  width: 67vw;
  max-width: 940px;
  margin: var(--section-gap) 0;
  padding: 0 var(--section-padding);
}

.about__wrapper-content h2 {
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-family: 'OhNo Blazeface 12 Point', serif;
  font-weight: normal;
  color: #000;
  text-transform: uppercase;
}

.about__wrapper-content h2 span {
  position: relative;
  background-image: linear-gradient(120deg, var(--yellow500) 0%, var(--yellow500) 100%);
  background-repeat: no-repeat;
  background-size: 100% 0.2em;
  background-position: 0 88%;
}

.about__wrapper-content p {
	margin: 24px 0 16px 0;
	font-family: 'Futura LT Light', sans-serif;
	font-size: clamp(1.4rem, 5vw, 2rem);
	line-height: 1.5;
	color: #000;
}

.about__wrapper-content p span {
  position: relative;
  background-image: linear-gradient(120deg, var(--yellow500) 0%, var(--yellow500) 100%);
  background-repeat: no-repeat;
  background-size: 100% 0.2em;
  background-position: 0 88%;
}

.about-splide {
  margin: 36px 0 0 0;
}

.about-splide .splide__track {
  padding-top: 16px;
  padding-bottom: 16px;
}

.about-splide .splide__pagination {
	bottom: -1.5em;
}  

.about-splide .splide__pagination__page.is-active {
  background: #333;
}

.about-splide .splide__arrow {
  /* width: 3em; */
  /* height: 3em; */
  background-color: transparent;
}  

.about-splide .splide__arrow svg {
	height: 1.7em;
	width: 1.7em;
}
.about-splide .splide__arrow--prev {
	left: -2.5em;
}  

.about-splide .splide__arrow--next {
	right: -2.5em;
}  

.about__list-item {
  margin: 0 0 16px 0;
  border: 1px solid #d2d2d2;
  box-shadow: 4px 4px 21px rgba(0, 0, 0, 0.025);
}

.about__item-wrapper-image {
  height: 220px;
}

.about__item-wrapper-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.about__item-wrapper-text {
  padding: 36px 24px;
}

.about__list-item h4 {
  font-family: 'Futura Bold';
  font-size: clamp(1.8rem, 5vw, 2.4rem);
  text-transform: uppercase;
}

.about__list-item h5 {
  margin: 6px 0 0 0;
  font-family: 'Futura';
  font-size: clamp(1.4rem, 5vw, 1.6rem);
  text-transform: uppercase;
}

.about__sub-list {
  margin: 24px 0 0 0;
  padding: 0 0 0 24px;
}

.about__sub-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 12px 0 0 -16px;
  font-family: 'Futura LT Light', sans-serif;
  font-size: clamp(1.4rem, 5vw, 1.6rem);
}

.about__sub-list li::before {
	content: url('../assets/icons/bullet-point.png');
	height: 100%;
	display: flex;
	align-items: center;
}

.about__list-item h6 {
  margin: 24px 0 0 0;
  font-family: 'Futura Light Italic';
  font-size: clamp(1.4rem, 5vw, 1.6rem);
}

.about__cta {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  flex-wrap: wrap;
  gap: 24px;
  margin: var(--section-padding) auto 0 auto;
  padding: 36px 0;
  border: 1px solid #d6d6d6;
}

.about__cta h6 {
  font-size: clamp(1.8rem, 5vw, 2.8rem);
  font-family: 'OhNo Blazeface 12 Point', serif;
  font-weight: normal;
  color: #000;
  text-transform: uppercase;
}

.about__cta h6 span {
  background-image: linear-gradient(120deg, var(--yellow500) 0%, var(--yellow500) 100%);
  background-repeat: no-repeat;
  background-size: 100% 0.3em;
  background-position: 0 88%;
}

.about__cta a {
  display: block;
  width: 100%;
  max-width: 320px;
  padding: 12px 0;
  font-family: 'Futura LT Bold', sans-serif;
  font-size: clamp(1.6rem, 5vw, 1.8rem);
  color: #fff;
  background-color: #000;
  text-align: center;
  text-transform: uppercase;
  transition: all .4s;
}

.about__cta a:hover {
  background-color: #131212;
}

/* Events */

.events {
  max-width: var(--section-max-width);
  margin: var(--section-extra-padding) auto;
}

.events__wrapper-content {
  width: 67vw;
  max-width: 940px;
  margin: var(--section-gap) 0;
  padding: 0 var(--section-padding);
}

.events__wrapper-content h2 {
  margin: 0 0 24px 0;
  text-align: center;
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-family: 'OhNo Blazeface 12 Point', serif;
  font-weight: normal;
  color: #000;
  text-transform: uppercase;
}

.events__wrapper-content h2 span {
  position: relative;
  background-image: linear-gradient(120deg, var(--yellow500) 0%, var(--yellow500) 100%);
  background-repeat: no-repeat;
  background-size: 100% 0.2em;
  background-position: 0 88%;
}

.events__wrapper-content > p {
	font-family: 'Futura LT Light', sans-serif;
	font-size: clamp(1.4rem, 5vw, 2rem);
	line-height: 1.5;
	color: #000;
}

.events-splide .splide__slide {
	position: relative;
	max-height: 500px;
  margin: 42px 0 0 0;
}

.events-splide .splide__pagination {
	bottom: -3.5em;
}

.events-splide .splide__pagination__page.is-active {
	background: #333;
}

.events-splide .splide__arrow {
  /* width: 3em; */
  /* height: 3em; */
  background-color: transparent;
}  

.events-splide .splide__arrow svg {
	height: 1.7em;
	width: 1.7em;
}
.events-splide .splide__arrow--prev {
	left: -2.5em;
}  

.events-splide .splide__arrow--next {
	right: -2.5em;
}  

.events-splide .splide__arrow--prev {
	left: -2.5em;
}

.events-splide .splide__arrow--next {
	right: -2.5em;
}

.events-splide__wrapper-image {
  width: 100%;
  height: 100%;
}

.events-splide__wrapper-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: bottom;
}

/* Advantages */

.advantages {
  margin: var(--section-gap) 0 0 0;
  padding: 100px 0;
  background-color: var(--orange500);
}

.advantages__wrapper-content {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.advantages__wrapper-text {
  padding: 0 var(--section-padding);
}

.advantages__wrapper-text h2 {
  margin: 0 0 24px 0;
  font-size: clamp(2.4rem, 5vw, 3.6rem);
	font-family: 'OhNo Blazeface 12 Point', serif;
	font-weight: normal;
	color: #000;
	text-transform: uppercase;
}

.advantages__wrapper-text h2 span {
  display: block;
  color: #fff;
}

.advantages__wrapper-text > p {
	font-family: 'Futura LT Light', sans-serif;
	font-size: clamp(1.4rem, 5vw, 2rem);
	line-height: 1.5;
	color: #000;
}

.advantages__columns {
  display: flex;
  gap: 42px;
  justify-content: center;
  margin: var(--section-padding) 0 0 0;
}

.advantages__list {
  margin: 36px 0 0 0;
  padding: 0 0 0 24px;
}

.advantages__list li {
	display: flex;
	align-items: center;
  max-width: 600px;
	margin: 0 0 36px 0;
	padding: 0 0 0 24px;
	font-family: 'Futura LT Light', sans-serif;
	font-size: clamp(1.4rem, 5vw, 2rem);
	color: #000;
}

.advantages__list li span {
	display: block;
  margin: 0 16px 0 0;
}

.advantages__list li strong {
	display: block;
  font-family: 'Futura LT Bold', sans-serif;
	font-size: clamp(1.4rem, 5vw, 1.8rem);
  text-transform: uppercase;
}

.advantages__wrapper-image {
  max-width: 360px;
  max-height: 500px;
}

.advantages__wrapper-image img {
  max-height: 100%;
}

.advantages__end-section {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin: 36px 0 0 0;
}

.advantages__end-section-icon {
  max-width: 42px;
}

.advantages__end-section h3 {
  display: flex;
  font-family: 'Futura Medium', sans-serif;
	font-size: clamp(1.4rem, 5vw, 2.4rem);
}

/* Form Budget */

.form-budget {
  position: relative;
  padding: var(--section-gap) var(--section-padding);
}

.form-budget__wrapper-content {
  margin: 0 auto;
  max-width: 960px;
}

.form-budget__wrapper-content h2 {
  max-width: 700px;
  margin: 0 auto 24px auto;
  text-align: center;
  font-size: clamp(2.4rem, 5vw, 3.6rem);
	font-family: 'OhNo Blazeface 12 Point', serif;
	font-weight: normal;
	color: #000;
	text-transform: uppercase;
}

.form-budget__wrapper-content p {
  font-family: 'Futura LT Light', sans-serif;
	font-size: clamp(1.4rem, 5vw, 2rem);
	line-height: 1.5;
	color: #000;
}

.form-budget__form {
  position: relative;
  max-width: 960px;
  margin: 64px auto;
}

.form-budget__fieldset {
  border: none;
}

.form-budget__flex-row-inputs {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.form-budget__flex-row-inputs > div {
  flex: 1 1 220px;
}

.form-budget__wrapper-input {
  position: relative;
  width: 100%;
  margin: 0 0 16px 0;
}

.form-budget__wrapper-input input::placeholder {
  color: var(--gray500-op);
}

.form-budget__wrapper-input label {
  display: block;
  margin: 0 0 10px 0;
  font-family: 'Futura LT Light', sans-serif;
  font-size: clamp(1.4rem, 5vw, 1.6rem);
  text-transform: uppercase;
  color: #000;
}

.form-budget__wrapper-input input,
.form-budget__wrapper-input textarea {
  width: 100%;
  padding: 6px 8px;
  font-family: 'Futura Medium', sans-serif;
  font-size: clamp(1.4rem, 5vw, 1.6rem);
  color: #000;
  border: 1px solid #d6d6d6;
  background-color: transparent;
  outline: none;
  outline-style: solid;
  outline-color: transparent;
  resize: none;
}

input:-webkit-autofill {
  -webkit-text-fill-color: #000;
  -webkit-box-shadow: 0 0 0px 1000px #fff inset;
}

.form-budget__message-alert {
  position: relative;
  display: none;
  gap: 8px;
  align-items: center;
  width: 100%;
  margin: 16px 0 0 0;
  padding: 4px 16px;
  font-family: 'Futura Medium', sans-serif;
  font-size: clamp(1.2rem, 5vw, 1.4rem);
  color: #fff;
  background-color: #3c3b3b;
  border-radius: 4px;
  visibility: hidden;
  opacity: 0;
  transition: all .5s;
}

.form-budget__message-alert.--alert-input-active {
  right: 0px;
  visibility: visible;
  display: flex;
  opacity: 1;
}

.form-budget__message-alert::after {
  content: '';
  position: absolute;
  top: -8px;
  left: 0;
  right: 0;
  width: 0;
  height: 0;
  margin: auto;
  border-top: initial;
  border-right: 5px solid transparent;
  border-left: 5px solid transparent;
  border-bottom: 10px solid #3c3b3b;
  border-radius: 0;
}

.form-budget__message-alert span {
  display: block;
}

.form-budget__message-alert svg  {
  max-width: 24px;
  max-height: 24px;
}

.form-budget__wrapper-input input::placeholder {
  font-family: 'Futura LT Light', sans-serif;
  color: var(--gray400);
}

.form-budget__contact-method p {
  display: block;
  width: 100%;
  margin: 10px 0 0 0;
  text-align: center;
  font-family: 'Futura Medium', sans-serif;
  font-size: clamp(1.4rem, 5vw, 1.6rem);
  color: #fff;
}

.form-budget__wrapper-radio-inputs {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin: 10px 0 0 0;
}

.form-budget__wrapper-input.--radio-input {
  display: flex;
  align-items: start;
  gap: 4px;
  width: initial;
  margin: initial;
}

.form-budget__wrapper-input.--radio-input input {
  width: max-content;
  accent-color: var(--yellow500);
  cursor: pointer;
}

.form-budget__wrapper-input.--radio-input label {
  display: flex;
  max-height: initial;
  margin: -2px 0 0 0;
  font-family: 'Futura Medium', sans-serif;
  font-size: clamp(1.2rem, 5vw, 1.4rem);
  color: #fff;
  cursor: pointer;
}

.form-budget__button-submit {
  position: relative;
  display: block;
  width: 320px;
  margin: 24px auto 0 auto;
  padding: 12px 16px;
  text-align: center;
  font-family: 'Futura LT Bold', sans-serif;
  font-size: clamp(1.6rem, 5vw, 1.8rem);
  border-radius: 6px;
  background-color: #000;
  color: #fff;
  cursor: pointer;
  text-transform: uppercase;
  transition: all .4s;
}

.form-budget__button-submit:hover {
  background-color: #131212;
}

.form-budget__button-submit .loading-spinner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 20px;
  height: 20px;
  border: 3px solid rgba(255, 255, 255, 0.3);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  opacity: 0;
  transition: all .3s;
}

.form-budget__button-contact {
  position: relative;
  display: flex;
  justify-content: end;
  width: 60%;
  margin: 12px auto 0 auto;
  padding: 6px 16px;
  background-color: #000;
  border-radius: 12px;
  pointer-events: all;
}

.form-budget__contact-icon {
  position: absolute;
  top: 0;
  bottom: 0;
  left: -16px;
  display: flex;
  align-items: center;
  max-width: 52px;
}

.form-budget__button-contact h2 {
  font-family: 'Futura Bold', sans-serif;
  font-size: clamp(2.8rem, 5vw, 2.8rem);
  color: #fff;
}

.form-budget__dialog-box {
	position: absolute;
  right: -200vw;
  bottom: -84px;
	display: flex;
	align-items: center;
	width: 364px;
	height: auto;
	margin-top: 10px;
	padding: 0 16px 0 0;
	background-color: var(--beige500);
	transition: ease-in-out .5s;
	box-shadow: 2px 7px 7px 3px rgba(0, 0, 0, 0.25);
	border-radius: 8px;
  overflow: hidden;
  visibility: hidden;
  z-index: 1;
}

.form-budget__dialog-box.--active-form-dialog {
  visibility: visible;
  right: 0;
}

.form-budget__dialog-icon {
  display: flex;
  align-items: center;
  height: 68px;
  padding: 0 8px;
  background-color: var(--gray400);
}

.form-budget__dialog-icon svg path {
  display: none;
}

.form-budget__dialog-box.--active-form-dialog.--danger .form-budget__dialog-icon {
  background-color: var(--gray400);
  transition: all .3s;
}

.form-budget__dialog-box.--active-form-dialog.--danger .form-budget__dialog-icon svg .--icon-error{
  display: flex !important;
}

.form-budget__dialog-box.--active-form-dialog.--success .form-budget__dialog-icon {
  background-color: #3F612D;
}

.form-budget__dialog-box.--active-form-dialog.--success .form-budget__dialog-icon svg .--icon-success{
  display: flex !important;
}

.form-budget__dialog-box p {
  margin: 0 0 0 16px;
  font-family: 'Futura', sans-serif;
  font-size: clamp(1.4rem, 5vw, 1.6rem);
  color: var(--gray500);
}

.form-budget__seal-sticker {
  position: sticky;
  top: 0;
  right: 0;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  max-width: 100%;
  margin: 36px 0 0 0;
  padding: 16px 24px;
  background-color: var(--beige500);
  border-radius: 10px;
  border: 4px dashed var(--blue500);
}

.form-budget__seal-sticker span {
  display: flex;
  align-items: center;
  max-width: 70px;
}

.form-budget__seal-sticker-separator {
  display: block;
  height: 24px;
  border: 4px dotted var(--blue500);
}

.form-budget__seal-sticker h3 {
  margin: 0;
  text-align: left;
  font-family: 'OhNo Blazeface 12 Point', sans-serif;
	font-size: clamp(1.4rem, 5vw, 1.8rem);
  text-transform: uppercase;
	color: #000;
}

.form-budget__seal-sticker p {
  margin: 0;
  text-align: left;
  font-family: 'Futura LT Light', sans-serif;
	font-size: clamp(1.4rem, 5vw, 1.6rem);
	color: #000;
}

.form-budget__wrapper-image-seal {
  width: 100%;
  height: 100%;
}

.form-budget__wrapper-image-seal svg {
  width: 100%;
  height: 100%;
  object-fit: fill;
}

.form-budget__end-message {
  margin: 64px 0 0 0;
  text-align: center;
}

/* Float Form */

.float-form-whatsapp {
  position: fixed;
  bottom: 10px;
  right: 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  z-index: 5;
  pointer-events: none;
}

.float-form-whatsapp__form {
  max-width: 250px;
  margin-right: 30px;
  background-color: #ebe5de;
  border-radius: 5px;
  overflow: hidden;
  pointer-events: all;
}

.--form-inactive {
  opacity: 0;
  transform: translateY(80px);
  visibility: hidden;
  transition: all .4s;
}

.--form-active {
  opacity: 1;
  transform: translateY(-10px);
  visibility: visible;
  transition: all .4s;
}

.float-form-whatsapp__header {
  display: flex;
  justify-content: space-between;
  width: 100%;
  padding: 12px 16px;
  background-color: #053a33;
}

.float-form-whatsapp__header__perfil {
  display: flex;
  align-items: center;
  gap: 10px;
}

.header__perfil__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  padding: 10px;
  font-family: 'Sora', sans-serif;
  font-size: 16px;
  color: #fff;
  border-radius: 50%;
  background-color: var(--yellow500);
}

.header__perfil__text h2 {
  font-family: 'Sora', sans-serif;
  font-weight: normal;
  font-size: 16px;
  color: #fff;
}

.header__perfil__text p {
  font-family: 'Sora', sans-serif;
  font-weight: normal;
  font-size: 12px;
  color: #fff;
}

.float-form-whatsapp__header__button-close {
  display: flex;
  align-items: center;
  cursor: pointer;
  pointer-events: all;
}

.float-form-whatsapp__wrapper-fields {
  width: 100%;
  padding: 16px;
  border: none;
  background-color: #e8e2db;
}

.float-form-whatsapp__wrapper-fields legend {
  float: left;
  max-width: 196px;
  padding: 9px;
  background-color: rgb(247, 247, 247);
  border: 1px solid rgb(229, 231, 235);
  border-radius: 7px;
  font-family: 'Sora', sans-serif;
  font-weight: normal;
  font-size: 12px;
  line-height: 20px;
  color: #000;
}

.float-form-whatsapp__wrapper-fields__alert {
  float: right;
  width: 196px;
  max-height: 0px;
  padding: 0px;
  margin-top: 0px;
  font-size: 12px;
  font-family: 'Sora', sans-serif;
  font-weight: normal;
  background: rgb(232, 255, 231);
  border-radius: 7px;
  transition: all .4s;
  transform: translateX(-200%);
  overflow: hidden;
}

.--alert-active {
  max-height: 80px;
  margin-top: 12px;
  padding: 9px;
  transform: translateX(0px);
}

.--alert-active span {
  font-size: 16px;
}

.float-form-whatsapp__wrapper-fields__wrapper-input {
  float: right;
}

.float-form-whatsapp__wrapper-fields__wrapper-input label {
  display: block;
  max-height: 0px;
  max-width: 0px;
  overflow: hidden;
}

.float-form-whatsapp__wrapper-fields__wrapper-input input {
  float: right;
  width: 196px;
  padding: 9px;
  margin-top: 12px;
  font-size: 12px;
  font-family: 'Sora', sans-serif;
  font-weight: normal;
  background: rgb(232, 255, 231);
  border-radius: 7px;
}

.float-form-whatsapp__button-submit {
  position: relative;
  width: 100%;
  margin-top: 12px;
  padding: 9px;
  background-color: rgb(5, 58, 51);
  border-radius: 7px;
  font-size: clamp(12px, 5vw, 14px);
  font-family: 'Sora', sans-serif;
  font-weight: normal;
  color: #fff;
  cursor: pointer;
}

.float-form-whatsapp__button-submit .loading-spinner {
	border: 3px solid rgba(255, 255, 255, 0.3);
	border-top-color: #fff;
}

/* Float form - WhatsApp Button */

.whatsapp-button {
  display: block;
  width: 60px;
  height: 60px;
  background-color: transparent;
  border: none;
  border-radius: 50%;
  overflow: hidden;
  transition: all .4s;
  box-shadow: 0px 6px 11px 0px rgba(0, 0, 0, 0.25);
  cursor: pointer;
  pointer-events: all;
  z-index: 6;
}

.whatsapp-button img {
  pointer-events: none;
}

/* Footer */

.footer {
  width: 100%;
  padding: 10px var(--section-padding);
  background-color: #000;
}

.footer__wrapper-content {
  display: flex;
  justify-content: center;
  gap: 16px;
  width: 67vw;
  max-width: 1240px;
}

.footer__wrapper-content p {
  font-family: 'Futura Medium';
  font-size: clamp(1.2rem, 5vw, 1.4rem);
  color: #fff;
}

.footer__wrapper-content p a {
  color: #fff;
  transition: all .3s;
}

.footer__wrapper-content p a:hover {
  color: var(--yellow500);
}

.footer__separator {
  display: inline-block;
  width: 2px;
  height: 18px;
  background-color: #fff;
}

/* Media Queries */

@media(min-width: 1800px) {
}

@media(max-width: 1150px) {

  :root {
    --section-gap: 56px;
  }

  /* Header */

  .header {
    position: relative;
  }

  .header__logo {
    display: block;
    width: 20vw;
    max-width: 150px;
    min-width: 120px;
    margin: 0 auto;
  }

  .header__logo img {
    margin: 0 0 0 20px;
  }
  
  .header__list-navigation {
    position: absolute;
    left: -100%;
    top: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
    height: 100vh;
    min-height: 530px;
    padding: 24px 42px;
    border-top: 1px solid #3c3b3b2b;
    background-color: var(--beige500);
    transition: all .25s cubic-bezier(.165,.84,.44,1);
    visibility: hidden;
    z-index: 3;
  }
  
  .header__list-navigation.--menu-active {
    left: 0%;
    visibility: visible;
  }

  .header__list-navigation.--menu-active li,
  .header__list-navigation.--menu-active ul {
    animation: slide-bottom-in 700ms cubic-bezier(.165,.84,.44,1) forwards;
  }

  .header__list-navigation li {
    opacity: 0;
  }

  .header__list-navigation li + li::before {
    content: '';
    display: none;
  }

  .header__list-navigation li a {
    font-size: clamp(1.2rem, 5vw, 1.8rem);
    text-wrap: wrap;
    line-height: 1.6;
  }

  .header__hamburguer-button {
    position: relative;
    display: inline-block;
    min-width: 30px;
    min-height: 20px;
    cursor: pointer;
  }

  .header__hamburguer-button span {
    position: absolute;
    right: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: #3c3b3b;
    border-radius: 10px;
    transition: ease .3s;
  }

  .header__hamburguer-button span:nth-child(1) {
    top: 0px;
  }

  .header__hamburguer-button span:nth-child(2) {
    top: 8px;
    width: 70%;
  }

  .header__hamburguer-button span:nth-child(3) {
    top: 16px;
  }

  .header__hamburguer-button.--hamburguer-active span:nth-child(1) {
    top: 10px;
    transform: rotate(45deg);
  }

  .header__hamburguer-button.--hamburguer-active span:nth-child(2) {
    top: 10px;
    width: 100%;
    transform: rotate(-45deg);
  }

  .header__hamburguer-button.--hamburguer-active span:nth-child(3) {
    width: 0%;
  }

  .header__social-media-navigation {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: max-content;
    border: 1px solid #3c3b3b2b;
    opacity: 0;
  }

  .header__social-media-navigation li {
    margin: 0;
    padding: 8px 36px;
  }

  .header__social-media-navigation li {
    border-left: 1px solid #3c3b3b2b;
  }

  .header__social-media-navigation li a {
    display: flex;
    align-items: center;
    max-width: 20px;
  }

  /* Hero Banner */

  .hero-banner__wrapper-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0px var(--section-padding);
  }

  .hero__cta {
    margin: 0 auto;
  }

  .hero__list-benefits {
    margin: 42px auto 0 auto;
  }
  
  /* Product Problem */

  .product-problem {
    height: auto;
    min-height: auto;
    margin: var(--section-gap) auto;
  }

  .product-problem__wrapper-content {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    width: 100%;
  }

  .product-problem__wrapper-text {
    flex: 1 1 400px;
    max-width: 100%;
    order: 1;
  }

  .product-problem__wrapper-text h2 {
  	margin: 42px 0 24px 0;
  }

  .product-problem__list-problems li {
    padding: 0;
  }

  .product-solution__list-images {
    margin: 16px auto 36px auto;
  }

  /* Events */

  .events__wrapper-content {
    width: 100%;
    max-width: 100%;
    margin: var(--section-gap) auto;
  }


  .product-solution__list-images li:first-child {
    display: flex;
    justify-content: center;
    flex: 1 0 100px;
    max-width: 100px;
  }

  .product-solution__list-images li:first-child img {
    max-width: 60px;
  }
  
  .product-solution__list-images li {
    flex: 1 1 77px;
    max-width: 77px;
  }

  .product-problem__list-challenges {
    grid-template-columns: repeat(auto-fit, minmax(80px, 150px));
    gap: 20px;
  }

  .product-problem__list-challenges li {
    margin: 16px 0;
  }
  
  /* Product Solution */

  .product-solution__wrapper-content {
    width: 100%;
    max-width: 1240px;
    padding: 0 var(--section-padding);
  }

  .product-solution__wrapper-text {
    max-width: 100%;
    margin: 24px auto;
    padding: initial;
  }

  .product-solution__wrapper-text p {
    text-align: justify;
  }

  /* Events */

  .partners__wrapper-content {
    width: 100%;
    max-width: 100%;
    margin: var(--section-gap) auto;
  }

  /* About */

  .about__wrapper-content {
    width: 100%;
    max-width: 100%;
    margin: var(--section-gap) auto;
  }

  .about__cta {
    border: none;
  }

  /* Offers */

  .offer {
    width: 100%;
    max-width: 100%;
    margin: var(--section-gap) 0 0 0;
  }

  .offer__wrapper-content {
    max-width: 100%;
  }

  .offer__list-offers > li {
    justify-content: center;
    margin: 56px 0 0 0;
  }

  /* Float form */
  
  .float-form {
    position: initial;
    display: none;
    margin: var(--section-gap) auto;
    padding: 0 16px;
    overflow: hidden;
  }

  .float-form__form {
    position: relative;
    padding: 42px 16px;
    border-radius: 6px;
  }

  .float-form__wrapper-content {
    width: 100%;
    max-width: 100%;
  }

  .float-form__fieldset legend {
    max-width: 160px;
  }

  .float-form__wrapper-input input {
    width: 100%;
    padding: 12px 16px;
    font-family: 'Futura Medium', sans-serif;
    font-size: clamp(1.4rem, 5vw, 1.6rem);
    color: #000;
    border: none;
    border-radius: 4px;
  }
  
  .float-form__wrapper-input input::placeholder {
    color: var(--gray400);
  }

  .float-form__message-alert {
    position: relative;
    top: 0px;
    display: none;
    gap: 8px;
    align-items: center;
    width: 100%;
    margin: 16px 0 0 0;
  }
  
  .float-form__message-alert.--alert-input-active {
    right: 0px;
    visibility: visible;
    display: flex;
    opacity: 1;
  }

  .float-form__message-alert::after {
    top: -8px;
    bottom: initial;
    left: 0;
    right: 0;
    margin: auto;
    border-top: initial;
    border-right: 5px solid transparent;
    border-left: 5px solid transparent;
    border-bottom: 10px solid #3c3b3b;
  }

  .float-form__wrapper-input label {
    max-height: initial;
    margin: 10px 6px;
    font-family: 'Futura Medium', sans-serif;
    font-size: clamp(1.4rem, 5vw, 1.6rem);
  }

  .float-form__contact-method p {
    margin: 24px 0;
  }

  .float-form__button-submit {
    width: auto;
    padding: 12px 42px;
    font-size: clamp(1.6rem, 5vw, 1.8rem);
  }

  .float-form__button-contact {
    width: 100%;
    max-width: 220px;
  }

  .float-form__dialog-box {
    right: -200vw;
    top: 0px;
    bottom: initial;
    width: 80%;
  }
  
  .float-form__dialog-box.--active-form-dialog {
    right: 16px;
  }

  .float-form__dialog-icon {
    padding: 42px 8px;
  }

  /* Footer */

  .footer__wrapper-content {
    width: 100%;
    max-width: 100%;
  }
}

@media(max-width: 900px) {
  .product-problem__card-item {
    display: flex;
    flex-direction: column;
  }

  .product-problem__card-item > img {
    max-width: 100%;
    max-height: 300px;
  }

  .product-problem__item-wrapper-text h3 br {
    display: none;
  }
}

@media(max-width: 768px) {
  :root {
    --section-padding: 24px;
  }

  /* Hero Banner  */

  .hero-banner {
    height: 70vh;
    max-height: 100%;
    min-height: 750px;
  }

  .hero-banner__wrapper-text {
    width: 100%;
  }

  .hero__cta {
    width: 90%;
  }

  .hero__cta-button {
    padding: 16px 6px;
  }

  .hero__list-benefits {
    align-items: start;
    gap: 16px;
    width: 100%;
  }

  .hero__list-benefits li {
    font-size: clamp(1.2rem, 5vw, 1.4rem);
  }

  .hero-banner__wrapper-image {
    height: 70vh;
    max-height: 100%;
    min-height: 750px;
  }

  /* Product Solution */

  .product-solution__wrapper-benefits {
    gap: 24px;
  }

  .product-solution__wrapper-image {
    margin: 0 auto;
  }

  /* Partners */

  .partners {
    margin: var(--section-gap) auto;
  }

  .partners__wrapper-content h2 {
    text-align: left;
  }

  .partners-splide .splide__arrow--prev {
    left: 1em;
  }

  .partners-splide .splide__arrow--next {
    right: 1em;
  }

  /* About */

  .about-splide .splide__arrow--prev {
    top: initial;
    bottom: -3em;
    left: initial;
    right: 1.8em;
  }

  .about-splide .splide__arrow--next {
    top: initial;
    bottom: -3em;
    right: 0;
  }

  /* Events */

  .events {
    margin: var(--section-gap) auto var(--section-extra-padding) auto;
  }

  .events__wrapper-content h2 {
    text-align: left;
  }

  .events-splide .splide__arrow--prev {
    top: initial;
    bottom: -4em;
    left: initial;
    right: 1.8em;
  }

  .events-splide .splide__arrow--next {
    top: initial;
    bottom: -4em;
    right: 0;
  }

  /* Advantages */

  .advantages__wrapper-text {
    max-width: 100%;
  }

  .advantages__wrapper-content {
    width: 100%;
  }

  .advantages__columns {
    display: flex;
    gap: 42px;
    justify-content: center;
    flex-wrap: wrap-reverse;
    margin: var(--section-padding) 0 0 0;
  }
  
  .advantages__wrapper-image {
    max-width: 100%;
    max-height: 400px;
    overflow: hidden;
  }

  .advantages__wrapper-image img {
    max-height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center 65%;
  }

  .advantages__list {
    padding: 0;
  }

  .advantages__list li {
    padding: 0;
  }

  /* Budget Form */

  .form-budget__seal-sticker {
    flex-direction: column;
  }

  .form-budget__seal-sticker span {
    display: none;
  }

  .form-budget__flex-row-inputs {
    gap: 0px;
  }

  .form-budget__flex-row-inputs > div {
    flex: 1 1 370px;
  }

  .form-budget__dialog-box {
    max-width: 90vw;
    padding: 0;
  }

  .form-budget__button-submit {
    max-width: 85vw;
  }

  /* Footer */

  .footer__wrapper-content {
    flex-wrap: wrap;
    gap: 6px;
    padding: 16px 0;
  }

  .footer__separator {
    display: none;
  }
}

@media(max-height: 500px) {

  /* Hero Banner  */

  .hero-banner {
    min-height: 750px;
  }

  .hero-banner__wrapper-image {
    min-height: 750px;
  }

}

@media(max-width: 500px) {
  /* Solution */

  .product-solution__wrapper-image {
    order: 1;
    max-height: 300px;
    position: absolute;
    width: 100%;
    left: 0;
    max-width: 100%;
    overflow: hidden;
  }

  .product-solution__wrapper-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    object-position: center 85%;
  }

  .product-solution__wrapper-text {
    order: 2;
    max-width: 100%;
    margin: 336px auto 24px auto;
    padding: initial;
  }

  .product-solution__list-images {
    flex-wrap: wrap;
  }

  .product-solution__list-images li:first-child {
    display: flex;
    justify-content: center;
    flex: 1 0 595px;
    max-width: 500px;
  }

  .product-solution__list-images li:first-child img {
    max-width: 60px;
  }

  /* Advantages */

  .advantages__list-metrics {
    justify-content: center;
    gap: 24px;
  }

  .advantages__list-metrics li {
    max-width: 140px;
    flex: 1 1 140px;
  }
}

/* Key Frames */

@keyframes slide-bottom-in {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }

  100% {
    opacity: 1;
    transform: translateY(0px);
  }
}

@keyframes spin {
  0% { transform: translate(-50%, -50%) rotate(0deg); }
  100% { transform: translate(-50%, -50%) rotate(360deg); }
} 