:root {
  --clr-white: #ffffff;
  --clr-black: #000000;
  --clr-blue-900: #172554;
  --clr-orange: #FF9F1C;
  --clr-blue-200: #BFDBFE;
  --clr-text: #4a2b2b;
  --clr-border: #4a2b2b;
  --clr-accent: #e57452;
  --clr-blue-100: rgba(40, 99, 235, 0.05);
}

body {
  margin: 0;
  padding: 0;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  overflow-x: hidden !important;
}

img {
  display: block;
  max-width: 100%;
}

a {
    color: var(--clr-black);
}

a:hover {
  color: var(--clr-orange);
}

.logo {
  filter: brightness(0) invert(1);
  width: 50%;
  height: 50%;
}

.icon-logo {
  width: 40px;
  height: 40px;
  filter: brightness(0) invert(1);
}

.logo-wrapper {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

/* nav */
section.nav {
  padding: 20px 0;
}

.nav a {
  color: var(--color-orange);
  font-size: 18px;
  margin-left: 25px;
  font-weight: 500;
}

.nav a:hover {
  cursor: pointer;
  color: var(--clr-orange);
  text-decoration: underline !important;
}

.nav .img-fluid {
  max-height: 45px;
  min-height: 60px;
}

.nav-logo {
  width: 200px;
  height: 60px;
}

.nav-icon {
  height: 40px;
}

.nav-icon-small {
  display: none;
}

.nav a img {
  width: 30px;
  filter: brightness(0) saturate(100%) invert(78%) sepia(52%) saturate(3552%) hue-rotate(344deg) brightness(101%) contrast(101%);
}

.curso-a {
  margin-left: 0 !important;
}

.nav-phone {
  display: flex;
  align-items: center;
  justify-content: center;
}

.navbar-toggler {
  border: none;
  background-color: transparent;
}

.navbar-toggler-icon {
  width: 25px;
  height: 2px;
  background-color: black;
  display: block;
  position: relative;
}

.navbar-toggler-icon::after,
.navbar-toggler-icon::before {
  content: '';
  width: 25px;
  height: 2px;
  background-color: black;
  display: block;
  position: absolute;
}

.navbar-toggler-icon::before {
  top: -6px;
}

.navbar-toggler-icon::after {
  top: 6px;
}

.nav-dropdown {
  position: relative;
  display: inline-block;
}

.nav-dropdown summary {
  list-style: none;
  margin: 0;
  padding: 1rem 1.2rem;
  margin-left: 25px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  font-size: 18px;
  font-weight: 500;
  color: var(--clr-white) !important;
  text-decoration: none;
  background-color: var(--clr-orange);
  border-radius: 8px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.nav-dropdown summary:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.nav-dropdown .dropdown-item:hover {
  color: var(--clr-orange);
  text-decoration: underline;
}

.nav-dropdown .dropdown-item:focus,
.nav-dropdown .dropdown-item:active {
  outline: none;
  box-shadow: none;
  background-color: var(--clr-orange);
  color: var(--clr-white);
}

.nav-dropdown .dropdown-item {
  -webkit-tap-highlight-color: transparent;
}


.nav-dropdown summary::-webkit-details-marker {
  display: none;
}

.nav-dropdown .dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  background: var(--clr-white) !important;
  border: 1px solid var(--clr-border);
  border-radius: 4px;
  margin-top: 8px;
  min-width: 160px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  list-style: none;
  padding: 0;
  z-index: 10;
}

.nav-dropdown[open] .dropdown-menu {
  display: block;
}

.nav-dropdown .dropdown-item {
  display: block;
  padding: 6px 22px;
  font-size: 16px;
  color: var(--clr-black);
  text-decoration: none;
  text-align: end;
}

.list-unstyled {
  margin: 0;
}

.list-unstyled li {
  display: flex;
  align-items: center;
}

.arrow-down {
  margin-left: 4px;
  font-size: 0.8em;
  line-height: 1;
}


#navbarMenu {
  display: none;
  transition: all 0.3s ease;
}

.navbar-toggler:focus {
  box-shadow: none;
}

#navbarMenu.show {
  display: block;
}

@media (max-width: 992px) {
  .nav-phone {
    display: inline-flex;
  }
}

