@charset "UTF-8";
body {
  font-family: "Poppins", sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
}

html {
  scroll-behavior: smooth;
}

hr {
  width: 90%;
  max-width: 1280px;
  margin: auto;
  border: none;
  height: 2px;
  background: linear-gradient(to right, transparent, #cdcfce, transparent);
  box-shadow: 0 0 8px rgba(7, 149, 168, 0.6);
}

.container {
  width: 90%;
  max-width: 1280px;
  margin: auto;
}

h1.titulo-interna {
  text-transform: uppercase;
  font-weight: 300;
  font-size: 36px;
  padding: 60px 0px 30px 0px;
  color: #7D796F;
}
h1.titulo-interna strong {
  font-weight: 800;
  color: #7D796F;
}

.container-mid {
  width: 95%;
  max-width: 1360px;
  margin: auto;
}

.container-full {
  width: 100%;
  max-width: 1440px;
  margin: auto;
}

.container-full2 {
  width: 100%;
  max-width: 1940px;
  margin: auto;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  background: var(--header-bg);
  transition: 0.35s;
  z-index: 999;
}
.site-header .container {
  max-width: 1320px;
  margin: auto;
  padding: 0 20px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.site-header.scroll {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(15px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

/* LOGO */
.header__logo {
  flex-shrink: 0;
}
.header__logo img {
  max-height: var(--logo-width);
  display: block;
}

/* MENU */
.header__menu {
  flex: 1;
  display: flex;
  justify-content: flex-start;
}
.header__menu .menu {
  display: flex;
  align-items: center;
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.header__menu .menu li {
  list-style: none;
  position: relative;
}
.header__menu .menu li > a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 40px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  color: var(--menu-color);
  transition: 0.35s;
  position: relative;
  overflow: hidden;
}
.header__menu .menu li > a:before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 40px;
  border: 1px solid transparent;
  transition: 0.35s;
}
.header__menu .menu li > a:after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 2px;
  background: var(--menu-hover);
  transition: 0.45s;
}
.header__menu .menu li:hover > a {
  background: var(--menu-hover);
  color: #fff;
}
.header__menu .menu li:hover > a:before {
  border-color: rgba(255, 255, 255, 0.3);
}
.header__menu .menu li:hover > a:after {
  left: 100%;
}
.header__menu .menu .current-menu-item > a {
  background: var(--menu-hover);
  color: #fff;
}
.header__menu {
  /* SUBMENU */
}
.header__menu .sub-menu {
  position: absolute;
  top: 110%;
  left: 0;
  min-width: 220px;
  padding: 10px 0;
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
  display: none;
  list-style: none;
}
.header__menu li:hover > .sub-menu {
  display: block;
}
.header__menu .sub-menu li a {
  padding: 12px 18px;
  display: block;
  color: #444;
}

/* REDES */
.header__social {
  display: flex;
  gap: 12px;
}
.header__social a {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #f6f6f6;
  color: var(--icons-color);
  text-decoration: none;
  transition: 0.35s;
}
.header__social a:hover {
  background: var(--menu-hover);
  color: #fff;
  transform: translateY(-4px);
}

/* BOTÃO MOBILE */
.mobile-btn {
  display: none;
  width: 48px;
  height: 48px;
  border: none;
  background: none;
  cursor: pointer;
  position: relative;
}
.mobile-btn span {
  position: absolute;
  left: 10px;
  width: 28px;
  height: 3px;
  background: var(--menu-hover);
  transition: 0.35s;
}
.mobile-btn span:nth-child(1) {
  top: 14px;
}
.mobile-btn span:nth-child(2) {
  top: 22px;
}
.mobile-btn span:nth-child(3) {
  top: 30px;
}

.mobile-btn.active span:nth-child(1) {
  top: 22px;
  transform: rotate(45deg);
}

.mobile-btn.active span:nth-child(2) {
  opacity: 0;
}

.mobile-btn.active span:nth-child(3) {
  top: 22px;
  transform: rotate(-45deg);
}

/* MENU MOBILE */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 320px;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5803921569);
  padding: 100px 30px;
  transition: 0.35s;
  z-index: 8;
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu .menu {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.mobile-menu .menu li {
  list-style: none;
}

.mobile-menu .menu a {
  display: block;
  padding: 15px 20px;
  border-radius: 12px;
  text-decoration: none;
  color: var(--menu-color);
  transition: 0.35s;
}

.mobile-menu .menu a:hover {
  background: var(--menu-hover);
  color: #fff;
  padding-left: 28px;
}

/* RESPONSIVO */
@media (max-width: 991px) {
  .header__menu {
    display: none;
  }
  .header__social {
    display: none;
  }
  .mobile-btn {
    display: block;
  }
}
.teleport-page {
  width: 100%;
  overflow-x: hidden;
  background: #ffffff;
  color: #3e3e40;
  font-family: "Montserrat", Arial, sans-serif;
}
.teleport-page *,
.teleport-page *::before,
.teleport-page *::after {
  box-sizing: border-box;
}
.teleport-page img {
  max-width: 100%;
}

.teleport-container {
  width: 100%;
  margin: 0 auto;
}

.teleport-header {
  position: relative;
  width: 100%;
  padding: 22px;
  background: #ffffff;
  z-index: 100;
}
.teleport-header__content {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.teleport-header__logo {
  display: block;
  flex: 0 0 auto;
  text-decoration: none;
}
.teleport-header__logo img {
  display: block;
  width: 92px;
  height: auto;
}
.teleport-header__desktop {
  display: flex;
  align-items: center;
  gap: 35px;
  padding-top: 18px;
}
.teleport-header__desktop a {
  color: #404042;
  font-size: 15px;
  font-weight: 400;
  line-height: 1;
  text-decoration: none;
  transition: color 0.25s ease;
}
.teleport-header__desktop a:hover {
  color: #df3038;
}
.teleport-header__grupo {
  font-weight: 700 !important;
}
.teleport-header__social {
  display: flex;
  align-items: center;
  gap: 9px;
}
.teleport-header__social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 27px;
  height: 27px;
  padding: 0;
  border-radius: 50%;
  background: #df3038;
  color: #ffffff;
  font-size: 13px;
  transition: background 0.25s ease, transform 0.25s ease;
}
.teleport-header__social a:hover {
  color: #ffffff;
  background: #982429;
  transform: translateY(-2px);
}

.teleport-menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 8px;
  border: 0;
  background: transparent;
  cursor: pointer;
  position: relative;
  z-index: 120;
}
.teleport-menu-toggle span {
  display: block;
  width: 100%;
  height: 3px;
  margin: 5px 0;
  border-radius: 5px;
  background: #df3038;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.teleport-menu-toggle.is-active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.teleport-menu-toggle.is-active span:nth-child(2) {
  opacity: 0;
}
.teleport-menu-toggle.is-active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.teleport-mobile-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  padding: 25px 25px 30px;
  background: #ffffff;
  border-top: 1px solid #eeeeee;
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.08);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
}
.teleport-mobile-menu.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.teleport-mobile-menu__nav {
  display: flex;
  flex-direction: column;
}
.teleport-mobile-menu__nav a {
  display: block;
  padding: 15px 0;
  border-bottom: 1px solid #eeeeee;
  color: #3e3e40;
  font-size: 17px;
  font-weight: 600;
  text-decoration: none;
}
.teleport-mobile-menu__nav a:hover {
  color: #df3038;
}
.teleport-mobile-menu__social {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 22px;
}
.teleport-mobile-menu__social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #df3038;
  color: #ffffff;
  text-decoration: none;
  font-size: 15px;
}

