/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

:root {
  --clr-main: #d2bc5f;
  --clr-white: #fff;
  --clr-black: #000;
  --ff-roboto: "Roboto", sans-serif;
  --ff-merriweather: "Merriweather", serif;
  --fs-xs: clamp(1.15rem, 1.0134rem + 0.6829vw, 1.5rem);
  --fs-md: clamp(1.3125rem, 1.1797rem + 0.625vw, 1.625rem);
  --fs-lg: clamp(1.625rem, 1.4055rem + 1.0976vw, 2.1875rem);
  --fs-xlg: clamp(2.1875rem, 1.5234rem + 3.125vw, 3.75rem);
  --fs-xxlg: clamp(3rem, 2.2195rem + 3.9024vw, 5rem);
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul[role="list"],
ol[role="list"] {
  list-style: none;
}

/* Set core root defaults */
html:focus-within {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  overflow-x: hidden;
  font-family: var(--ff-roboto);
  line-height: 1.5;
  color: white;
  background-image: url(../public/images/bg-preto1.jpg);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--ff-merriweather);
  line-height: 1.2;
  color: var(--clr-main);
}

h2 {
  padding-bottom: 4rem;
  font-size: var(--fs-xxlg);
  text-align: center;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  -webkit-text-decoration-skip: ink;
  text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img,
picture {
  display: block;
  max-width: 100%;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Remove all animations, transitions and smooth scroll for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    -webkit-animation-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    -webkit-animation-iteration-count: 1 !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
  }
}
.section-center {
  width: 90%;
  max-width: 1140px;
  margin: 0 auto;
}

@-webkit-keyframes slideInRight {
  0% {
    visibility: visible;
    transform: translateX(100%);
  }
  100% {
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  0% {
    visibility: visible;
    transform: translateX(100%);
  }
  100% {
    transform: translateX(0);
  }
}
@-webkit-keyframes afr {
  0% {
    opacity: 0;
    transform: translateX(3.125rem);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes afr {
  0% {
    opacity: 0;
    transform: translateX(3.125rem);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@-webkit-keyframes mover {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-0.3125rem);
  }
}
@keyframes mover {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-0.3125rem);
  }
}
.btn {
  display: flex;
  gap: 0.5em;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 25rem;
  padding: 0.65em 1.2em;
  font-size: clamp(1.25rem, 1.1524rem + 0.4878vw, 1.5rem);
  font-weight: 600;
  color: var(--clr-white);
  text-decoration: none;
  cursor: pointer;
  background: transparent;
  border: 0.375rem solid var(--clr-main);
  border-radius: 0.25em;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 0.375em 0.75em -0.125em,
    rgba(0, 0, 0, 0.3) 0px 0.1875em 0.4375em -0.1875em;
  transition: opacity 250ms ease-in, background-color 250ms ease-in;
  -webkit-animation: pulse-gold 2s infinite;
  animation: pulse-gold 2s infinite;
}

.btn--full {
  color: var(--clr-black);
  background-color: var(--clr-main);
}

.btn:hover {
  background-color: var(--clr-main);
  opacity: 0.8;
}

.btn:focus-visible {
  border: 0.375rem solid var(--clr-white);
  outline: none;
  transform: scale(1.025);
}

@-webkit-keyframes pulse-gold {
  0% {
    box-shadow: 0 0 0 0 rgba(210, 188, 95, 0.7);
    transform: scale(0.99);
  }
  70% {
    box-shadow: 0 0 0 0.3125em rgba(210, 188, 95, 0);
    transform: scale(1);
  }
  100% {
    box-shadow: 0 0 0 0.3125em rgba(210, 188, 95, 0);
    transform: scale(0.99);
  }
}

@keyframes pulse-gold {
  0% {
    box-shadow: 0 0 0 0 rgba(210, 188, 95, 0.7);
    transform: scale(0.99);
  }
  70% {
    box-shadow: 0 0 0 0.3125em rgba(210, 188, 95, 0);
    transform: scale(1);
  }
  100% {
    box-shadow: 0 0 0 0.3125em rgba(210, 188, 95, 0);
    transform: scale(0.99);
  }
}
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(12rem, 1fr));
  gap: 4rem;
  justify-items: center;
}

.cards__card {
  display: grid;
  grid-template-rows: 5rem 1fr;
  gap: 1rem;
  align-content: flex-start;
  justify-items: center;
  text-align: center;
}
.cards__card .title {
  font-size: var(--fs-lg);
  font-weight: 600;
  color: var(--clr-main);
}
.cards__card p {
  font-size: var(--fs-xs);
}