/* messages */
.message-box {
  width: 600px;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.message-box h3 {
  font-size: 2rem;
  line-height: 1.2;
  text-wrap: balance;

}

.message-box span {
  font-weight: 700;
}

@media (max-width: 480px) {
  .message-box h3 {
    font-size: 1.4rem;
  }

  .message-box span {
    font-size: 1.8rem;
  }
}

/* header */
.header {
  position: relative;
  /* background: var(--hero-bg) center/cover no-repeat; */
  padding: 150px 0;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  color: var(--clr-white);
}

.header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 0;
}

.header .container {
  position: relative;
  z-index: 1;
}


.title {
  font-size: 2rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #272727;
  text-align: center;
  margin-bottom: 0;
}

.persona {
  max-height: 1200px;
  object-fit: contain;
}

.custom-container {
  margin: 0 auto;
  --max-width: 1440px;
  --padding: 1rem;
  width: min(var(--max-width), 100% - (2 * var(--padding)));
}

.header-txt {
  position: relative;
  z-index: 90;
  margin-bottom: 28px;
}

.header-img {
  position: relative;
  display: inline-block;
  max-width: 645px;
  max-height: 440px;
}

.persona {
  margin-top: -100px;

  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.header-txt h1 {
  font-size: 58px;
  font-weight: 600;
  line-height: 1.1;
  text-wrap: balance;
}

.header-txt p {
  font-size: 22px;
  font-weight: 400;
  font-style: normal;
  text-wrap: balance;
  margin-bottom: 30px;
}

.header-txt span {
  font-weight: 700;
}

.cta-btn {
  background-color: var(--clr-orange);
  padding: 12px 30px;
  color: white;
  text-decoration: none;
  font-size: 16px;
  border-radius: 5px;
}

.section1 {
  position: relative;
  margin-top: -180px;
  z-index: 999;
}

.form-section {
  text-align: center;
  margin-bottom: 120px;
}

.small-select {
  width: auto !important;
  display: inline-block;
  padding: 4px 8px;
  font-size: 0.9rem;
  margin: 0;
}

#contactform {
  padding: 40px 30px;
  background: var(--clr-white);
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.25);
  border-radius: 20px;
  position: relative;
  margin-bottom: -100px;
  --max-width: 505px;
  --padding: 1rem;
  width: min(var(--max-width), 100% - (2 * var(--padding)));
  margin: 0 auto;
}

.form-step {
  display: none;
}

.form-step h3 {
  /* max-width: 60%; */
  text-wrap: balance;
  margin: 0 auto 15px auto;
  font-weight: 700;
}

.form-step.active {
  display: block;
}

.row.form-step.active {
  display: flex !important;
  flex-wrap: wrap;
}

.form-group {
  margin-bottom: 1rem;
}

.form-group select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  color: var(--clr-black);
  width: 100%;
  height: 45px;
  font-size: 18px !important;
  border-radius: 50px;
  border: 2px solid var(--clr-orange);
  padding: 0 0 0 20px;
  text-align: left !important;
}

.form-group select {
  background:
    var(--clr-white) url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="12" height="8"><path d="M1 1l5 5 5-5" stroke="%23FF6600" stroke-width="2" fill="none" stroke-linecap="round"/></svg>') no-repeat right 20px center;
  background-size: 12px 8px;
  width: 90%;

}

::-webkit-input-placeholder {
  color: var(--clr-black);
}
:-moz-placeholder {
    color: var(--clr-black);
  opacity: 1;
}
::-moz-placeholder {
    color: var(--clr-black);
  opacity: 1;
}
:-ms-input-placeholder {
    color: var(--clr-black);
}
::-ms-input-placeholder {
    color: var(--clr-black);
}
::placeholder {
    color: var(--clr-black);
}

.form-group select::-ms-expand {
  display: none;
}

.form-question {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.1;
  margin: 20px auto 10px auto;
}

.radios label {
  display: inline-block;
  margin-right: 1rem;
  font-weight: normal;
}

.radios input[type="radio"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.radio-btn {
  display: inline-block;
  padding: 1rem 1.2rem;
  margin-right: 0.5rem;
  margin-bottom: 0.5rem;
  background-color: var(--clr-white);
  border: 2px solid var(--clr-orange);
  border-color: var(--clr-orange);
  color: var(--clr-orange);

  border-radius: 8px;
  font-size: 1rem;
  cursor: pointer;
}

.radio-btn:hover {
  border-color: #888;
}

.radios input[type="radio"]:checked+.radio-btn {
  background-color: var(--clr-orange);
  border-color: var(--clr-orange);
  color: #fff;


}

.radios input[type="radio"]:hover+.radio-btn {
  border: 2px solid var(--clr-orange);
  background-color: var(--clr-orange);
  border-color: var(--clr-orange);
  color: #fff;
}

#postal {
  letter-spacing: 2px;
}