.teleport-hero {
  width: 100%;
  padding-top: 62px;
}
.teleport-hero__content {
  display: grid;
  grid-template-columns: 51% 49%;
  align-items: center;
}
.teleport-hero__text {
  position: relative;
  z-index: 2;
}
.teleport-hero__pretitle {
  display: block;
  margin-bottom: 4px;
  color: #39393b;
  font-size: 37px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: -1.3px;
}
.teleport-hero h1 {
  margin: 0;
  color: #df3038;
  margin: 20px;
  font-size: 65px;
  font-weight: 800;
  line-height: 0.96;
  letter-spacing: -2.5px;
}
.teleport-hero span {
  margin: 20px;
}
.teleport-hero__tti {
  display: block;
  margin: 20px;
  margin-top: 6px;
  color: #252527;
  font-size: 55px;
  font-weight: 300;
  font-style: italic;
  line-height: 0.95;
  letter-spacing: -4px;
}
.teleport-hero__media {
  width: 100%;
  padding-left: 15px;
}
.teleport-hero__image {
  position: relative;
  width: 100%;
  padding-bottom: 19px;
}
.teleport-hero__image::after {
  content: "";
  position: absolute;
  right: 0px;
  bottom: 5;
  width: 82%;
  height: 38px;
  border-radius: 0 0 0 32px;
  background: #df3038;
  z-index: 0;
}
.teleport-hero__image img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: 375px;
  object-fit: cover;
  border-radius: 32px 0 0px 32px;
}

