:root {
  --primary: #042643;
  --accent: #00b2d1;
  --whatsapp: #25d366;
  --whatsapp-hover: #1ebe5d;
  --white: #ffffff;
  --bg: #f6f8fa;
  --text: #0b1b2a;
  --text-2: #5b6670;
  --border: #e4e9ee;
  --dark: #031a2e;

  --container: 1240px;
  --radius: 14px;
  --radius-sm: 12px;
  --shadow: 0 10px 28px rgba(3, 26, 46, 0.06);

  --oswald: "Oswald", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  --montserrat: "Montserrat", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--montserrat);
  color: var(--text);
  background: var(--white);
  line-height: 1.55;
}

.svg-defs {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(var(--container), calc(100% - 48px));
  margin-inline: auto;
}

@media (max-width: 640px) {
  .container {
    width: calc(100% - 32px);
  }
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  padding: 10px 12px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  z-index: 9999;
  font-family: var(--montserrat);
  font-weight: 600;
}

.skip-link:focus {
  left: 12px;
  top: 12px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 10px 24px rgba(3, 26, 46, 0.06);
}

.header__inner {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 18px;
  padding: 14px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.brand__logo {
  width: auto;
  height: 42px;
}

.nav {
  display: flex;
  align-items: center;
}

.nav__toggle {
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: var(--white);
  color: var(--primary);
  font-family: var(--montserrat);
  font-weight: 600;
  cursor: pointer;
}

.nav__toggle:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.nav__toggle-line {
  width: 18px;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
  display: block;
}

.nav__panel {
  display: flex;
  align-items: center;
  gap: 22px;
}

.nav__link {
  color: rgba(4, 38, 67, 0.86);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.02em;
  position: relative;
  padding: 8px 2px;
}

.nav__link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 3px;
  height: 2px;
  background: var(--accent);
  opacity: 0;
  transform: translateY(2px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.nav__link:hover {
  color: var(--primary);
}

.nav__link:hover::after {
  opacity: 1;
  transform: translateY(0);
}

.btn--whatsapp.header__cta {
  justify-self: end;
  padding: 10px 14px;
  font-size: 13px;
  border-radius: 10px;
  gap: 8px;
  background: var(--primary);
  color: var(--white);
  border-color: rgba(0, 178, 209, 0.24);
  box-shadow: 0 10px 22px rgba(4, 38, 67, 0.12);
}

.btn--whatsapp.header__cta:hover {
  background: #053057;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 12px;
  border: 1px solid transparent;
  font-family: var(--montserrat);
  font-weight: 700;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: transform 160ms ease, background-color 160ms ease, border-color 160ms ease, color 160ms ease;
  text-decoration: none;
  user-select: none;
}

.btn:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.btn--primary {
  background: var(--primary);
  color: var(--white);
  border-color: rgba(0, 178, 209, 0.22);
}

.btn--primary:hover {
  background: #053057;
  transform: translateY(-1px);
}

.btn--accent {
  background: var(--accent);
  color: #05212f;
  border-color: rgba(255, 255, 255, 0.12);
}

.btn--accent:hover {
  background: #00c3e6;
  transform: translateY(-1px);
}

.btn--whatsapp {
  background: var(--whatsapp);
  color: var(--white);
  border-color: rgba(0, 0, 0, 0.08);
}

.btn--whatsapp:hover {
  background: var(--whatsapp-hover);
  transform: translateY(-1px);
}

.btn__icon {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

.btn--lg {
  padding: 14px 18px;
  border-radius: 14px;
  font-size: 15px;
}

.btn--xl {
  padding: 16px 20px;
  border-radius: 14px;
  font-size: 15px;
}

.hero {
  position: relative;
  min-height: 700px;
  display: grid;
  align-items: center;
  background-image: linear-gradient(
      90deg,
      rgba(3, 26, 46, 0.94) 0%,
      rgba(3, 26, 46, 0.84) 34%,
      rgba(3, 26, 46, 0.28) 66%,
      rgba(3, 26, 46, 0) 100%
    ),
    url("img/hero-desktop.png");
  background-size: cover;
  background-position: right center;
  background-repeat: no-repeat;
  padding: 124px 0 88px;
}

.hero__inner {
  display: grid;
}

.hero__content {
  max-width: 590px;
  color: var(--white);
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(0, 178, 209, 0.22);
  margin-bottom: 22px;
}

.badge__dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(0, 178, 209, 0.18);
}

.badge__text {
  font-family: var(--oswald);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 13px;
}

.hero__title {
  max-width: 560px;
  margin: 0;
  font-family: var(--oswald);
  font-size: clamp(36px, 4.6vw, 56px);
  line-height: 1.14;
  padding-bottom: 0.06em;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

.hero__title-mobile {
  display: none;
}

.title-accent {
  color: var(--accent);
}

.hero__subtitle {
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 16px;
  max-width: 56ch;
}

.hero__subtitle-mobile {
  display: none;
}

.hero__actions {
  margin: 28px 0 22px;
}

.hero__checks {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 500;
  font-size: 15px;
}

.hero__check-char {
  display: none;
}

.hero__checks li {
  position: relative;
  padding-left: 28px;
}

.hero__checks li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 3px;
  width: 18px;
  height: 18px;
  border-radius: 999px;
  border: 1px solid rgba(0, 178, 209, 0.48);
  background: rgba(0, 178, 209, 0.14);
}

.hero__checks li::after {
  content: "";
  position: absolute;
  left: 6px;
  top: 9px;
  width: 6px;
  height: 3px;
  border-left: 2px solid var(--accent);
  border-bottom: 2px solid var(--accent);
  transform: rotate(-45deg);
}

.section {
  padding: 92px 0;
}

.section--light {
  background: var(--white);
}

.section--tinted {
  background: var(--bg);
}

.section--dark {
  background: var(--dark);
}

.section__header {
  margin-bottom: 34px;
}

.section__header--center {
  text-align: center;
}

.section__header--center .section__subtitle {
  margin-inline: auto;
}

.section__title {
  margin: 0 0 10px;
  font-family: var(--oswald);
  font-size: clamp(28px, 2.8vw, 40px);
  line-height: 1.14;
  padding-bottom: 0.04em;
  letter-spacing: 0.01em;
  color: var(--primary);
  text-transform: uppercase;
}

.section__title--light {
  color: var(--white);
}

.section__subtitle {
  margin: 0;
  color: var(--text-2);
  max-width: 72ch;
  font-size: 16px;
}

.section__subtitle--light {
  color: rgba(255, 255, 255, 0.82);
}

.section__cta {
  margin-top: 30px;
  display: grid;
  gap: 14px;
  justify-items: center;
  text-align: center;
}

.section__cta--center {
  justify-items: center;
}

.section__cta-text {
  margin: 0;
  font-family: var(--montserrat);
  font-weight: 600;
  color: var(--text-2);
}

.grid {
  display: grid;
  gap: 18px;
}

.grid--4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.grid--3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid--2x2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.card:hover {
  transform: translateY(-2px);
  border-color: rgba(0, 178, 209, 0.26);
  box-shadow: var(--shadow);
}

.card__body {
  padding: 18px 18px 20px;
}

.card__title {
  margin: 0 0 8px;
  font-family: var(--oswald);
  letter-spacing: 0.01em;
  font-size: 20px;
  color: var(--primary);
  line-height: 1.15;
  text-transform: uppercase;
}

.card__text {
  margin: 0;
  color: var(--text-2);
  font-size: 14px;
}

.equip-card__media {
  aspect-ratio: 16 / 10;
  background: linear-gradient(180deg, rgba(4, 38, 67, 0.04), rgba(0, 178, 209, 0.06));
  display: grid;
  place-items: center;
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}

.equip-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.equip-card__icon {
  width: 42px;
  height: 42px;
  color: rgba(4, 38, 67, 0.54);
}

.equip-card__model {
  margin: -2px 0 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: rgba(4, 38, 67, 0.78);
}

.equip-card__specs {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 7px;
  color: var(--text-2);
  font-size: 13px;
  line-height: 1.5;
}

.equip-card__specs li {
  position: relative;
  padding-left: 14px;
}

.equip-card__specs li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: rgba(0, 178, 209, 0.38);
  transform: translateY(-50%);
}

#equipamentos {
  overflow: hidden;
}

