html, body {
  min-height: 100%;
  scroll-behavior: smooth;
}

* {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 1rem;
  vertical-align: baseline;
  background: transparent;
  box-sizing: border-box;
  font-family: system-ui, sans-serif;
  font-weight: normal;
}

a, a:visited {
  text-decoration: none;
}

button {
  color: black;
  text-align: start;
}

ul:not(.list) li {
  list-style-type: none;
}

img, picture {
  display: block;
  max-width: 100%;
}

source {
  display: none;
}

html {
  scrollbar-width: thin;
  scrollbar-color: #9b9b9b #f2f2f5;
}

table {
  border-collapse: collapse;
}
table th {
  text-align: start;
}

input::-ms-reveal {
  display: none;
}

dialog {
  margin: auto;
}

.btn {
  font-size: 1.3rem;
  padding: 5px 35px;
  background-color: #d2131b;
  color: #FFFFFF;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 300ms;
  text-align: center;
}
.btn:hover {
  background-color: rgb(163.231441048, 14.768558952, 20.9868995633);
}

.color-primary-300, .color-primary-300-hover:hover {
  color: #EEC9C4;
}

.color-primary, .color-primary-hover:hover {
  color: #DE9794;
}

.color-primary-700, .color-primary-700-hover:hover {
  color: #D36380;
}

.color-primary-900, .color-primary-900-hover:hover {
  color: #582C4D;
}

.color-blue-300, .color-blue-300-hover:hover {
  color: #08BABA;
}

.color-blue, .color-blue-hover:hover {
  color: #2B4570;
}

.color-green-300, .color-green-300-hover:hover {
  color: #9BE190;
}

.color-green, .color-green-hover:hover {
  color: #419A78;
}

.color-yellow, .color-yellow-hover:hover {
  color: #E6D458;
}

.color-neutral-100, .color-neutral-100-hover:hover {
  color: #FFFFFF;
}

.color-neutral-200, .color-neutral-200-hover:hover {
  color: #f8f7f5;
}

.color-neutral-300, .color-neutral-300-hover:hover {
  color: #e2e2e2;
}

.color-neutral-400, .color-neutral-400-hover:hover {
  color: #d9d9d9;
}

.color-neutral-500, .color-neutral-500-hover:hover {
  color: #bcbfc2;
}

.color-neutral-600, .color-neutral-600-hover:hover {
  color: #7e7e7e;
}

.color-neutral-700, .color-neutral-700-hover:hover {
  color: #414141;
}

.color-neutral-800, .color-neutral-800-hover:hover {
  color: #2b2b2b;
}

.color-neutral-900, .color-neutral-900-hover:hover {
  color: #1c1c1c;
}

.color-danger, .color-danger-hover:hover {
  color: #d2131b;
}

.color-warning, .color-warning-hover:hover {
  color: #fdf213;
}

.color-success, .color-success-hover:hover {
  color: #49cb54;
}

.color-infos, .color-infos-hover:hover {
  color: #5da2f6;
}

.bg-primary-300 {
  background-color: #EEC9C4;
}

.bg-primary {
  background-color: #DE9794;
}

.bg-primary-700 {
  background-color: #D36380;
}

.bg-primary-900 {
  background-color: #582C4D;
}

.bg-blue-300 {
  background-color: #08BABA;
}

.bg-blue {
  background-color: #2B4570;
}

.bg-green-300 {
  background-color: #9BE190;
}

.bg-green {
  background-color: #419A78;
}

.bg-yellow {
  background-color: #E6D458;
}

.bg-neutral-100 {
  background-color: #FFFFFF;
}

.bg-neutral-200 {
  background-color: #f8f7f5;
}

.bg-neutral-300 {
  background-color: #e2e2e2;
}

.bg-neutral-400 {
  background-color: #d9d9d9;
}

.bg-neutral-500 {
  background-color: #bcbfc2;
}

.bg-neutral-600 {
  background-color: #7e7e7e;
}

.bg-neutral-700 {
  background-color: #414141;
}