.slider {
  width: 100%;
}

.slider .flickity-viewport {
  padding-bottom: min(calc(16 / 9) * 100%, 100vh);
}

.slider .flickity-page-dots {
  bottom: 95%;
}

.slider .flickity-page-dots .dot {
  width: 2.5rem;
  height: 0.25rem;
  margin: 0;
  margin-left: 0.2rem;
  background-color: var(--clr-white);
  border-radius: 0;
}

.slider .flickity-prev-next-button {
  display: none;
  width: clamp(1.6525rem, 1.0779rem + 2.8732vw, 3.125rem);
  height: clamp(1.6525rem, 1.0779rem + 2.8732vw, 3.125rem);
  border-radius: 0.3125rem;
}

.slider__cell {
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.slider__cell--0 {
  background-image: url(./public/images/slider-mb-0.png);
}

.slider__cell--1 {
  background-image: url(./public/images/slider-mb-1.png);
}

.slider__cell--2 {
  background-image: url(./public/images/slider-mb-2.png);
}

.slider__cell--3 {
  background-image: url(./public/images/slider-mb-3.png);
}

.slider__cell--4 {
  background-image: url(./public/images/slider-mb-4.png);
}

.slider__cell--5 {
  background-image: url(./public/images/slider-mb-5.png);
}

@media screen and (min-width: 48rem) {
  .slider .flickity-viewport {
    padding-bottom: min(calc(9 / 16) * 100%, 100vh);
  }

  .slider__cell--0 {
    background-image: url(./public/images/slider-0.png);
  }

  .slider__cell--1 {
    background-image: url(./public/images/slider-1.png);
  }

  .slider__cell--2 {
    background-image: url(./public/images/slider-2.png);
  }

  .slider__cell--3 {
    background-image: url(./public/images/slider-3.png);
  }

  .slider__cell--4 {
    background-image: url(./public/images/slider-4.png);
  }

  .slider__cell--5 {
    background-image: url(./public/images/slider-5.png);
  }
}
.depoimentos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(18rem, 1fr));
  gap: 1.5em;
  justify-items: center;
  width: 100%;
}

.depoimentos.flickity-viewport {
  padding: 0;
}

.depoimento {
  display: grid;
  grid-template-rows: 3rem 1fr;
  gap: 1em;
  align-content: center;
  justify-items: center;
  width: 100%;
  height: auto;
  padding: 2.5rem 1.25rem;
  text-align: center;
  background-color: #262626;
  border-radius: 0.5rem;
  transition: transform 0.25s ease-in-out;
}
.depoimento .stars {
  display: flex;
  justify-content: center;
  width: 80%;
}
.depoimento img {
  max-width: 100%;
  height: auto;
}
.depoimento img + img {
  margin-left: 0.25rem;
}
.depoimento .title {
  font-size: var(--fs-md);
  color: var(--clr-main);
  text-align: left;
  text-transform: uppercase;
}
.depoimento .desc {
  font-weight: 300;
  line-height: 1.5;
  text-align: left;
  letter-spacing: -0.0027777778rem;
  word-spacing: 0.002777;
}

.depoimento:hover {
  transform: scale(1.01);
}

@media screen and (min-width: 56.25rem) {
  #cursor,
  #cursorFrame {
    display: initial;
  }
}
.exit-form__trigger {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 2000;
  width: 100%;
  height: 2vh;
  background: transparent;
}

.exit-form__trigger-activator {
  position: fixed;
  top: 2vh;
  left: 0;
  z-index: 2000;
  width: 100%;
  height: 3vh;
}

.modal {
  /* background */
  position: fixed;
  /* Stay in place */
  top: 0;
  left: 0;
  z-index: 1000;
  /* Sit on top */
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background-color: black;
  /* Fallback color */
  background-color: rgba(0, 0, 0, 0.9);
  /* Black w/ opacity */
}

.modal__image-wrapper {
  display: none;
  width: 50%;
  height: 90%;
}

.modal__image-wrapper img {
  -o-object-fit: cover;
  object-fit: cover;
  height: 100%;
  border-top-left-radius: 0.5em;
  border-bottom-left-radius: 0.5em;
}