#equipamentos .section__header {
  margin-bottom: 34px;
}

#equipamentos .equip-carousel {
  --equip-gap: 22px;
  --equip-slides: 3;
  display: grid;
  gap: 24px;
}

#equipamentos .equip-carousel__viewport {
  overflow: hidden;
  padding: 2px;
  margin: -2px;
  touch-action: pan-y pinch-zoom;
  cursor: grab;
}

#equipamentos .equip-carousel__viewport.is-dragging {
  cursor: grabbing;
}

#equipamentos .equip-carousel__track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - (var(--equip-gap) * (var(--equip-slides) - 1))) / var(--equip-slides));
  gap: var(--equip-gap);
  align-items: stretch;
  will-change: transform;
  transition: transform 560ms cubic-bezier(0.22, 1, 0.36, 1);
}

#equipamentos .equip-card {
  min-width: 0;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  border-color: #e4e9ee;
  border-radius: 18px;
  background: linear-gradient(180deg, #ffffff 0%, #fbfcfd 100%);
  box-shadow: 0 16px 30px rgba(3, 26, 46, 0.045);
}

#equipamentos .equip-card:hover {
  transform: translateY(-2px);
  border-color: rgba(4, 38, 67, 0.12);
  box-shadow: 0 18px 36px rgba(3, 26, 46, 0.07);
}