.teleport-beneficios {
  width: 100%;
  padding-top: 45px;
  padding-bottom: 45px;
}
.teleport-beneficios__content {
  width: fit-content;
  max-width: calc(100% - 40px);
  margin: 0 auto;
}
.teleport-beneficios h2 {
  margin: 0 0 13px;
  color: #414143;
  font-size: 27px;
  font-weight: 400;
  line-height: 1.25;
}
.teleport-beneficios h2 strong {
  font-weight: 700;
}
.teleport-beneficios ul {
  display: flex;
  flex-direction: column;
  gap: 13px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.teleport-beneficios li {
  display: flex;
  align-items: center;
  gap: 13px;
  color: #555557;
  font-size: 22px;
  font-weight: 400;
  line-height: 1.3;
}
.teleport-beneficios__icon {
  display: flex;
  flex: 0 0 21px;
  align-items: center;
  justify-content: center;
  width: 21px;
  height: 21px;
  border-radius: 50%;
  background: #982429;
  color: #ffffff;
  font-size: 10px;
}

@media (max-width: 1024px) {
  .teleport-container {
    padding-left: 30px;
    padding-right: 30px;
  }
  .teleport-header__desktop {
    gap: 22px;
  }
  .teleport-hero {
    padding-top: 55px;
  }
  .teleport-hero__content {
    grid-template-columns: 49% 51%;
  }
  .teleport-hero__pretitle {
    font-size: 29px;
  }
  .teleport-hero h1 {
    font-size: 51px;
  }
  .teleport-hero__tti {
    font-size: 45px;
  }
  .teleport-hero__image::after {
    right: -30px;
  }
  .teleport-hero__image img {
    height: 310px;
  }
  .teleport-beneficios h2 {
    font-size: 24px;
  }
  .teleport-beneficios li {
    font-size: 19px;
  }
}
@media (max-width: 767px) {
  .teleport-container {
    padding-left: 20px;
    padding-right: 20px;
  }
  .teleport-header {
    padding-top: 15px;
    padding-bottom: 15px;
  }
  .teleport-header__content {
    align-items: center;
  }
  .teleport-header__logo img {
    width: 78px;
  }
  .teleport-header__desktop {
    display: none;
  }
  .teleport-menu-toggle {
    display: block;
  }
  .teleport-mobile-menu {
    display: block;
  }
  .teleport-hero {
    padding-top: 42px;
  }
  .teleport-hero__content {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 30px;
  }
  .teleport-hero__text {
    width: 100%;
  }
  .teleport-hero__pretitle {
    margin-bottom: 6px;
    font-size: clamp(22px, 7vw, 30px);
    letter-spacing: -0.7px;
  }
  .teleport-hero h1 {
    font-size: clamp(41px, 12.5vw, 61px);
    line-height: 0.97;
    letter-spacing: -1.8px;
  }
  .teleport-hero__tti {
    margin-top: 7px;
    font-size: clamp(38px, 11vw, 50px);
    letter-spacing: -3px;
  }
  .teleport-hero__media {
    padding-left: 0;
  }
  .teleport-hero__image {
    padding-bottom: 17px;
  }
  .teleport-hero__image::after {
    right: -20px;
    width: 82%;
    height: 32px;
    border-radius: 0 0 0 28px;
  }
  .teleport-hero__image img {
    width: 100%;
    height: auto;
    aspect-ratio: 1.55/1;
    object-fit: cover;
    border-radius: 26px 0 26px 26px;
  }
  .teleport-beneficios {
    padding-top: 38px;
    padding-bottom: 40px;
  }
  .teleport-beneficios__content {
    width: 100%;
    max-width: none;
    padding-left: 25px;
    padding-right: 25px;
  }
  .teleport-beneficios h2 {
    margin-bottom: 18px;
    font-size: 21px;
    line-height: 1.35;
  }
  .teleport-beneficios ul {
    gap: 14px;
  }
  .teleport-beneficios li {
    align-items: flex-start;
    gap: 11px;
    font-size: 17px;
    line-height: 1.4;
  }
  .teleport-beneficios__icon {
    flex: 0 0 20px;
    width: 20px;
    height: 20px;
    margin-top: 2px;
    font-size: 9px;
  }
}
@media (max-width: 420px) {
  .teleport-hero {
    padding-top: 35px;
  }
  .teleport-hero__pretitle {
    font-size: 21px;
  }
  .teleport-hero h1 {
    font-size: 40px;
  }
  .teleport-hero__tti {
    font-size: 37px;
  }
  .teleport-beneficios__content {
    padding-left: 20px;
    padding-right: 20px;
  }
  .teleport-beneficios h2 {
    font-size: 19px;
  }
  .teleport-beneficios li {
    font-size: 16px;
  }
}
.teleport-lead {
  position: relative;
  width: 100%;
  padding: 34px 0 65px;
  background: #ffffff;
  overflow: hidden;
}
.teleport-lead__accent {
  position: absolute;
  top: 0;
  left: 0;
  width: 28px;
  height: 100%;
  background: #df3038;
  border-radius: 0 20px 0 0;
}
.teleport-lead__content {
  width: 100%;
  max-width: 940px;
  margin: 0 auto;
}
.teleport-lead__title {
  position: relative;
  z-index: 2;
  width: 610px;
  max-width: calc(100% - 40px);
  margin: 0 auto -1px;
  padding: 10px 25px 11px;
  border-radius: 18px;
  background: #8d2021;
  text-align: center;
}
.teleport-lead__title p {
  margin: 0;
  color: #ffffff;
  font-size: 22px;
  font-weight: 400;
  line-height: 1.02;
}
.teleport-lead__title strong {
  font-weight: 700;
}
.teleport-lead__form {
  width: 760px;
  max-width: calc(100% - 40px);
  margin: 32px auto 0;
}
.teleport-lead__cta {
  width: 100%;
  margin-top: 33px;
  text-align: center;
}
.teleport-lead__cta h2 {
  margin: 0 0 12px;
  color: #28282a;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.03;
}
.teleport-lead__cta h2 span {
  color: #df3038;
}
.teleport-lead__cta p {
  margin: 0 auto 18px;
  color: #292929;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.03;
}
.teleport-lead__cta p strong {
  font-weight: 700;
}
.teleport-lead__cta p .red {
  color: #df3038;
}
.teleport-lead__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 31px;
  padding: 5px 24px;
  border-radius: 20px;
  background: #df3038;
  color: #ffffff;
  font-size: 15px;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
  transition: transform 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}
.teleport-lead__button:hover {
  background: #8d2021;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 7px 16px rgba(141, 32, 33, 0.22);
}

