/* default values */
html, 
body{
  height: 100%;
  width: 100%;
  padding: 0px;
  margin:0px;
  background-color: white;
  overflow-x: hidden; 
  color: var(--black);
  font-family: 'Poppins', sans-serif;
  scroll-behavior: smooth;
}
body {
  background: white url('../img/quina-superior-direita.webp') no-repeat 90% 0%;
  background-size: 340px 232px;
}
h1, 
h2, 
h3, 
h4, 
h5, 
h6 {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
}
* { 
  margin:0; 
  padding:0;
  box-sizing:border-box; 
  border: 0; 
}
a, 
a:hover {
  text-decoration: none;
}
:root {
  --black: #000;
  --black-light: #5A5A5A;
  --orange: #FF652D;
}
*:focus {
  outline:none !important; 
  box-shadow: none !important;
}
p {
  font-size: 15px !important;
  line-height: 22px;
  font-weight: 300;
}
h1 {
  font-size: 1.9rem;
  line-height: 2rem;
}
  h1 span {
    color: var(--orange);
  }
h2 {
  font-size: 1.6rem;
  line-height: 2rem;
}
  h2 span {
    color: var(--orange);
  }
h3 {
  font-size: 1.2rem;
  line-height: 1.6rem;
}
/* btns */
.btn {
  border-radius: 32px;
  -webkit-border-radius: 32px;
  -moz-border-radius: 32px;
  -ms-border-radius: 32px;
  -o-border-radius: 32px;
  font-weight: 600 !important;
  letter-spacing: 1px;
  padding: 10px 50px;
  font-size: 12px;
  opacity: .92;
}
  .btn-orange {
    color: white;
    background-color: var(--orange);
  }
  .btn-green {
    color: white;
    background-color: #51cb6d;
  }
  .btn:hover {
    opacity: 1;
    color: white;
  }
/* owl dots custom */
.owl-theme .owl-dots, 
.owl-theme .owl-nav {
  text-align: center;
}
.owl-theme .owl-dots .owl-dot.active span, 
.owl-theme .owl-dots .owl-dot:hover span {
  background: #90E1E8 !important;
}
.owl-theme .owl-dots .owl-dot span {
  background: #EBEBEB !important;
}
.owl-theme .owl-dots .owl-dot.active span {
  width: 30px !important;
  height: 10px;
  margin: 5px 3px !important;
}
.owl-theme .owl-dots .owl-dot span {
  width: 20px !important;
  height: 10px;
  margin: 5px 3px !important;
}
/* custom faq */
.accordion-button h3 {
  font-size: .9rem;
  line-height: 1.1rem;
}
.accordion-flush .accordion-item {
  border: none !important;
}
.accordion-flush .accordion-item .accordion-button {
  border-radius: 12px 12px 0px 0px;
  border: none;
}
.accordion-body {
  background-color: var(--orange);
  border: none;
}
.accordion-flush .accordion-i
.accordion-header {
  border-radius: 12px 12px 0px 0px;
  -webkit-border-radius: 12px 12px 0px 0px;
  -moz-border-radius: 12px 12px 0px 0px;
  -ms-border-radius: 12px 12px 0px 0px;
  -o-border-radius: 12px 12px 0px 0px;
  border: none;
}
.accordion-body {
  border-radius: 0px 0px 12px 12px;
  -webkit-border-radius: 0px 0px 12px 12px;
  -moz-border-radius: 0px 0px 12px 12px;
  -ms-border-radius: 0px 0px 12px 12px;
  -o-border-radius: 0px 0px 12px 12px;
  color: white;
}
.accordion-body p {
  font-size: 14px !important;
  line-height: 20px;
  font-weight: 300;
}
.accordion-item {
  margin-bottom: 5px;
}
.accordion-button:not(.collapsed) {
  color: white;
  background-color: var(--orange);
}
.accordion-button {
  border: none;
  text-align: left;
}
.accordion-button::after {
  flex-shrink: 0;
  width: 1.25rem;
  height: 1.25rem;
  margin-left: auto;
  content: "";
  background-image: url('../img/ic-maximize.svg');
  background-repeat: no-repeat;
  background-size: 1.25rem;
  transition: transform .2s ease-in-out;
}
.accordion-button:not(.collapsed)::after {
  background-image: url('../img/ic-maximize.svg');
  transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
}
/* animation */
.shake-vertical {
	-webkit-animation: shake-vertical 0.8s cubic-bezier(0.455, 0.030, 0.515, 0.955) 3s both;
	        animation: shake-vertical 0.8s cubic-bezier(0.455, 0.030, 0.515, 0.955) 3s both;
}
@-webkit-keyframes shake-vertical {
  0%,
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  10%,
  30%,
  50%,
  70% {
    -webkit-transform: translateY(-8px);
            transform: translateY(-8px);
  }
  20%,
  40%,
  60% {
    -webkit-transform: translateY(8px);
            transform: translateY(8px);
  }
  80% {
    -webkit-transform: translateY(6.4px);
            transform: translateY(6.4px);
  }
  90% {
    -webkit-transform: translateY(-6.4px);
            transform: translateY(-6.4px);
  }
}
@keyframes shake-vertical {
  0%,
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  10%,
  30%,
  50%,
  70% {
    -webkit-transform: translateY(-8px);
            transform: translateY(-8px);
  }
  20%,
  40%,
  60% {
    -webkit-transform: translateY(8px);
            transform: translateY(8px);
  }
  80% {
    -webkit-transform: translateY(6.4px);
            transform: translateY(6.4px);
  }
  90% {
    -webkit-transform: translateY(-6.4px);
            transform: translateY(-6.4px);
  }
}
.heartbeat {
	-webkit-animation: heartbeat 2s linear infinite reverse forwards;
	        animation: heartbeat 2s linear infinite reverse forwards;
}
@-webkit-keyframes heartbeat {
  from {
    -webkit-transform: scale(1);
            transform: scale(1);
    -webkit-transform-origin: center center;
            transform-origin: center center;
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
  }
  10% {
    -webkit-transform: scale(0.91);
            transform: scale(0.91);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
  }
  17% {
    -webkit-transform: scale(0.98);
            transform: scale(0.98);
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
  }
  33% {
    -webkit-transform: scale(0.87);
            transform: scale(0.87);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
  }
  45% {
    -webkit-transform: scale(1);
            transform: scale(1);
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
  }
}
@keyframes heartbeat {
  from {
    -webkit-transform: scale(1);
            transform: scale(1);
    -webkit-transform-origin: center center;
            transform-origin: center center;
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
  }
  10% {
    -webkit-transform: scale(0.91);
            transform: scale(0.91);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
  }
  17% {
    -webkit-transform: scale(0.98);
            transform: scale(0.98);
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
  }
  33% {
    -webkit-transform: scale(0.87);
            transform: scale(0.87);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
  }
  45% {
    -webkit-transform: scale(1);
            transform: scale(1);
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
  }
}
/* css custom */
header img {
  max-width: 180px;
}
img.hand {
  height: 45px;
  display: inline-block;
}
.tile {
  background: transparent url('../img/quina-esquerda.webp') no-repeat 0% 100%;
  background-size: 140px 386px;
}
.box {
  background-color: white;
  box-shadow: 10px 1px 46px rgba(0, 0, 0, 0.16);
  border-radius: 30px;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  -ms-border-radius: 30px;
  -o-border-radius: 30px;
}
  .box h5 {
    color: var(--orange);
    text-align: center;
  }
  .box label {
    font-weight: 300;
    font-size: 12.5px;
  }
  .box .btn {
    width: 100%;
  }