.form {
  position: relative;
  z-index: 1000;
  display: flex;
  align-items: center;
  height: 90%;
}
.form .wrapper {
  position: relative;
  width: 90%;
  max-width: 31.25rem;
  height: 100%;
  padding: 2.25rem;
  margin: 0 auto;
  overflow-y: auto;
  background-color: #161616;
  border-radius: 0.5em;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 0.3125em 0.9375em;
}

.btn--close {
  position: absolute;
  top: 0.5em;
  right: 0.5em;
  max-width: 2rem;
  padding: 0;
  font-size: var(--ff-xs);
  color: var(--clr-black);
  box-shadow: rgba(0, 0, 0, 0.1) 0px 0.25em 0.375em -0.0625em,
    rgba(0, 0, 0, 0.06) 0px 0.125rem 0.25em -0.0625em;
  -webkit-animation: none;
  animation: none;
}

.form h6 {
  margin-bottom: 0.5em;
  font-size: var(--fs-lg);
  text-align: left;
}

.form p {
  margin-bottom: 1.5em;
}

/* Style the input fields */
.form input {
  width: 100%;
  padding: 0.625rem;
  font-family: var(--ff-roboto);
  font-size: 1.0625rem;
  color: var(--clr-white);
  background-color: #262626;
  border: 0.0625rem solid #323232;
  border-radius: 0.25rem;
}

.form__field-wrapper {
  margin-top: 1em;
}

.form select {
  width: 100%;
  padding: 0 1em 0 0;
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  cursor: inherit;
  /* Additional resets for further consistency */
  background-color: transparent;
  border: none;
  outline: none;
  /* A reset of styles, including removing the default dropdown arrow */
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.form__select-wrapper {
  display: grid;
  grid-template-areas: "select";
  align-items: center;
  width: 100%;
  padding: 0.625em;
  font-size: 1.25rem;
  line-height: 1.1;
  cursor: pointer;
  background-color: #fff;
  background-image: linear-gradient(to top, #f9f9f9, #fff 33%);
  border: 0.0625em solid var(--select-border);
  border-radius: 0.25em;
}

.form__select-wrapper:focus-within {
  border: 0.0625em solid var(--select-focus);
}

.form__select-wrapper::after {
  justify-self: end;
  width: 0.8em;
  height: 0.5em;
  -webkit-clip-path: polygon(100% 0%, 0 0%, 50% 100%);
  clip-path: polygon(100% 0%, 0 0%, 50% 100%);
  content: "";
  background-color: var(--select-arrow);
}

select,
.form__select-wrapper::after {
  grid-area: select;
}

.form .btn--submit {
  max-width: 100%;
  margin-top: 1em;
  font-size: var(--fs-md);
}

@media screen and (min-width: 56.25rem) {
  .modal__image-wrapper {
    display: block;
  }

  .form .wrapper {
    margin: 0;
    border-radius: 0;
    border-top-right-radius: 0.5em;
    border-bottom-right-radius: 0.5em;
  }
}
.form--exit {
  color: #fff;
}
.form--exit .wrapper {
  background-color: #d21b1b;
}
.form--exit h6 {
  font-weight: 800;
  color: var(--clr-white);
  text-align: center;
  text-transform: uppercase;
}
.form--exit p {
  font-weight: 600;
  text-align: center;
}
.form--exit input {
  color: var(--clr-black);
  background-color: var(--clr-white);
}
.form--exit .btn {
  color: var(--clr-white);
  background-color: #5e1717;
  border: 0;
}

.strip-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 1000;
  display: none;
  width: 100%;
  max-height: 5rem;
  background-color: #161616;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}
.strip-banner .img-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 25%;
  padding: 0.5em 2rem;
}
.strip-banner .img-wrapper img {
  height: auto;
  max-height: 3.125rem;
}
.strip-banner .information {
  display: flex;
  gap: 2em;
  width: 100%;
  padding: 1em 2em;
  background-color: #121212;
}
.strip-banner .information input {
  width: 50%;
  padding: 1em;
  font-family: var(--ff-roboto);
  font-size: 1rem;
  border: 0;
  border-radius: 0.5em;
  box-shadow: var(--shadow-xs);
}
.strip-banner .btn {
  width: 50%;
  font-size: clamp(1rem, 0.9415rem + 0.2927vw, 1.15rem);
}

@media screen and (min-width: 48rem) {
  .strip-banner {
    display: flex;
  }

  .slider__cell {
    display: block;
  }
}
.franquia {
  position: fixed;
  top: 1rem;
  right: 1rem;
  z-index: 999;
  display: none;
  max-width: 12rem;
  height: 3rem;
}

.section-cards {
  padding: 5.5vh 0 11vh 0;
}

.section-banner {
  position: relative;
  padding-bottom: 2em;
  background-image: url(../public/images/2.webp);
  background-attachment: fixed;
  background-position: center;
  border-block: 0.125rem solid var(--clr-main);
}
.section-banner .section-center {
  display: flex;
  flex-direction: column;
}
.section-banner img {
  width: 100%;
  max-width: 500px;
  margin-top: -3rem;
}
.section-banner .drone {
  -webkit-animation: mover 1s alternate infinite;
  animation: mover 1s alternate infinite;
}
.section-banner p {
  margin-top: -1rem;
  font-size: var(--fs-md);
  font-weight: bold;
  text-align: left;
}
.section-banner .section-center {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  text-align: center;
}

.section-banner::after {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  content: "";
  background-color: var(--clr-black);
  opacity: 0.8;
}

.section-services {
  position: relative;
  padding: 11vh 0;
}
.section-services .btn {
  margin: 0 auto;
  margin-bottom: 2rem;
}
.section-services .btn:nth-last-child(1) {
  margin-top: 2rem;
  margin-bottom: 0;
}
.section-services .cards {
  grid-template-columns: repeat(auto-fit, minmax(18rem, 1fr));
}
.section-services .cards__card {
  grid-template-rows: 16rem 1fr;
}
.section-services .cards__card img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 0.25rem;
}
.section-services .title {
  font-size: var(--fs-md);
}
.section-services p {
  font-size: var(--fs-sm);
  text-align: left;
}