#equipamentos .equip-card__head {
  padding: 22px 24px 0;
}

#equipamentos .equip-card__heading {
  margin: 0;
  display: grid;
  gap: 5px;
}

#equipamentos .equip-card__category {
  font-family: var(--oswald);
  font-size: 16px;
  line-height: 1;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--primary);
}

#equipamentos .equip-card__model {
  font-family: var(--montserrat);
  font-size: 24px;
  font-weight: 600;
  line-height: 1.12;
  color: rgba(4, 38, 67, 0.82);
}

#equipamentos .equip-card__media {
  position: relative;
  height: 270px;
  min-height: 270px;
  display: grid;
  justify-items: center;
  align-items: start;
  padding: 0 10px 22px;
  background: radial-gradient(circle, rgba(0, 178, 209, 0.1) 0%, rgba(0, 178, 209, 0) 68%);
  border-bottom: 1px solid rgba(228, 233, 238, 0.56);
}

#equipamentos .equip-card__img {
  width: 92%;
  height: 92%;
  max-width: 92%;
  max-height: 92%;
  object-fit: contain;
  object-position: center top;
  justify-self: center;
  align-self: start;
  position: relative;
  transform: translateY(-12px);
  filter: drop-shadow(0 18px 24px rgba(3, 26, 46, 0.12));
}

#equipamentos .equip-card__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 20px 24px 24px;
}

#equipamentos .equip-card__specs {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 9px;
  color: var(--text-2);
  font-size: 13.5px;
  line-height: 1.58;
}

#equipamentos .equip-card__specs li {
  position: relative;
  padding-left: 14px;
}

#equipamentos .equip-card__specs li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.78em;
  width: 5px;
  height: 5px;
  border-radius: 999px;
  background: rgba(0, 178, 209, 0.56);
  transform: translateY(-50%);
}

.two-col {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 34px;
  align-items: center;
}

.two-col__content {
  display: grid;
  align-content: center;
}

.two-col__content > .btn {
  justify-self: center;
}

.section--alfa {
  padding: 34px 0;
  background: #f6f8fa;
}

.section--alfa .alfa__layout {
  display: grid;
  grid-template-columns: minmax(180px, 210px) minmax(360px, 500px);
  justify-content: center;
  gap: 40px;
  align-items: center;
  min-height: 250px;
  max-width: 860px;
  margin: 0 auto;
}

.section--alfa .alfa__media {
  display: flex;
  align-items: center;
  justify-content: center;
}

.section--alfa .alfa__image {
  width: 100%;
  max-width: 190px;
  display: block;
}

.section--alfa .alfa__content {
  min-width: 0;
  max-width: 500px;
  display: grid;
  gap: 10px;
}

.section--alfa .alfa__eyebrow {
  margin-bottom: 8px;
  color: var(--accent);
}

.section--alfa .alfa__title {
  margin: 0;
  max-width: none;
  font-size: clamp(24px, 2vw, 30px);
  line-height: 1.02;
  color: var(--primary);
}

.section--alfa .alfa__title-line {
  display: block;
  white-space: nowrap;
}

.section--alfa .alfa__subtitle {
  max-width: 40ch;
  font-size: 16px;
  color: var(--text);
}

.section--alfa .alfa__text {
  max-width: 46ch;
  margin: 0;
  color: var(--text-2);
  font-size: 15px;
  line-height: 1.5;
}