.bg-neutral-800 {
  background-color: #2b2b2b;
}

.bg-neutral-900 {
  background-color: #1c1c1c;
}

.bg-danger {
  background-color: #d2131b;
}

.bg-warning {
  background-color: #fdf213;
}

.bg-success {
  background-color: #49cb54;
}

.bg-infos {
  background-color: #5da2f6;
}

.d-none {
  display: none;
}

.d-block {
  display: block;
}

.d-flex {
  display: flex;
}

.f-column {
  display: flex;
  flex-direction: column;
}

.f-column-reverse {
  display: flex;
  flex-direction: column-reverse;
}

@media (max-width: 768px) {
  .f-column-md {
    display: flex;
    flex-direction: column;
  }
  .f-column-reverse-md {
    display: flex;
    flex-direction: column-reverse;
  }
}
.f-center {
  display: flex;
  justify-content: center;
  align-items: center;
}

.f-equal {
  display: flex;
}
.f-equal > * {
  flex: 1;
}

.j-center {
  justify-content: center;
}

.j-between {
  justify-content: space-between;
}

.j-around {
  justify-content: space-around;
}

.j-end {
  justify-content: flex-end;
}

.a-center {
  align-items: center;
}

.a-start {
  align-items: start;
}

.a-end {
  align-items: end;
}

@media (min-width: 768px) {
  .j-center-md {
    justify-content: center;
  }
  .j-between-md {
    justify-content: space-between;
  }
  .j-around-md {
    justify-content: space-around;
  }
  .j-end-md {
    justify-content: flex-end;
  }
  .a-center-md {
    align-items: center;
  }
}
.f-wrap {
  flex-wrap: wrap;
}