.form-input {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-direction: column;
  margin-bottom: 25px;
}

.form-input label {
  color: var(--clr-blue-900);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 10px;
}

.form-input input {
  width: 100%;
  height: 45px;
  font-size: 16px !important;
  border-radius: 50px;
  border: 2px solid var(--clr-orange);
  background: var(--clr-white);
  padding: 0 0 0 20px;
  text-align: left !important;
  color: var(--blue) !important;
}

.form-input input:focus-visible {
  outline: none;
}

::-webkit-input-placeholder {
  color: var(--clr-black);
}

:-moz-placeholder {
  color: var(--clr-black);
  opacity: 1;
}

::-moz-placeholder {
  color: var(--clr-black);
  opacity: 1;
}

:-ms-input-placeholder {
  color: var(--clr-black);
}

::-ms-input-placeholder {
  color: var(--clr-black);
}

::placeholder {
  color: var(--clr-black);
}

.form-check {
  text-align: left;
  padding: 0;
  max-width: 90%;
}

.form-check label {
  position: relative;
  padding-left: 25px;
  cursor: pointer;
  line-height: 1;
  color: var(--blue);
  font-size: 14px;
  font-weight: 400;
}

.form-check label span {
  max-width: 80%;
}

.form-check input[type=checkbox] {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

.checkmark {
  position: absolute;
  top: -1px;
  left: 0;
  height: 15px;
  width: 15px;
  background-color: transparent;
  border: 2px solid var(--clr-blue-900);
  border-radius: 5px;
  color: var(--lightblue);
}

.form-check input[type=checkbox]:checked+.checkmark::after {
  content: "\2713";
  display: block;
  text-align: center;
  line-height: 12px;
  margin-left: 1.5px;
  margin-top: 0px;
  font-size: 12px;
}

#politica-link {
  color: var(--blue);
  font-weight: 700;
  text-decoration: none;
}

#politica-link:hover {
  color: var(--clr-orange);
  text-decoration: underline;
}

.form-button {
  width: 220px;
  height: 45px;
  border-radius: 8px;
  background: var(--clr-orange);
  color: var(--clr-white);
  font-size: 20px;
  line-height: 1;
  font-weight: 700;
  transition: all 0.4s ease;
  margin: 15px auto 0 auto;
  border: none;
}

.form-button:hover {
  background: var(--clr-blue-900);
  color: var(--clr-white);
}

.error {
  text-align: center;
  color: red !important;
  width: 100% !important;
  margin: 5px 0 0 0 !important;
  font-weight: 400 !important;
  font-size: 12px !important;
}

#termos-error {
  text-align: left;
}

@media (max-width: 1200px) {
  .header-txt h1 {
    font-size: 50px;
  }

  .header-txt p {
    font-size: 20px;
  }

  .header-img {
    max-width: 500px;
    max-height: 400px;

  }
}

@media (max-width: 992px) {
  #contactform {
    padding: 30px;
  }

  .form-input input {
    font-size: 14px !important;
  }

  .form-input label {
    font-size: 18px;
  }

  .form-question {
    font-size: 18px;
  }

  .form-group select {
    font-size: 16px !important;
  }

  .header {
    padding-top: 100px;
  }

  .header-txt h1 {
    font-size: 40px;
  }

  .header-txt p {
    text-wrap: balance;
    font-size: 16px;
    margin-bottom: 10px;
  }

  .header-img img {
    max-width: 400px;

  }

  .persona {
    margin-top: -62px;
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
}