.media-round {
  border-radius: var(--radius);
  border: 1px solid rgba(228, 233, 238, 0.18);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.14);
  background: rgba(255, 255, 255, 0.04);
}

.text {
  margin: 0 0 14px;
  color: var(--text-2);
}

.text--light {
  color: rgba(255, 255, 255, 0.82);
}

.eyebrow {
  margin: 0 0 10px;
  font-family: var(--oswald);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  font-size: 12px;
}

.benefit {
  padding: 18px 18px 20px;
}

.benefit__icon {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 18px;
  color: #00b2d1;
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
}

.benefit__icon-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: left center;
  display: block;
  filter: brightness(0) saturate(100%) invert(52%) sepia(91%) saturate(2251%) hue-rotate(153deg) brightness(95%)
    contrast(101%);
}

.icon {
  width: 100%;
  height: 100%;
  color: #00b2d1;
  flex: 0 0 auto;
}

.icon--light {
  color: var(--accent);
}

.section--reviews {
  background: #f6f8fa;
}

.reviews__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.reviews__summary {
  display: flex;
  align-items: center;
  gap: 16px;
}

.reviews__google-icon {
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
}

.reviews__summary-copy {
  display: grid;
  gap: 4px;
}

.reviews__kicker {
  margin: 0;
  font-family: var(--oswald);
  font-size: 28px;
  line-height: 1;
  letter-spacing: 0.01em;
  color: var(--primary);
  text-transform: uppercase;
}

.reviews__subtitle {
  margin: 0;
  color: var(--text-2);
}

.reviews__stars {
  color: #fbbc04;
  font-size: 24px;
  letter-spacing: 0.14em;
  white-space: nowrap;
}

.testimonial {
  padding: 18px 20px 20px;
  border-radius: 18px;
  border: 1px solid #d7dee5;
  background: #fff;
  box-shadow: 0 10px 22px rgba(3, 26, 46, 0.04);
}

.testimonial__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}

.testimonial__identity {
  display: grid;
  gap: 2px;
}

.testimonial__google {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

.testimonial__quote {
  margin: 0;
  color: var(--text);
  font-weight: 500;
  line-height: 1.5;
}

.testimonial__name {
  margin: 0;
  font-family: var(--montserrat);
  font-size: 15px;
  font-weight: 700;
  color: var(--primary);
}

.testimonial__source {
  margin: 0;
  color: rgba(4, 38, 67, 0.58);
  font-size: 13px;
}

.testimonial__rating {
  margin: 0 0 12px;
  color: #fbbc04;
  font-size: 16px;
  letter-spacing: 0.12em;
  font-weight: 700;
}

.section--steps {
  background-image: linear-gradient(180deg, rgba(3, 26, 46, 0.96) 0%, rgba(3, 26, 46, 0.86) 52%, rgba(3, 26, 46, 0.96) 100%),
    url("img/hero-desktop.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.section--steps .section__title {
  display: inline-block;
}

.section--steps .section__title::after {
  content: "";
  display: block;
  width: 68px;
  height: 3px;
  border-radius: 999px;
  background: var(--accent);
  margin: 14px auto 0;
  opacity: 0.9;
}

.section--steps .icon {
  width: 32px;
  height: 32px;
}

.steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  --steps-gap: 34px;
  gap: var(--steps-gap);
}

.step {
  --step-num-size: 22px;
  --step-gap: 14px;
  --step-icon-size: 78px;
  padding: 0 10px;
  text-align: center;
  position: relative;
}

.step__top {
  display: grid;
  justify-items: center;
  gap: var(--step-gap);
  margin-bottom: 18px;
}

.step__num {
  font-family: var(--oswald);
  letter-spacing: 0.08em;
  font-size: var(--step-num-size);
  line-height: 1;
  color: var(--accent);
}

.step__icon {
  width: var(--step-icon-size);
  height: var(--step-icon-size);
  display: grid;
  place-items: center;
  border-radius: 999px;
  border: 2px solid rgba(0, 178, 209, 0.62);
  background: rgba(3, 26, 46, 0.22);
}

.step__title {
  margin: 0 0 8px;
  font-family: var(--oswald);
  color: var(--white);
  letter-spacing: 0.01em;
  font-size: 18px;
}

.step__text {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
}

@media (min-width: 1025px) {
  .step::after {
    content: "";
    position: absolute;
    top: calc(var(--step-num-size) + var(--step-gap) + (var(--step-icon-size) / 2));
    left: 50%;
    transform: translateX(calc(var(--step-icon-size) / 2));
    width: calc(100% + var(--steps-gap) - var(--step-icon-size));
    height: 2px;
    background: rgba(0, 178, 209, 0.28);
  }

  .step:last-child::after {
    display: none;
  }
}

.list-check {
  list-style: none;
  padding: 0;
  margin: 18px 0 22px;
  display: grid;
  gap: 10px;
}

.list-check li {
  padding-left: 26px;
  position: relative;
  color: var(--text-2);
  font-weight: 500;
}

.list-check li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 14px;
  height: 14px;
  border-radius: 4px;
  border: 1px solid rgba(0, 178, 209, 0.36);
  background: rgba(0, 178, 209, 0.12);
}