.teleport-form {
  width: 100%;
  padding: 27px 31px 25px;
  border: 1px solid #dedede;
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
.teleport-form__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 40px;
  row-gap: 17px;
}
.teleport-form__field {
  min-width: 0;
}
.teleport-form__field label {
  display: block;
  margin: 0 0 5px 3px;
  color: #111;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
}
.teleport-form__field .wpcf7-form-control-wrap {
  display: block;
  width: 100%;
}
.teleport-form__field input,
.teleport-form__field select {
  display: block;
  width: 100%;
  height: 34px;
  margin: 0;
  padding: 0 13px;
  border: 1px solid #aaa;
  border-radius: 10px;
  outline: none;
  background: #ffffff;
  color: #555;
  font-family: inherit;
  font-size: 13px;
  font-weight: 400;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.teleport-form__field input::placeholder,
.teleport-form__field select::placeholder {
  color: #aaa;
  opacity: 1;
}
.teleport-form__field input:focus,
.teleport-form__field select:focus {
  border-color: #df3038;
  box-shadow: 0 0 0 2px rgba(223, 48, 56, 0.1);
}
.teleport-form__field select {
  cursor: pointer;
  appearance: auto;
}
.teleport-form__fields {
  min-width: 0;
}
.teleport-form__fields label {
  display: block;
  margin: 0 0 5px 3px;
  color: #111;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  
}
.teleport-form__fields .wpcf7-form-control-wrap {
  display: block;
  width: 100%;
}
.teleport-form__fields input,
.teleport-form__fields select {
  display: block;
  width: 100%;
  height: 34px;
  margin: 0;
  padding: 0 13px;
  border: 1px solid #aaa;
  border-radius: 10px;
  outline: none;
  background: #ffffff;
  color: #555;
  font-family: inherit;
  font-size: 13px;
  font-weight: 400;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.teleport-form__fields input::placeholder,
.teleport-form__fields select::placeholder {
  color: #aaa;
  opacity: 1;
}
.teleport-form__fields input:focus,
.teleport-form__fields select:focus {
  border-color: #df3038;
  box-shadow: 0 0 0 2px rgba(223, 48, 56, 0.1);
}
.teleport-form__fields select {
  cursor: pointer;
  appearance: auto;
}
.teleport-form__footer {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
  margin-top: 20px;
}
.teleport-form__privacy {
  flex: 1;
}
.teleport-form__privacy > strong {
  display: block;
  margin-bottom: 3px;
  color: #111;
  font-size: 14px;
  font-weight: 700;
}
.teleport-form__privacy .wpcf7-list-item {
  margin: 0;
}
.teleport-form__privacy label {
  display: flex;
  align-items: center;
  gap: 5px;
  cursor: pointer;
}
.teleport-form__privacy input[type=checkbox] {
  flex: 0 0 auto;
  width: 14px;
  height: 14px;
  margin: 0;
  accent-color: #df3038;
}
.teleport-form__privacy .wpcf7-list-item-label {
  color: #8a8a8a;
  font-size: 11px;
  font-weight: 400;
  line-height: 1.2;
}
.teleport-form__submit {
  flex: 0 0 auto;
}
.teleport-form__submit .wpcf7-submit {
  min-width: 105px;
  height: 42px;
  padding: 0 22px;
  border: 0;
  border-radius: 11px;
  background: #df3038;
  color: #ffffff;
  font-family: inherit;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 4px 8px rgba(223, 48, 56, 0.22);
  transition: background 0.25s ease, transform 0.25s ease;
}
.teleport-form__submit .wpcf7-submit:hover {
  background: #8d2021;
  transform: translateY(-2px);
}
.teleport-form .wpcf7-not-valid-tip {
  margin-top: 4px;
  color: #df3038;
  font-size: 11px;
}
.teleport-form .wpcf7-response-output {
  margin: 18px 0 0 !important;
  padding: 10px 15px !important;
  border-radius: 8px;
  font-size: 12px;
}
.teleport-form .wpcf7-spinner {
  position: absolute;
}

.teleport-market {
  position: relative;
  width: 100%;
  padding: 0 0 30px;
  background: #ffffff;
}
.teleport-market .teleport-container {
  position: relative;
}
.teleport-market__box {
  position: relative;
  display: grid;
  grid-template-columns: 48% 52%;
  width: 100%;
  max-width: 1020px;
  min-height: 310px;
  margin: 0 auto;
  border-radius: 22px 22px 0 22px;
  background: #8d2021;
}
.teleport-market__image {
  position: relative;
  height: 100%;
  overflow: hidden;
  border-radius: 22px 22px 22px 22px;
}
.teleport-market__image img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 310px;
  object-fit: cover;
  object-position: center;
}
.teleport-market__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 30px 42px 30px 30px;
  color: #ffffff;
}
.teleport-market__content h2 {
  margin: 0 0 13px;
  color: #ffffff;
  font-size: 25px;
  font-weight: 800;
  line-height: 0.98;
}
.teleport-market__content h2 span {
  color: #df3038;
}
.teleport-market__content p {
  margin: 0 0 14px;
  color: #ffffff;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.02;
}
.teleport-market__content p:last-of-type {
  margin-bottom: 0;
}
.teleport-market__content p strong {
  font-weight: 700;
}
.teleport-market__detail {
  position: absolute;
  right: -21px;
  bottom: -21px;
  width: 61px;
  height: 61px;
  border-radius: 12px;
  background: #df3038;
}

@media (max-width: 1024px) {
  .teleport-lead__content {
    max-width: 850px;
  }
  .teleport-lead__form {
    width: 720px;
  }
  .teleport-market__box {
    max-width: 900px;
  }
  .teleport-market__content {
    padding: 28px;
  }
  .teleport-market__content h2 {
    font-size: 23px;
  }
  .teleport-market__content p {
    font-size: 13px;
  }
}
@media (max-width: 767px) {
  .desktop-break {
    display: none;
  }
  .teleport-lead {
    padding: 30px 0 45px;
  }
  .teleport-lead__accent {
    width: 10px;
    border-radius: 0 10px 0 0;
  }
  .teleport-lead__title {
    width: calc(100% - 45px);
    max-width: 430px;
    padding: 12px 18px;
    border-radius: 15px;
  }
  .teleport-lead__title p {
    font-size: 17px;
    line-height: 1.08;
  }
  .teleport-lead__form {
    width: calc(100% - 35px);
    max-width: 500px;
    margin-top: 22px;
  }
  .teleport-lead__cta {
    width: calc(100% - 45px);
    margin: 28px auto 0;
  }
  .teleport-lead__cta h2 {
    font-size: 19px;
    line-height: 1.08;
  }
  .teleport-lead__cta p {
    max-width: 500px;
    font-size: 14px;
    line-height: 1.15;
  }
  .teleport-lead__button {
    width: 100%;
    max-width: 400px;
    min-height: 39px;
    padding: 7px 15px;
    font-size: 13px;
    line-height: 1.1;
    text-align: center;
  }
  .teleport-form {
    padding: 22px 18px;
    border-radius: 16px;
  }
  .teleport-form__grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  .teleport-form__field label {
    margin-bottom: 6px;
    font-size: 13px;
  }
  .teleport-form__field input,
  .teleport-form__field select {
    height: 40px;
    font-size: 13px;
  }
  .teleport-form__footer {
    flex-direction: column;
    align-items: stretch;
    gap: 18px;
    margin-top: 18px;
  }
  .teleport-form__submit {
    width: 100%;
  }
  .teleport-form__submit .wpcf7-submit {
    width: 100%;
    height: 43px;
    border-radius: 10px;
  }
  .teleport-market {
    padding: 0 18px 35px;
  }
  .teleport-market .teleport-container {
    padding-left: 0;
    padding-right: 0;
  }
  .teleport-market__box {
    display: flex;
    flex-direction: column;
    width: 100%;
    min-height: 0;
    border-radius: 20px;
    overflow: visible;
  }
  .teleport-market__image {
    width: 100%;
    height: auto;
    border-radius: 20px 20px 0 0;
  }
  .teleport-market__image img {
    width: 100%;
    height: auto;
    min-height: 0;
    aspect-ratio: 1.25/1;
    object-fit: cover;
  }
  .teleport-market__content {
    padding: 27px 24px 35px;
  }
  .teleport-market__content h2 {
    margin-bottom: 18px;
    font-size: 24px;
    line-height: 1;
  }
  .teleport-market__content p {
    margin-bottom: 17px;
    font-size: 14px;
    line-height: 1.15;
  }
  .teleport-market__detail {
    right: -8px;
    bottom: -17px;
    width: 50px;
    height: 50px;
    border-radius: 10px;
  }
}
@media (max-width: 420px) {
  .teleport-lead__title p {
    font-size: 15px;
  }
  .teleport-lead__cta h2 {
    font-size: 17px;
  }
  .teleport-lead__cta p {
    font-size: 13px;
  }
  .teleport-lead__button {
    font-size: 11px;
    padding-left: 10px;
    padding-right: 10px;
  }
  .teleport-market__content {
    padding: 25px 20px 32px;
  }
  .teleport-market__content h2 {
    font-size: 21px;
  }
  .teleport-market__content p {
    font-size: 13px;
  }
}
.teleport-why {
  width: 100%;
  padding: 35px 0 25px;
  background: #fff;
  color: #363638;
}
.teleport-why__wrapper {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
}
.teleport-why__title {
  margin: 0 0 28px;
  color: #363638;
  font-size: 27px;
  font-weight: 800;
  line-height: 1;
  text-align: center;
}
.teleport-why__title span {
  color: #df3038;
}
.teleport-why__benefits {
  width: 100%;
  max-width: 520px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 27px;
}
.teleport-why__item {
  display: grid;
  grid-template-columns: 75px 1fr;
  align-items: flex-start;
  column-gap: 15px;
}
.teleport-why__icon {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  width: 75px;
}
.teleport-why__icon img {
  display: block;
  width: 58px;
  height: 58px;
  object-fit: contain;
}
.teleport-why__text {
  padding-top: 1px;
}
.teleport-why__text h3 {
  margin: 0 0 2px;
  color: #df3038;
  font-size: 17px;
  font-weight: 800;
  line-height: 1;
}
.teleport-why__text p {
  margin: 0;
  color: #3d3d3f;
  font-size: 15px;
  font-weight: 400;
  line-height: 0.98;
}
.teleport-why__footer {
  margin-top: 25px;
  text-align: center;
}
.teleport-why__footer p {
  margin: 0;
  color: #363638;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.2;
}
.teleport-why__footer p span {
  color: #df3038;
}