@media (max-width: 768px) {
  .persona {
    display: none;
  }

  .nav-logo {
    width: 160px;
    height: 35px;
  }

  .nav-icon {
    height: 35px;
  }

  .nav-dropdown summary {
    padding: 12px 18px;
    font-size: 16px;
  }

  section.nav {
    padding: 18px 0;
  }

  .header {
    padding: 25px 0 200px;
  }

  .header-txt {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
  }

  .logo-wrapper {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .header-txt h1 {
    font-size: 40px;
    max-width: 90%;
    text-wrap: balance;
  }

  .header-img {
    margin: 0 auto;
  }

  .header.img img {
    max-width: 442px;
    margin: -109px auto;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .persona {
    margin-top: -120px;
    width: 41%;
    margin: 0 auto;
  }

  .radio-btn {
    padding: 0.7rem 1rem;
    font-size: 0.9rem;
    margin-right: 8px !important;
  }
}

@media (max-width: 605px) {
  .form-step h3 {
    max-width: 80%;
  }
}

@media (max-width: 492px) {
  .nav-dropdown summary {
    font-size: 15px;
  }

  .section1 {
    margin-top: -240px;
  }

  .header-txt {
    margin-bottom: 45px;
  }

  .header-txt h1 {
    font-size: 30px;
    max-width: 80%;
    text-wrap: balance;
  }

  .header-txt p {
    font-size: 16px;
    max-width: 80%;
  }

  .radios {
    display: flex;
    flex-direction: column;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
  }

  .radio-btn {
    width: 80%;
    text-align: center;
    font-size: 1rem;
    padding: 4px;
  }

  #contactform {
    padding: 20px;
    margin-top: 50px;
  }

  .form-input input {
    font-size: 14px !important;
  }

  .form-input label {
    font-size: 16px;
  }

  .form-question {
    font-size: 16px;
  }

  .form-group select {
    font-size: 14px !important;
  }

  .form-step h3 {
    max-width: 90%;
    font-size: 18px;
    margin: 0 auto;
  }

  #step-2 .col-6 {
    flex: 0 0 100% !important;
    max-width: 100% !important;
  }
}


/* caracteristicas */
.caracteristicas {
  text-align: center;
  padding: 60px 0;
  margin-top: -100px;
}

.razoes-title {
  font-size: 2rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  color: #272727;
}

.underline {
  width: 120px;
  height: 4px;
  background-color: var(--clr-orange);
  margin: 0 auto 2rem;
}

.box-item {
  background: var(--clr-white);
  border-radius: 8px 8px 0 0;
  padding: 2rem 2rem 0 2rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition:
    transform 0.2s ease-out,
    border-color 0.2s ease-out,
    box-shadow 0.2s ease-out;
  will-change: transform;
  border-bottom: 4px solid var(--clr-orange);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  position: relative;
}

.box-item__num {
  position: absolute;
  top: 0rem;
  right: 1rem;
  font-size: 4.5rem;
  color: var(--clr-white);
  z-index: 0;
  -webkit-text-stroke: 3px var(--clr-orange);
  opacity: 0.5;

}

.box-item img {
  transition: filter 0.2s ease-out;
  height: 70px;
  margin-bottom: 1rem;
}

.box-item p {
  margin: 20px 0;
  font-size: 20px;
  font-weight: 600;
  color: #272727;
  line-height: 1.3;
  text-align: start;
}

.box-item img,
.box-item p {
  position: relative;
  z-index: 1;
}

.box-item:hover {
  transform: scale(1.05);
  background-color: var(--clr-orange);

}

.box-item:hover img {
  filter: brightness(0) invert(1);
}

.box-item:hover p {
  color: var(--clr-white);
}

.mb-4 {
  margin-bottom: 1.5rem !important;
}

/** Plano **/
.planos {
  padding: 60px 0;
}

.planos__wrapper {
  --max-width: 1000px;
  --padding: 4rem;
  width: min(var(--max-width), 100% - (2 * var(--padding)));
  margin: 0 auto;
  padding: 30px 15px;
  background-color: rgba(40, 99, 235, 0.05);
  border-radius: 20px;
}

.planos__inner {
  display: flex;
  gap: 30px;
  justify-content: center;
  padding: 20px 0;
}

.planos__left {
  flex: 1 1 350px;
  display: flex;
  align-items: center;
  padding: 0 34px;
}

.planos__right {
  flex: 0 0 400px;
}

.planos__image {
  width: 100%;
  padding-top: 60%;
  background-position: center 30%;
  border-radius: 8px;
  background-size: cover;
  height: 100%;
}


/* accordion  */

.accordion__item {
  margin-bottom: 16px;
  border-radius: 6px;
  overflow: hidden;
}

.accordion .accordion__item:last-child {
  margin-bottom: 0;
}

