:root {
  --navy:      #0b1f4a;
  --navy-mid:  #102050;
  --red:       #c0392b;
  --red-dark:  #a93226;
  --white:     #ffffff;
  --gray-light:#f5f6f8;
  --gray-mid:  #e8eaee;
  --gray-text: #6b7280;
  --text:      #1a1a2e;

  --font-head: 'Inter', sans-serif;
  --font-body: 'Inter', sans-serif;

  --radius:    8px;
  --shadow:    0 4px 24px rgba(11,31,74,.12);
  --trans:     0.3s ease;

  --container: 1180px;
  --gap:       clamp(1.5rem, 4vw, 3rem);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  font-size: 1rem;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; background: none; border: none; font-family: inherit; }


.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(1rem, 5vw, 2rem);
}

.tag {
  display: inline-block;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gray-text);
  border: 1px solid var(--gray-mid);
  border-radius: 100px;
  padding: .25rem .85rem;
  margin-bottom: 1rem;
}
.tag--center { display: flex; justify-content: center; width: fit-content; margin-inline: auto; margin-bottom: 1rem; }
.tag--light { color: rgba(255,255,255,.7); border-color: rgba(255,255,255,.3); }

.section-title {
  font-family: var(--font-head);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 700;
  text-align: center;
  line-height: 1.3;
  margin-bottom: 2.5rem;
}
.section-title--light { color: var(--white); }

.text-red { color: var(--red); }

.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--font-body);
  font-size: .9rem;
  font-weight: 700;
  padding: .75rem 1.6rem;
  border-radius: var(--radius);
  transition: all var(--trans);
  white-space: nowrap;
}
.btn img { width: 16px; height: 16px; filter: brightness(10); }

.btn--primary {
  background: var(--red);
  color: var(--white);
  border: 2px solid var(--red);
}
.btn--primary:hover { background: var(--red-dark); border-color: var(--red-dark); transform: translateY(-1px); }

.btn--outline-dark {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--navy);
}
.btn--outline-dark:hover { background: var(--navy); color: var(--white); }
.btn--outline-dark img { filter: none; transition: filter var(--trans); }
.btn--outline-dark:hover img { filter: brightness(10); }

.header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: transparent;
  padding: 14px 16px;
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  background: var(--white);
  border-radius: 14px;
  padding-inline: 1.5rem;
  max-width: var(--container);
  margin-inline: auto;
  box-shadow: 0 4px 24px rgba(0,0,0,.18);
}

.header__logo img { height: 48px; width: auto; }

.header__hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: .4rem;
  z-index: 20;
}
.header__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: all var(--trans);
}
.header__hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.header__hamburger.is-open span:nth-child(2) { opacity: 0; }
.header__hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.header__nav {
  display: none;
  flex-direction: column;
  gap: 0;
  position: fixed;
  inset: 84px 0 0 0;
  background: var(--white);
  padding: 1.5rem 2rem 2rem;
  overflow-y: auto;
  box-shadow: var(--shadow);
}
.header__nav.is-open { display: flex; }

.header__nav ul {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 1.5rem;
}
.header__nav ul li a {
  display: block;
  padding: .9rem 0;
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  border-bottom: 1px solid var(--gray-mid);
  transition: color var(--trans);
}
.header__nav ul li a:hover { color: var(--red); }
.header__nav .btn { align-self: flex-start; border-radius:100px;}

@media (min-width: 900px) {
  .header__hamburger { display: none; }

  .header__nav {
    display: flex !important;
    flex-direction: row;
    align-items: center;
    gap: 1.5rem;
    position: static;
    background: none;
    padding: 0;
    box-shadow: none;
    inset: auto;
    overflow: visible;
  }

  .header__nav ul {
    flex-direction: row;
    gap: .25rem;
    margin-bottom: 0;
  }
  .header__nav ul li a {
    padding: .4rem .75rem;
    font-size: .75rem;
    font-weight: 600;
    letter-spacing: .04em;
    text-transform: uppercase;
    border-bottom: none;
    border-radius: 4px;
    color: #6f6f6f;
  }
  .header__nav ul li a:hover { color: var(--red); background: rgba(192,57,43,.06); }
}