.section-banner--whatsapp {
  padding-bottom: 0.25rem;
}
.section-banner--whatsapp img {
  max-width: 118px;
  max-height: 201px;
}
.section-banner--whatsapp p {
  margin-top: 1rem;
  text-align: center;
}

.section-whatsapp {
  padding: 11vh 0 5.5vh 0;
}
.section-whatsapp h2 {
  padding-bottom: 2rem;
}
.section-whatsapp img {
  padding-bottom: 2rem;
  margin: 0 auto;
}
.section-whatsapp blockquote {
  max-width: 65ch;
  margin: 0 auto;
}
.section-whatsapp p {
  margin-top: 2rem;
  font-size: 1.15rem;
  line-height: 1.5;
  text-align: justify;
  letter-spacing: -0.0027777778rem;
}
.section-whatsapp p::first-letter {
  margin-left: 2rem;
}
.section-whatsapp figcaption {
  padding-top: 1rem;
  text-align: right;
}

.section-videos {
  padding: 11vh 0;
}
.section-videos .videos {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.section-videos .btn {
  margin: 0 auto;
  margin-top: 4rem;
}

.section-testimonials {
  padding-bottom: 11vh;
}
.section-testimonials h3 {
  font-family: "Crete Round", serif;
}
.section-testimonials .btn {
  margin: 0 auto;
  margin-top: 2rem;
}

.whatsapp {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  padding: 1rem;
  cursor: pointer;
  background: #4ab357;
  border-radius: 50%;
}
.whatsapp a {
  width: 100%;
}
.whatsapp img {
  width: 100%;
}

.whatsapp:hover {
  transform: scale(1.02);
}

.footer p {
  display: flex;
  justify-content: center;
}

@media screen and (min-width: 37.5rem) {
  .section-videos .videos {
    flex-direction: row;
  }
}
@media screen and (min-width: 48rem) {
  .franquia {
    display: flex;
  }

  .section-banner {
    padding: 0;
  }
  .section-banner .section-center {
    flex-direction: row-reverse;
    align-items: center;
  }
  .section-banner p {
    margin: 0;
  }

  .section-banner--whatsapp .section-center {
    flex-direction: row;
    justify-content: space-around;
  }

  .section-services .section-center {
    width: 90%;
    max-width: 1600px;
  }

  .whatsapp {
    right: 2rem;
    bottom: 6rem;
  }
}
@media screen and (min-width: 62.5rem) {
  .section-services h3 {
    padding-bottom: 0;
  }
  .section-services .cards {
    display: grid;
    grid-template-columns: repeat(4, 25%);
    gap: 0;
    justify-items: center;
  }
  .section-services .cards__card {
    grid-template-rows: 12rem 1fr;
    padding: 0 1rem;
    padding-top: 2rem;
  }
}
.is-hidden {
  display: none;
}

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