.list-check li::after {
  content: "";
  position: absolute;
  left: 4px;
  top: 10px;
  width: 6px;
  height: 3px;
  border-left: 2px solid var(--accent);
  border-bottom: 2px solid var(--accent);
  transform: rotate(-45deg);
}

.section--faq {
  padding-bottom: 96px;
}

.faq {
  display: grid;
  gap: 10px;
  max-width: 980px;
  margin-inline: auto;
}

.faq__item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--white);
  overflow: hidden;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.faq__item[open] {
  border-color: rgba(0, 178, 209, 0.28);
  box-shadow: 0 18px 40px rgba(3, 26, 46, 0.06);
}

.faq__question {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 18px 18px;
  cursor: pointer;
  font-weight: 800;
  color: var(--primary);
}

.faq__question::-webkit-details-marker {
  display: none;
}

.faq__question:hover {
  background: rgba(0, 178, 209, 0.06);
}

.faq__icon {
  width: 18px;
  height: 18px;
  border-radius: 6px;
  border: 1px solid rgba(0, 178, 209, 0.34);
  position: relative;
  color: var(--accent);
}

.faq__icon::before,
.faq__icon::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 10px;
  height: 2px;
  background: var(--accent);
  transform: translate(-50%, -50%);
  border-radius: 2px;
}

.faq__icon::after {
  width: 2px;
  height: 10px;
}

.faq__item[open] .faq__icon::after {
  opacity: 0;
}

.faq__answer {
  padding: 0 18px 18px;
  color: var(--text-2);
}

.faq__answer p {
  margin: 0;
}

.section--cta {
  background-image: linear-gradient(
      90deg,
      rgba(3, 26, 46, 0.94) 0%,
      rgba(3, 26, 46, 0.9) 56%,
      rgba(3, 26, 46, 0.98) 100%
    ),
    radial-gradient(700px 220px at 84% 34%, rgba(0, 178, 209, 0.16), rgba(3, 26, 46, 0));
}

.cta-band {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
  align-items: center;
  justify-items: center;
  text-align: center;
  border: 1px solid rgba(228, 233, 238, 0.12);
  border-radius: var(--radius);
  padding: 28px 26px;
  background: rgba(255, 255, 255, 0.02);
}

.cta-band__content {
  display: grid;
  justify-items: center;
  max-width: 760px;
}

.cta-band__bullets {
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 500;
  justify-items: center;
}

.cta-band__bullets li {
  position: relative;
  padding-left: 18px;
  text-align: left;
}

.cta-band__bullets li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--accent);
}

.cta-band__footer {
  margin-top: 24px;
}

.contact {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px;
  align-items: stretch;
}

.contact__info,
.contact__map {
  min-width: 0;
  height: 100%;
}

.contact__info {
  display: grid;
  align-content: start;
}

.contact__grid {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.contact__item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 14px;
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 14px;
  background: var(--white);
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.contact__item:hover {
  border-color: rgba(0, 178, 209, 0.26);
  box-shadow: 0 12px 26px rgba(3, 26, 46, 0.06);
}

.contact__icon {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  border: 1px solid rgba(0, 178, 209, 0.22);
  background: rgba(0, 178, 209, 0.06);
  display: grid;
  place-items: center;
  color: var(--accent);
}

.contact__icon .icon {
  width: 26px;
  height: 26px;
}

.contact__label {
  margin: 0 0 4px;
  font-family: var(--oswald);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 12px;
  color: rgba(4, 38, 67, 0.72);
}

.contact__value {
  margin: 0;
  color: var(--primary);
  font-weight: 700;
}

a.contact__value:hover {
  color: #053057;
  text-decoration: underline;
  text-decoration-color: rgba(0, 178, 209, 0.46);
  text-underline-offset: 4px;
}

.map {
  position: relative;
  height: 100%;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  background: rgba(4, 38, 67, 0.04);
  min-height: 100%;
}

.map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.map__open {
  position: absolute;
  inset: 0;
}

.site-footer {
  background: var(--dark);
  border-top: 1px solid rgba(228, 233, 238, 0.12);
  padding: 22px 0;
}

.footer__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
}