.hero {
  position: relative;
  background: var(--navy);
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 65% center;
  opacity: .22;
}

@media (min-width: 900px) {
  .hero__bg img { opacity: 1; }
  .hero__bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg,
      rgba(11,31,74,1)    0%,
      rgba(11,31,74,.98)  28%,
      rgba(11,31,74,.80)  46%,
      rgba(11,31,74,.30)  62%,
      transparent         76%);
  }
}

.hero__wrapper {
  position: relative;
  z-index: 1;
  padding-top: 92px;
  height: 580px;
  max-width: 100%;
  display: flex;
  align-items: center;
}

@media (min-width: 1400px) {
  .hero__wrapper { height: 640px; }
}
@media (min-width: 1800px) {
  .hero__wrapper { height: 700px; }
}

@media (max-width: 899px) {
  .hero__wrapper {
    height: auto;
    padding-bottom: 3rem;
  }
}

.hero__grid {
  display: grid;
  grid-template-columns: 1fr;
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(1rem, 5vw, 2.5rem);
  padding-block: clamp(2rem, 4vw, 3rem);
  height: 100%;
  align-items: center;
}

@media (min-width: 900px) {
  .hero__grid {
    grid-template-columns: 52% 48%;
    align-items: center;
    gap: 0;
  }
}

.hero__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hero__content h1 {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 2.6vw, 3rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.18;
  margin-bottom: 1.1rem;
}
.hero__content h1 em {
  font-style: normal;
  color: #85b3f2;
}

.hero__content > p {
  color: rgba(255,255,255,.8);
  font-size: clamp(.88rem, 1.5vw, .98rem);
  max-width: 440px;
  margin-bottom: 2rem;
  line-height: 1.7;
}

.hero__content .btn--primary {
  border-radius: 100px;
  padding: .85rem 2rem;
  font-size: .95rem;
}

.hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-top: 2rem;
  align-items: center;
}

.hero__badge {
  display: flex;
  align-items: center;
  gap: .6rem;
  background: transparent;
  border: none;
  padding: 0;
}

.hero__badge--rating {
  gap: .75rem;
  align-items: center;
}

.hero__rating-score {
  font-size: 2rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}

.hero__rating-middle {
  display: flex;
  flex-direction: column;
  gap: .1rem;
}
.hero__stars {
  display: flex;
  gap: .05rem;
}
.hero__star {
  color: #f4b942;
  font-size: .9rem;
  line-height: 1;
}
.hero__rating-label {
  font-size: .58rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
}

.hero__avatars {
  display: flex;
  margin-left: .25rem;
}
.hero__avatar {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255,255,255,.6);
  margin-left: -9px;
}
.hero__avatar:first-child { margin-left: 0; }

.hero__rating-count {
  font-size: .72rem;
  color: rgba(255,255,255,.65);
  white-space: nowrap;
  margin-left: .1rem;
}

.hero__badge--years {
  border: none;
  background: transparent;
  gap: .65rem;
  margin-left: 30px;
}

.hero__years-check {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background-color: #254abb;
  padding: 8px;
  border-radius: 6px;
}
.hero__years-check img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.hero__years-inner strong {
  display: block;
  color: var(--white);
  font-size: 1.05rem;
  font-weight: 800;
  line-height: 1.2;
}
.hero__years-inner span {
  display: block;
  color: rgba(255,255,255,.55);
  font-size: .62rem;
  text-transform: uppercase;
  letter-spacing: .1em;
}

.sobre {
  padding-block: clamp(3rem, 7vw, 5.5rem);
  background: var(--white);
}

