.te-section {
  --te-navy: #0d332d;
  --te-navy-deep: #031842;
  --te-gold: #c98706;
  --te-gold-soft: #e9c77f;
  --te-cream: #fffaf1;
  --te-bg: #fffff9;
  --te-text: #191919;
  --te-muted: #5e5b55;
  --te-green: #09b94f;
  position: relative;
  overflow: hidden;
  padding: 26px 18px 24px;
  color: var(--te-text);
  font-family: Inter, Jost, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

.te-section a {
  text-decoration: none;
}

.te-container {
  position: relative;
  z-index: 1;
  width: min(100%, 1240px);
  margin: 0 auto;
  border: none;
  box-shadow:
        0 2px 8px rgba(0,0,0,0.03),
        0 12px 30px rgba(0,0,0,0.06),
        0 30px 60px rgba(0,0,0,0.08);

  overflow: hidden;
  border-radius: 20px;
  padding: 20px;
  background:
    radial-gradient(circle at 15% 12%, rgba(219, 177, 88, .16), transparent 18%),
    radial-gradient(circle at 86% 16%, rgba(13, 51, 45, .08), transparent 20%),
    linear-gradient(180deg, #fffdf8 0%, var(--te-bg) 58%, #fff8ec 100%);
  
}

.te-bg-illustration {
  position: absolute;
  inset: -34px -18px 0;
  z-index: -1;
  pointer-events: none;
  opacity: .32;
  background-image:
    url("data:image/svg+xml,%3Csvg width='620' height='220' viewBox='0 0 620 220' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%23bcae9c' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' opacity='.55'%3E%3Cpath d='M60 180c60-64 96-64 154 0M92 180V82l62-38 62 38v98M116 180V104h76v76M128 86h52M132 116h44M132 145h44M320 164l86-126 92 126M364 164l54-78 58 78M498 108c18-10 34-10 50 0M520 88c10-6 20-6 30 0M38 44c12-8 26-8 38 0M76 32c10-5 20-5 30 0'/%3E%3C/g%3E%3C/svg%3E"),
    url("data:image/svg+xml,%3Csvg width='620' height='220' viewBox='0 0 620 220' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%23a99b89' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' opacity='.45'%3E%3Cpath d='M36 196c58-74 120-74 178 0M78 196V92l68-44 68 44v104M105 196v-76h82v76M348 192c64-82 130-82 194 0M388 192v-82l52-36 52 36v82M410 192v-56h60v56M260 62c14-8 28-8 42 0M504 38c15-9 30-9 45 0'/%3E%3C/g%3E%3C/svg%3E");
  background-position: left bottom, right bottom;
  background-repeat: no-repeat;
  background-size: min(42vw, 620px) auto, min(42vw, 620px) auto;
}

.te-bg-illustration::before,
.te-bg-illustration::after {
  content: "";
  position: absolute;
  background-repeat: no-repeat;
  background-size: contain;
}

.te-bg-illustration::before {
  top: 14px;
  left: 34%;
  width: 460px;
  height: 190px;
  background-image: url("data:image/svg+xml,%3Csvg width='460' height='190' viewBox='0 0 460 190' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%23bea895' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' opacity='.5'%3E%3Cpath d='M16 86c42-26 86-26 130 0M42 86V36l38-24 38 24v50M62 86V52h38v34M240 138L310 28l84 110M286 138l34-54 42 54M180 36c10-7 22-7 34 0M398 54c13-8 27-8 40 0'/%3E%3C/g%3E%3C/svg%3E");
}

.te-bg-illustration::after {
  top: 78px;
  left: 61%;
  width: 230px;
  height: 72px;
  background-image: url("data:image/svg+xml,%3Csvg width='230' height='72' viewBox='0 0 230 72' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%23c98706' stroke-width='2' stroke-linecap='round' stroke-dasharray='8 8'%3E%3Cpath d='M4 60c72 5 116-12 176-50'/%3E%3C/g%3E%3Cpath fill='%23c98706' d='M184 8l34 10-28 9-9 22-7-4 4-19-18-10 6-5 18 5z'/%3E%3C/svg%3E");
}

.te-card {
  display: grid;
  grid-template-columns: minmax(230px, 285px) minmax(360px, 1fr) minmax(250px, 300px);
  gap: 18px;
  align-items: start;
}

.te-col {
  min-width: 0;
}

.te-col--expert {
  overflow: hidden;
  border: 1px solid rgba(201, 135, 6, .24);
  border-radius: 8px;
  background: linear-gradient(180deg,  #817b61 0%, #3b2e00 72%, #fff 72%, #fff 100%);
  box-shadow: 0 12px 30px rgba(44, 30, 10, .09);
}

.te-photo-wrap {
  position: relative;
  padding: 18px 18px 0;
}

.te-photo-arch {
  position: relative;
  overflow: hidden;
  width: min(100%, 205px);
  aspect-ratio: 1 / 1.02;
  margin: 0 auto;
  border: 4px solid var(--te-gold);
  border-radius: 120px 120px 22px 22px;
  background: #dce8e6;
  box-shadow: 0 0 0 6px #fff6e6, 0 0 0 10px #073d33;
}

.te-photo {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 36%;
}

.te-verified-badge {
  position: absolute;
  top: 7px;
  left: 8px;
  z-index: 3;
  display: grid;
  justify-items: center;
  width: 66px;
  min-height: 66px;
  padding: 6px 5px 11px;
  color: #fff;
  text-align: center;
  font-weight: 800;
  line-height: 1;
  letter-spacing: .06em;
  background: #073d33;
  border: 2px solid #0b5b4c;
  border-radius: 50%;
  filter: drop-shadow(0 8px 16px rgba(0, 0, 0, .16));
}

.te-verified-badge::after {
  content: "SINCE 2017";
  position: absolute;
  left: 5px;
  right: 5px;
  bottom: -7px;
  padding: 4px 2px;
  background: #d99b22;
  color: #073d33;
  font-size: 7px;
  letter-spacing: .07em;
}

.te-badge-icon {
  width: 18px;
  height: 18px;
  margin: 4px 0 3px;
  color: #fff;
}

.te-badge-line1 {
  font-size: 10px;
}

.te-badge-line2 {
  margin-top: 3px;
  font-size: 6px;
  letter-spacing: .03em;
}

.te-badge-line3 {
  display: none;
}

.te-expert-info {
  padding: 18px 16px 20px;
  text-align: center;
  color: #fff;
}

.te-name {
  margin: 0;
  color: #fff;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(24px, 2vw, 30px);
  font-weight: 700;
  line-height: 1;
}

.te-title {
  margin: 7px 0 0;
  color: #3e3434;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .06em;
}

.te-rule {
  width: 54px;
  height: 1.5px;
  margin: 8px auto 0;
  background: var(--te-gold);
}

.te-tagline {
  margin: 3px 0 0;
  color: #fff;
  font-family: "Brush Script MT", "Segoe Script", cursive;
  font-size: 18px;
  line-height: 1.1;
}

.te-stats {
    padding: 14px 8px;
    background: #fffff9;
    border-radius: 20px;
}

.te-stat {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-align: left;
}

.te-stat-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    color: var(--te-gold);
    flex-shrink: 0;
}

.te-stat-icon svg {
    width: 32px;
    height: 32px;
}

.te-stat-number {
    color: var(--te-text);
    font-size: 18px;
    font-weight: 800;
    line-height: 1;
}

.te-stat-label {
    color: #202020;
    font-size: 14px;
    font-weight: 500;
    line-height: 1;
}

.te-stat + .te-stat {
  border-left: 1px solid rgba(201, 135, 6, .24);
}
.te-col--content {
  text-align: center;
}

.te-eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 12px;
  color: var(--te-gold);
  font-size: 17px;
  font-weight: 800;
  letter-spacing: .14em;
}

.te-eyebrow-line {
  display: block;
  width: 74px;
  height: 1px;
  background: currentColor;
}

.te-headline-wrap {
  margin-bottom: 12px;
}

.te-headline-script,
.te-headline-main {
  margin: 0;
}

.te-headline-script {
  color: var(--te-gold);
  font-family: "Brush Script MT", "Segoe Script", cursive;
  font-size: clamp(28px, 2.8vw, 42px);
  font-weight: 400;
  line-height: .85;
}

.te-headline-main {
  color: #073d33;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(38px, 4vw, 62px);
  font-weight: 700;
  line-height: .92;
  text-shadow: 0 4px 14px rgba(7, 61, 51, .08);
}

.te-headline-sub {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 10px 0 0;
  color: var(--te-gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .12em;
}

.te-headline-sub::before,
.te-headline-sub::after {
  content: "";
  display: block;
  width: 48px;
  height: 1px;
  background: currentColor;
}

.te-quote {
  position: relative;
  margin: 0;
  padding: 20px 22px 18px;
  border: 1px solid rgba(201, 135, 6, .28);
  border-radius: 10px;
  background: rgba(255, 255, 255, .74);
  text-align: left;
  box-shadow: 0 10px 24px rgba(60, 42, 14, .04);
}

.te-quote::before {
  content: "\201C";
  position: absolute;
  top: 1px;
  left: 18px;
  color: var(--te-gold);
  font-family: Georgia, serif;
  font-size: 32px;
  font-weight: 700;
  line-height: 1;
}

.te-quote-bold {
  margin: 0 0 7px;
  color: #151515;
  font-size: 14px;
  font-weight: 900;
}

.te-quote-body {
  margin: 0;
  color: #232323;
  font-size: 13px;
  line-height: 1.55;
}

.te-pills {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 7px;
  margin: 12px 0 0;
}

.te-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  padding: 5px 6px;
  border: 1px solid rgba(201, 135, 6, .34);
  border-radius: 8px;
  background: rgba(255, 255, 255, .68);
  color: var(--te-navy-deep);
  font-size: 9px;
  font-weight: 800;
  line-height: 1.25;
  text-align: center;
}

.te-pill svg {
  flex: 0 0 auto;
  width: 12px;
  height: 12px;
  margin-right: 5px;
  color: #09983f;
}

.te-tagline-bottom {
  margin: 16px 0 0;
  color: var(--te-gold);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
}

.te-tagline-bottom::after {
  content: "";
  display: block;
  width: 96px;
  height: 1.5px;
  margin: 8px auto 0;
  border-radius: 999px;
  background: var(--te-gold);
}

.te-col--cta {
  padding: 15px 14px 14px;
  border: 1px solid rgba(201, 135, 6, .16);
  border-radius: 12px;
  background: rgba(255, 255, 255, .84);
  box-shadow: 0 12px 30px rgba(44, 30, 10, .08);
}

.te-btn {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr) 14px;
  align-items: center;
  width: 100%;
  min-height: 52px;
  margin-bottom: 9px;
  padding: 9px 11px;
  border-radius: 8px;
  color: #fff;
  transition: opacity .2s ease, transform .2s ease, box-shadow .2s ease;
}