.footer__text {
  margin: 0;
}

.footer__link {
  color: rgba(255, 255, 255, 0.86);
  font-weight: 700;
}

.footer__link:hover {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.whatsapp-float {
  position: fixed;
  right: 14px;
  bottom: 14px;
  width: 54px;
  height: 54px;
  border-radius: 999px;
  background: var(--whatsapp);
  color: var(--white);
  display: grid;
  place-items: center;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.16);
  z-index: 1200;
  transition: transform 160ms ease, background-color 160ms ease;
}

.whatsapp-float:hover {
  background: var(--whatsapp-hover);
  transform: translateY(-2px);
}

.whatsapp-float__icon {
  width: 24px;
  height: 24px;
}

section[id] {
  scroll-margin-top: 84px;
}

.reveal {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 460ms ease, transform 460ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .btn,
  .card,
  .nav__link::after,
  .reveal {
    transition: none;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1024px) {
  .grid--4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .grid--3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .grid--2x2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .two-col {
    grid-template-columns: 1fr;
  }

  .section--alfa .alfa__layout {
    grid-template-columns: minmax(180px, 210px) minmax(0, 1fr);
    gap: 22px 28px;
    max-width: 860px;
  }

  .section--alfa .alfa__content {
    max-width: 100%;
  }

  .section--alfa .alfa__title {
    max-width: 100%;
  }

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

  .reviews__stars {
    font-size: 22px;
  }

  .cta-band {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .contact {
    grid-template-columns: 1fr;
  }

  .map {
    min-height: 360px;
  }

  .steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  #equipamentos .equip-carousel {
    --equip-slides: 2;
  }

  #equipamentos .equip-card__head {
    padding: 20px 20px 0;
  }

  #equipamentos .equip-card__media {
    height: 248px;
    min-height: 248px;
    padding: 0 10px 22px;
  }

  #equipamentos .equip-card__img {
    width: 90%;
    height: 90%;
    max-width: 90%;
    max-height: 90%;
  }

  #equipamentos .equip-card__body {
    padding: 18px 20px 22px;
  }
}