.sobre__inner {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.sobre__gallery {
  position: relative;
  flex-shrink: 0;
}

.sobre__img--tall {
  width: 100%;
  border-radius: var(--radius);
  display: block;
  /*object-fit: cover;*/
}

@media (min-width: 900px) {
  .sobre__gallery { width: 42%; }
  .sobre__img--tall { height: 460px; }
}

.sobre__text {
  padding-top: .5rem;
}

.sobre__text h2 {
  font-family: var(--font-head);
  font-size: clamp(1.35rem, 2.8vw, 1.9rem);
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 1rem;
  color: #032c7b;
}

.sobre__divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #032c7b 0%, rgba(3,44,123,.2) 100%);
  margin-bottom: 1rem;
  border-radius: 2px;
}

.sobre__text > p {
  color: var(--gray-text);
  font-size: .92rem;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.sobre__list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.sobre__list li {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.sobre__list-track {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
  padding-top: 0;
  align-self: stretch;
  justify-content: flex-start;
}

.sobre__list-dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  border: 2px solid #aab0bb;
  background: var(--white);
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  margin-top: 0;
}

.sobre__list-line {
  width: 2px;
  flex: 1;
  background: #d1d5db;
  margin-top: 0;
}

.sobre__list li > div {
  padding-bottom: 0;
}
.sobre__list li:last-child > div {
  padding-bottom: 0;
}

.sobre__list li strong {
  display: block;
  font-weight: 700;
  font-size: .9rem;
  color: var(--red);
}
.sobre__list li p {
  color: var(--gray-text);
  font-size: .85rem;
  line-height: 1.6;
}

@media (min-width: 900px) {
  .sobre__inner {
    flex-direction: row;
    align-items: flex-start;
    gap: 4rem;
  }
  .sobre__gallery { width: 42%; flex-shrink: 0; }
  .sobre__col-left .sobre__img { min-height: 190px; }
  .sobre__img--tall { min-height: 390px; }
  .sobre__text { flex: 1; padding-top: 0; }
}

.quando {
  padding-block: clamp(3rem, 7vw, 5.5rem);
  background: var(--gray-light);
}

.quando__inner {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.quando__text h2 {
  font-family: var(--font-head);
  font-size: clamp(1.35rem, 3vw, 2rem);
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 1rem;
  color: #032c7b;
}
.quando__text h2 em { font-style: normal; color: #6391cf; }

.quando__divider {
  width: 90px;
  height: 3px;
  background: linear-gradient(90deg, #032c7b 0%, rgba(3,44,123,.2) 100%);
  margin-bottom: 1rem;
  border-radius: 2px;
}

.quando__text > p {
  color: var(--gray-text);
  font-size: .95rem;
  line-height: 1.7;
  margin-bottom: 1rem;
}
.quando__sub {
  font-size: .9rem;
  font-weight: 600;
  color: #032c7b;
  margin-bottom: .75rem;
}

.quando__scroll-wrap {
  display: flex;
  gap: .5rem;
  align-items: stretch;
}

.quando__list {
  display: flex;
  flex-direction: column;
  gap: .5rem;
  max-height: calc(3 * 52px);
  overflow-y: auto;
  flex: 1;
  scrollbar-width: none;
  -ms-overflow-style: none;
  scroll-behavior: smooth;
}
.quando__list::-webkit-scrollbar { display: none; }

.quando__list li {
  display: flex;
  align-items: center;
  gap: .75rem;
  font-size: .9rem;
  color: var(--text);
  line-height: 1.4;
  background: var(--white);
  border-radius: var(--radius);
  padding: .75rem 1rem;
  flex-shrink: 0;
}
.quando__list li img { width: 22px; height: 22px; flex-shrink: 0; }

.quando__scrollbar {
  width: 4px;
  background: var(--gray-mid);
  border-radius: 4px;
  flex-shrink: 0;
  position: relative;
}
.quando__scrollbar-thumb {
  width: 4px;
  background: #6391cf;
  border-radius: 4px;
  position: absolute;
  top: 0;
  left: 0;
  transition: top .15s ease;
}

.quando__photo img {
  width: 100%;
  max-width: 440px;
}

@media (min-width: 900px) {
  .quando__inner {
    flex-direction: row;
    align-items: center;
    gap: 4rem;
  }
  .quando__text { flex: 1; }
  .quando__photo { width: 42%; flex-shrink: 0; }
  .quando__photo img { max-width: 100%; }
}

.procedimentos {
  padding-block: clamp(3rem, 7vw, 5.5rem);
  background: var(--white);
}

.procedimentos .section-title { color: #032c7b; }

.proc__divider {
  width: 90px;
  height: 3px;
  background: linear-gradient(90deg, #032c7b 0%, rgba(3,44,123,.2) 100%);
  border-radius: 2px;
  margin: -1.5rem auto 2.5rem;
}

.proc__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}

.proc__card {
  border: 1.5px solid var(--gray-mid);
  border-radius: 12px;
  padding: 1.75rem 1.5rem;
  transition: box-shadow var(--trans), transform var(--trans);
}
.proc__card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }

.proc__card img {
  width: 48px;
  height: 48px;
  margin-bottom: 1rem;
  border-radius: 10px;
  padding: 8px;
  background: var(--red);
  object-fit: contain;
}

@media (max-width: 599px) {
  .proc__card img {
    margin-inline: auto;
    width: 77px;
    height: 77px;
  }
  .proc__card h3,
  .proc__card p {
    text-align: center;
  }
}

.proc__card h3 {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: .5rem;
  color: #032c7b;
}
.proc__card p {
  font-size: .88rem;
  color: var(--gray-text);
  line-height: 1.6;
}

.proc__cta {
  display: flex;
  justify-content: center;
  margin-top: 1rem;
}

.proc__btn {
  border-radius: 100px;
  background: #6391cf;
  border-color: #6391cf;
}
.proc__btn:hover {
  background: #4f7bbf;
  border-color: #4f7bbf;
}

@media (min-width: 600px) {
  .proc__grid { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 900px) {
  .proc__grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .proc__card:nth-child(4),
  .proc__card:nth-child(5) {
    grid-column: auto;
  }
  .proc__grid {
    grid-template-rows: auto auto;
  }
  .proc__card:nth-child(4) { grid-column: 1; grid-row: 2; justify-self: end; width: 100%; }
  .proc__card:nth-child(5) { grid-column: 2; grid-row: 2; width: 100%; }
}

.depoimentos {
  position: relative;
  padding-block: clamp(3rem, 7vw, 5rem);
  overflow: hidden;
}
.depoimentos__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.depoimentos__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.depoimentos__overlay {
  position: absolute;
  inset: 0;
}
.depoimentos .container { position: relative; z-index: 1; }

.depo__divider {
  width: 90px;
  height: 3px;
  background: linear-gradient(90deg, rgba(255,255,255,.1) 0%, rgba(255,255,255,.8) 100%);
  border-radius: 2px;
  margin: -1.5rem auto 2.5rem;
}

.depo__carousel {
  overflow: hidden;
  margin-bottom: 1.5rem;
  position: relative;
  margin-left:  calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  width: 100vw;
}
.depo__carousel::before,
.depo__carousel::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 220px;
  z-index: 2;
  pointer-events: none;
}
.depo__carousel::before {
  left: 0;
  background: linear-gradient(90deg,
    rgba(11,31,74,1)   0%,
    rgba(11,31,74,.85) 30%,
    rgba(11,31,74,.4)  60%,
    rgba(11,31,74,.1)  85%,
    transparent        100%);
}
.depo__carousel::after {
  right: 0;
  background: linear-gradient(270deg,
    rgba(11,31,74,1)   0%,
    rgba(11,31,74,.85) 30%,
    rgba(11,31,74,.4)  60%,
    rgba(11,31,74,.1)  85%,
    transparent        100%);
}

.depo__track {
  display: flex;
  gap: 1.25rem;
  transition: transform .4s ease;
  will-change: transform;
  padding-inline: 220px;
  cursor: grab;
  user-select: none;
}
.depo__track.is-dragging {
  cursor: grabbing;
  transition: none;
}

.depo__card {
  background: var(--white);
  border-radius: 12px;
  padding: 1.25rem 1.5rem;
  flex: 0 0 calc(25% - 1rem);
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: .75rem;
}

@media (min-width: 700px) and (max-width: 1023px) {
  .depo__card { flex: 0 0 calc(50% - 1rem); }
}

@media (max-width: 699px) {
  .depo__card { flex: 0 0 calc(100% - 2rem); }
  .depo__carousel::before,
  .depo__carousel::after { width: 40px; }
  .depo__track { padding-inline: 40px; }
}

.depo__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.depo__stars {
  display: flex;
  gap: .15rem;
  color: #f4b942;
  font-size: 1.1rem;
  line-height: 1;
}

.depo__google {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

.depo__card p {
  font-size: .85rem;
  color: var(--text);
  line-height: 1.6;
  flex: 1;
}

.depo__author {
  display: flex;
  align-items: center;
  gap: .75rem;
  padding-top: .75rem;
  border-top: 1px solid var(--gray-mid);
  margin-top: auto;
}
.depo__avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--gray-mid);
  flex-shrink: 0;
}

.depo__author span {
  font-weight: 700;
  font-size: .88rem;
  color: #032c7b;
}

.depo__dots {
  display: flex;
  justify-content: center;
  gap: .5rem;
  margin-top: 1.5rem;
}
.depo__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,.35);
  transition: background var(--trans), transform var(--trans);
  padding: 0;
  border: none;
  cursor: pointer;
}
.depo__dot--active {
  background: var(--red);
  transform: scale(1.25);
}

@media (max-width: 699px) {
  .depo__card { min-width: calc(85% - .94rem); }
}

@media (min-width: 700px) and (max-width: 1023px) {
  .depo__card { min-width: calc(48% - .625rem); }
}

.cta-banner {
  background: var(--white);
  padding-block: clamp(1.5rem, 6vw, 2rem);
}

.cta-banner__card {
  position: relative;
  margin-inline: -1.5rem;
  line-height: 0; 
}

.cta-banner__img {
  width: 100%;
  height: auto;
  display: block;
}

.cta-banner__text {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1rem;
  padding: 4.5rem 12rem 2.5rem 34%;
}

.cta-banner__text h2 {
  font-family: var(--font-head);
  font-size: clamp(1.2rem, 2.4vw, 1.75rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.05;
}
.cta-banner__text p {
  color: rgba(255,255,255,.85);
  font-size: clamp(.8rem, 1.3vw, .9rem);
  line-height: 1.25;
}

.cta-banner__btn {
  background: #032c7b;
  color: var(--white);
  border: 2px solid #032c7b;
  border-radius: 100px;
  padding: .8rem 1.8rem;
  font-size: .9rem;
  font-weight: 700;
  align-self: flex-start;
  transition: all var(--trans);
  line-height: normal;
}
.cta-banner__btn img { filter: brightness(10); }
.cta-banner__btn:hover { background: #021f58; border-color: #021f58; transform: translateY(-1px); }

@media (max-width: 699px) {
  .cta-banner__card {
    margin-inline: 0;
    background: var(--red);
    border-radius: 20px;
    overflow: hidden;
  }

  .cta-banner__img {
    display: none;
  }

  .cta-banner__text {
    position: static;
    padding: 2rem 1.5rem;
    align-items: center;
    text-align: center;
    gap: .85rem;
  }

  .cta-banner__text h2 {
    font-size: clamp(1.2rem, 5.5vw, 1.5rem);
    line-height: 1.2;
  }

  .cta-banner__text p {
    font-size: .88rem;
    line-height: 1.5;
  }

  .cta-banner__btn {
    align-self: center;
  }
}

.faq {
  padding-block: clamp(3rem, 7vw, 5.5rem);
  background: var(--white);
}

.faq__inner {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.faq__left h2 {
  font-family: var(--font-head);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: .75rem;
  color: #032c7b;
  white-space: nowrap;
}

.faq__divider {
  width: 300px;
  height: 1.5px;
  background: linear-gradient(90deg, #032c7b 0%, rgba(3,44,123,.15) 100%);
  border-radius: 2px;
  margin-bottom: 1rem;
}

.faq__left > p {
  color: #4b5563;
  font-size: .95rem;
  line-height: 1.7;
  margin-bottom: 1.75rem;
}

.faq .tag {
  color: #4b5563;
  border-color: #c5c8ce;
}

.faq__btn {
  border-radius: 100px;
  background: #6391cf;
  border-color: #6391cf;
  color: var(--white);
}

@media (max-width: 899px) {
  .faq__left {
    align-items: center;
    text-align: center;
  }
}

.faq__btn:hover { background: #4f7bbf; border-color: #4f7bbf; }
.faq__btn img { filter: brightness(10); }

.accordion {
  display: flex;
  flex-direction: column;
  gap: .6rem;
}

.accordion__item {
  border: 1.5px solid var(--gray-mid);
  border-radius: 20px;
  padding: 0 1.25rem;
}

.accordion__btn {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 1rem 0;
  font-size: .95rem;
  font-weight: 700;
  color: #032c7b;
  text-align: left;
  gap: 1rem;
  transition: color var(--trans);
}
.accordion__btn:hover { color: #6391cf; }
.accordion__btn[aria-expanded="true"] { color: #032c7b; }
.accordion__btn[aria-expanded="true"] .accordion__icon {
  transform: rotate(45deg);
}

.accordion__icon {
  font-size: 1.1rem;
  font-weight: 400;
  flex-shrink: 0;
  color: #adafb5;
  transition: transform var(--trans);
  line-height: 1;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #f3f4f6;
  display: flex;
  align-items: center;
  justify-content: center;
}

.accordion__body { display: none; padding-bottom: 1rem; }
.accordion__body.is-open { display: block; }
.accordion__body p {
  font-size: .9rem;
  color: var(--gray-text);
  line-height: 1.7;
}

@media (min-width: 900px) {
  .faq__inner {
    flex-direction: row;
    gap: 0;
    align-items: flex-start;
  }
  .faq__left { width: 40%; flex-shrink: 0; position: sticky; top: 100px; padding-right: 2rem; }
  .faq__right { flex: 1; }
}

.footer {
  background: var(--white);
  color: var(--text);
  padding-top: 2rem;
}

.footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  padding-bottom: 1.75rem;
  border-bottom: 1px solid var(--gray-mid);
}

.footer__social {
  display: flex;
  gap: 1rem;
}
.footer__social a img {
  width: 22px;
  height: 22px;
  filter: none;
}
.footer__social a:hover img { opacity: 1; }

.footer__logo img { height: 56px; width: auto; }

.footer__back-top {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .8rem;
  font-weight: 800;
  color: var(--gray-text);
  transition: color var(--trans);
}
.footer__back-top img {
  width: 22px;
  filter: none;
}
.footer__back-top:hover { color: var(--text); }
.footer__back-top:hover img { opacity: 1; }

.footer__bottom {
  background: var(--white);
  padding-block: 1rem;
  border-top: none;
}
.footer__bottom-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .25rem;
  text-align: center;
}
.footer__bottom p {
  font-size: .75rem;
  color: var(--gray-text);
}

.footer__velejar {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-size: .75rem;
  color: var(--gray-text);
  transition: color var(--trans);
}
.footer__velejar:hover { color: var(--text); }
.footer__velejar img {
  height: 18px;
  filter: none;
}
.footer__velejar:hover img { opacity: 1; }

@media (min-width: 700px) {
  .footer__inner {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
  .footer__bottom-inner {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    text-align: left;
  }
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }

@media (max-width: 899px) {

  .hero__content {
    align-items: center;
    text-align: center;
  }
  .hero__content > p { max-width: 100%; }
  .hero__content .btn--primary { align-self: center; }

  .hero__badges {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-top: 1.5rem;
    width: 100%;
  }

  .hero__badge--rating {
    flex-direction: column;
    align-items: center;
    gap: .5rem;
  }

  .hero__rating-line1,
  .hero__rating-line2 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .6rem;
  }

  .hero__badge--years {
    justify-content: center;
  }

}