.te-btn:focus-visible {
  outline: 3px solid rgba(201, 135, 6, .58);
  outline-offset: 3px;
}

.te-btn:hover {
  color: #fff;
  opacity: .94;
  transform: translateY(-1px);
}

.te-btn--call {
  background: linear-gradient(135deg, var(--primary), var(--dark));
  box-shadow: 0 10px 20px rgba(5, 19, 74, .14);
}

.te-btn--whatsapp {
  background: linear-gradient(135deg, #12bd55, #05a948);
  box-shadow: 0 10px 20px rgba(5, 169, 72, .14);
}

.te-btn--itinerary {
  border: 1.5px solid var(--te-gold);
  background: transparent;
  color: var(--te-navy-deep);
  box-shadow: none;
}

.te-btn--itinerary:hover {
  color: var(--te-navy-deep);
}

.te-btn-icon {
  display: inline-grid;
  place-items: center;
  width: 31px;
  height: 31px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .95);
  color: currentColor;
}

.te-btn--call .te-btn-icon {
  color: #061940;
}

.te-btn--whatsapp .te-btn-icon {
  color: #10b94f;
}

.te-btn--itinerary .te-btn-icon {
  border-radius: 0;
  background: transparent;
  color: var(--te-gold);
}

.te-btn-icon svg {
  width: 19px;
  height: 19px;
}

