:root{
  --sbts-bg:#EAF3F1;
  --sbts-white:#ffffff;
  --sbts-green:#003839;
  --sbts-green-dark:#002c2d;
  --sbts-navy:#0F1D3B;
  --sbts-text:#6D7785;
  --sbts-border:#dfe9e6;
  --sbts-shadow:0 18px 44px rgba(9,45,52,.08);
}

/* SAFE RESET */
.sbts-home-wrap *,
.sbts-page-wrap *,
.sbts-modal *{
  box-sizing:border-box;
}

html.sbts-modal-open,
body.sbts-modal-open{
  overflow:hidden;
}

/* WRAPPERS */
.sbts-page-wrap,
.sbts-home-wrap{
  width:100%;
  background:var(--sbts-bg);
  padding:32px;
  border-radius:30px;
  overflow:hidden;
  position:relative;
}

.sbts-page-grid,
.sbts-home-grid{
  display:grid;
  gap:28px;
}

.sbts-page-grid{
  grid-template-columns:repeat(3,minmax(0,1fr));
  align-items:stretch;
}

.sbts-home-grid{
  grid-template-columns:minmax(300px,.9fr) repeat(2,minmax(280px,1fr));
  align-items:start;
  position:relative;
  z-index:1;
}

/* HOME INTRO */
.sbts-home-intro{
  position:relative;
  min-height:100%;
  padding:10px 10px 26px 8px;
  z-index:3;
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  justify-content:center;
}

.sbts-home-tag-row{
  position:relative;
  z-index:4;
  margin-bottom:18px;
}

.sbts-home-tag{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:12px 18px;
  border:1px solid #c7d6d3;
  border-radius:14px;
  color:var(--sbts-navy);
  background:rgba(255,255,255,.28);
  font-family:Inter,Arial,sans-serif;
  font-size:14px;
  font-weight:700;
  line-height:1;
  letter-spacing:.09em;
  text-transform:uppercase;
  white-space:nowrap;
}

.sbts-home-tag__icon{
  width:16px;
  height:16px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  color:#218bff;
  flex:0 0 16px;
}

.sbts-home-tag__icon svg{
  width:16px;
  height:16px;
  display:block;
  stroke:currentColor;
  stroke-width:1.9;
  stroke-linecap:round;
  stroke-linejoin:round;
  fill:none;
}

.sbts-home-art-wrap{
  position:absolute;
  top:8px;
  right:-8px;
  width:185px;
  height:90px;
  z-index:1;
  pointer-events:none;
}

.sbts-home-flight-art{
  display:block;
  max-width:100%;
  height:auto;
}

.sbts-home-title,
.sbts-card__title,
.sbts-modal__title{
  font-family:'El Messiri',Georgia,serif;
}

.sbts-home-title{
  margin:0 0 20px;
  color:var(--sbts-navy);
  font-size:64px;
  line-height:1.02;
  font-weight:700;
  max-width:390px;
  position:relative;
  z-index:3;
}

.sbts-home-subtitle{
  max-width:370px;
  margin:0 0 34px;
  color:var(--sbts-text);
  font-family:Inter,Arial,sans-serif;
  font-size:18px;
  font-weight:500;
  line-height:1.55;
  position:relative;
  z-index:3;
}

.sbts-home-btn-wrap{
  margin-top:14px;
  position:relative;
  z-index:3;
}

/* HOME BUTTON */
.sbts-home-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:12px;
  min-height:60px;
  padding:0 24px;
  border:none;
  border-radius:999px;
  background:var(--sbts-green);
  text-decoration:none;
  color:#fff;
  box-shadow:0 14px 30px rgba(0,56,57,.18);
  transition:all .22s ease;
  position:relative;
  z-index:3;
  margin-top:8px;
}

.sbts-home-btn:hover{
  transform:translateY(-2px);
  background:#ffffff;
  color:var(--sbts-green);
  box-shadow:0 18px 34px rgba(0,56,57,.15);
}

.sbts-home-btn__text{
  color:#fff;
  font-family:Inter,Arial,sans-serif;
  font-size:16px;
  font-weight:700;
  line-height:1.1;
}