.accordion__btn {
  display: block;
  width: 100%;
  font-size: 20px;
  font-weight: 500;
  text-align: left;
  border: none;
  background: transparent;
  cursor: pointer;
  position: relative;
  color: var(--clr-black);
}

.accordion__btn-modulo {
  display: block;
  width: 100%;
  font-size: 16px;
  font-weight: 500;
  text-align: left;
  border: none;
  background: transparent;
  cursor: pointer;
  position: relative;
  color: var(--clr-black);
}

.accordion__btn::after,
.accordion__btn-modulo::after {
  content: '+';
  position: absolute;
  right: 20px;
  font-size: 20px;
  top: 50%;
  transform: translateY(-50%);
}

.accordion__btn:not(.collapsed)::after,
.accordion__btn-modulo:not(.collapsed)::after {
  content: '-';
  color: var(--clr-orange);
}

.accordion__btn:not(.collapsed),
.accordion__btn-modulo:not(.collapsed) {
  color: var(--clr-orange);
}



.accordion__body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding: 0 20px;
}

.accordion__body.open {
  max-height: 500px;
  padding: 0 20px;
}

.accordion__body p {
  margin-top: 0;
}

.accordion__body span {
  font-weight: 700;
  font-size: 18px;
}

.accordion__body ul {
  margin: 0;
  padding-left: 20px;
}

.accordion__body li {
  margin-bottom: 8px;
  line-height: 1.4;
}

@media (max-width: 992px) {
  .planos__right {
    flex: 0 0 350px;
  }

  .planos__inner {
    gap: 0px;
  }

}

@media (max-width: 880px) {
  .planos__right {
    flex: 0 0 280px;
  }

}


@media (max-width: 800px) {
  .planos__wrapper {
    margin-top: 75px;
  }

  .planos__inner {
    flex-direction: column;
    align-items: center;
  }

  .planos__right {
    order: -1;
    width: 90%;
    height: 60%;
    max-width: 270px;
    margin: -100px auto 0 auto;

  }

  .planos__left {
    flex: 1 1 0px;
    margin-top: -10px;

  }

  .planos__image {
    height: 80%
  }

}

@media (max-width: 615px) {
  .planos__wrapper {
    --max-width: 1000px;
    --padding: 2rem;
    width: min(var(--max-width), 100% - (2 * var(--padding)));
  }

  .planos__right {
    width: 90%;
  }

  .accordion__btn {
    font-size: 16px;
  }
}

@media (max-width: 525px) {
  .accordion__body.open {
    max-height: none;
    overflow: visible;
  }
}

@media (max-width: 480px) {
  .planos__left {
    padding: 0 10px;
  }
}

@media (max-width: 424px) {
  .nav-text {
    display: none;
  }

  .nav-icon-small {
    display: inline-block;
    width: 20px;
    height: 20px;
    vertical-align: middle;
    filter: brightness(0) invert(1);
  }

  .nav-dropdown summary {
    padding: 8px;
  }
}


/* Testimonials */
.testimonials {
  padding: 60px 20px;
  text-align: center;
}

.testimonials-header {
  max-width: 800px;
  margin: 0 auto 24px auto;
  text-align: center;
  padding: 0 16px;
}



.testimonials-header__divider {
  display: inline-block;
  max-width: 100%;
  height: auto;
}

.trust-pilot {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  margin-top: 10px;
}

.trust-pilot span {
  font-size: 20px;
  font-weight: 500;
}

.trust-pilot__stars {
  width: 150px;
  height: auto;
}

.trust-pilot__icon {
  width: 150px;
  height: auto;
}

.splide {
  --max-width: 1000px;
  --padding: 4rem;
  width: min(var(--max-width), 100% - (2 * var(--padding)));
  margin: 0 auto;
  position: relative;
}

.splide__track {
  padding-top: 80px;
}