.teleport-learning {
  width: 100%;
  max-width: 720px;
  margin: 42px auto 0;
  padding: 30px 55px 32px;
  border: 2px solid #df3038;
  border-radius: 27px;
  background: #fff;
}
.teleport-learning__header {
  margin-bottom: 26px;
  text-align: center;
}
.teleport-learning__header h2 {
  margin: 0 0 6px;
  color: #363638;
  font-size: 27px;
  font-weight: 800;
  line-height: 1;
}
.teleport-learning__header h2 span {
  color: #df3038;
}
.teleport-learning__header p {
  margin: 0;
  color: #363638;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.05;
}
.teleport-learning__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  column-gap: 62px;
  align-items: flex-start;
}
.teleport-learning__column {
  display: flex;
  flex-direction: column;
  gap: 17px;
}
.teleport-learning__group h3 {
  position: relative;
  margin: 0 0 8px;
  padding-left: 11px;
  color: #3d3d3f;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.08;
}
.teleport-learning__group h3::before {
  content: "";
  position: absolute;
  top: 5px;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #df3038;
}
.teleport-learning__group ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.teleport-learning__group li {
  position: relative;
  margin: 0;
  padding-left: 9px;
  color: #3d3d3f;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.05;
}
.teleport-learning__group li::before {
  content: "-";
  position: absolute;
  top: 0;
  left: 0;
}

@media (max-width: 991px) {
  .teleport-why__wrapper {
    max-width: 800px;
  }
  .teleport-learning {
    max-width: 680px;
    padding: 30px 45px;
  }
  .teleport-learning__grid {
    column-gap: 45px;
  }
}
@media (max-width: 767px) {
  .desktop-break {
    display: none;
  }
  .teleport-why {
    padding: 35px 0 25px;
  }
  .teleport-why__wrapper {
    max-width: none;
  }
  .teleport-why__title {
    width: calc(100% - 35px);
    margin: 0 auto 32px;
    font-size: 23px;
    line-height: 1.1;
  }
  .teleport-why__benefits {
    width: calc(100% - 45px);
    max-width: 500px;
    gap: 27px;
  }
  .teleport-why__item {
    grid-template-columns: 58px 1fr;
    column-gap: 14px;
  }
  .teleport-why__icon {
    width: 58px;
  }
  .teleport-why__icon img {
    width: 48px;
    height: 48px;
  }
  .teleport-why__text h3 {
    margin-bottom: 4px;
    font-size: 16px;
  }
  .teleport-why__text p {
    font-size: 14px;
    line-height: 1.08;
  }
  .teleport-why__footer {
    width: calc(100% - 35px);
    margin: 25px auto 0;
  }
  .teleport-why__footer p {
    font-size: 16px;
  }
  .teleport-learning {
    width: calc(100% - 35px);
    max-width: 520px;
    margin-top: 40px;
    padding: 28px 23px 30px;
    border-width: 2px;
    border-radius: 22px;
  }
  .teleport-learning__header {
    margin-bottom: 27px;
  }
  .teleport-learning__header h2 {
    font-size: 23px;
    line-height: 1.05;
  }
  .teleport-learning__header p {
    max-width: 390px;
    margin: 0 auto;
    font-size: 13px;
    line-height: 1.12;
  }
  .teleport-learning__grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .teleport-learning__column {
    gap: 18px;
  }
  .teleport-learning__group h3 {
    margin-bottom: 7px;
    font-size: 14px;
  }
  .teleport-learning__group li {
    font-size: 13px;
    line-height: 1.15;
  }
}
@media (max-width: 420px) {
  .teleport-why__title {
    font-size: 20px;
  }
  .teleport-why__benefits {
    width: calc(100% - 30px);
  }
  .teleport-why__item {
    grid-template-columns: 52px 1fr;
    column-gap: 11px;
  }
  .teleport-why__icon {
    width: 52px;
  }
  .teleport-why__icon img {
    width: 43px;
    height: 43px;
  }
  .teleport-why__text h3 {
    font-size: 15px;
  }
  .teleport-why__text p {
    font-size: 13px;
  }
  .teleport-learning {
    width: calc(100% - 28px);
    padding: 25px 18px 27px;
  }
  .teleport-learning__header h2 {
    font-size: 21px;
  }
  .teleport-learning__header p {
    font-size: 12px;
  }
  .teleport-learning__group h3 {
    font-size: 13px;
  }
  .teleport-learning__group li {
    font-size: 12.5px;
  }
}
.tti-career {
  position: relative;
  width: 100%;
  background: #8d2021;
  color: #ffffff;
  overflow: visible;
}
.tti-career__inner {
  display: grid;
  grid-template-columns: 55% 45%;
  width: 100%;
  min-height: 430px;
  margin: 0 auto;
}
.tti-career__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 42px 50px 42px max(50px, (100vw - 1180px) / 2);
}
.tti-career__content h2 {
  margin: 0 0 9px;
  color: #ffffff;
  font-size: 45px;
  font-weight: 800;
  line-height: 0.92;
}
.tti-career__content h2 span {
  color: #ffffff;
}
.tti-career__content > p {
  margin: 0 0 12px;
  color: #ffffff;
  font-size: 18px;
  line-height: 1.05;
}
.tti-career__content ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.tti-career__content li {
  position: relative;
  padding-left: 20px;
  color: #ffffff;
  font-size: 15px;
  line-height: 1.15;
}
.tti-career__content li::before {
  content: "✓";
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 13px;
  height: 13px;
  border: 1px solid #df3038;
  border-radius: 50%;
  color: #df3038;
  font-size: 8px;
  font-weight: 800;
}
.tti-career__image {
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 24px 0 0 24px;
}
.tti-career__image img {
  display: block;
  width: 100%;
  height: 100%;
  right: 200px;
  min-height: 430px;
  object-fit: cover;
  object-position: center;
}
.tti-career__detail {
  position: absolute;
  left: 0;
  bottom: -28px;
  width: 62%;
  height: 42px;
  border-radius: 0 0 20px 0;
  background: #df3038;
  z-index: 3;
}