.sbts-home-btn:hover .sbts-home-btn__text{
  color:var(--sbts-green);
}

.sbts-home-btn__iconwrap{
  width:18px;
  height:18px;
  flex:0 0 18px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  color:#fff;
  background:none;
  border:none;
  box-shadow:none;
  border-radius:0;
  padding:0;
  margin:0;
}

.sbts-home-btn:hover .sbts-home-btn__iconwrap{
  color:var(--sbts-green);
}

.sbts-home-btn__iconwrap svg{
  width:18px;
  height:18px;
  display:block;
  stroke:currentColor;
  stroke-width:2.6;
  stroke-linecap:round;
  stroke-linejoin:round;
  fill:none;
}

/* CARDS */
.sbts-card{
  background:var(--sbts-white);
  border-radius:22px;
  overflow:hidden;
  border:1px solid rgba(220,232,228,.95);
  box-shadow:var(--sbts-shadow);
  min-width:0;
  height:100%;
  display:flex;
  flex-direction:column;
  position:relative;
  z-index:2;
}

.sbts-card__media{
  padding:18px 18px 0;
}

.sbts-card__media img,
.sbts-card__fallback-bg{
  display:block;
  width:100%;
  height:220px;
  object-fit:cover;
  border-radius:18px;
}

.sbts-card__media--fallback .sbts-card__fallback-bg{
  background:
    linear-gradient(135deg, rgba(0,56,57,.10), rgba(15,29,59,.06)),
    linear-gradient(180deg, #dfeeed 0%, #eef6f4 100%);
}

.sbts-card__body{
  padding:20px 20px 22px;
  display:grid;
  grid-template-columns:minmax(0,1fr) auto;
  gap:12px 16px;
  align-items:end;
  flex:1 1 auto;
}

.sbts-card__icon{
  grid-column:1 / -1;
  width:42px;
  height:42px;
  color:#006a6c;
}

.sbts-card__icon svg{
  width:42px;
  height:42px;
  display:block;
  stroke:currentColor;
  stroke-width:1.85;
  stroke-linecap:round;
  stroke-linejoin:round;
  fill:none;
}

.sbts-card__content{
  min-width:0;
}

.sbts-card__title{
  margin:0 0 10px;
  color:var(--sbts-navy);
  font-size:27px;
  line-height:1.16;
  font-weight:700;
}

.sbts-card__desc{
  margin:0;
  color:var(--sbts-text);
  font-family:Inter,Arial,sans-serif;
  font-size:16px;
  font-weight:500;
  line-height:1.55;
}

.sbts-card__arrow{
  width:58px;
  min-width:58px;
  height:58px;
  align-self:end;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  background:var(--sbts-green);
  color:#fff;
  border:none;
  border-radius:50%;
  padding:0;
  box-shadow:0 12px 24px rgba(0,56,57,.16);
  cursor:pointer;
  transition:all .22s ease;
}

.sbts-card__arrow:hover{
  transform:translateY(-2px);
  background:var(--sbts-green-dark);
  box-shadow:0 14px 26px rgba(0,44,45,.18);
}

.sbts-arrow-shell{
  width:22px;
  height:22px;
  flex:0 0 22px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  color:#fff;
  background:none;
  border:none;
  box-shadow:none;
  border-radius:0;
  position:relative;
  z-index:2;
}

.sbts-arrow-shell svg{
  width:22px;
  height:22px;
  display:block;
  stroke:#fff;
  stroke-width:2.6;
  stroke-linecap:round;
  stroke-linejoin:round;
  fill:none;
}

.sbts-card__arrow svg{
  overflow:visible;
}

/* MODAL */
.sbts-modal{
  position:fixed;
  top:0;
  right:0;
  bottom:0;
  left:0;
  z-index:99999;
  display:none;
}

.sbts-modal.is-open{
  display:block;
}

.sbts-modal__backdrop{
  position:absolute;
  top:0;
  right:0;
  bottom:0;
  left:0;
  background:rgba(7,20,29,.74);
}

.sbts-modal__dialog{
  position:relative;
  width:1080px;
  max-width:calc(100% - 34px);
  max-height:calc(100vh - 48px);
  margin:24px auto;
  background:#ffffff;
  border-radius:28px;
  overflow:hidden;
  box-shadow:0 34px 80px rgba(0,0,0,.28);
  display:grid;
  grid-template-columns:1.02fr .98fr;
  align-items:stretch;
}

.sbts-modal__close{
  position:absolute;
  top:16px;
  right:16px;
  z-index:30;
  width:48px;
  height:48px;
  border:0;
  border-radius:50%;
  background:rgba(0,56,57,.96);
  color:#ffffff;
  font-size:28px;
  line-height:1;
  cursor:pointer;
  box-shadow:0 10px 24px rgba(0,0,0,.12);
  transition:transform .2s ease, background .2s ease, color .2s ease;
}

.sbts-modal__close:hover{
  transform:translateY(-2px);
  background:#ffffff;
  color:var(--sbts-green);
}

.sbts-modal__media-wrap{
  position:relative;
  min-height:100%;
  height:100%;
  background:
    linear-gradient(180deg, rgba(0,56,57,.04) 0%, rgba(0,56,57,.10) 100%),
    #edf5f2;
  overflow:hidden;
}

.sbts-modal__media-wrap::after{
  content:"";
  position:absolute;
  left:0;
  right:0;
  bottom:0;
  height:0;
  background:none;
  pointer-events:none;
}

.sbts-modal__media{
  display:block;
  width:100%;
  height:100%;
  min-height:100%;
  max-height:none;
  object-fit:cover;
  object-position:center center;
  background:linear-gradient(135deg,#bfe0ea 0%,#94cdd8 50%,#c7ece8 100%);
}

.sbts-modal__content-wrap{
  position:relative;
  display:flex;
  flex-direction:column;
  padding:34px 34px 110px;
  overflow:auto;
  max-height:calc(100vh - 48px);
  background:
    radial-gradient(circle at top right, rgba(0,56,57,.04) 0, rgba(0,56,57,0) 32%),
    #ffffff;
}

.sbts-modal__eyebrow{
  display:inline-flex;
  align-items:center;
  gap:8px;
  margin:0 0 14px;
  padding:10px 14px;
  background:#eef5f2;
  color:var(--sbts-green);
  border:1px solid #dce8e4;
  border-radius:999px;
  font-family:Inter,Arial,sans-serif;
  font-size:12px;
  font-weight:800;
  line-height:1;
  letter-spacing:.08em;
  text-transform:uppercase;
  align-self:flex-start;
}

.sbts-modal__title{
  margin:0 0 18px;
  color:var(--sbts-navy);
  font-size:46px;
  line-height:1.06;
  font-weight:700;
  letter-spacing:-.02em;
  max-width:14ch;
}

.sbts-modal__summary{
  margin:0 0 20px;
  color:var(--sbts-text);
  font-family:Inter,Arial,sans-serif;
  font-size:17px;
  font-weight:500;
  line-height:1.7;
}

.sbts-modal__actions-top{
  display:flex;
  align-items:center;
  flex-wrap:wrap;
  gap:12px;
  margin:0 0 22px;
}

.sbts-modal__action{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:52px;
  padding:0 18px;
  border-radius:999px;
  text-decoration:none !important;
  font-family:Inter,Arial,sans-serif;
  font-size:15px;
  font-weight:700;
  line-height:1;
  transition:all .22s ease;
  border:1px solid transparent;
  white-space:nowrap;
  position:relative;
}

/* Inquiry */
.sbts-modal__action--inquiry{
  background:var(--sbts-green) !important;
  color:#ffffff !important;
  border-color:var(--sbts-green) !important;
  box-shadow:0 14px 26px rgba(0,56,57,.14);
}

.sbts-modal__action--inquiry,
.sbts-modal__action--inquiry:link,
.sbts-modal__action--inquiry:visited,
.sbts-modal__action--inquiry:hover,
.sbts-modal__action--inquiry:focus,
.sbts-modal__action--inquiry:active,
.sbts-modal__action--inquiry span,
.sbts-modal__action--inquiry strong,
.sbts-modal__action--inquiry em{
  color:#ffffff !important;
  -webkit-text-fill-color:#ffffff !important;
  text-decoration:none !important;
}

.sbts-modal__action--inquiry:hover,
.sbts-modal__action--inquiry:focus{
  background:var(--sbts-green-dark) !important;
  border-color:var(--sbts-green-dark) !important;
  color:#ffffff !important;
  transform:translateY(-2px);
}

/* WhatsApp */
.sbts-modal__action--whatsapp{
  background:#eef7f2;
  color:var(--sbts-green) !important;
  border-color:#d5e7df;
  padding-left:48px;
}

.sbts-modal__action--whatsapp::before{
  content:"";
  position:absolute;
  left:18px;
  top:50%;
  width:18px;
  height:18px;
  transform:translateY(-50%);
  background-repeat:no-repeat;
  background-position:center;
  background-size:18px 18px;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32'%3E%3Cpath fill='%2325D366' d='M19.11 17.44c-.27-.14-1.61-.79-1.86-.88-.25-.09-.43-.14-.61.14-.18.27-.7.88-.86 1.06-.16.18-.32.2-.59.07-.27-.14-1.16-.43-2.2-1.37-.81-.72-1.36-1.61-1.52-1.88-.16-.27-.02-.42.12-.56.12-.12.27-.32.41-.48.14-.16.18-.27.27-.45.09-.18.05-.34-.02-.48-.07-.14-.61-1.47-.84-2.01-.22-.53-.44-.46-.61-.47h-.52c-.18 0-.48.07-.73.34-.25.27-.95.93-.95 2.27s.98 2.64 1.11 2.82c.14.18 1.92 2.93 4.66 4.11.65.28 1.16.45 1.56.57.66.21 1.26.18 1.73.11.53-.08 1.61-.66 1.84-1.29.23-.64.23-1.18.16-1.3-.07-.11-.25-.18-.52-.32Z'/%3E%3Cpath fill='%2325D366' d='M16.03 3.2C9.02 3.2 3.34 8.87 3.34 15.88c0 2.23.58 4.41 1.68 6.32L3 29l6.96-1.83a12.6 12.6 0 0 0 6.07 1.55h.01c7 0 12.68-5.68 12.68-12.69 0-3.39-1.32-6.58-3.72-8.98A12.6 12.6 0 0 0 16.03 3.2Zm0 23.11h-.01a10.45 10.45 0 0 1-5.32-1.45l-.38-.23-4.13 1.08 1.1-4.03-.25-.41a10.47 10.47 0 1 1 8.99 5.04Z'/%3E%3C/svg%3E");
}

.sbts-modal__action--whatsapp:hover,
.sbts-modal__action--whatsapp:focus{
  background:#ffffff;
  color:var(--sbts-green-dark) !important;
  border-color:#bfd8cb;
  transform:translateY(-2px);
}

/* Consultation */
.sbts-modal__action--consult{
  position:absolute;
  right:34px;
  bottom:34px;
  z-index:15;
  background:#ffffff;
  color:var(--sbts-navy) !important;
  border:1px solid #dbe7e3;
  box-shadow:0 10px 20px rgba(15,29,59,.06);
  margin:0;
  width:auto;
}

.sbts-modal__action--consult:hover,
.sbts-modal__action--consult:focus{
  background:var(--sbts-green);
  color:#ffffff !important;
  border-color:var(--sbts-green);
  transform:translateY(-2px);
}

.sbts-modal__features-wrap{
  margin:0 0 24px;
  padding:20px 20px 18px;
  border:1px solid #e3ece8;
  border-radius:20px;
  background:linear-gradient(180deg,#f9fcfb 0%, #f3f8f6 100%);
}

.sbts-modal__section-title{
  margin:0 0 14px;
  color:var(--sbts-navy);
  font-family:Inter,Arial,sans-serif;
  font-size:18px;
  font-weight:700;
  line-height:1.25;
}

.sbts-modal__feature-list{
  list-style:none;
  margin:0;
  padding:0;
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:12px 14px;
}

.sbts-modal__feature-item{
  display:flex;
  align-items:flex-start;
  gap:10px;
  min-width:0;
}

.sbts-modal__feature-check{
  width:24px;
  height:24px;
  min-width:24px;
  border-radius:50%;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  background:var(--sbts-green);
  color:#fff;
  font-size:13px;
  font-weight:700;
  line-height:1;
  margin-top:1px;
}

.sbts-modal__feature-text{
  color:#46515e;
  font-family:Inter,Arial,sans-serif;
  font-size:15px;
  font-weight:600;
  line-height:1.6;
}

.sbts-modal__content{
  padding-top:6px;
  border-top:1px solid #e7efec;
}

.sbts-modal__content,
.sbts-modal__content p,
.sbts-modal__content li{
  color:#46515e;
  font-family:Inter,Arial,sans-serif;
  font-size:17px;
  font-weight:500;
  line-height:1.78;
}

.sbts-modal__content p{
  margin:0 0 16px;
}

.sbts-modal__content p:first-child{
  margin-top:0;
}

.sbts-modal__content p:last-child{
  margin-bottom:0;
}

.sbts-modal__content ul,
.sbts-modal__content ol{
  margin:0 0 18px 0;
  padding-left:22px;
}

.sbts-modal__content li{
  margin-bottom:10px;
}

.sbts-modal__content h1,
.sbts-modal__content h2,
.sbts-modal__content h3,
.sbts-modal__content h4{
  color:var(--sbts-navy);
  font-family:Inter,Arial,sans-serif;
  font-weight:700;
  line-height:1.24;
  margin:22px 0 10px;
}

.sbts-modal__content h1{ font-size:30px; }
.sbts-modal__content h2{ font-size:26px; }
.sbts-modal__content h3{ font-size:22px; }
.sbts-modal__content h4{ font-size:19px; }

.sbts-modal__content strong{
  color:var(--sbts-navy);
  font-weight:700;
}

.sbts-modal__content a{
  color:var(--sbts-green);
  text-decoration:none;
  border-bottom:1px solid rgba(0,56,57,.22);
  transition:border-color .2s ease, color .2s ease;
}

.sbts-modal__content a:hover{
  color:var(--sbts-green-dark);
  border-bottom-color:rgba(0,56,57,.55);
}

.sbts-modal__response-note-wrap{
  margin-top:22px;
}

.sbts-modal__response-note{
  padding:14px 16px;
  border-radius:16px;
  background:#f2f7f5;
  border:1px solid #dfebe6;
  color:var(--sbts-text);
  font-family:Inter,Arial,sans-serif;
  font-size:14px;
  font-weight:500;
  line-height:1.65;
}

.sbts-modal__content::-webkit-scrollbar,
.sbts-modal__content-wrap::-webkit-scrollbar{
  width:10px;
}

.sbts-modal__content::-webkit-scrollbar-thumb,
.sbts-modal__content-wrap::-webkit-scrollbar-thumb{
  background:#cfdad7;
  border-radius:999px;
}

/* LARGE TABLET */
@media (max-width:1180px){
  .sbts-home-grid{
    grid-template-columns:1fr 1fr;
  }

  .sbts-home-intro{
    grid-column:1 / -1;
    padding:4px 0 18px;
  }

  .sbts-home-title{
    max-width:460px;
    font-size:60px;
    margin-bottom:18px;
  }

  .sbts-home-subtitle{
    max-width:460px;
    margin-bottom:30px;
  }

  .sbts-home-art-wrap{
    width:180px;
    height:88px;
    right:0;
    top:8px;
  }

  .sbts-home-flight-art{
    width:180px;
  }

  .sbts-modal__dialog{
    width:980px;
    grid-template-columns:.95fr 1.05fr;
  }

  .sbts-modal__media{
    min-height:100%;
  }

  .sbts-modal__title{
    font-size:40px;
  }
}

/* TABLET */
@media (max-width:980px){
  .sbts-page-grid,
  .sbts-home-grid{
    grid-template-columns:1fr 1fr;
  }

  .sbts-page-wrap,
  .sbts-home-wrap{
    padding:24px 20px;
    border-radius:24px;
  }

  .sbts-card__media img,
  .sbts-card__fallback-bg{
    height:210px;
  }

  .sbts-home-intro{
    padding:0 0 14px;
  }

  .sbts-home-tag-row{
    margin-bottom:16px;
  }

  .sbts-home-title{
    font-size:56px;
    margin-bottom:18px;
  }

  .sbts-home-subtitle{
    font-size:17px;
    margin-bottom:28px;
  }

  .sbts-home-btn{
    min-height:58px;
    padding:0 22px;
  }

  .sbts-modal__dialog{
    width:calc(100% - 24px);
    max-height:calc(100vh - 24px);
    margin:12px auto;
    grid-template-columns:1fr;
  }

  .sbts-modal__media-wrap{
    min-height:auto;
    height:320px;
  }

  .sbts-modal__media-wrap::after{
    height:0;
    background:none;
  }

  .sbts-modal__media{
    width:100%;
    height:320px;
    min-height:320px;
    max-height:320px;
  }

  .sbts-modal__content-wrap{
    max-height:none;
    padding:28px 24px 92px;
  }

  .sbts-modal__title{
    font-size:34px;
    max-width:none;
  }

  .sbts-modal__summary{
    font-size:16px;
    margin-bottom:18px;
  }

  .sbts-modal__actions-top{
    gap:10px;
    margin-bottom:20px;
  }

  .sbts-modal__action{
    min-height:50px;
    padding:0 16px;
    font-size:14px;
  }

  .sbts-modal__action--whatsapp{
    padding-left:44px;
  }

  .sbts-modal__action--whatsapp::before{
    left:16px;
  }

  .sbts-modal__action--consult{
    right:24px;
    bottom:24px;
  }

  .sbts-modal__features-wrap{
    padding:18px 18px 16px;
    margin-bottom:20px;
  }

  .sbts-modal__feature-list{
    grid-template-columns:1fr 1fr;
    gap:10px 12px;
  }
}

/* MOBILE */
@media (max-width:767px){
  .sbts-page-wrap,
  .sbts-home-wrap{
    padding:20px 14px;
    border-radius:22px;
  }

  .sbts-page-grid,
  .sbts-home-grid{
    grid-template-columns:1fr;
    gap:22px;
  }

  .sbts-home-intro{
    padding:4px 0 10px;
  }

  .sbts-home-tag-row{
    margin-bottom:12px;
  }

  .sbts-home-art-wrap{
    top:10px;
    right:-2px;
    width:138px;
    height:66px;
  }

  .sbts-home-flight-art{
    width:138px;
  }

  .sbts-home-title{
    font-size:54px;
    max-width:320px;
    margin:0 0 16px;
  }

  .sbts-home-subtitle{
    font-size:16px;
    max-width:none;
    margin:0 0 26px;
    padding-right:0;
  }

  .sbts-home-btn-wrap{
    margin-top:8px;
  }

  .sbts-home-btn{
    min-height:56px;
    padding:0 20px;
    gap:10px;
    margin-top:0;
  }

  .sbts-home-btn__text{
    font-size:15px;
  }

  .sbts-card__media{
    padding:14px 14px 0;
  }

  .sbts-card__media img,
  .sbts-card__fallback-bg{
    height:190px;
  }

  .sbts-card__body{
    padding:16px 16px 18px;
    gap:10px 12px;
  }

  .sbts-card__title{
    font-size:26px;
  }

  .sbts-card__desc{
    font-size:15px;
  }

  .sbts-card__arrow{
    width:54px;
    min-width:54px;
    height:54px;
  }

  .sbts-arrow-shell{
    width:20px;
    height:20px;
    flex-basis:20px;
  }

  .sbts-arrow-shell svg{
    width:20px;
    height:20px;
  }

  .sbts-modal__dialog{
    width:calc(100% - 14px);
    max-height:calc(100vh - 14px);
    margin:7px auto;
    border-radius:20px;
  }

  .sbts-modal__close{
    top:12px;
    right:12px;
    width:42px;
    height:42px;
    font-size:24px;
  }

  .sbts-modal__media-wrap{
    height:240px;
  }

  .sbts-modal__media{
    height:240px;
    min-height:240px;
    max-height:240px;
  }

  .sbts-modal__content-wrap{
    padding:22px 18px 88px;
  }

  .sbts-modal__eyebrow{
    font-size:11px;
    padding:9px 12px;
    margin-bottom:12px;
  }

  .sbts-modal__title{
    font-size:30px;
    line-height:1.08;
    margin-bottom:14px;
  }

  .sbts-modal__summary{
    font-size:15px;
    line-height:1.7;
    margin-bottom:16px;
  }

  .sbts-modal__actions-top{
    flex-direction:column;
    align-items:stretch;
    gap:10px;
    margin-bottom:18px;
  }

  .sbts-modal__action{
    width:100%;
    min-height:50px;
    padding:0 16px;
    font-size:14px;
  }

  .sbts-modal__action--whatsapp{
    width:100%;
    border-radius:999px;
    font-size:14px;
    color:var(--sbts-green) !important;
    padding-left:46px;
  }

  .sbts-modal__action--whatsapp::before{
    left:18px;
  }

  .sbts-modal__action--consult{
    right:18px;
    bottom:18px;
    width:auto;
    max-width:calc(100% - 36px);
  }

  .sbts-modal__features-wrap{
    padding:16px;
    border-radius:16px;
    margin-bottom:18px;
  }

  .sbts-modal__section-title{
    font-size:17px;
    margin-bottom:12px;
  }

  .sbts-modal__feature-list{
    grid-template-columns:1fr;
    gap:10px;
  }

  .sbts-modal__feature-check{
    width:22px;
    height:22px;
    min-width:22px;
    font-size:12px;
  }

  .sbts-modal__feature-text{
    font-size:14px;
    line-height:1.55;
  }

  .sbts-modal__content,
  .sbts-modal__content p,
  .sbts-modal__content li{
    font-size:15px;
    line-height:1.72;
  }

  .sbts-modal__content h1{ font-size:25px; }
  .sbts-modal__content h2{ font-size:22px; }
  .sbts-modal__content h3{ font-size:19px; }
  .sbts-modal__content h4{ font-size:17px; }

  .sbts-modal__response-note{
    font-size:13px;
    padding:12px 14px;
    border-radius:14px;
  }
}

@media (max-width:520px){
  .sbts-home-tag{
    padding:11px 16px;
    font-size:13px;
    gap:8px;
  }

  .sbts-home-art-wrap{
    width:126px;
    height:60px;
    right:0;
    top:12px;
  }

  .sbts-home-flight-art{
    width:126px;
  }

  .sbts-home-title{
    font-size:48px;
    max-width:280px;
    margin-bottom:14px;
  }

  .sbts-home-subtitle{
    font-size:15px;
    line-height:1.5;
    margin-bottom:22px;
  }

  .sbts-home-btn-wrap{
    margin-top:6px;
  }

  .sbts-home-btn{
    min-height:54px;
    padding:0 18px;
  }

  .sbts-home-btn__text{
    font-size:14px;
  }

  .sbts-modal__media-wrap{
    height:220px;
  }

  .sbts-modal__media{
    height:220px;
    min-height:220px;
    max-height:220px;
  }

  .sbts-modal__content-wrap{
    padding:20px 16px 84px;
  }

  .sbts-modal__title{
    font-size:27px;
  }

  .sbts-modal__summary{
    font-size:14px;
    margin-bottom:14px;
  }

  .sbts-modal__action{
    min-height:48px;
    font-size:13px;
    padding:0 14px;
  }

  .sbts-modal__action--whatsapp{
    padding-left:42px;
  }

  .sbts-modal__action--whatsapp::before{
    left:16px;
    width:16px;
    height:16px;
    background-size:16px 16px;
  }

  .sbts-modal__action--consult{
    right:16px;
    bottom:16px;
    max-width:calc(100% - 32px);
  }

  .sbts-modal__features-wrap{
    padding:14px;
  }

  .sbts-modal__section-title{
    font-size:16px;
  }

  .sbts-modal__feature-text{
    font-size:13px;
  }
}