@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");
.btn, .btn--dark {
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 18px 60px;
  gap: 15px;
  background-color: #4C891E;
  color: #FAF3E1;
  border-radius: 8px;
  transition: color 0.8s ease, background-color 0.8s ease, border-color 0.8s ease, transform 0.3s ease;
  font-weight: 900;
  font-size: 1.3rem;
  width: fit-content;
  white-space: normal;
  text-align: center;
}
.btn:hover, .btn--dark:hover {
  transition: all 0.9s;
  background-color: #6D4D3C;
  color: #F7F3E0;
  text-decoration: none;
  transform: scale(1.04);
}
.btn:disabled, .btn--dark:disabled, .btn[disabled], [disabled].btn--dark {
  cursor: not-allowed;
  opacity: 0.6;
  pointer-events: none;
}
.btn:disabled:hover, .btn--dark:disabled:hover, .btn[disabled]:hover, [disabled].btn--dark:hover {
  transform: none;
  background-color: #D3D3D3;
  color: #FAF3E1;
}
.btn--dark {
  background-color: #6D4D3C;
  color: #F7F3E0;
}
.btn--dark:hover {
  background-color: #FFE566;
  color: #6D4D3C;
}

/*! normalize.css v3.0.2 | MIT License | git.io/normalize */
/**
 * 1. Set default font family to sans-serif.
 * 2. Prevent iOS text size adjust after orientation change, without disabling
 *    user zoom.
 */
html {
  font-family: sans-serif; /* 1 */
  -ms-text-size-adjust: 100%; /* 2 */
  -webkit-text-size-adjust: 100%; /* 2 */
}

/**
 * Remove default margin.
 */
body {
  margin: 0;
  -webkit-font-smoothing: antialiased;
}

/* HTML5 display definitions
   ========================================================================== */
/**
 * Correct `block` display not defined for any HTML5 element in IE 8/9.
 * Correct `block` display not defined for `details` or `summary` in IE 10/11
 * and Firefox.
 * Correct `block` display not defined for `main` in IE 11.
 */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
  display: block;
}

/**
 * 1. Correct `inline-block` display not defined in IE 8/9.
 * 2. Normalize vertical alignment of `progress` in Chrome, Firefox, and Opera.
 */
audio,
canvas,
progress,
video {
  display: inline-block; /* 1 */
  vertical-align: baseline; /* 2 */
}

/**
 * Prevent modern browsers from displaying `audio` without controls.
 * Remove excess height in iOS 5 devices.
 */
audio:not([controls]) {
  display: none;
  height: 0;
}

/**
 * Address `[hidden]` styling not present in IE 8/9/10.
 * Hide the `template` element in IE 8/9/11, Safari, and Firefox < 22.
 */
[hidden],
template {
  display: none;
}

/* Links
   ========================================================================== */
/**
 * Remove the gray background color from active links in IE 10.
 */
a {
  background-color: transparent;
}

/**
 * Improve readability when focused and also mouse hovered in all browsers.
 */
a:active,
a:hover {
  outline: 0;
}

a:hover {
  text-decoration: underline;
}

/* Text-level semantics
   ========================================================================== */
/**
 * Address styling not present in IE 8/9/10/11, Safari, and Chrome.
 */
abbr[title] {
  border-bottom: 1px dotted;
}

/**
 * Address style set to `bolder` in Firefox 4+, Safari, and Chrome.
 */
b,
strong {
  font-weight: bold;
}

/**
 * Address styling not present in Safari and Chrome.
 */
dfn {
  font-style: italic;
}

/**
 * Address variable `h1` font-size and margin within `section` and `article`
 * contexts in Firefox 4+, Safari, and Chrome.
 */
/**
 * Address styling not present in IE 8/9.
 */
mark {
  background: #ff0;
  color: #000;
}

/**
 * Address inconsistent and variable font size in all browsers.
 */