.te-btn-text {
  display: grid;
  gap: 2px;
  min-width: 0;
}

.te-btn-text strong {
  font-size: 14px;
  line-height: 1;
  letter-spacing: .02em;
}

.te-btn-text span {
  overflow-wrap: anywhere;
  font-size: 11px;
  line-height: 1.25;
}

.te-btn--call .te-btn-text span {
  color: #ffbd35;
}

.te-online-dot {
  color: #78f28e;
  font-size: 12px;
}

.te-btn-arrow {
  justify-self: end;
  font-size: 26px;
  font-weight: 300;
  line-height: 1;
}

.te-response-meta {
  display: grid;
  gap: 5px;
  width: fit-content;
  margin: 1px auto 12px;
  color: #372a19;
  font-size: 10px;
  font-weight: 600;
}

.te-meta-item {
  display: flex;
  align-items: center;
  gap: 7px;
}

.te-meta-item svg {
  width: 13px;
  height: 13px;
  color: #17251f;
}

.te-signoff {
  text-align: center;
}

.te-signoff-text {
  margin: 0;
  color: #063d33;
  font-family: "Brush Script MT", "Segoe Script", cursive;
  font-size: 16px;
  line-height: 1.25;
}

.te-signoff-name {
  margin: 6px 0 0;
  color: var(--te-gold);
  font-family: "Brush Script MT", "Segoe Script", cursive;
  font-size: 18px;
  line-height: 1;
}