.tti-info {
  width: 100%;
  padding: 75px 0 65px;
  background: #ffffff;
}
.tti-info__wrapper {
  width: 100%;
  max-width: 650px;
  margin: 0 auto;
}
.tti-info h2 {
  margin: 0 0 30px;
  color: #353537;
  font-size: 35px;
  font-weight: 800;
  line-height: 1;
  text-align: center;
}
.tti-info h2 span {
  color: #df3038;
}
.tti-info__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 75px;
  row-gap: 27px;
  max-width: 440px;
  margin: 0 auto;
}
.tti-info__item h3 {
  margin: 0 0 3px;
  color: #353537;
  font-size: 18px;
  font-weight: 800;
  line-height: 1;
}
.tti-info__item p {
  margin: 0;
  color: #353537;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.05;
}

.tti-about {
  position: relative;
  width: 100%;
  padding: 30px 0 45px;
  background: #ffffff;
  overflow: hidden;
}
.tti-about__wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  width: 100%;
  margin: 0 auto;
}
.tti-about__image {
  width: 100%;
  overflow: hidden;
  border-radius: 0 20px 20px 0;
}
.tti-about__image img {
  display: block;
  width: 100%;
  aspect-ratio: 1.4/1;
  object-fit: cover;
}
.tti-about__content {
  padding: 15px 35px;
}
.tti-about__content h2 {
  margin: 0 0 14px;
  color: #353537;
  font-size: 35px;
  font-weight: 800;
  line-height: 0.95;
}
.tti-about__content h2 span {
  color: #df3038;
}
.tti-about__content p {
  margin: 0 0 12px;
  color: #353537;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.12;
}
.tti-about__content p:first-of-type {
  font-weight: 600;
}
.tti-about__content p:last-child {
  margin-bottom: 0;
}
.tti-about__detail {
  position: absolute;
  top: 25px;
  right: -35px;
  width: 80px;
  height: 330px;
  border-radius: 22px 0 0 22px;
  background: #8d2021;
}

.tti-testimonials {
  width: 100%;
  padding: 20px 0 55px;
  background: #ffffff;
}
.tti-testimonials__wrapper {
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
}
.tti-testimonials h2 {
  margin: 0 0 27px;
  color: #353537;
  font-size: 35px;
  font-weight: 800;
  line-height: 1;
}
.tti-testimonials h2 span {
  color: #df3038;
}
.tti-testimonials__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 15px;
}
.tti-testimonials__card {
  display: flex;
  flex-direction: column;
  min-height: 135px;
  margin: 0;
  padding: 15px 17px 12px;
  border: 2px solid #df3038;
  border-radius: 17px;
  background: #ffffff;
}
.tti-testimonials__stars {
  margin-bottom: 7px;
  color: #df3038;
  font-size: 16px;
  letter-spacing: 1px;
}
.tti-testimonials blockquote {
  flex: 1;
  margin: 0;
  color: #353537;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.12;
}
.tti-testimonials strong {
  display: block;
  margin-top: 8px;
  color: #353537;
  font-size: 12px;
  font-weight: 600;
  text-align: right;
}