.flex-1 {
  flex: 1;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.form-group > * {
  flex: 1;
}
.form-group_button {
  border: 1px solid #d9d9d9;
  background-color: #f8f7f5;
  color: #2b2b2b;
  padding-inline: 10px;
  flex: 0 0 auto;
  cursor: pointer;
  transition: color linear 300ms;
}
.form-group_button:hover {
  color: #DE9794;
}
@media (min-width: 768px) {
  .form-group {
    flex-direction: row;
    gap: 0;
  }
  .form-group > :first-child, .form-group > :first-child [class*=input] {
    border-radius: 5px 0 0 5px;
  }
  .form-group > :last-child, .form-group > :last-child [class*=input] {
    border-radius: 0 5px 5px 0;
    border-left: none;
  }
}

.form-row, .form-half_row {
  display: inline-flex;
  gap: 25px;
  align-items: center;
  width: 100%;
  margin-bottom: 20px;
}
.form-row > *:not(.no-flex), .form-half_row > *:not(.no-flex) {
  flex: 1;
}
@media (max-width: 768px) {
  .form-row, .form-half_row {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }
}

@media (min-width: 768px) {
  .form-half_row {
    width: calc(50% - 12px);
  }
}

.form-input {
  display: flex;
  flex-direction: column;
  position: relative;
}

.form-label {
  margin-bottom: 7px;
}
.form-label.required::after {
  content: "*";
  margin-left: 3px;
  color: #cd5959;
}

.form-checkbox {
  display: flex;
}
.form-checkbox label {
  display: flex;
  align-items: center;
  margin-right: 15px;
}

.hide {
  opacity: 0 !important;
}

.text-center {
  text-align: center;
}

.text-justify {
  text-align: justify;
}

.text-end {
  text-align: right;
}

.p-relative {
  position: relative;
}

.fs-200 {
  font-size: 0.75rem;
}

.fs-300 {
  font-size: 0.85rem;
}

.fs-400 {
  font-size: 0.9375rem;
}

.fs-600 {
  font-size: var(--fs-600);
}

.fs-700 {
  font-size: var(--fs-700);
}

.fs-800 {
  font-size: var(--fs-800);
}

.fs-900 {
  font-size: 4rem;
}

.fs-icon-300 {
  font-size: var(--fs-icon-300);
}

.fs-icon-400 {
  font-size: var(--fs-icon-400);
}

.fw-300 {
  font-weight: 300;
}

.fw-700 {
  font-weight: 700;
}

.radius-5 {
  border-radius: 5px;
}

.h-full {
  height: 100%;
}

.w-full {
  width: 100%;
}

.children-stripe > *:nth-child(even) {
  background-color: #d9d9d9;
}

.img-responsive {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.img-responsive.round {
  border-radius: 100%;
}
.img-responsive.border {
  border: 2px solid #2b2b2b;
}

.truncate-line {
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}

.f-size-2 {
  font-size: 2rem;
}

.pointer {
  cursor: pointer;
}

.p-sized {
  max-width: 60ch;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: 15px;
}

a {
  transition: color linear 300ms;
}

.underline {
  text-decoration: underline;
}

.underline-hover:hover {
  text-decoration: underline;
}

:root {
  --xs: 320px;
  --sm: 576px;
  --md: 768px;
  --lg: 992px;
  --xl: 1200px;
  --xxl: 1400px;
  --primary-300: #EEC9C4;
  --primary: #DE9794;
  --primary-700: #D36380;
  --primary-900: #582C4D;
  --blue-300: #08BABA;
  --blue: #2B4570;
  --green-300: #9BE190;
  --green: #419A78;
  --yellow: #E6D458;
  --neutral-100: #FFFFFF;
  --neutral-200: #f8f7f5;
  --neutral-300: #e2e2e2;
  --neutral-400: #d9d9d9;
  --neutral-500: #bcbfc2;
  --neutral-600: #7e7e7e;
  --neutral-700: #414141;
  --neutral-800: #2b2b2b;
  --neutral-900: #1c1c1c;
  --danger: #d2131b;
  --warning: #fdf213;
  --success: #49cb54;
  --infos: #5da2f6;
  --fs-500: 1rem;
  --fs-600: 1.2rem;
  --fs-700: 1.5rem;
  --fs-800: 2rem;
  --fs-icon-300: 1.2rem;
  --fs-icon-400: 1.4rem;
  --h1-fs: 1.8rem;
  --h2-fs: 1.5rem;
  --h3-fs: 1.2rem;
  --500: 25px ;
}

.m-0 {
  margin: 0px;
}

.mx-0 {
  margin-inline: 0px;
}

.my-0 {
  margin-block: 0px;
}

.mt-0 {
  margin-top: 0px;
}

.mb-0 {
  margin-bottom: 0px;
}

.mr-0 {
  margin-right: 0px;
}

.ml-0 {
  margin-left: 0px;
}

.p-0 {
  padding: 0px;
}

.px-0 {
  padding-inline: 0px;
}

.py-0 {
  padding-block: 0px;
}

.pt-0 {
  padding-top: 0px;
}

.pb-0 {
  padding-bottom: 0px;
}

.pr-0 {
  padding-right: 0px;
}

.pl-0 {
  padding-left: 0px;
}

.g-0 {
  gap: 0px;
}

.m-5 {
  margin: 5px;
}

.mx-5 {
  margin-inline: 5px;
}

.my-5 {
  margin-block: 5px;
}

.mt-5 {
  margin-top: 5px;
}

.mb-5 {
  margin-bottom: 5px;
}

.mr-5 {
  margin-right: 5px;
}

.ml-5 {
  margin-left: 5px;
}

.p-5 {
  padding: 5px;
}

.px-5 {
  padding-inline: 5px;
}

.py-5 {
  padding-block: 5px;
}

.pt-5 {
  padding-top: 5px;
}

.pb-5 {
  padding-bottom: 5px;
}

.pr-5 {
  padding-right: 5px;
}

.pl-5 {
  padding-left: 5px;
}

.g-5 {
  gap: 5px;
}

.m-10 {
  margin: 10px;
}

.mx-10 {
  margin-inline: 10px;
}

.my-10 {
  margin-block: 10px;
}

.mt-10 {
  margin-top: 10px;
}

.mb-10 {
  margin-bottom: 10px;
}

.mr-10 {
  margin-right: 10px;
}

.ml-10 {
  margin-left: 10px;
}

.p-10 {
  padding: 10px;
}

.px-10 {
  padding-inline: 10px;
}

.py-10 {
  padding-block: 10px;
}

.pt-10 {
  padding-top: 10px;
}

.pb-10 {
  padding-bottom: 10px;
}

.pr-10 {
  padding-right: 10px;
}

.pl-10 {
  padding-left: 10px;
}

.g-10 {
  gap: 10px;
}

.m-15 {
  margin: 15px;
}

.mx-15 {
  margin-inline: 15px;
}

.my-15 {
  margin-block: 15px;
}

.mt-15 {
  margin-top: 15px;
}

.mb-15 {
  margin-bottom: 15px;
}

.mr-15 {
  margin-right: 15px;
}

.ml-15 {
  margin-left: 15px;
}

.p-15 {
  padding: 15px;
}

.px-15 {
  padding-inline: 15px;
}

.py-15 {
  padding-block: 15px;
}

.pt-15 {
  padding-top: 15px;
}

.pb-15 {
  padding-bottom: 15px;
}

.pr-15 {
  padding-right: 15px;
}

.pl-15 {
  padding-left: 15px;
}

.g-15 {
  gap: 15px;
}

.m-20 {
  margin: 20px;
}

.mx-20 {
  margin-inline: 20px;
}

.my-20 {
  margin-block: 20px;
}

.mt-20 {
  margin-top: 20px;
}

.mb-20 {
  margin-bottom: 20px;
}

.mr-20 {
  margin-right: 20px;
}

.ml-20 {
  margin-left: 20px;
}

.p-20 {
  padding: 20px;
}

.px-20 {
  padding-inline: 20px;
}

.py-20 {
  padding-block: 20px;
}

.pt-20 {
  padding-top: 20px;
}

.pb-20 {
  padding-bottom: 20px;
}

.pr-20 {
  padding-right: 20px;
}

.pl-20 {
  padding-left: 20px;
}

.g-20 {
  gap: 20px;
}

.m-25 {
  margin: 25px;
}

.mx-25 {
  margin-inline: 25px;
}

.my-25 {
  margin-block: 25px;
}

.mt-25 {
  margin-top: 25px;
}

.mb-25 {
  margin-bottom: 25px;
}

.mr-25 {
  margin-right: 25px;
}

.ml-25 {
  margin-left: 25px;
}

.p-25 {
  padding: 25px;
}

.px-25 {
  padding-inline: 25px;
}

.py-25 {
  padding-block: 25px;
}

.pt-25 {
  padding-top: 25px;
}

.pb-25 {
  padding-bottom: 25px;
}

.pr-25 {
  padding-right: 25px;
}

.pl-25 {
  padding-left: 25px;
}

.g-25 {
  gap: 25px;
}

.m-30 {
  margin: 30px;
}

.mx-30 {
  margin-inline: 30px;
}

.my-30 {
  margin-block: 30px;
}

.mt-30 {
  margin-top: 30px;
}

.mb-30 {
  margin-bottom: 30px;
}

.mr-30 {
  margin-right: 30px;
}

.ml-30 {
  margin-left: 30px;
}

.p-30 {
  padding: 30px;
}

.px-30 {
  padding-inline: 30px;
}

.py-30 {
  padding-block: 30px;
}

.pt-30 {
  padding-top: 30px;
}

.pb-30 {
  padding-bottom: 30px;
}

.pr-30 {
  padding-right: 30px;
}

.pl-30 {
  padding-left: 30px;
}

.g-30 {
  gap: 30px;
}

.m-35 {
  margin: 35px;
}

.mx-35 {
  margin-inline: 35px;
}

.my-35 {
  margin-block: 35px;
}

.mt-35 {
  margin-top: 35px;
}

.mb-35 {
  margin-bottom: 35px;
}

.mr-35 {
  margin-right: 35px;
}

.ml-35 {
  margin-left: 35px;
}

.p-35 {
  padding: 35px;
}

.px-35 {
  padding-inline: 35px;
}

.py-35 {
  padding-block: 35px;
}

.pt-35 {
  padding-top: 35px;
}

.pb-35 {
  padding-bottom: 35px;
}

.pr-35 {
  padding-right: 35px;
}

.pl-35 {
  padding-left: 35px;
}

.g-35 {
  gap: 35px;
}

.m-40 {
  margin: 40px;
}

.mx-40 {
  margin-inline: 40px;
}

.my-40 {
  margin-block: 40px;
}

.mt-40 {
  margin-top: 40px;
}

.mb-40 {
  margin-bottom: 40px;
}

.mr-40 {
  margin-right: 40px;
}

.ml-40 {
  margin-left: 40px;
}

.p-40 {
  padding: 40px;
}

.px-40 {
  padding-inline: 40px;
}

.py-40 {
  padding-block: 40px;
}

.pt-40 {
  padding-top: 40px;
}

.pb-40 {
  padding-bottom: 40px;
}

.pr-40 {
  padding-right: 40px;
}

.pl-40 {
  padding-left: 40px;
}

.g-40 {
  gap: 40px;
}

.m-45 {
  margin: 45px;
}

.mx-45 {
  margin-inline: 45px;
}

.my-45 {
  margin-block: 45px;
}

.mt-45 {
  margin-top: 45px;
}

.mb-45 {
  margin-bottom: 45px;
}

.mr-45 {
  margin-right: 45px;
}

.ml-45 {
  margin-left: 45px;
}

.p-45 {
  padding: 45px;
}

.px-45 {
  padding-inline: 45px;
}

.py-45 {
  padding-block: 45px;
}

.pt-45 {
  padding-top: 45px;
}

.pb-45 {
  padding-bottom: 45px;
}

.pr-45 {
  padding-right: 45px;
}

.pl-45 {
  padding-left: 45px;
}

.g-45 {
  gap: 45px;
}

.m-50 {
  margin: 50px;
}

.mx-50 {
  margin-inline: 50px;
}

.my-50 {
  margin-block: 50px;
}

.mt-50 {
  margin-top: 50px;
}

.mb-50 {
  margin-bottom: 50px;
}

.mr-50 {
  margin-right: 50px;
}

.ml-50 {
  margin-left: 50px;
}

.p-50 {
  padding: 50px;
}

.px-50 {
  padding-inline: 50px;
}

.py-50 {
  padding-block: 50px;
}

.pt-50 {
  padding-top: 50px;
}

.pb-50 {
  padding-bottom: 50px;
}

.pr-50 {
  padding-right: 50px;
}

.pl-50 {
  padding-left: 50px;
}

.g-50 {
  gap: 50px;
}

.mb-300 {
  margin-bottom: 15px;
}

.mb-500 {
  margin-bottom: 25px;
}

@media (min-width: 768px) {
  .mb-0-20 {
    margin-bottom: 20px;
  }
}

@media (max-width: 768px) {
  .mb-25-0 {
    margin-bottom: 25px;
  }
}

@media (max-width: 768px) {
  .mt-50-0 {
    margin-top: 50px;
  }
}

.mt-50-20 {
  margin-top: 50px;
}
@media (min-width: 768px) {
  .mt-50-20 {
    margin-top: 20px;
  }
}

.mb-50-20 {
  margin-bottom: 50px;
}
@media (min-width: 768px) {
  .mb-50-20 {
    margin-bottom: 20px;
  }
}

.mt-75-50 {
  margin-top: 75px;
}
@media (min-width: 768px) {
  .mt-75-50 {
    margin-top: 50px;
  }
}

.mb-75-50 {
  margin-bottom: 75px;
}
@media (min-width: 768px) {
  .mb-75-50 {
    margin-bottom: 50px;
  }
}

@media (max-width: 768px) {
  .my-75-0 {
    margin-block: 75px;
  }
}

@media (max-width: 768px) {
  .mb-75-0 {
    margin-bottom: 75px;
  }
}

@media (max-width: 576px) {
  .t-responsive thead {
    display: none;
  }
  .t-responsive tr {
    display: block;
    margin-bottom: 0.625rem;
    padding: 0.35rem;
    border: 1px solid #bcbfc2;
  }
  .t-responsive td {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.625rem;
    font-size: 0.8rem;
    text-align: right;
  }
  .t-responsive td:not(:last-child) {
    border-bottom: 1px solid #bcbfc2;
  }
  .t-responsive td::before {
    content: attr(data-label);
    display: block;
    font-weight: bold;
    text-transform: uppercase;
  }
}
.t-colored tr:nth-child(even) {
  background-color: #d9d9d9;
}

.h1 {
  font-size: var(--h1-fs);
  font-weight: 700;
}
.h1 * {
  font-size: var(--h1-fs);
}

.h2 {
  font-weight: 700;
  font-size: var(--h2-fs);
}

.h3 {
  font-weight: 700;
  font-size: var(--h3-fs);
}

.title {
  height: 100dvh;
  min-height: 600px;
}
.title .title-swiper {
  width: 100%;
  height: 100%;
  margin-left: auto;
  margin-right: auto;
}
.title .title-swiper .swiper-pagination {
  bottom: 5vh;
}
.title .title-swiper .swiper-pagination-bullet {
  height: 15px;
  width: 15px;
}
.title .title-swiper .swiper-pagination-bullet-active {
  background-color: #d2131b;
}
.title-cta {
  position: absolute;
  bottom: 10vh;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}
.title-card {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (min-width: 576px) {
  .title-card {
    display: initial;
  }
}
.title-card.left {
  inset: 25px 0 auto 0;
}
@media (min-width: 576px) {
  .title-card.left {
    inset: auto auto 200px 10vw;
  }
}
.title-card.right {
  inset: 25px 0 auto 0;
}
@media (min-width: 576px) {
  .title-card.right {
    inset: auto 10vw 200px auto;
  }
}
.title-logo {
  margin-bottom: 5px;
  width: 25vw;
  min-width: 150px;
}
@media (min-width: 576px) {
  .title-logo {
    min-width: 300px;
    margin-bottom: 25px;
  }
}
.title-text {
  color: white;
  font-size: clamp(2rem, 2.5vw, 2.8rem);
  font-weight: 700;
  line-height: 2rem;
  text-shadow: 0 0 6px rgb(66, 68, 90);
  text-align: center;
  width: 19ch;
}
@media (min-width: 576px) {
  .title-text {
    text-align: initial;
    width: auto;
  }
}
.title-text span {
  font-size: inherit;
  font-weight: inherit;
  text-shadow: inherit;
}
.title .rent {
  display: block;
  inset: 15vh 0 auto 0;
}
@media (min-width: 576px) {
  .title .rent {
    inset: 300px auto auto 15vw;
  }
}
.title .rent-text {
  font-size: clamp(3.3rem, 5vw, 5rem);
  rotate: -15deg;
  width: auto;
}

.offer {
  min-height: 800px;
}
@media (min-width: 768px) {
  .offer-video {
    padding: 50px;
  }
}
.offer-video iframe {
  width: 85%;
  aspect-ratio: 1;
}
.offer-text {
  line-height: 3rem;
}

.footer {
  background: linear-gradient(to bottom right, #312e2e, #131313);
  padding-block: 75px;
}
.footer .fa-whatsapp {
  font-size: 1.9rem;
}
.footer .fa-facebook-f {
  font-size: 1.5rem;
}
.footer .fa-envelope {
  font-size: 1.6rem;
}
@media (min-width: 768px) {
  .footer-mention span:not(:last-child):after {
    content: "-";
    margin-inline: 10px;
  }
}

/*# sourceMappingURL=app.css.map */