.slide__card {
  background: #ff9f1c7d;
  border-radius: 18px;
  display: flex;
  align-items: flex-start;
  height: 100%;
  padding: 30px 18px;
  gap: 24px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.slide__img {
  flex: 0 0 300px;
  object-fit: cover;
  margin-top: -80px;
  z-index: 1;
}

.slide__img img {
  width: 270px;
  height: 250px;
  object-fit: cover;
  border-radius: 10px;
}

.slide__body {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto;
  column-gap: 1rem;
  align-items: start;
  position: relative;
  margin: auto 0;
}

.slide__body::before {
  content: "";
  grid-row: 1 / span 2;
  grid-column: 1;
  width: 2.5rem;
  height: 2.5rem;
  background: url('/img/icons/quote.svg') no-repeat center;
  background-size: contain;
  margin-top: 0.2em;
}

.slide__text,
.slide__author {
  grid-column: 2;
}


.slide__text {
  position: relative;
  line-height: 1.4;
  color: var(--clr-black);
  max-width: 600px;
  margin-top: 15px;
  text-align: start;

}

.slide__text::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4rem;
  height: 4rem;
  background: url('/img/icons/quote.svg') no-repeat center;
  background-size: contain;
  filter: brightness(0) invert(0);
  display: none;
}

.slide__author {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--clr-black);
  text-align: start;
}

/* dots */
.splide__pagination .splide__pagination__page {
  background: var(--clr-white);
  margin-top: 10px;
}

.splide__pagination .is-active {
  background: var(--clr-blue-900)
}

@media (max-width: 992px) {
  .slide__img {
    flex: 0 0 250px;
    max-width: 250px;
    margin-top: -60px;
  }

}