.tti-how {
  position: relative;
  width: 100%;
  padding: 0;
  background: #ffffff;
}
.tti-how__wrapper {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  margin: 0 auto;
}
.tti-how__content {
  width: 62%;
  min-height: 650px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: baseline;
  padding: 35px 105px 35px 55px;
  border-radius: 0 23px 23px 0;
  background: #8d2021;
  color: #ffffff;
}
.tti-how__content h2 {
  margin: 0 0 20px;
  color: #ffffff;
  font-size: 35px;
  font-weight: 800;
  line-height: 1;
}
.tti-how__content ol {
  display: flex;
  flex-direction: column;
  gap: 13px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.tti-how__content li {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.tti-how__content li strong {
  font-size: 25px;
  font-weight: 900;
}
.tti-how__content li > span {
  color: #df3038;
  font-size: 30px;
  font-weight: 900;
}
.tti-how__content li p {
  margin: 0;
  color: #ffffff;
  font-size: 20px;
  line-height: 1.12;
}
.tti-how__image {
  position: relative;
  z-index: 3;
  width: 43%;
  margin-left: -75px;
}
.tti-how__image img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}
.tti-how::before {
  content: "";
  position: absolute;
  right: 0;
  top: 25px;
  width: 47%;
  height: 50px;
  border-radius: 0 0 0 18px;
  background: #df3038;
}

@media (max-width: 991px) {
  .tti-career__inner {
    grid-template-columns: 52% 48%;
  }
  .tti-career__content {
    padding-left: 40px;
  }
  .tti-career__content h2 {
    font-size: 31px;
  }
  .tti-about__detail {
    right: -55px;
  }
  .tti-testimonials__wrapper {
    max-width: 680px;
  }
}
@media (max-width: 767px) {
  .desktop-break {
    display: none;
  }
  .tti-career__inner {
    display: flex;
    flex-direction: column;
    min-height: 0;
  }
  .tti-career__content {
    order: 1;
    padding: 35px 25px 38px;
  }
  .tti-career__content h2 {
    font-size: 29px;
    line-height: 0.95;
  }
  .tti-career__content > p {
    font-size: 14px;
    line-height: 1.15;
  }
  .tti-career__content ul {
    gap: 9px;
  }
  .tti-career__content li {
    font-size: 13px;
  }
  .tti-career__image {
    order: 2;
    border-radius: 20px 20px 0 0;
  }
  .tti-career__image img {
    width: 100%;
    height: auto;
    min-height: 0;
    aspect-ratio: 1.15/1;
    object-fit: cover;
  }
  .tti-career__detail {
    bottom: -17px;
    width: 65%;
    height: 32px;
    border-radius: 0 0 16px 0;
  }
  .tti-info {
    padding: 65px 0 50px;
  }
  .tti-info h2 {
    margin-bottom: 30px;
    font-size: 21px;
  }
  .tti-info__grid {
    width: calc(100% - 60px);
    column-gap: 35px;
    row-gap: 27px;
  }
  .tti-info__item h3 {
    font-size: 11px;
  }
  .tti-info__item p {
    font-size: 11px;
  }
  .tti-about {
    padding: 20px 0 40px;
  }
  .tti-about__wrapper {
    display: flex;
    flex-direction: column;
    width: 100%;
  }
  .tti-about__image {
    width: calc(100% - 70px);
    margin-right: auto;
    border-radius: 0 18px 18px 0;
  }
  .tti-about__image img {
    aspect-ratio: 1.45/1;
  }
  .tti-about__content {
    width: calc(100% - 50px);
    padding: 25px 0 0;
  }
  .tti-about__content h2 {
    font-size: 22px;
  }
  .tti-about__content p {
    font-size: 13px;
    line-height: 1.2;
  }
  .tti-about__detail {
    top: 150px;
    right: -45px;
    width: 70px;
    height: 300px;
  }
  .tti-testimonials {
    padding: 20px 0 45px;
  }
  .tti-testimonials__wrapper {
    width: calc(100% - 45px);
  }
  .tti-testimonials h2 {
    font-size: 20px;
  }
  .tti-testimonials__grid {
    grid-template-columns: 1fr;
    gap: 13px;
  }
  .tti-testimonials__card {
    min-height: 125px;
  }
  .tti-testimonials blockquote {
    font-size: 12px;
  }
  .tti-testimonials strong {
    font-size: 10px;
  }
  .tti-how__wrapper {
    display: flex;
    flex-direction: column;
    align-items: stretch;
  }
  .tti-how__content {
    width: calc(100% - 55px);
    min-height: 0;
    padding: 32px 55px 40px 25px;
    border-radius: 0 22px 22px 0;
  }
  .tti-how__content h2 {
    font-size: 24px;
  }
  .tti-how__content li p {
    font-size: 12px;
    line-height: 1.18;
  }
  .tti-how__image {
    width: 58%;
    margin: -85px 0 0 auto;
  }
  .tti-how__image img {
    width: 100%;
  }
  .tti-how::before {
    top: 15px;
    width: 45%;
    height: 38px;
  }
}
@media (max-width: 420px) {
  .tti-career__content h2 {
    font-size: 26px;
  }
  .tti-info__grid {
    width: calc(100% - 40px);
    column-gap: 20px;
  }
  .tti-about__content h2 {
    font-size: 20px;
  }
  .tti-about__content p {
    font-size: 12px;
  }
  .tti-how__content {
    width: 83%;
    padding-right: 45px;
  }
  .tti-how__image {
    width: 62%;
    margin-top: -60px;
  }
}
.tti-final-cta {
  width: 100%;
  padding: 65px 0 58px;
  background: #ffffff;
}
.tti-final-cta__content {
  width: 100%;
  max-width: 850px;
  margin: 0 auto;
  text-align: center;
}
.tti-final-cta__content h2 {
  margin: 0 0 12px;
  color: #38383a;
  font-size: 29px;
  font-weight: 800;
  line-height: 1;
}
.tti-final-cta__content h2 span {
  color: #df3038;
}
.tti-final-cta__content p {
  margin: 0 auto 16px;
  color: #38383a;
  font-size: 17px;
  font-weight: 400;
  line-height: 1.05;
}
.tti-final-cta__lead {
  margin-bottom: 20px !important;
}
.tti-final-cta__highlight {
  display: block;
  margin: 0 auto 16px;
  color: #38383a;
  font-size: 17px;
  font-weight: 800;
  line-height: 1.02;
}
.tti-final-cta__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 33px;
  padding: 5px 24px;
  border-radius: 20px;
  background: #df3038;
  color: #ffffff;
  font-size: 16px;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
  transition: background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}
.tti-final-cta__button:hover {
  background: #8b2021;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(139, 32, 33, 0.2);
}