.te-trust-strip {
  margin-top: 20px;
  text-align: center;
}

.te-trust-label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 0 0 9px;
  color: #073d33;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .18em;
}

.te-trust-rule {
  display: block;
  width: 96px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--te-gold));
}

.te-trust-rule:last-child {
  background: linear-gradient(90deg, var(--te-gold), transparent);
}

.te-flags {
  display: grid;
  grid-template-columns: repeat(9, minmax(72px, 1fr));
  gap: 10px;
  width: min(100%, 760px);
  margin: 0 auto;
}

.te-flag-item {
  display: grid;
  justify-items: center;
  gap: 4px;
  color: #171717;
  font-size: 11px;
  line-height: 1.2;
}

.te-flag {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  box-shadow: 0 1px 0 rgba(0, 0, 0, .08);
}

.te-specialists-line {
  margin: 9px 0 0;
  color: #073d33;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .18em;
}

.te-mobile-card {
  display: none;
}

@media (max-width: 1199.98px) {
  .te-section {
    padding: 24px 14px;
  }

  .te-container {
    width: min(100%, 860px);
    padding: 0;
    overflow: visible;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .te-bg-illustration,
  .te-container > .te-card {
    display: none;
  }

  .te-mobile-card {
    display: block;
    overflow: hidden;
    border-radius: 40px;
    background: #fffdf9;
    box-shadow: 0 18px 46px rgba(45, 35, 12, .16);
  }

  .te-mobile-hero {
    position: relative;
    min-height: 810px;
    overflow: hidden;
    padding: 28px 26px 52px;
    background:
      radial-gradient(circle at 72% 18%, rgba(116, 91, 29, .34), transparent 28%),
      radial-gradient(circle at 36% 76%, rgba(100, 80, 27, .2), transparent 32%),
      linear-gradient(135deg, #352d0e 0%, #171b0e 48%, #433617 100%);
  }

  .te-mobile-skyline {
    position: absolute;
    inset: auto 0 0;
    height: 265px;
    opacity: .48;
    background-image: url("data:image/svg+xml,%3Csvg width='980' height='265' viewBox='0 0 980 265' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%23c69635' stroke-width='2' opacity='.82'%3E%3Cpath d='M0 245h980M0 228h980M18 245v-76h28v76M24 169v-22h16v22M32 147v-22M72 245v-112h104v112M88 133c18-48 54-48 72 0M108 245v-72h40v72M128 173v-36M198 245v-85h28v85M212 160v-24M272 245v-64h32v64M288 181v-22M646 245v-76h28v76M660 169v-20M704 245v-116h112v116M720 129c20-52 60-52 80 0M744 245v-76h40v76M764 169v-42M836 245v-172h34v172M843 73h20M847 53h12M851 34h4M900 245v-96h42v96M921 149v-26'/%3E%3Cpath d='M42 84c12-16 28-16 40 0m-54 0h68M748 78c12-16 28-16 40 0m-54 0h68'/%3E%3C/g%3E%3C/svg%3E");
    background-position: center bottom;
    background-repeat: no-repeat;
    background-size: cover;
  }

  .te-mobile-flight {
    position: absolute;
    top: 50px;
    right: 38px;
    width: 145px;
    color: #c99a43;
    opacity: .82;
  }

  .te-mobile-flight svg {
    display: block;
    width: 100%;
  }

  .te-mobile-badge {
    position: absolute;
    top: 24px;
    left: 28px;
    z-index: 3;
    display: grid;
    justify-items: center;
    width: 166px;
    min-height: 166px;
    padding: 22px 12px 28px;
    border: 5px solid #dda935;
    border-radius: 50%;
    background: #004c43;
    color: #fff;
    text-align: center;
    filter: drop-shadow(0 12px 18px rgba(0, 0, 0, .2));
  }

  .te-mobile-badge svg {
    width: 42px;
    height: 42px;
    margin-bottom: 9px;
  }

  .te-mobile-badge strong {
    font-size: 25px;
    letter-spacing: .04em;
    line-height: 1;
  }

  .te-mobile-badge span {
    margin-top: 7px;
    font-size: 15px;
    font-weight: 800;
    line-height: 1;
  }

  .te-mobile-badge em {
    position: absolute;
    bottom: -19px;
    padding: 10px 18px;
    border-radius: 4px;
    background: #e1a90d;
    color: #073d33;
    font-size: 18px;
    font-style: normal;
    font-weight: 900;
    letter-spacing: .05em;
    white-space: nowrap;
  }

  .te-mobile-photo-arch {
    position: relative;
    z-index: 2;
    overflow: hidden;
    width: min(56%, 480px);
    aspect-ratio: .82;
    margin: 0 auto;
    border: 8px solid #dfa905;
    border-radius: 245px 245px 62px 62px;
    background: #dce8e6;
    box-shadow: 0 0 0 10px #f9fbef, 0 0 0 15px #005245, 0 0 0 19px #fff;
  }

  .te-mobile-photo {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 35%;
  }

  .te-mobile-identity {
    position: relative;
    z-index: 2;
    margin-top: 34px;
    color: #fff;
    text-align: center;
  }

  .te-mobile-identity h3 {
    margin: 0;
    color: #fff;
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: clamp(58px, 8vw, 82px);
    font-weight: 700;
    line-height: .95;
    text-shadow: 0 5px 14px rgba(0, 0, 0, .32);
  }

  .te-mobile-divider {
    display: block;
    width: 82px;
    height: 10px;
    margin: 20px auto 16px;
    background: radial-gradient(circle, #e1a900 0 5px, transparent 6px), linear-gradient(#e1a900, #e1a900) left center / 34px 2px no-repeat, linear-gradient(#e1a900, #e1a900) right center / 34px 2px no-repeat;
  }

  .te-mobile-identity p {
    margin: 0;
    font-size: clamp(29px, 4vw, 38px);
    line-height: 1.15;
  }

  .te-mobile-identity strong {
    color: #e2aa00;
  }

  .te-mobile-panel {
    position: relative;
    z-index: 4;
    margin-top: -42px;
    padding: 0 28px 28px;
    border-radius: 34px 34px 0 0;
    background: #fffdf9;
  }

  .te-mobile-experience {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    min-height: 128px;
    padding: 18px 22px;
    border: 1px solid #e9dfce;
    border-radius: 28px;
    background: rgba(255, 255, 255, .96);
    box-shadow: inset 0 0 0 8px #fffaf1;
    color: #061940;
  }

  .te-mobile-experience svg {
    width: 68px;
    height: 68px;
    color: #d28c00;
  }

  .te-mobile-experience strong {
    font-size: 68px;
    line-height: 1;
  }

  .te-mobile-experience span {
    font-size: 27px;
    font-weight: 700;
  }

  .te-mobile-actions {
    display: grid;
    grid-template-columns: 1fr 1.02fr;
    gap: 22px;
    margin-top: 30px;
  }

  .te-mobile-action {
    display: flex;
    align-items: center;
    gap: 17px;
    min-height: 126px;
    padding: 18px 20px;
    border-radius: 24px;
  }

  .te-mobile-action-icon {
    display: grid;
    place-items: center;
    flex: 0 0 72px;
    width: 72px;
    height: 72px;
    color: currentColor;
  }

  .te-mobile-action-icon svg {
    width: 58px;
    height: 58px;
  }

  .te-mobile-action strong,
  .te-mobile-action small {
    display: block;
  }

  .te-mobile-action strong {
    font-size: 23px;
    line-height: 1.1;
    white-space: nowrap;
  }

  .te-mobile-action small {
    margin-top: 9px;
    font-size: 18px;
    line-height: 1.15;
    white-space: nowrap;
  }

  .te-mobile-action--whatsapp {
    background: linear-gradient(135deg, #00b34d, #03953e);
    color: #fff;
  }

  .te-mobile-action--whatsapp:hover {
    color: #fff;
  }

  .te-mobile-action--whatsapp .te-mobile-action-icon {
    border-radius: 50%;
    background: #fff;
    color: #079e45;
  }

  .te-mobile-action--whatsapp b {
    display: inline-block;
    width: 11px;
    height: 11px;
    margin-left: 4px;
    border-radius: 50%;
    background: #22dc78;
  }

  .te-mobile-action--itinerary {
    border: 2px solid #d58c00;
    color: #06265d;
  }

  .te-mobile-action--itinerary .te-mobile-action-icon {
    color: #c68500;
  }

  .te-mobile-quote {
    display: grid;
    grid-template-columns: 68px minmax(0, 1fr);
    gap: 22px;
    align-items: start;
    margin: 30px 0 0;
    padding: 26px 30px 22px;
    border: 1px solid #eadfce;
    border-radius: 22px;
    background: #fffaf3;
  }

  .te-mobile-quote span {
    color: #c98600;
    font-family: Georgia, serif;
    font-size: 92px;
    font-weight: 700;
    line-height: .75;
  }

  .te-mobile-quote p {
    margin: 0;
    color: #061940;
    font-size: 28px;
    line-height: 1.42;
  }

  .te-mobile-trust {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 20px;
    padding: 16px 24px;
    border: 1px solid #eadfce;
    border-radius: 22px;
    background: #fffdf9;
  }

  .te-mobile-trust-item {
    display: flex;
    align-items: center;
    gap: 20px;
    min-height: 106px;
    padding: 12px 4px;
    color: #061940;
    font-size: 22px;
    line-height: 1.35;
  }

  .te-mobile-trust-item:nth-child(even) {
    padding-left: 34px;
    border-left: 1px solid #eadfce;
  }

  .te-mobile-trust-item:nth-child(n + 3) {
    border-top: 1px solid #eadfce;
  }

  .te-mobile-trust-item span {
    display: grid;
    place-items: center;
    flex: 0 0 72px;
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: #fffaf1;
    color: #099e43;
  }

  .te-mobile-trust-item svg {
    width: 48px;
    height: 48px;
  }
}

@media (max-width: 767.98px) {
  .te-section {
    padding: 18px 10px;
  }

  .te-mobile-card {
    border-radius: 24px;
  }

  .te-mobile-hero {
    min-height: 488px;
    padding: 18px 14px 38px;
  }

  .te-mobile-skyline {
    height: 160px;
  }

  .te-mobile-flight {
    top: 30px;
    right: 12px;
    width: 78px;
  }

  .te-mobile-badge {
    top: 14px;
    left: 14px;
    width: 92px;
    min-height: 92px;
    padding: 11px 5px 18px;
    border-width: 3px;
  }

  .te-mobile-badge svg {
    width: 24px;
    height: 24px;
    margin-bottom: 4px;
  }

  .te-mobile-badge strong {
    font-size: 13px;
  }

  .te-mobile-badge span {
    margin-top: 4px;
    font-size: 8px;
  }

  .te-mobile-badge em {
    bottom: -12px;
    padding: 6px 8px;
    font-size: 10px;
  }

  .te-mobile-photo-arch {
    width: min(57%, 258px);
    border-width: 4px;
    border-radius: 150px 150px 34px 34px;
    box-shadow: 0 0 0 5px #f9fbef, 0 0 0 8px #005245, 0 0 0 10px #fff;
  }

  .te-mobile-identity {
    margin-top: 22px;
  }

  .te-mobile-identity h3 {
    font-size: clamp(37px, 10vw, 55px);
  }

  .te-mobile-divider {
    width: 58px;
    height: 8px;
    margin: 12px auto 9px;
    background: radial-gradient(circle, #e1a900 0 4px, transparent 5px), linear-gradient(#e1a900, #e1a900) left center / 23px 2px no-repeat, linear-gradient(#e1a900, #e1a900) right center / 23px 2px no-repeat;
  }

  .te-mobile-identity p {
    font-size: clamp(18px, 4.7vw, 25px);
  }

  .te-mobile-panel {
    margin-top: -60px;
    padding: 0 16px 18px;
    border-radius: 22px 22px 0 0;
  }

  .te-mobile-experience {
    gap: 13px;
    min-height: 78px;
    padding: 12px 14px;
    border-radius: 18px;
    box-shadow: inset 0 0 0 5px #fffaf1;
  }

  .te-mobile-experience svg {
    width: 42px;
    height: 42px;
  }

  .te-mobile-experience strong {
    font-size: 25px;
  }

  .te-mobile-experience span {
    font-size: 17px;
  }

  .te-mobile-actions {
    gap: 10px;
    margin-top: 18px;
  }

  .te-mobile-action {
    gap: 8px;
    min-height: 74px;
    padding: 10px 9px;
    border-radius: 14px;
  }

  .te-mobile-action-icon {
    flex-basis: 42px;
    width: 42px;
    height: 42px;
  }

  .te-mobile-action-icon svg {
    width: 34px;
    height: 34px;
  }

  .te-mobile-action strong {
    font-size: 12px;
  }

  .te-mobile-action small {
    margin-top: 5px;
    font-size: 10px;
  }

  .te-mobile-action--whatsapp b {
    width: 6px;
    height: 6px;
  }

  .te-mobile-quote {
    grid-template-columns: 38px minmax(0, 1fr);
    gap: 12px;
    margin-top: 18px;
    padding: 17px 16px 15px;
    border-radius: 14px;
  }

  .te-mobile-quote span {
    font-size: 56px;
  }

  .te-mobile-quote p {
    font-size: 16px;
    line-height: 1.42;
  }

  .te-mobile-trust {
    margin-top: 12px;
    padding: 8px 12px;
    border-radius: 14px;
  }

  .te-mobile-trust-item {
    gap: 9px;
    min-height: 66px;
    padding: 7px 2px;
    font-size: 12px;
  }

  .te-mobile-trust-item:nth-child(even) {
    padding-left: 13px;
  }

  .te-mobile-trust-item span {
    flex-basis: 42px;
    width: 42px;
    height: 42px;
  }

  .te-mobile-trust-item svg {
    width: 29px;
    height: 29px;
  }
}

@media (max-width: 389.98px) {
  .te-mobile-hero {
    min-height: 440px;
  }

  .te-mobile-action {
    gap: 6px;
    padding-left: 7px;
    padding-right: 7px;
  }

  .te-mobile-action strong {
    font-size: 10px;
  }

  .te-mobile-action small {
    font-size: 9px;
  }

  .te-mobile-trust-item {
    gap: 6px;
    font-size: 11px;
  }
}