@media (max-width: 768px) {
  .splide {
    --padding: 2em;
    --max-width: 1000px;
    width: min(var(--max-width), 100% - (2 * var(--padding)));
  }

  .slide__card {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .slide__author {
    font-size: 1.2rem;
  }

  .slide__img {
    width: 250px;
    height: 250px;
    aspect-ratio: 1 / 1;
    flex: 0 0 auto;
  }

  .slide__body {
    padding: 0;
  }

  .slide__body::before {
    width: 2rem;
    height: 2rem;
  }

  .title {
    font-size: 1.5rem;
  }

  .trust-pilot__stars {
    width: 100px;
  }

  .trust-pilot__icon {
    width: 100px;
  }

  .trust-pilot span {
    font-size: 16px;
  }
}

@media (max-width: 480px) {

  .slide__text {
    font-size: 0.9rem;
  }

  .slide__img img {
    width: 150px;
    height: 150px;
  }

  .slide__img {
    width: 150px;
    height: auto;
    aspect-ratio: 1 / 1;
  }

  .slide__body {
    column-gap: 0.5rem;
  }

  .slide__body::before {
    width: 1rem;
    height: 1rem;
  }

  .trust-pilot span {
    display: none;
  }

  .form-group select {
    max-width: 80%;
  }
}

/* #################### FAQ #########################*/
.faq-wrapper {
  position: relative;
  margin: 64px auto 0;
  width: calc(100% - 32px);
}

/* .black-box {
  position: relative;
  height: 350px;
  background: var(--clr-blue-100);
  border-radius: 16px;
  overflow: hidden;
  margin: 0 auto;
  --padding: 2em;
  --max-width: 1000px;
  width: min(var(--max-width), 100% - (2 * var(--padding)));
} */


.black-box {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  margin: 0 auto;
  --padding: 2em;
  --max-width: 1000px;
  width: min(var(--max-width), 100% - (2 * var(--padding)));
  padding: 9rem 0;
}

.black-box::before {
  content: "";
  display: block;
  height: 120%;
  background: var(--clr-blue-100);
  border-radius: 16px;
  z-index: -1;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.black-title {
  margin-top: -100px;
  color: var(--clr-black);
  font-size: 28px;
  font-weight: 600;
  line-height: 1.2;
  text-align: center;
}

.highlight {
  color: var(--clr-orange);
}

.faq-content {
  /* position: absolute; */
  position: relative;
  margin-top: -50px;
  top: 120px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  --padding: 8em;
  --max-width: 800px;
  width: min(var(--max-width), 100% - (2 * var(--padding)));
  background: #fff;
  border-radius: 16px;
  padding: 44px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  z-index: 1;
}

.faq-content h2 {
  text-align: center;
}

.faq-mobile-title {
  display: none;
}

.faq-question,
.faq-answer p {
  color: #111;
}

.faq-question .icon {
  fill: currentColor;
}


.faq-items {
  padding: 0 1.5em
}

.faq h2 {
  font-size: 2rem;
  text-align: center;
}

.faq-item {
  border-bottom: 1px solid var(--clr-border);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 1rem 0;
  text-align: left;
  font-size: 1.1rem;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-question .icon {
  display: inline-block;
  font-size: 1.2rem;
  line-height: 1;
  width: 1em;
  text-align: center;
}

.faq-question .icon::before {
  content: "+";
}

.faq-question[aria-expanded="true"] .icon::before {
  content: "-";
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding: 0 0 0 0;
}

.faq-answer p {
  margin: 0.5rem 0 1rem;
  line-height: 1.4;
}

.faq-answer.open {
  max-height: 300px;
}

@media (max-width: 800px) {
  .faq-content {
    padding: 20px;
    --padding: 5em;
    --max-width: 800px;
    width: min(var(--max-width), 100% - (2 * var(--padding)));
  }

  .faq-items {
    padding: 0 16px;
  }

  .faq-question {
    font-size: 1rem;
  }
}

@media (max-width: 768px) {
  .faq-container {
    --max-width: 1000px;
    --padding: 2em;
    width: min(var(--max-width), 100% - (2 * var(--padding)));
  }

  .faq h2 {
    font-size: 1.75rem;
    margin-bottom: 0.75rem;
  }

  .faq hr {
    margin: 0.75rem 0;
  }

  .faq-question {
    font-size: 1rem;
  }

  .faq-question .icon {
    width: 0.875rem;
    height: 0.875rem;
  }

  .faq-answer p {
    margin: 0.4rem 0 0.8rem;
    font-size: 0.95rem;
    line-height: 1.35;
  }
}

@media (max-width: 510px) {
  .faq-content {
    --max-width: 800px;
    --padding: 3em;
    width: min(var(--max-width), 100% - (2 * var(--padding)));
  }
}

@media (max-width: 480px) {
  .faq h2 {
    font-size: 1.5rem;
  }

  .faq-mobile-title {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
  }

  .faq-question {
    padding: 0.5rem 0;
    font-size: 0.9rem;
  }

  .faq-question .icon {
    width: 0.75rem;
    height: 0.75rem;
  }

  .faq-wrapper {
    position: static;
    margin: 2em auto;
    width: 100%;
  }

  .faq-content {
    position: static;
    top: auto;
    left: auto;
    transform: none;
    width: 100%;
    padding: 20px;
    margin-top: 1em;
    box-shadow: none;
  }

  .black-box {
    display: none;
  }
}

/* Noticias */
.news {
  background: #fff;
  padding: 64px 16px;
  margin-top: 180px;
}

.news__inner {
  --max-width: 1200px;
  --padding: 4rem;
  width: min(var(--max-width), 100% - (2 * var(--padding)));
  margin: 0 auto;
  margin-bottom: 48px;
}

.news__title {
  text-align: center;
  font-size: 2.4rem;
  margin-bottom: 28px;
  font-weight: bold;
}

/* grid de noticias */
.news__grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(4, 1fr);
}

.news__footer {
  text-align: center;
  margin-top: 48px;
}

.card-noticias {
  display: flex;
  flex-direction: column;
  background: var(--clr-white);
  border-radius: 16px;
  overflow: hidden;
  border: 2px solid var(--clr-orange);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.card__img {
  width: 100%;
  aspect-ratio: 16 / 9;
  background-size: cover;
  background-position: center;
  border-radius: 12px 0 0 0;
}

.card__body {
  padding: 16px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.card__heading {
  font-size: 1.2rem;
  margin: 0 0 12px;
  font-weight: bold;
}

.card__text {
  font-size: 0.95rem;
  line-height: 1.4;
  margin: 0 0 16px;
  flex: 1;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}

.card__btn {
  display: inline-block;
  align-self: center;
  padding: 8px 16px;
  font-size: 0.9rem;
  font-weight: 700;
  background-color: var(--clr-orange);
  color: var(--clr-white);
  border: 2px solid var(--clr-orange);
  border-radius: 4px;
  transition: all 0.2s;
}

.card__btn {
  text-decoration: none;
}

.card__btn:hover {
  background: var(--clr-blue-900);
  color: var(--clr-white);
  border: 2px solid var(--clr-blue-900);
}

.news__all-btn {
  display: inline-block;
  padding: 12px 32px;
  background: var(--clr-orange);
  color: #fff;
  border-radius: 8px;
  font-weight: bold;
  transition: all 0.2s;
  text-decoration: none;
  border: 1px solid var(--clr-orange);
}

.news__all-btn:hover {
  background: var(--clr-blue-900);
  color: var(--clr-white);
  border: 1px solid var(--clr-blue-900);
}

@media (max-width: 992px) {
  .news__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .news {
    padding: 48px 12px;
  }

  .news__title {
    font-size: 2rem;
    margin-bottom: 32px;
  }

  .card__heading {
    font-size: 1.1rem;
    margin-bottom: 10px;
  }

  .card__text {
    font-size: 0.9rem;
  }

  .card__btn {
    padding: 6px 14px;
    font-size: 0.85rem;
  }
}

@media (max-width: 576px) {
  .news__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .news__all-btn {
    font-size: 0.85rem;
    padding: 8px 16px;
  }

  .news {
    padding: 32px 8px;
  }

  .news__title {
    font-size: 1.6rem;
  }

  .news__grid {
    gap: 16px;
  }
}

@media (max-width: 350px) {
  .header-txt h1 {
    font-size: 28px;
  }

  .header-txt p {
    font-size: 14px;
  }

}

/* Footer */
.footer-cta {
  padding: 2rem;
  display: flex;
  justify-content: center;
}

.footer-cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 90%;
  max-width: 1200px;
  background: var(--clr-blue-100);
  border-radius: 20px;
  padding: 0 4rem;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
}

.footer-cta__image {
  height: 400px;
  margin-right: 2.5em;
  margin-top: -100px;
  margin-left: -30px;
}

.footer-cta__text p {
  margin: 0;
  font-size: 2.7rem;
  line-height: 1.1;
  color: var(--clr-blue-900);
  font-weight: 400;
  max-width: 90%;
}

.footer-cta__text .highlight {
  font-weight: 700;
  display: inline-block;
  padding-bottom: 0.1em;
}

.footer-cta__btn {
  background: var(--clr-orange);
  color: var(--clr-white);
  text-decoration: none;
  font-weight: 700;
  font-size: 22px;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  white-space: nowrap;
  transition: background 0.2s ease;
  border: none
}

.footer-cta__btn:hover {
  background: var(--clr-blue-900);
  color: var(--clr-white);
}

@media (max-width: 1260px) {
  .footer-cta__inner {
    padding: 0 3.5rem;
  }

  .footer-cta__image {
    height: 380px;
    margin-right: 1.4em;
  }

  .footer-cta__text p {
    font-size: 2.4rem;
  }

  .footer-cta__btn {
    font-size: 20px;
    padding: 0.6rem 1.1rem;
  }
}

@media (max-width: 1200px) {
  .footer-cta__image {
    height: 350px;

  }

  .footer-cta__text p {
    font-size: 2rem;
  }

  .footer-cta__btn {
    font-size: 18px;
    padding: 0.5rem 1rem;
  }
}

@media (max-width: 992px) {
  .footer-cta__inner {
    padding: 0 1.5rem;
  }

  .footer-cta__image {
    height: 300px;
    margin-right: 0.8em;
  }

  .footer-cta__text p {
    font-size: 1.6rem;
  }

  .footer-cta__btn {
    font-size: 16px;
    padding: 0.6rem 0.8rem;
  }
}

@media (max-width: 790px) {
  .footer-cta {
    padding-top: 0;
  }

  .footer-cta__inner {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem;
  }

  .footer-cta__image {
    display: none;
  }

  .footer-cta__text p {
    font-size: 1.5rem;
    margin: 0 auto;
    max-width: 70%;
  }

  .footer-cta__btn {
    font-size: 14px;
    padding: 0.4rem 0.6rem;
    margin-top: 1em;
  }
}

@media (max-width: 480px) {
   .news {
     margin-top: 0;
    }
  .footer-cta__text p {
    font-size: 1.3rem;
  }

  .footer-cta__btn {
    font-size: 12px;
    padding: 0.4rem 0.5rem;
  }
}

#section-ads {
  padding-bottom: 20px;
}

.cta-fechar {
  width: 220px;
  height: 45px;
  border-radius: 8px;
  background: var(--clr-orange);
  color: var(--clr-white);
  font-size: 20px;
  line-height: 1;
  font-weight: 700;
  transition: all 0.4s ease;
  margin: 10px auto;
  border: none;
}

.cta-fechar:hover {
  background: var(--clr-blue-900);
  color: var(--clr-white);
}