.tti-faq {
  position: relative;
  width: 100%;
  padding: 42px 0 0;
  background: #8b2021;
  color: #ffffff;
  overflow: hidden;
}
.tti-faq__content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
}
.tti-faq h2 {
  margin: 0 0 34px;
  color: #ffffff;
  font-size: 28px;
  font-weight: 800;
  line-height: 1;
  text-align: center;
}
.tti-faq__list {
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}
.tti-faq__item {
  margin-bottom: 23px;
}
.tti-faq__item:last-child {
  margin-bottom: 0;
}
.tti-faq__item h3 {
  margin: 0 0 7px;
  color: #ffffff;
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
}
.tti-faq__item p {
  margin: 0;
  color: #ffffff;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.05;
}
.tti-faq__bottom-detail {
  position: absolute;
  left: 7%;
  right: 7%;
  bottom: -22px;
  height: 50px;
  border-radius: 25px 25px 0 0;
  background: #df3038;
  z-index: 1;
}

.tti-faq-contact {
  position: relative;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
  width: calc(100% - 80px);
  max-width: 700px;
  min-height: 95px;
  margin: 50px auto 0;
  padding: 17px 28px;
  border-radius: 25px 25px 0 0;
  background: #ffffff;
  color: #38383a;
}
.tti-faq-contact__logo {
  flex: 0 0 100px;
}
.tti-faq-contact__logo img {
  display: block;
  width: 90px;
  height: auto;
}
.tti-faq-contact__whatsapp {
  display: flex;
  flex-direction: column;
  min-width: 185px;
  padding: 0 18px;
}
.tti-faq-contact__whatsapp span {
  margin-bottom: 2px;
  color: #38383a;
  font-size: 10px;
  font-weight: 400;
}
.tti-faq-contact__whatsapp span strong {
  font-weight: 800;
}
.tti-faq-contact__whatsapp a {
  color: #df3038;
  font-size: 18px;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
}
.tti-faq-contact__whatsapp a:hover {
  color: #8b2021;
}
.tti-faq-contact__separator {
  display: block;
  flex: 0 0 1px;
  width: 1px;
  height: 35px;
  margin: 0 17px;
  background: #cccccc;
}
.tti-faq-contact__site {
  display: flex;
  align-items: center;
  gap: 9px;
}
.tti-faq-contact__site i {
  color: #df3038;
  font-size: 27px;
}
.tti-faq-contact__site span {
  color: #38383a;
  font-size: 12px;
  font-weight: 400;
  white-space: nowrap;
}
.tti-faq-contact__site span strong {
  color: #df3038;
  font-weight: 700;
}

@media (max-width: 991px) {
  .tti-final-cta__content {
    max-width: 760px;
  }
  .tti-final-cta__content h2 {
    font-size: 27px;
  }
  .tti-faq__content {
    max-width: 800px;
  }
  .tti-faq-contact {
    max-width: 680px;
  }
}
@media (max-width: 767px) {
  .desktop-break {
    display: none;
  }
  .tti-final-cta {
    padding: 45px 0 45px;
  }
  .tti-final-cta__content {
    width: calc(100% - 40px);
    max-width: 500px;
  }
  .tti-final-cta__content h2 {
    margin-bottom: 17px;
    font-size: 25px;
    line-height: 1.05;
  }
  .tti-final-cta__content h2 span {
    display: block;
    margin-top: 3px;
  }
  .tti-final-cta__content p {
    margin-bottom: 19px;
    font-size: 15px;
    line-height: 1.15;
  }
  .tti-final-cta__highlight {
    margin-bottom: 17px;
    font-size: 15px;
    line-height: 1.1;
  }
  .tti-final-cta__button {
    width: 100%;
    max-width: 410px;
    min-height: 41px;
    padding: 8px 15px;
    font-size: 13px;
    line-height: 1.05;
    text-align: center;
  }
  .tti-faq {
    padding-top: 38px;
  }
  .tti-faq h2 {
    margin-bottom: 35px;
    font-size: 25px;
  }
  .tti-faq__list {
    width: calc(100% - 45px);
    max-width: 500px;
  }
  .tti-faq__item {
    margin-bottom: 25px;
  }
  .tti-faq__item h3 {
    margin-bottom: 8px;
    font-size: 13px;
    line-height: 1.1;
  }
  .tti-faq__item p {
    font-size: 12.5px;
    line-height: 1.15;
  }
  .tti-faq__bottom-detail {
    left: 25px;
    right: 25px;
    height: 42px;
  }
  .tti-faq-contact {
    flex-wrap: wrap;
    width: calc(100% - 35px);
    max-width: 500px;
    margin-top: 40px;
    padding: 20px 20px 25px;
    border-radius: 22px 22px 0 0;
  }
  .tti-faq-contact__logo {
    flex: 0 0 90px;
  }
  .tti-faq-contact__logo img {
    width: 78px;
  }
  .tti-faq-contact__whatsapp {
    flex: 1;
    min-width: 160px;
    padding: 0 0 0 12px;
  }
  .tti-faq-contact__whatsapp span {
    font-size: 9px;
  }
  .tti-faq-contact__whatsapp a {
    font-size: 16px;
  }
  .tti-faq-contact__separator {
    display: none;
  }
  .tti-faq-contact__site {
    justify-content: center;
    width: 100%;
    margin-top: 18px;
    padding-top: 15px;
    border-top: 1px solid #eeeeee;
  }
  .tti-faq-contact__site i {
    font-size: 23px;
  }
  .tti-faq-contact__site span {
    font-size: 11px;
    white-space: normal;
  }
}
@media (max-width: 420px) {
  .tti-final-cta__content h2 {
    font-size: 22px;
  }
  .tti-final-cta__content p {
    font-size: 14px;
  }
  .tti-final-cta__highlight {
    font-size: 14px;
  }
  .tti-final-cta__button {
    font-size: 12px;
  }
  .tti-faq h2 {
    font-size: 22px;
  }
  .tti-faq__item h3 {
    font-size: 12px;
  }
  .tti-faq__item p {
    font-size: 12px;
  }
  .tti-faq-contact {
    flex-direction: column;
    text-align: center;
  }
  .tti-faq-contact__logo {
    flex: none;
    margin-bottom: 12px;
  }
  .tti-faq-contact__whatsapp {
    min-width: 0;
    padding: 0;
    align-items: center;
  }
  .tti-faq-contact__whatsapp a {
    font-size: 18px;
  }
  .tti-faq-contact__site span {
    font-size: 10px;
  }
}

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