input {
  font-size: 12.5px !important;
  padding: 10px !important;
}
.boxCustom {
  padding: 45px 15px 45px 40px;
  border-radius: 15px;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  -ms-border-radius: 15px;
  -o-border-radius: 15px;
}
.boxCustom.blue {
  background-color: #E2F2F7;
}
.boxCustom.purple {
  background-color: #F0EFFD;
}
.boxCustom.green {
  background-color: #F0FCF1;
}
.boxCustom.yellow {
  background-color: #FFFCED;
}
.boxCustom.yellow2 {
  background-color: #FFFADD;
}
.boxCustom.red {
  background-color: #FFE5E5;
}
.boxCustom.red2 {
  background-color: #FFE8FB;
}
.boxCustom img {
  width: auto !important;
  height: 35px !important;
  margin-bottom: 30px;
}
.img-case {
  border-radius: 15px;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  -ms-border-radius: 15px;
  -o-border-radius: 15px;
}
.testimonial .box-purple {
  background-color: #EBEDFF;
  border-radius: 15px;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  -ms-border-radius: 15px;
  -o-border-radius: 15px;
}
.testimonial h3 {
  font-weight: 500;
}
img.line {
  margin-top: -40px;
}
.faq {
  background: white url('../img/aviao.webp') no-repeat 0% 0%;
  background-size: 104px 70px;
}
.subtitle p {
  font-size: 10px !important;
  line-height: 14px;
  letter-spacing: .5px;
  font-weight: 300;
}
  .subtitle p span {
    color: var(--orange);
    font-weight: 500;
  }
  .subtitle img {
    width: 15px;
  }
  .subtitle p a {
    color: var(--orange);
  }
footer {
  border-bottom: 6px solid var(--orange);
}
/* media queries */
/* X-Small devices (portrait phones, less than 576px) */
@media (max-width: 575.98px) { 
  body,
  .faq {
    background: white;
  }
  h1 {
    font-size: 1.4rem;
    line-height: 2rem;
  }
}
/* Small devices (landscape phones, less than 768px) */
@media (max-width: 767.98px) { 
}
/* Medium devices (tablets, less than 992px) */
@media (max-width: 991.98px) { 
}
/* Large devices (desktops, less than 1200px) */
@media (max-width: 1199.98px) { 
}
/* X-Large devices (large desktops, less than 1400px) */
@media (max-width: 1399.98px) { 
}

.grecaptcha-badge { visibility: hidden; }