small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` affecting `line-height` in all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

/* Embedded content
   ========================================================================== */
/**
 * Remove border when inside `a` element in IE 8/9/10.
 */
img {
  border: 0;
}

/**
 * Correct overflow not hidden in IE 9/10/11.
 */
svg:not(:root) {
  overflow: hidden;
}

/* Grouping content
   ========================================================================== */
/**
 * Address margin not present in IE 8/9 and Safari.
 */
figure {
  margin: 0;
}

/**
 * Address differences between Firefox and other browsers.
 */
hr {
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  height: 0;
}

/**
 * Contain overflow in all browsers.
 */
pre {
  overflow: auto;
}

/**
 * Address odd `em`-unit font size rendering in all browsers.
 */
code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}

/* Forms
   ========================================================================== */
/**
 * Known limitation: by default, Chrome and Safari on OS X allow very limited
 * styling of `select`, unless a `border` property is set.
 */
/**
 * 1. Correct color not being inherited.
 *    Known issue: affects color of disabled elements.
 * 2. Correct font properties not being inherited.
 * 3. Address margins set differently in Firefox 4+, Safari, and Chrome.
 */
button,
input,
optgroup,
select,
textarea {
  color: inherit; /* 1 */
  font: inherit; /* 2 */
  margin: 0; /* 3 */
}

/**
 * Address `overflow` set to `hidden` in IE 8/9/10/11.
 */
button {
  overflow: visible;
}

/**
 * Address inconsistent `text-transform` inheritance for `button` and `select`.
 * All other form control elements do not inherit `text-transform` values.
 * Correct `button` style inheritance in Firefox, IE 8/9/10/11, and Opera.
 * Correct `select` style inheritance in Firefox.
 */
button,
select {
  text-transform: none;
}

/**
 * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
 *    and `video` controls.
 * 2. Correct inability to style clickable `input` types in iOS.
 * 3. Improve usability and consistency of cursor style between image-type
 *    `input` and others.
 */
button,
html input[type=button],
input[type=reset],
input[type=submit] {
  -webkit-appearance: button; /* 2 */
  cursor: pointer; /* 3 */
}

/**
 * Re-set default cursor for disabled elements.
 */
button[disabled],
html input[disabled] {
  cursor: default;
}

/**
 * Remove inner padding and border in Firefox 4+.
 */
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

/**
 * Address Firefox 4+ setting `line-height` on `input` using `!important` in
 * the UA stylesheet.
 */
input {
  line-height: normal;
}

/**
 * It's recommended that you don't attempt to style these elements.
 * Firefox's implementation doesn't respect box-sizing, padding, or width.
 *
 * 1. Address box sizing set to `content-box` in IE 8/9/10.
 * 2. Remove excess padding in IE 8/9/10.
 */
input[type=checkbox],
input[type=radio] {
  box-sizing: border-box; /* 1 */
  padding: 0; /* 2 */
}

/**
 * Fix the cursor style for Chrome's increment/decrement buttons. For certain
 * `font-size` values of the `input`, it causes the cursor style of the
 * decrement button to change from `default` to `text`.
 */
input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Address `appearance` set to `searchfield` in Safari and Chrome.
 * 2. Address `box-sizing` set to `border-box` in Safari and Chrome
 *    (include `-moz` to future-proof).
 */
input[type=search] {
  -webkit-appearance: textfield; /* 1 */
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box; /* 2 */
  box-sizing: content-box;
}

/**
 * Remove inner padding and search cancel button in Safari and Chrome on OS X.
 * Safari (but not Chrome) clips the cancel button when the search input has
 * padding (and `textfield` appearance).
 */
input[type=search]::-webkit-search-cancel-button,
input[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * Define consistent border, margin, and padding.
 */
fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}

/**
 * 1. Correct `color` not being inherited in IE 8/9/10/11.
 * 2. Remove padding so people aren't caught out if they zero out fieldsets.
 */
legend {
  border: 0; /* 1 */
  padding: 0; /* 2 */
}

/**
 * Remove default vertical scrollbar in IE 8/9/10/11.
 */
textarea {
  overflow: auto;
}

/**
 * Don't inherit the `font-weight` (applied by a rule above).
 * NOTE: the default cannot safely be changed in Chrome and Safari on OS X.
 */
optgroup {
  font-weight: bold;
}

/* Tables
   ========================================================================== */
/**
 * Remove most spacing between table cells.
 */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

td,
th {
  padding: 0;
}

body {
  font-size: 16px;
}

body,
html,
p,
address {
  font-family: Roboto, sans-serif;
}

* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  font-family: Roboto, sans-serif;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: top;
}

a {
  color: #5473a9;
  text-decoration: none;
}
a:hover {
  color: rgb(134.4288537549, 156.5454545455, 195.0711462451);
}

p,
span,
address,
label {
  color: #6D4D3C;
  font-weight: 400;
  font-size: 1.1em;
  line-height: 21px;
  margin: 0;
}

ol,
ul {
  margin: 0;
  padding: 0;
}
ol li,
ul li {
  color: #5473a9;
  font-weight: 400;
}

ul li {
  list-style: none;
}

.line {
  display: inline-block;
  width: 100%;
  vertical-align: top;
}

.left {
  float: left;
}

.right {
  float: right;
}

.textcenter {
  text-align: center;
}

iframe {
  max-width: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: #FF710F;
  font-weight: 500;
  margin: 0 0 20px;
}
h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
  color: inherit;
  font-family: inherit;
  text-decoration: none;
  font-weight: inherit;
}

strong {
  font-weight: 700;
}

/* ALINHAMENTO DAS IMAGENS */
.alignnone {
  margin: 0px 20px 20px 0;
}

.aligncenter,
div.aligncenter {
  display: block;
  margin: 5px auto 5px auto;
}

.alignright {
  float: right;
  margin: 5px 0 20px 20px;
}

.alignleft {
  float: left;
  margin: 5px 20px 20px 0;
}

.aligncenter {
  display: block;
  margin: 5px auto 5px auto;
}

a img.alignright {
  float: right;
  margin: 5px 0 20px 20px;
}

a img.alignnone {
  margin: 5px 20px 20px 0;
}

a img.alignleft {
  float: left;
  margin: 5px 20px 20px 0;
}

a img.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.wp-caption {
  background: #fff;
  border: 1px solid #f0f0f0;
  max-width: 96%; /* Image does not overflow the content area */
  padding: 5px 3px 10px;
  text-align: center;
}

.wp-caption.alignnone {
  margin: 5px 20px 20px 0;
}

.wp-caption.alignleft {
  margin: 5px 20px 20px 0;
}

.wp-caption.alignright {
  margin: 5px 0 20px 20px;
}

.wp-caption img {
  border: 0 none;
  height: auto;
  margin: 0;
  max-width: 98.5%;
  padding: 0;
  width: auto;
}

html {
  font-size: 16px;
  font-family: Roboto, sans-serif;
  -webkit-font-smoothing: antialiased;
  scroll-behavior: smooth;
}

h2,
h3,
h4,
h5,
h6 {
  line-height: 1.2;
  margin-bottom: 0;
}
h2 strong,
h3 strong,
h4 strong,
h5 strong,
h6 strong {
  font-weight: inherit;
  font-size: inherit;
}

h1 {
  font-size: 4.375rem;
  line-height: 1;
  margin-bottom: 0;
}
h1 strong {
  font-weight: inherit;
  font-size: inherit;
}

h2 {
  font-size: 3.75rem;
  font-weight: 900;
}

h3 {
  font-size: 2rem;
}

h4 {
  font-size: 1.75rem;
}

h5 {
  font-size: 1.5rem;
}

h6 {
  font-size: 1.25rem;
}

p {
  font-size: 1.125rem;
  line-height: 1.6;
}

.wpcf7-phone-error {
  color: red;
  margin: 5px 15px;
  padding: 5px 10px;
  background-color: #f8d7da;
  border: 1px solid #f5c6cb;
}

.swiper-button-next {
  background-repeat: no-repeat;
  background-image: url("../../src/images/arrow.png") !important;
}

.swiper-button-prev {
  background-repeat: no-repeat;
  background-image: url("../../src/images/arrow.png") !important;
  rotate: 180deg;
}

.swiper-button-next, .swiper-button-prev {
  border: none !important;
}
.swiper-button-next::after, .swiper-button-prev::after {
  content: "" !important;
}

@media screen and (max-width: 768px) {
  h2 {
    font-size: 2.4rem;
  }
}
@media screen and (max-width: 640px) {
  html {
    font-size: 13px;
  }
}
.center {
  width: 1200px;
  margin: 0 auto;
}

.section-line {
  padding: 140px 0;
}

@media screen and (max-width: 1200px) {
  .center {
    width: 1024px;
  }
}
@media screen and (max-width: 1024px) {
  .center {
    width: 768px;
  }
}
@media screen and (max-width: 768px) {
  .center {
    width: 640px;
  }
  .section-line {
    padding: 60px 0;
  }
}
@media screen and (max-width: 640px) {
  .center {
    width: 90%;
  }
}
.wpcf7 .wpcf7-response-output {
  position: absolute;
}
.wpcf7 .invalid .wpcf7-response-output, .wpcf7 .invalid form.sent .wpcf7-response-output,
.wpcf7 .spam .wpcf7-response-output,
.wpcf7 .spam form.sent .wpcf7-response-output {
  background: wheat;
  text-align: center;
  max-width: 413px;
  margin: 10px 0 0;
  border-radius: 10px;
  padding: 10px;
}
.wpcf7 .wpcf7-spinner {
  display: none;
}
.wpcf7 .submitting .wpcf7-spinner {
  display: block;
}
.wpcf7 .sent .wpcf7-response-output {
  background: white;
}
.wpcf7 .wpcf7-not-valid-tip {
  color: #262004;
  text-align: right;
  font-size: 0.9rem;
  background-color: #ffd400;
  position: absolute;
  right: 10px;
  top: -11px;
  border-radius: 6px;
  padding: 1px 11px;
}
.wpcf7 .wpcf7-list-item-label {
  font-size: 0.9rem;
  padding-left: 10px;
}
.wpcf7 .wpcf7-list-item {
  margin: 0;
  display: flex;
  align-items: center;
}
.wpcf7 .wpcf7-list-item span {
  color: #F7F3E0;
}

/**
 * Swiper 5.4.5
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * http://swiperjs.com
 *
 * Copyright 2014-2020 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: June 16, 2020
 */
@font-face {
  font-family: swiper-icons;
  src: url("data:application/font-woff;charset=utf-8;base64, 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") format("woff");
  font-weight: 400;
  font-style: normal;
}
:root {
  --swiper-theme-color: #007aff;
}

.swiper-container {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  z-index: 1;
}

.swiper-container-vertical > .swiper-wrapper {
  flex-direction: column;
}

.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  transition-property: transform;
  box-sizing: content-box;
}

.swiper-container-android .swiper-slide,
.swiper-wrapper {
  transform: translate3d(0px, 0, 0);
}

.swiper-container-multirow > .swiper-wrapper {
  flex-wrap: wrap;
}

.swiper-container-multirow-column > .swiper-wrapper {
  flex-wrap: wrap;
  flex-direction: column;
}

.swiper-container-free-mode > .swiper-wrapper {
  transition-timing-function: ease-out;
  margin: 0 auto;
}

.swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: auto;
  display: flex;
  position: relative;
  transition-property: transform;
}

.swiper-slide-invisible-blank {
  visibility: hidden;
}

.swiper-container-autoheight {
  height: auto;
}
.swiper-container-autoheight .swiper-slide {
  height: auto;
}
.swiper-container-autoheight .swiper-wrapper {
  align-items: flex-start;
  transition-property: transform, height;
}

.swiper-container-3d {
  perspective: 1200px;
}
.swiper-container-3d .swiper-cube-shadow,
.swiper-container-3d .swiper-slide,
.swiper-container-3d .swiper-slide-shadow-bottom,
.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right,
.swiper-container-3d .swiper-slide-shadow-top,
.swiper-container-3d .swiper-wrapper {
  transform-style: preserve-3d;
}
.swiper-container-3d .swiper-slide-shadow-bottom,
.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right,
.swiper-container-3d .swiper-slide-shadow-top {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}
.swiper-container-3d .swiper-slide-shadow-left {
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-container-3d .swiper-slide-shadow-right {
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-container-3d .swiper-slide-shadow-top {
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-container-3d .swiper-slide-shadow-bottom {
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-container-css-mode > .swiper-wrapper {
  overflow: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.swiper-container-css-mode > .swiper-wrapper::-webkit-scrollbar {
  display: none;
}
.swiper-container-css-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: start start;
}

.swiper-container-horizontal.swiper-container-css-mode > .swiper-wrapper {
  scroll-snap-type: x mandatory;
}

.swiper-container-vertical.swiper-container-css-mode > .swiper-wrapper {
  scroll-snap-type: y mandatory;
}

:root {
  --swiper-navigation-size: 44px;
}

.swiper-button-next,
.swiper-button-prev {
  position: absolute;
  margin-top: calc(-1 * var(--swiper-navigation-size) / 2);
  top: 57%;
  width: 55px;
  height: 55px;
  z-index: 10;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--swiper-navigation-color, var(--swiper-theme-color));
  border: 2px solid #a7a7a5;
  border-radius: 100%;
}

.swiper-button-next.swiper-button-disabled,
.swiper-button-prev.swiper-button-disabled {
  opacity: 0.35;
  cursor: auto;
  pointer-events: none;
}

.swiper-button-next:after {
  font-family: swiper-icons;
  font-size: var(--swiper-navigation-size);
  text-transform: none !important;
  letter-spacing: 0;
  text-transform: none;
  font-variant: initial;
  line-height: 0.3;
}

.swiper-button-prev {
  left: 10px;
  right: auto;
}
.swiper-button-prev:after {
  font-family: swiper-icons;
  font-size: var(--swiper-navigation-size);
  text-transform: none !important;
  letter-spacing: 0;
  text-transform: none;
  font-variant: initial;
  line-height: 1;
}

.swiper-container-rtl .swiper-button-next {
  right: 10px;
  right: auto;
}

.swiper-button-prev:after,
.swiper-container-rtl .swiper-button-next:after {
  content: "prev";
}

.swiper-button-next,
.swiper-container-rtl .swiper-button-prev {
  right: 10px;
  left: auto;
}

.swiper-button-next:after,
.swiper-container-rtl .swiper-button-prev:after {
  content: "next";
}

.swiper-button-next.swiper-button-white,
.swiper-button-prev.swiper-button-white {
  --swiper-navigation-color: #ffffff;
}

.swiper-button-next.swiper-button-black,
.swiper-button-prev.swiper-button-black {
  --swiper-navigation-color: #000000;
}

.swiper-button-lock {
  display: none;
}

.swiper-pagination {
  position: absolute;
  text-align: center;
  transition: 0.3s opacity;
  transform: translate3d(0, 0, 0);
  z-index: 10;
}
.swiper-pagination.swiper-pagination-hidden {
  opacity: 0;
}

.swiper-container-horizontal > .swiper-pagination-bullets,
.swiper-pagination-custom,
.swiper-pagination-fraction {
  padding-top: 1.6em;
  text-align: center;
}

.swiper-pagination-bullets-dynamic {
  overflow: hidden;
  font-size: 0;
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transform: scale(0.33);
  position: relative;
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active,
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
  transform: scale(1);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
  transform: scale(0.66);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
  transform: scale(0.33);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
  transform: scale(0.66);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
  transform: scale(0.33);
}

.swiper-pagination-bullet {
  width: 16px;
  height: 16px;
  display: inline-block;
  border-radius: 100%;
  margin-right: 16px;
  opacity: 0.5;
  border: 1px solid #222222;
}
.swiper-pagination-bullet:hover {
  opacity: 0.9;
}

button.swiper-pagination-bullet {
  border: none;
  margin: 0;
  padding: 0;
  box-shadow: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer;
  margin-right: 9px;
  padding: 5px;
  border: 5px solid linear-gradient(180deg, rgb(0, 0, 0) 0%, rgb(167, 167, 165) 100%);
}

.swiper-container-vertical > .swiper-pagination-bullets {
  right: 10px;
  top: 50%;
  transform: translate3d(0px, -50%, 0);
}
.swiper-container-vertical > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 6px 0;
  display: block;
}
.swiper-container-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
}
.swiper-container-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  display: inline-block;
  transition: 0.2s transform, 0.2s top;
}

.swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 4px;
  background-color: #D9D9D9;
  border-color: #D9D9D9;
}
.swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet-active {
  opacity: 1;
  background-color: #0E0E0E;
  border: initial;
}
.swiper-container-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
}
.swiper-container-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition: 0.2s transform, 0.2s left;
}
.swiper-container-horizontal.swiper-container-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition: 0.2s transform, 0.2s right;
}

.swiper-pagination-progressbar {
  background: rgba(0, 0, 0, 0.25);
  position: absolute;
}
.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  transform: scale(0);
  transform-origin: left top;
}

.swiper-container-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  transform-origin: right top;
}

.swiper-container-horizontal > .swiper-pagination-progressbar,
.swiper-container-vertical > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
  width: 100%;
  height: 4px;
  left: 0;
  top: 0;
}

.swiper-container-horizontal > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite,
.swiper-container-vertical > .swiper-pagination-progressbar {
  width: 4px;
  height: 100%;
  left: 0;
  top: 0;
}

.swiper-pagination-white {
  --swiper-pagination-color: #ffffff;
}

.swiper-pagination-black {
  --swiper-pagination-color: #000000;
}

.swiper-pagination-lock {
  display: none;
}

.swiper-scrollbar {
  border-radius: 10px;
  position: relative;
  -ms-touch-action: none;
  background: rgba(0, 0, 0, 0.1);
}

.swiper-container-horizontal > .swiper-scrollbar {
  position: absolute;
  left: 1%;
  bottom: 3px;
  z-index: 50;
  height: 5px;
  width: 98%;
}

.swiper-container-vertical > .swiper-scrollbar {
  position: absolute;
  right: 3px;
  top: 1%;
  z-index: 50;
  width: 5px;
  height: 98%;
}

.swiper-scrollbar-drag {
  height: 100%;
  width: 100%;
  position: relative;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 10px;
  left: 0;
  top: 0;
}

.swiper-scrollbar-cursor-drag {
  cursor: move;
}

.swiper-scrollbar-lock {
  display: none;
}

.swiper-zoom-container {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.swiper-zoom-container > canvas,
.swiper-zoom-container > img,
.swiper-zoom-container > svg {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.swiper-slide-zoomed {
  cursor: move;
}

.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  transform-origin: 50%;
  animation: swiper-preloader-spin 1s infinite linear;
  box-sizing: border-box;
  border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
  border-radius: 50%;
  border-top-color: transparent;
}

.swiper-lazy-preloader-white {
  --swiper-preloader-color: #fff;
}

.swiper-lazy-preloader-black {
  --swiper-preloader-color: #000;
}

@keyframes swiper-preloader-spin {
  100% {
    transform: rotate(360deg);
  }
}
.swiper-container .swiper-notification {
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
  opacity: 0;
  z-index: -1000;
}

.swiper-container-fade.swiper-container-free-mode .swiper-slide {
  transition-timing-function: ease-out;
}
.swiper-container-fade .swiper-slide {
  pointer-events: none;
  transition-property: opacity;
}
.swiper-container-fade .swiper-slide .swiper-slide {
  pointer-events: none;
}
.swiper-container-fade .swiper-slide-active {
  pointer-events: auto;
}
.swiper-container-fade .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-container-cube {
  overflow: visible;
}
.swiper-container-cube .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
  visibility: hidden;
  transform-origin: 0 0;
  width: 100%;
  height: 100%;
}
.swiper-container-cube .swiper-slide .swiper-slide {
  pointer-events: none;
}
.swiper-container-cube.swiper-container-rtl .swiper-slide {
  transform-origin: 100% 0;
}
.swiper-container-cube .swiper-slide-active {
  pointer-events: auto;
  pointer-events: auto;
  visibility: visible;
}
.swiper-container-cube .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}
.swiper-container-cube .swiper-slide-next {
  pointer-events: auto;
  visibility: visible;
}
.swiper-container-cube .swiper-slide-next + .swiper-slide {
  pointer-events: auto;
  visibility: visible;
}
.swiper-container-cube .swiper-slide-prev {
  pointer-events: auto;
  visibility: visible;
}
.swiper-container-cube .swiper-slide-shadow-bottom,
.swiper-container-cube .swiper-slide-shadow-left,
.swiper-container-cube .swiper-slide-shadow-right,
.swiper-container-cube .swiper-slide-shadow-top {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.swiper-container-cube .swiper-cube-shadow {
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0.6;
  -webkit-filter: blur(50px);
  filter: blur(50px);
  z-index: 0;
}

.swiper-container-flip {
  overflow: visible;
}
.swiper-container-flip .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
}
.swiper-container-flip .swiper-slide .swiper-slide {
  pointer-events: none;
}
.swiper-container-flip .swiper-slide-active {
  pointer-events: auto;
}
.swiper-container-flip .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}
.swiper-container-flip .swiper-slide-shadow-bottom,
.swiper-container-flip .swiper-slide-shadow-left,
.swiper-container-flip .swiper-slide-shadow-right,
.swiper-container-flip .swiper-slide-shadow-top {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.youtube-iframe__button {
  order: 2;
  transition: transform 0.3s ease;
}
.youtube-iframe__button:hover {
  transform: scale(1.1);
}
.youtube-iframe__video {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  transition: transform 0.3s ease;
}
.youtube-iframe__video:hover {
  filter: opacity(0.8);
  cursor: pointer;
}
.youtube-iframe__video:hover .icon {
  transform: scale(1.1);
}
.youtube-iframe__video iframe {
  height: 100%;
  width: 100%;
}
.youtube-iframe__video img {
  filter: opacity(0.9);
  border-radius: 15px;
}
.youtube-iframe__video .icon {
  position: absolute;
  left: calc(50% - 35.5px);
  top: calc(50% - 24px);
  cursor: pointer;
  transition: transform 0.3s ease;
}

.banner {
  background-color: #FF710F;
}
.banner__nav {
  padding: 30px 0 20px 0;
  display: flex;
  justify-content: right;
}
.banner__nav ul {
  display: flex;
  gap: 20px;
}
.banner__nav ul li {
  transition: transform 0.7s ease-in-out;
}
.banner__nav ul li a {
  color: #F7F3E0;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 700;
  border-right: 1px solid #F7F3E0;
  padding-right: 20px;
}
.banner__nav ul li:hover {
  transform: scale(1.1);
}
.banner__nav ul li:last-child a {
  border-right: none;
}
.banner__container {
  display: grid;
  grid-template-columns: 40% 55%;
  gap: 5%;
}
.banner__container-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 15px;
  padding: 20px 0;
}
.banner__container-text h1, .banner__container-text p {
  color: #F7F3E0;
}
.banner__container-text h1 {
  color: #F7F3E0;
  font-weight: 400;
  font-size: 3.125rem;
  padding-right: 60px;
}
.banner__container-text h1 strong {
  font-weight: 900;
  font-size: 4.375rem;
}
.banner__container-text .btn, .banner__container-text .btn--dark {
  margin-top: 15px;
}
.banner__container-image {
  align-self: end;
}
@media screen and (max-width: 1200px) {
  .banner__container-text h1 {
    padding-right: 0;
  }
}
@media screen and (max-width: 1024px) {
  .banner__container {
    grid-template-columns: 50% 48%;
    gap: 2%;
  }
  .banner__container-text {
    padding-bottom: 60px;
  }
}
@media screen and (max-width: 1024px) {
  .banner__container {
    display: flex;
    flex-direction: column;
    gap: 0;
  }
  .banner__container-text {
    padding-bottom: 60px;
  }
}

.testimonials {
  background: linear-gradient(to right, #FF710F 0%, #FF710F 25%, #FAA61A 100%);
}
.testimonials h2 {
  color: #FFE566;
  padding-right: 50%;
}
.testimonials__container {
  position: relative;
}
.testimonials__container-item {
  display: grid;
  grid-template-columns: 30% 65%;
  gap: 5%;
  align-items: center;
  margin-top: 40px;
}
.testimonials__container-item-card {
  background-color: #F7F3E0;
  padding: 110px 40px 40px 40px;
  border-radius: 15px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 25px;
}
.testimonials__container-item-card::before {
  content: "";
  position: absolute;
  top: 40px;
  left: 40px;
  width: 50px;
  height: 48px;
  background-image: url(../../src/images/aspas.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: left top;
  animation: rotateAspas 2s infinite alternate ease-in-out;
}
.testimonials__container-item-card::after {
  content: "";
  position: absolute;
  top: 40px;
  right: 40px;
  width: 180px;
  height: 44px;
  background-image: url(../../src/images/stars.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: right top;
}
.testimonials__container-item-card strong {
  color: #6D4D3C;
  font-size: 1.125rem;
}
@keyframes rotateAspas {
  0% {
    transform: rotate(-10deg);
  }
  100% {
    transform: rotate(20deg);
  }
}
.testimonials .swiper-pagination {
  position: relative;
  padding-top: 40px;
}
.testimonials .swiper-pagination-clickable .swiper-pagination-bullet {
  background: #B9B9B9;
  border: 0px;
  width: 12px;
  height: 12px;
  margin-right: 16px;
}
.testimonials .swiper-pagination-clickable .swiper-pagination-bullet:hover {
  background: #f77d24;
  transition: 0.4s all;
}
.testimonials .swiper-pagination-clickable .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: #6D4D3C;
  transition: 0.4s all;
}
@media screen and (max-width: 1024px) {
  .testimonials h2 {
    padding-right: 0;
  }
  .testimonials__container-item {
    display: grid;
    grid-template-columns: 35% 60%;
    gap: 5%;
    align-items: center;
    margin-top: 40px;
  }
}
@media screen and (max-width: 768px) {
  .testimonials__container-item {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
  }
}
@media screen and (max-width: 640px) {
  .testimonials__container-item-card {
    padding: 78px 15px 30px 15px;
  }
  .testimonials__container-item-card::before {
    top: 30px;
    right: 20px;
    width: 40px;
    height: 38px;
  }
  .testimonials__container-item-card::after {
    top: 30px;
    right: 20px;
    width: 150px;
    height: 44px;
  }
  .testimonials__container-item-card p {
    line-height: 1.4;
  }
}

.stamps {
  background-color: #FAF3E1;
}
.stamps__container {
  display: grid;
  grid-template-columns: 48% 47%;
  gap: 5%;
  align-items: center;
}
.stamps__container .stamps-img {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.stamps__container-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}
.stamps__container-item-card {
  display: grid;
  grid-template-columns: 20% 70%;
  gap: 10%;
  padding: 12px 15px 12px 20px;
  margin-top: 40px;
  align-items: center;
  border: 1px solid #FF710F;
  border-radius: 5px;
  min-height: 70px;
  background: linear-gradient(to right, #FF710F 75px, #FAF3E1 75px);
}
.stamps__container-item-card p {
  font-size: 1rem;
  line-height: 1.2;
}
.stamps__container-item-card strong {
  font-weight: 900;
  color: #F7F3E0;
  font-size: 1.3rem;
}
@media screen and (max-width: 1200px) {
  .stamps__container {
    grid-template-columns: 45% 55%;
  }
}
@media screen and (max-width: 1024px) {
  .stamps__container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  .stamps__container-item {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
  }
  .stamps__container-item-card:last-child {
    margin-top: 0;
  }
}

.results {
  background-color: #FAF3E1;
  background-image: url(../../src/images/results-background.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: bottom;
}
.results__container {
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
}
.results__container-text {
  display: grid;
  grid-template-columns: 40% 45%;
  gap: 15%;
  align-items: center;
}
.results__container-text h2, .results__container-text p {
  color: #6D4D3C;
}
.results__container-itens {
  padding: 100px 0;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 20px;
}
.results__container-itens-card {
  background-color: #FF710F;
  text-align: center;
  border-radius: 15px;
  padding: 20px;
  position: relative;
  box-shadow: 4px 6px 10px rgba(0, 0, 0, 0.4);
}
.results__container-itens-card:nth-child(odd) {
  transform: translateY(-40px);
}
.results__container-itens-card:nth-child(even) {
  transform: translateY(40px);
}
.results__container-itens-card-description {
  padding-top: 220px;
  display: flex;
  flex-direction: column;
  align-items: left;
  gap: 5px;
}
.results__container-itens-card img {
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  min-width: 245px;
}
.results__container-itens-card strong, .results__container-itens-card p {
  color: #F7F3E0;
  font-size: 1rem;
  text-align: left;
}
@media screen and (max-width: 1200px) {
  .results__container-text {
    grid-template-columns: 47% 48%;
    gap: 5%;
  }
  .results__container-itens {
    padding: 100px 0;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
  }
}
@media screen and (max-width: 768px) {
  .results__container-text {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  .results__container-itens {
    padding: 30px 0;
    grid-template-columns: 1fr;
    gap: 60px;
  }
  .results__container-itens-card:nth-child(odd) {
    transform: none;
  }
  .results__container-itens-card:nth-child(even) {
    transform: none;
  }
}

.benefits {
  background-color: #6D4D3C;
  padding: 30px 0;
}
.benefits__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.benefits__container p {
  color: #F7F3E0;
}
.benefits__container-list {
  display: flex;
  flex-wrap: wrap;
  gap: 60px;
}
.benefits__container-list li {
  color: #F7F3E0;
  border: 1px solid #F7F3E0;
  padding: 10px 25px;
  border-radius: 15px;
  font-size: 1.125rem;
  font-weight: 700;
  animation: scaleEffect 1.5s ease-in-out forwards;
  animation-delay: calc(var(--delay) * 1.8s);
}
@keyframes scaleEffect {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}
@media screen and (max-width: 1200px) {
  .benefits__container {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  .benefits__container-list {
    justify-content: center;
    gap: 20px;
  }
}

.tools {
  background: url(../../src/images/tools-background.png) no-repeat center, linear-gradient(to right, #FF710F 0%, #FF710F 25%, #FAA61A 100%);
  background-size: contain, cover;
  position: relative;
  animation: zoomInOut 10s infinite ease-in-out;
}
@keyframes zoomInOut {
  0% {
    background-size: 100%, cover;
  }
  50% {
    background-size: 110%, cover;
  }
  100% {
    background-size: 100%, cover;
  }
}
.tools__container {
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
}
.tools__container-text {
  display: grid;
  grid-template-columns: 45% 50%;
  gap: 5%;
  align-items: center;
}
.tools__container-text h2 {
  color: #F7F3E0;
  padding-bottom: 20px;
}
.tools__container-text p {
  color: #F7F3E0;
  padding-top: 35px;
  padding-right: 20px;
}
.tools__container-text strong {
  color: #F7F3E0;
  font-size: 1.125rem;
}
.tools__container-text .italic {
  font-style: italic;
}
.tools__container-itens {
  padding: 60px 40px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
}
.tools__container-itens-card {
  background-color: #F7F3E0;
  text-align: center;
  border-radius: 15px;
  padding: 40px;
  position: relative;
  box-shadow: 4px 6px 10px rgba(0, 0, 0, 0.4);
}
.tools__container-itens-card-description {
  padding-top: 210px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.tools__container-itens-card img {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
}
.tools__container-itens-card strong, .tools__container-itens-card p {
  font-size: 1rem;
  text-align: left;
  color: #6D4D3C;
}
.tools__container-itens-card strong {
  color: #FF710F;
}
@media screen and (max-width: 1200px) {
  .tools__container-itens {
    padding: 40px 0;
  }
}
@media screen and (max-width: 1024px) {
  .tools__container-text {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  .tools__container-itens {
    grid-template-columns: 1fr 1fr;
    gap: 50px;
  }
}
@media screen and (max-width: 768px) {
  .tools__container-itens {
    gap: 40px;
  }
  .tools__container-itens-card {
    padding: 20px;
  }
  .tools__container-itens-card-description {
    padding-top: 230px;
  }
}
@media screen and (max-width: 640px) {
  .tools__container-itens {
    grid-template-columns: 1fr;
    gap: 50px;
  }
}

.video {
  background-color: #FAF3E1;
}
.video__container {
  display: grid;
  align-items: center;
  grid-template-columns: 40% 50%;
  gap: 10%;
}
.video__video {
  position: relative;
}
.video__video .icon {
  position: absolute;
  left: calc(50% - 35.5px);
  top: calc(50% - 24px);
  cursor: pointer;
  transition: transform 0.3s ease;
}
.video__video .icon:hover {
  transform: scale(1.1);
}
@media screen and (max-width: 1024px) {
  .video__container {
    grid-template-columns: 1fr;
    gap: 10%;
  }
}
@media screen and (max-width: 768px) {
  .video__container {
    gap: 20px;
  }
  .video__container h2 {
    font-size: 2.4rem;
  }
}

.footer {
  padding: 20px 0;
  background-color: #222222;
}
.footer__text {
  font-size: 0.9em;
  color: #F7F3E0;
  text-align: center;
}
.footer .schedule-area.hide-schedule {
  bottom: -100px;
}
.footer .schedule-area {
  background-color: #FF710F;
  background-color: #FF710F;
  left: 0;
  width: 100%;
  padding: 12px;
  text-align: center;
  z-index: 10;
  position: fixed;
  bottom: -1px;
  box-shadow: 0px -4px 8px rgba(0, 0, 0, 0.3);
  display: block;
  transition: bottom, 0.8s;
}
.footer .schedule-area p {
  display: inline-block;
  font-size: 1rem;
}
.footer .schedule-area p span {
  color: #fff;
  padding-right: 15px;
}
.footer .schedule-area p button {
  font-size: 1.2em;
  text-transform: uppercase;
  background-color: #4C891E;
  color: #FAF3E1;
  font-weight: 800;
  border-radius: 8px;
  border: none;
  padding: 10px 30px;
  transition: all 0.8s;
}
.footer .schedule-area p button:hover {
  background-color: #6D4D3C;
  color: #F7F3E0;
  text-decoration: none;
}
@media screen and (max-width: 950px) {
  .footer .schedule-area span {
    display: none;
  }
  .footer .schedule-area p span {
    padding-bottom: 15px;
    display: block;
  }
}

.contact {
  background-color: #FF710F;
}
.contact__container {
  display: grid;
  grid-template-columns: 48% 47%;
  gap: 5%;
  align-items: center;
}
.contact__container h2, .contact__container p {
  color: #F7F3E0;
}
.contact__container p {
  margin-top: 25px;
}
.contact__form {
  border: 1px solid #F7F3E0;
  border-radius: 15px;
  padding: 30px 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 410px;
}
.contact__form-question {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.contact__form-question input, .contact__form-question select {
  padding: 12px 20px;
  border: 1px solid #F7F3E0;
  border-radius: 15px;
  background-color: transparent;
  width: 100%;
  color: #F7F3E0;
  appearance: none;
}
.contact__form-question select {
  position: relative;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="white"><path d="M7 10l5 5 5-5z"/></svg>');
  background-repeat: no-repeat;
  background-position: right 15px center;
  background-size: 16px;
  padding-right: 40px;
}
.contact__form-question select option {
  color: black;
  background-color: white;
}
.contact__form-question ::placeholder {
  color: #F7F3E0;
}
.contact__form-question label {
  color: #F7F3E0;
  font-weight: 700;
  padding-left: 20px;
}
.contact__form .btn, .contact__form .btn--dark {
  padding: 12px 35px;
  width: auto;
  border: none;
}
.contact__form .checkbox-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  color: white;
}
.contact__form .checkbox-item input[type=checkbox] {
  appearance: none;
  width: 35px;
  height: 20px;
  border: 2px solid white;
  border-radius: 4px;
  background: transparent;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}
.contact__form .checkbox-item input[type=checkbox]:checked {
  background: white;
  border-color: white;
}
.contact__form .checkbox-item input[type=checkbox]:checked::after {
  content: "✔";
  font-size: 14px;
  font-weight: bold;
  color: orange;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.contact__form .privacy-policy span {
  color: white;
}
.contact__form .privacy-policy a {
  color: white;
  text-decoration: none;
  font-weight: 900;
}
@media screen and (max-width: 1024px) {
  .contact__container {
    grid-template-columns: 45% 50%;
  }
}
@media screen and (max-width: 768px) {
  .contact__container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 30px;
  }
  .contact__form {
    max-width: 90vw;
    width: 100%;
    margin: 0 auto;
    overflow: hidden;
  }
}

.faq {
  background-color: #FAF3E1;
  background-image: url(../../src/images/faq-background.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: top;
}
.faq h2 {
  color: #6D4D3C;
  padding-right: 50%;
}
.faq__container {
  margin-top: 40px;
}
.faq__container-accordion {
  transition: all 500ms ease;
  border-radius: 0;
  overflow: hidden;
  border-bottom: 2px solid #F7F3E0;
  margin-bottom: 3px;
  background: linear-gradient(to right, #FF710F 0%, #FF710F 25%, #FAA61A 100%);
  border-radius: 15px;
}
.faq__container-accordion.active .faq__container-accordion-title::before {
  transform: translateY(-50%) rotate(-135deg);
}
.faq__container-accordion.active .faq__container-accordion-content {
  border-top: 1px solid #F7F3E0;
  padding: 50px 40px;
  background-color: #FFE566;
}
.faq__container-accordion.active .faq__container-accordion-content p {
  color: #6D4D3C;
}
.faq__container-accordion-title {
  position: relative;
  cursor: pointer;
  padding: 25px 40px;
  border: 1px solid transparent;
  font-size: 18px;
  font-weight: 700;
  color: #F7F3E0;
  transition: all 200ms ease;
}
.faq__container-accordion-title::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 20px;
  width: 6px;
  height: 6px;
  border: solid #F7F3E0;
  border-width: 0 2px 2px 0;
  display: inline-block;
  padding: 3px;
  transform: translateY(-50%) rotate(45deg);
  transition: transform 300ms ease;
}
.faq__container-accordion-content {
  border: 1px solid transparent;
  border-top: 0;
  overflow: hidden;
  max-height: 0;
  padding: 0 40px;
  transition: max-height 0.4s ease, padding 0.4s ease;
  display: flex;
  align-items: center;
}
.faq__container-accordion-content p {
  color: #F7F3E0;
}
.faq__container-accordion-content a {
  color: #6D4D3C;
  font-weight: bold;
}
.faq__container-accordion-content a:hover {
  text-decoration: none;
  opacity: 0.9;
}
@media only screen and (max-width: 1024px) {
  .faq h2 {
    padding-right: 0;
  }
}

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