@media (max-width: 860px) {
  .header__inner {
    grid-template-columns: 1fr auto;
    gap: 12px;
    padding: 12px 0;
  }

  .header__cta {
    display: none;
  }

  .brand__logo {
    height: 38px;
  }

  .nav__toggle {
    display: inline-flex;
    width: 44px;
    height: 44px;
    padding: 0;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(3, 26, 46, 0.06);
  }

  .nav__panel {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    left: auto;
    display: grid;
    gap: 10px;
    padding: 14px;
    width: min(260px, calc(100vw - 32px));
    max-height: calc(100svh - 84px);
    overflow-y: auto;
    border-radius: var(--radius);
    background: var(--white);
    border: 1px solid var(--border);
    box-shadow: 0 18px 38px rgba(3, 26, 46, 0.12);
    transform: translateY(-6px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 160ms ease, transform 160ms ease;
  }

  .nav__panel.is-open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .nav__link {
    padding: 10px 10px;
    border-radius: 12px;
    background: rgba(4, 38, 67, 0.04);
  }

  .nav__link::after {
    display: none;
  }
}

@media (max-width: 767px) {
  .section--alfa {
    padding: 34px 0;
  }

  .section--alfa .alfa__layout {
    grid-template-columns: 1fr;
    gap: 14px;
    min-height: 0;
    justify-items: center;
    text-align: center;
  }

  .section--alfa .alfa__media {
    justify-content: center;
  }

  .section--alfa .alfa__image {
    max-width: 190px;
  }

  .section--alfa .alfa__title {
    max-width: 100%;
    font-size: 28px;
  }

  .section--alfa .alfa__title-line {
    white-space: normal;
  }

  .section--alfa .alfa__subtitle {
    font-size: 16px;
  }

  .section--alfa .alfa__text {
    font-size: 14px;
    line-height: 1.5;
    margin-inline: auto;
  }

  .reviews__summary {
    align-items: flex-start;
  }

  .reviews__kicker {
    font-size: 22px;
  }

  .reviews__stars {
    font-size: 20px;
  }

  .testimonial {
    padding: 16px 16px 18px;
  }

  .header__inner {
    grid-template-columns: 1fr auto;
    gap: 12px;
    padding: 12px 0;
  }

  .header__cta {
    display: none;
  }

  .brand__logo {
    height: 38px;
  }

  .nav__toggle {
    display: inline-flex;
    width: 44px;
    height: 44px;
    padding: 0;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(3, 26, 46, 0.06);
  }

  .nav__panel {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    left: auto;
    display: grid;
    gap: 10px;
    padding: 14px;
    width: min(260px, calc(100vw - 32px));
    border-radius: var(--radius);
    background: var(--white);
    border: 1px solid var(--border);
    box-shadow: 0 18px 38px rgba(3, 26, 46, 0.12);
    transform: translateY(-6px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 160ms ease, transform 160ms ease;
  }

  .nav__panel.is-open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .nav__link {
    padding: 10px 10px;
    border-radius: 12px;
    background: rgba(4, 38, 67, 0.04);
  }

  .nav__link::after {
    display: none;
  }

  .hero {
    min-height: 788px;
    padding: 52px 0 24px;
    background-image: linear-gradient(
        180deg,
        rgba(3, 26, 46, 0.98) 0%,
        rgba(3, 26, 46, 0.95) 26%,
        rgba(3, 26, 46, 0.8) 48%,
        rgba(3, 26, 46, 0.38) 72%,
        rgba(3, 26, 46, 0.12) 100%
      ),
      url("img/hero-mobile.png");
    background-size: cover;
    background-position: 62% bottom;
    align-items: start;
  }

  .hero__inner {
    min-height: calc(788px - 76px);
    align-content: start;
  }

  .hero__content {
    width: min(100%, 340px);
    max-width: 340px;
    margin: 0 auto;
    padding-top: 18px;
    text-align: center;
  }

  .badge {
    margin: 0 auto 20px;
    justify-content: center;
  }

  .hero__title {
    margin-inline: auto;
    max-width: 100%;
    font-size: clamp(42px, 10.6vw, 46px);
    line-height: 1.06;
    letter-spacing: 0;
    padding-bottom: 0.1em;
    text-align: center;
  }

  .hero__title-desktop {
    display: none;
  }

  .hero__title-mobile {
    display: grid;
    gap: 0.08em;
    justify-items: center;
    width: 100%;
  }

  .hero__title-line {
    display: block;
    white-space: nowrap;
  }

  .hero__title-line--kicker {
    font-size: 20px;
    line-height: 1;
    letter-spacing: 0.14em;
    color: var(--white);
  }

  .hero__title-line--primary {
    font-size: clamp(42px, 10.2vw, 46px);
    line-height: 0.98;
    color: var(--white);
  }

  .hero__title-line--accent {
    font-size: clamp(39px, 9.4vw, 42px);
    line-height: 1;
    color: var(--accent);
  }

  .hero__subtitle {
    margin: 20px auto 0;
    max-width: 24ch;
    font-size: 16px;
    line-height: 1.42;
  }

  .hero__actions {
    margin: 24px 0 0;
  }

  .hero__subtitle-desktop {
    display: none;
  }

  .hero__subtitle-mobile {
    display: inline;
  }

  .hero__actions {
    margin: 24px 0 0;
    display: flex;
    justify-content: center;
  }

  .hero__actions .btn {
    width: min(100%, 286px);
    min-height: 52px;
    justify-content: center;
    padding: 14px 16px;
    font-size: 14px;
  }

  .section--cta .section__title,
  .section--cta .text--light {
    text-align: center;
    margin-inline: auto;
  }

  .section--cta .section__title {
    max-width: 13ch;
  }

  .section--cta .text--light {
    max-width: 31ch;
  }

  .cta-band {
    padding: 30px 20px;
  }

  .cta-band__content {
    width: 100%;
    justify-items: center;
  }

  .cta-band__bullets {
    width: 100%;
    justify-items: center;
    gap: 10px;
  }

  .cta-band__bullets li {
    display: inline-grid;
    grid-template-columns: auto 1fr;
    align-items: start;
    column-gap: 10px;
    width: fit-content;
    max-width: 28ch;
    padding-left: 0;
    text-align: left;
  }

  .cta-band__bullets li::before {
    position: static;
    margin-top: 0.45em;
  }

  .section--steps {
    background: #042643;
    background-image: none;
    padding: 62px 0 66px;
  }

  .section--steps .section__header {
    margin-bottom: 32px;
  }

  .section--steps .section__title {
    max-width: 13ch;
    margin-inline: auto;
    font-size: clamp(29px, 7vw, 33px);
    line-height: 1.08;
    text-align: center;
    padding-bottom: 0.08em;
  }

  .section--steps .section__title .title-accent {
    display: inline-block;
    white-space: nowrap;
  }

  .section--steps .section__title::after {
    margin-top: 12px;
  }

  .steps {
    position: relative;
    gap: 28px;
  }

  .steps::before {
    display: none;
  }

  .step {
    display: grid;
    grid-template-columns: 44px minmax(0, 1fr);
    column-gap: 14px;
    row-gap: 2px;
    padding: 0;
    text-align: left;
    align-items: start;
  }

  .step__top {
    grid-column: 1;
    grid-row: 1 / span 2;
    justify-items: center;
    gap: 0;
    margin: 0;
    position: relative;
    z-index: 1;
  }

  .step__num {
    display: none;
  }

  .step__icon {
    width: 44px;
    height: 44px;
    border-width: 1px;
    background: rgba(0, 178, 209, 0.08);
  }

  .section--steps .icon {
    width: 22px;
    height: 22px;
  }

  .step__title {
    grid-column: 2;
    margin: 0 0 6px;
    font-size: 22px;
    line-height: 1.04;
  }

  .step__text {
    grid-column: 2;
    font-size: 15px;
    line-height: 1.56;
  }

  .section--steps .section__cta {
    margin-top: 28px;
    justify-items: center;
  }

  .section--steps .section__cta .btn {
    width: auto;
    max-width: 100%;
    min-height: 52px;
    padding: 14px 18px;
    font-size: 14px;
  }

  .hero__checks {
    display: none;
  }

  #equipamentos .section__header {
    margin-bottom: 32px;
    text-align: center;
  }

  #equipamentos .section__subtitle {
    margin-inline: auto;
  }

  #equipamentos .equip-carousel {
    --equip-slides: 1;
    --equip-gap: 16px;
    gap: 20px;
  }

  #equipamentos .equip-card {
    border-radius: 16px;
  }

  #equipamentos .equip-card__head {
    padding: 20px 18px 0;
  }

  #equipamentos .equip-card__category {
    font-size: 15px;
  }

  #equipamentos .equip-card__model {
    font-size: 22px;
  }

  #equipamentos .equip-card__media {
    height: 330px;
    min-height: 330px;
    padding: 0 10px 22px;
    display: grid;
    justify-items: center;
    align-items: start;
    overflow: hidden;
  }

  #equipamentos .equip-card__img {
    display: block;
    margin: 0;
    width: 92%;
    height: 92%;
    max-width: 92%;
    max-height: 92%;
    object-fit: contain;
    object-position: center top;
    justify-self: center;
    align-self: start;
    position: relative;
    transform: translateY(-12px);
  }

  #equipamentos .equip-card__body {
    padding: 18px 18px 20px;
    gap: 14px;
  }

  #equipamentos .equip-card__specs {
    font-size: 13.5px;
    line-height: 1.58;
  }

  .section {
    padding: 74px 0;
  }

  .grid--4,
  .grid--2x2,
  .grid--3,
  .steps {
    grid-template-columns: 1fr;
  }

  .footer__inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .whatsapp-float {
    display: grid;
  }

  .map {
    min-height: 320px;
  }
}

@media (max-width: 359px) {
  .hero__content {
    width: 100%;
    max-width: 100%;
  }

  .hero__title-line--kicker {
    font-size: 18px;
    letter-spacing: 0.12em;
  }

  .hero__title-line--primary {
    font-size: 38px;
  }

  .hero__title-line--accent {
    font-size: 35px;
  }

  .hero__subtitle {
    max-width: 22ch;
    font-size: 15px;
  }

  .hero__actions .btn {
    width: 100%;
    padding-inline: 14px;
    font-size: 13px;
  }
}
