* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 106px;
  overflow-x: clip;
}

body {
  margin: 0;
  overflow-x: clip;
  color: var(--sg-text);
  background: var(--sg-white);
  font-family: "Google Sans Flex", Arial, sans-serif;
  font-variation-settings: "wght" 440, "wdth" 100;
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:where(main#conteudo) .sg-container {
  width: min(calc(100% - 64px), var(--sg-container));
  margin-inline: auto;
}


.sg-skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 1000;
  padding: 10px 16px;
  border-radius: 12px;
  background: var(--sg-black);
  color: var(--sg-white);
  transform: translateY(-160%);
  transition: transform .2s ease;
}

.sg-skip-link:focus {
  transform: translateY(0);
}








.sg-hero {
  padding: clamp(40px, 3.125vw, 60px) 0;
}

.sg-hero__grid {
  display: grid;
  width: min(calc(100% - 64px), 1783px);
  max-width: none;
  grid-template-columns: 832px 926px;
  align-items: center;
  gap: 25px;
}

/* Sem overflow: hidden de proposito. Ele recortava o halo do .sg-button--glow
   exatamente na margem do botao — 15px em 1920, e nada em 390, onde o brilho
   sumia por inteiro. A protecao que ele parecia dar e feita por outras duas
   regras: o min-width: 0 logo abaixo, que solta o piso de conteudo minimo da
   coluna do grid, e o overflow-x: clip do html e do body, que impede rolagem
   lateral. O teste "o texto do banner nunca ultrapassa a propria coluna"
   mantem isso honesto. */
.sg-hero__copy {
  display: flex;
  width: 832px;
  flex-direction: column;
  align-items: flex-start;
  gap: clamp(16px, 1.25vw, 24px);
}

.sg-eyebrow {
  width: 690px;
  height: clamp(32px, 2.5vw, 48px);
  margin: 0;
  font-size: clamp(18px, calc(4.67px + 1.11vw), 26px);
  line-height: clamp(32px, 2.5vw, 48px);
  font-variation-settings: "wght" 500, "wdth" 100;
}

h1,
h2,
h3,
p {
  text-wrap: pretty;
}

h1,
h2 {
  margin: 0;
  color: var(--sg-black);
  letter-spacing: -.045em;
}

.sg-hero h1 {
  width: 832px;
  max-width: none;
  min-height: 277px;
  font-size: clamp(
    52px,
    max(calc(22.86px + 2.86vw), calc(-44px + 7.5vw)),
    100px
  );
  line-height: .9;
  font-variation-settings: "wght" 700, "wdth" 100;
}

.sg-hero__copy h1 {
  letter-spacing: normal;
}

.sg-hero__copy h1 > span {
  display: block;
  white-space: nowrap;
}

.sg-hero__copy .sg-button {
  margin: 0 0 clamp(10px, .78vw, 15px) clamp(10px, .78vw, 15px);
}

.sg-hero__copy,
.sg-hero__media {
  min-width: 0;
}

.sg-hero__copy h1 {
  overflow-wrap: break-word;
}

.sg-hero__media {
  position: relative;
  isolation: isolate;
  width: 926px;
  height: 460px;
  overflow: visible;
  border-radius: clamp(28px, 2.03vw, 39px);
}

.sg-hero__media::before {
  content: "";
  position: absolute;
  z-index: 0;
  inset: 10px;
  border-radius: inherit;
  background: linear-gradient(
    135deg,
    #ff8000 8%,
    #ffad3d 35%,
    #8bfa32 68%,
    #18cc61 100%
  );
  filter: blur(28px);
  opacity: .48;
  pointer-events: none;
}

.sg-hero__media img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  object-fit: cover;
}


.sg-button--orange {
  background: var(--sg-orange-button);
}


.sg-hero__cta {
  --sg-glow-surface: #ff8000;
  min-height: clamp(52px, 3.125vw, 60px);
  padding: clamp(12px, .83vw, 16px) clamp(24px, 1.67vw, 32px);
  font-size: clamp(16px, calc(-2px + 1.25vw), 22px);
  font-weight: 600;
  line-height: 1.27;
  font-variation-settings: "wght" 600, "wdth" 100;
}

.sg-button--green {
  background: var(--sg-green-button);
}

.sg-button--full {
  width: 100%;
}

.sg-steps {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 66px 0;
}

.sg-steps__grid {
  display: grid;
  grid-template-columns: 543px 580px;
  align-items: center;
  justify-content: center;
  gap: 60px;
  padding: 60px 0;
  position: relative;
  z-index: 1;
}

.sg-steps__heading {
  min-width: 0;
}

.sg-steps__glow {
  position: absolute;
  z-index: 0;
  top: -7.16%;
  left: 2.97%;
  width: 60.34%;
  height: 111.34%;
  max-width: none;
  object-fit: fill;
  pointer-events: none;
}

.sg-steps__heading h2 {
  width: 543px;
  max-width: 100%;
  font-size: 66px;
  line-height: 66px;
  letter-spacing: 0;
  font-variation-settings: "wght" 700, "wdth" 100;
}

.sg-steps__content {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 580px;
  min-width: 0;
}

.sg-step {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 450px;
  min-width: 0;
}

.sg-step--second {
  margin-left: 130px;
}

.sg-step__number {
  margin: 0;
  padding: 0;
  color: var(--sg-black);
  font-size: 36px;
  font-weight: 700;
  line-height: 36px;
  letter-spacing: 0;
  font-variation-settings: "wght" 700, "wdth" 100;
}

.sg-step__description {
  margin: 0;
  color: var(--sg-black);
  font-size: 16px;
  line-height: 22px;
  letter-spacing: 0;
  white-space: nowrap;
  font-variation-settings: "wght" 400, "wdth" 100;
}

.sg-marquee {
  position: relative;
  overflow: hidden;
  width: 450px;
  height: 125px;
  margin: 0;
  mask-image: linear-gradient(90deg, transparent 0, #000 10%, #000 90%, transparent 100%);
}

.sg-marquee__track {
  display: flex;
  align-items: center;
  width: max-content;
  height: 100%;
  animation: sg-marquee-slide 18s linear infinite;
  will-change: transform;
}

.sg-marquee--reverse .sg-marquee__track {
  animation-direction: reverse;
  animation-duration: 22s;
}

.sg-marquee:hover .sg-marquee__track,
.sg-marquee:focus-within .sg-marquee__track {
  animation-play-state: paused;
}

.sg-marquee__set {
  display: flex;
  flex: none;
  height: 100%;
  align-items: center;
  gap: 17px;
  padding-right: 17px;
}

.sg-marquee__set img {
  flex: none;
  width: 100px;
  height: 100px;
}

.sg-marquee__set img {
  object-fit: contain;
}

@keyframes sg-marquee-slide {
  to {
    transform: translateX(-50%);
  }
}

.sg-plans {
  padding: 30px 0;
}

.sg-plans .sg-section-heading {
  margin: 0 auto 30px;
  text-align: center;
}

.sg-plans .sg-section-heading h2 {
  font-size: 66px;
  line-height: 66px;
  letter-spacing: normal;
  white-space: nowrap;
  font-variation-settings: "wght" 700, "wdth" 100;
}

.sg-section-heading {
  margin: 0 auto clamp(50px, 5vw, 86px);
  text-align: center;
}

.sg-section-heading h2 {
  font-size: clamp(52px, 4vw, 78px);
  line-height: 1;
  font-variation-settings: "wght" 735, "wdth" 102;
}

.sg-section-heading p {
  margin: 20px 0 0;
  font-size: clamp(18px, 1.35vw, 25px);
  line-height: 1.35;
}

.sg-section-heading--wide {
  max-width: 970px;
}

.sg-section-heading--left {
  margin: 0 0 48px;
  text-align: left;
}

.sg-plans__grid {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 30px;
}

.sg-plans__city-note[hidden],
.sg-plan-card[data-sg-light-plan-only][hidden] {
  display: none !important;
}

.sg-plans__city-note {
  color: #344054;
  font-size: 16px;
  line-height: 1.4;
  margin: 10px 0 0;
}

.sg-plan-card {
  position: relative;
  display: flex;
  width: 243px;
  height: 430px;
  flex-direction: column;
  align-items: flex-start;
  flex: 0 0 auto;
  padding: 25px 40px;
  border: 2px solid var(--sg-green);
  border-radius: 30px;
  background: var(--sg-white);
}

.sg-plan-card--featured {
  width: 252px;
  height: 465px;
}

.sg-plan-card--gamer {
  width: 275px;
}

.sg-plan-card--ultra {
  width: 276px;
}

.sg-plan-card--regional {
  border-color: var(--sg-green);
}

.sg-plan-card__badge {
  margin: 0 0 10px;
  padding: 5px 10px;
  border-radius: 20px;
  background: var(--sg-green);
  color: var(--sg-black);
  font-size: 14px;
  line-height: 14px;
  font-variation-settings: "wght" 400;
}

.sg-plan-card__speed {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin: 0 0 19px;
  color: var(--sg-black);
}

.sg-plan-card__speed strong {
  font-size: 80px;
  line-height: 60px;
  letter-spacing: 0;
  font-variation-settings: "wght" 700, "wdth" 100;
}

.sg-plan-card__speed span {
  font-size: 30px;
  line-height: 30px;
  font-variation-settings: "wght" 600, "wdth" 100;
}

.sg-plan-card__label {
  align-self: flex-start;
  margin: 0 0 20px;
  padding: 5px 10px;
  border-radius: 20px;
  background: var(--sg-orange);
  color: var(--sg-black);
  font-size: 14px;
  line-height: 14px;
  font-variation-settings: "wght" 400;
  white-space: nowrap;
}

.sg-plan-card--featured .sg-plan-card__label,
.sg-plan-card--gamer .sg-plan-card__label,
.sg-plan-card--ultra .sg-plan-card__label {
  margin-bottom: 21px;
}

.sg-plan-card__logos {
  display: flex;
  width: 100%;
  height: 20px;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
}

.sg-plan-card__logos img {
  width: 55px;
  max-width: 60px;
  height: 20px;
  object-fit: contain;
  object-position: left center;
}

.sg-plan-card__logos--stacked {
  width: 60px;
  height: 80px;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 19px;
}

.sg-plan-card__logos--stacked img {
  width: 60px;
  height: 20px;
}

.sg-plan-card__hardware {
  display: flex;
  height: 37px;
  min-height: 37px;
  align-items: flex-end;
  gap: 5px;
  margin: 0 0 21px;
}

.sg-plan-card__hardware strong {
  font-size: 14px;
  line-height: 12px;
  font-variation-settings: "wght" 700, "wdth" 100;
  white-space: nowrap;
}

.sg-plan-card__devices {
  display: flex;
  align-items: flex-end;
  gap: 5px;
}

.sg-plan-card__devices img {
  width: 32px;
  height: 36px;
  object-fit: cover;
}

.sg-plan-card__phone {
  width: 32px;
  height: 36px;
  margin-left: 3px;
  overflow: hidden;
}

.sg-plan-card__phone img {
  width: 32px;
  height: 36px;
  object-fit: contain;
}

.sg-plan-card__price {
  width: 100%;
  margin-top: auto;
  margin-bottom: 10px;
}

.sg-plan-card__from {
  display: block;
  margin-bottom: 3px;
  font-size: 14px;
  line-height: 14px;
}

.sg-price {
  display: flex;
  align-items: center;
  margin: 0;
  color: var(--sg-black);
  white-space: nowrap;
}

.sg-price > span:first-child {
  margin: 0 2px 0 0;
  font-size: 22px;
  line-height: 22px;
}

.sg-price strong {
  font-size: 66px;
  line-height: 66px;
  letter-spacing: 0;
  font-variation-settings: "wght" 700, "wdth" 100;
}

.sg-price__cents {
  display: flex;
  width: 35px;
  flex-direction: column;
  align-items: flex-start;
}

.sg-price__cents sup {
  display: block;
  font-size: 20px;
  line-height: 22px;
}

.sg-price__cents small {
  display: block;
  font-size: 16px;
  line-height: 16px;
}

/* O fundo e o raio vem do .sg-button--glow: o brilho substituiu o antigo
   escurecimento por filter, que desbotava tambem as camadas do halo. */
.sg-button--plan {
  --sg-glow-surface: var(--sg-orange);
  --sg-glow-radius: 20px;
  width: auto;
  min-height: 30px;
  align-self: flex-start;
  padding: 8px 20px;
  box-shadow: none;
  font-size: 14px;
  line-height: 14px;
  font-variation-settings: "wght" 700;
  white-space: nowrap;
}

.sg-mobile-banner {
  padding: 0;
  background: var(--sg-white);
}

.sg-mobile-banner__grid {
  position: relative;
  display: block;
  isolation: isolate;
  height: auto;
  min-height: 0;
  aspect-ratio: 1580 / 634;
  overflow: visible;
}

.sg-mobile-banner__grid::before,
.sg-mobile-banner__grid::after {
  position: absolute;
  right: 0;
  left: 0;
  height: 65.62%;
  border-radius: clamp(36px, 3.3vw, 55px);
  content: "";
  pointer-events: none;
}

.sg-mobile-banner__grid::before {
  z-index: 0;
  top: 17.19%;
  background: linear-gradient(to top, #f60 8.654%, #25d366 85.577%);
  filter: blur(10px);
}

.sg-mobile-banner__grid::after {
  z-index: 0;
  top: 17.19%;
  border: 2px solid var(--sg-white);
  background: var(--sg-peach);
}

.sg-mobile-banner__copy {
  position: absolute;
  z-index: 3;
  top: 28.08%;
  left: calc(2.15% + 30px);
  width: calc(39.37% - 60px);
  max-width: none;
}

.sg-mobile-banner h2 {
  font-size: clamp(42px, 3.6vw, 60px);
  line-height: .9333;
  letter-spacing: normal;
  font-variation-settings: "wght" 700, "wdth" 100;
}

.sg-mobile-banner__copy > p {
  max-width: none;
  margin: clamp(18px, 1.2vw, 23px) 0 clamp(18px, 1.15vw, 22px);
  color: var(--sg-black);
  font-size: clamp(14px, calc(1.125vw - 1.6px), 20px);
  line-height: 1.3;
  font-variation-settings: "wght" 500, "wdth" 100;
}

/* Unico botao do desenho com texto escuro e borda propria. O verde do
   .sg-button--green fica atras da superficie do brilho e nao aparece mais;
   e o --sg-glow-surface que pinta o fundo. A borda continua preta no hover:
   aqui o unico estado novo e o halo por tras. */
.sg-mobile-banner .sg-button {
  --sg-glow-surface: var(--sg-green-button);
  --sg-glow-radius: 8px;
  --sg-glow-border: var(--sg-black);
  --sg-glow-border-hover: var(--sg-black);
  min-height: clamp(40px, 2.9vw, 48px);
  padding: 8px 20px;
  color: var(--sg-black);
  font-size: clamp(16px, 1.2vw, 20px);
  font-variation-settings: "wght" 700, "wdth" 100;
}

.sg-mobile-banner__visual {
  position: absolute;
  z-index: 1;
  inset: 0;
  pointer-events: none;
}

.sg-mobile-banner__map {
  position: absolute;
  z-index: 1;
  top: 5.05%;
  left: 61.52%;
  width: 36.39%;
  max-width: none;
}

.sg-mobile-banner__person {
  position: absolute;
  z-index: 2;
  top: auto;
  bottom: 17.19%;
  left: 42.78%;
  width: 20%;
  height: 81.39%;
  aspect-ratio: 316 / 516;
  max-width: none;
  object-fit: contain;
  object-position: center bottom;
}

.sg-solutions {
  padding: 80px 0;
}

.sg-solutions .sg-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 35px;
}

.sg-solutions .sg-section-heading {
  max-width: none;
  margin: 0;
}

.sg-solutions .sg-section-heading h2 {
  font-size: 60px;
  line-height: 1;
  letter-spacing: normal;
}

.sg-solutions .sg-section-heading p {
  margin-top: 22px;
  font-size: 22px;
  line-height: 1;
}

.sg-solutions__grid {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 34px;
}

.sg-solution-card {
  display: flex;
  width: 260px;
  flex-direction: column;
  align-items: center;
  transition: transform .25s ease, box-shadow .25s ease;
}

.sg-solution-card:hover,
.sg-solution-card:focus-visible {
  transform: translateY(-6px);
}

/* Mesma regra do Bootstrap descrita junto ao .sg-button. O cartao nao declara
   cor propria: herda --sg-text e precisa continuar herdando. */
.sg-solution-card:hover,
.sg-solution-card:focus-visible,
.sg-solution-card:active {
  color: inherit;
}

.sg-solution-card__image {
  display: flex;
  align-items: center;
  justify-content: center;
}

.sg-solution-card__image img {
  display: block;
  max-width: none;
  object-fit: contain;
}

.sg-solution-card:nth-child(1) {
  gap: 13px;
}

.sg-solution-card:nth-child(1) .sg-solution-card__image {
  width: 140px;
  height: 146px;
}

.sg-solution-card:nth-child(1) .sg-solution-card__image img {
  width: 131px;
  height: 137px;
  transform: rotate(-4deg);
}

.sg-solution-card:nth-child(2) {
  gap: 30px;
}

.sg-solution-card:nth-child(2) .sg-solution-card__image {
  width: 140px;
  height: 111px;
}

.sg-solution-card:nth-child(2) .sg-solution-card__image img {
  width: 140px;
  height: 111px;
}

.sg-solution-card:nth-child(3) {
  gap: 15px;
}

.sg-solution-card:nth-child(3) .sg-solution-card__image {
  width: 95px;
  height: 142px;
}

.sg-solution-card:nth-child(3) .sg-solution-card__image img {
  width: 58px;
  height: 130px;
  transform: rotate(-17.4deg);
}

.sg-solution-card:nth-child(4) {
  gap: 27px;
}

.sg-solution-card:nth-child(4) .sg-solution-card__image {
  width: 146px;
  height: 115px;
}

.sg-solution-card:nth-child(4) .sg-solution-card__image img {
  width: 146px;
  height: 115px;
}

.sg-solution-card__body {
  display: flex;
  box-sizing: border-box;
  width: 100%;
  min-height: 149px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 25px 16px;
  border: 2px solid var(--sg-green);
  border-radius: 30px;
  background: var(--sg-white);
  color: var(--sg-black);
  text-align: center;
}

.sg-solution-card__body strong {
  font-size: 26px;
  line-height: .8462;
  letter-spacing: normal;
  font-variation-settings: "wght" 700;
}

.sg-solution-card__description {
  font-size: 16px;
  line-height: 1;
  font-variation-settings: "wght" 500;
}

.sg-near {
  padding: clamp(100px, 8.5vw, 160px) 0;
  background: var(--sg-white);
}

/* O bloco deixou de ser um cartao cinza e virou uma faixa laranja com foto.
   O #ff7700 vem do Figma e nao coincide com nenhum token: o --sg-orange do
   rodape e #ff6500 e o --sg-orange-button e #ff7a00. Fica literal em vez de
   torcer um token existente para um valor que nao e o dele. */
.sg-near__grid {
  display: grid;
  /* As proporcoes sao as duas colunas do Figma, 660 e 591, escritas como
     fracao para continuarem valendo em qualquer largura. */
  grid-template-columns: minmax(0, 660fr) minmax(0, 591fr);
  align-items: center;
  gap: clamp(40px, 5.5vw, 80px);
  padding: clamp(40px, 5.5vw, 80px);
  border-radius: 40px;
  background: #ff7700;
}

.sg-near #titulo-proximidade {
  font-size: 60px;
  line-height: 1;
  letter-spacing: -.02em;
}

.sg-near__content .sg-section-heading p {
  max-width: 464px;
  font-size: 20px;
  line-height: 1;
  letter-spacing: -.02em;
  font-variation-settings: "wght" 500;
}

.sg-near__features {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 25px;
}

/* Fundo transparente: sobre o laranja, o cartao e so o contorno verde. */
.sg-feature-card {
  display: grid;
  grid-template-columns: 102px 1fr;
  align-items: center;
  gap: 15px;
  padding: 20px;
  border: 1px solid var(--sg-green);
  border-radius: 20px;
  background: transparent;
}

.sg-feature-card img {
  width: 102px;
  height: 95px;
  object-fit: contain;
}

.sg-feature-card h3 {
  margin: 0 0 6px;
  color: var(--sg-black);
  font-size: 20px;
  line-height: 1;
  letter-spacing: -.02em;
  font-variation-settings: "wght" 700;
}

.sg-feature-card p {
  margin: 0;
  font-size: 16px;
  line-height: 1.0625;
  letter-spacing: -.02em;
}

/* Preenche a altura da linha em vez de repetir os 599px do Figma: a coluna
   da esquerda cresce com o texto, e uma altura fixa deixaria sobra de um lado
   ou do outro conforme a largura da tela. */
.sg-near__photo {
  width: 100%;
  height: 100%;
  min-height: 460px;
  border-radius: 47px;
  object-fit: cover;
}













@media (max-width: 1847px) {
  .sg-hero__grid {
    grid-template-columns: minmax(0, .898fr) minmax(0, 1fr);
    gap: clamp(18px, 1.3vw, 25px);
  }

  .sg-hero__copy,
  .sg-hero__media,
  .sg-eyebrow,
  .sg-hero__copy h1 {
    width: 100%;
  }

  .sg-hero__copy h1 {
    min-height: 0;
  }

  .sg-hero__media {
    height: auto;
    aspect-ratio: 926 / 460;
  }
}

@media (max-width: 1240px) {

  .sg-plans__scroll {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .sg-plans__scroll::-webkit-scrollbar {
    display: none;
  }

  .sg-plans__grid {
    width: max-content;
    justify-content: flex-start;
    padding: 18px 18px 24px 0;
  }

  .sg-plan-card {
    scroll-snap-align: start;
  }

  .sg-solutions__grid {
    flex-wrap: wrap;
    row-gap: 48px;
  }

  /* Uma coluna so: a foto sobe para o topo, como no layout de celular. */
  .sg-near__grid {
    grid-template-columns: 1fr;
  }

  .sg-near__photo {
    order: -1;
    min-height: 0;
    aspect-ratio: 16 / 9;
  }
}

@media (max-width: 1020px) {
  /* O teto acompanha os 60px do desktop. Ficou em 70px de quando a base era
     70: entre 875px e 1020px de tela o titulo saia maior aqui do que no
     desktop, que e o contrario do que a escala deveria fazer. */
  .sg-near #titulo-proximidade {
    font-size: clamp(40px, 5.9vw, 60px);
  }




  .sg-hero__grid,
  .sg-steps__grid {
    grid-template-columns: 1fr;
  }

  .sg-hero__copy {
    width: 100%;
    max-width: 760px;
  }

  .sg-hero__media {
    width: 100%;
    height: auto;
    aspect-ratio: 926 / 460;
  }

  .sg-steps__heading {
    min-height: 430px;
  }

  .sg-steps__heading h2 {
    max-width: 780px;
  }

  .sg-steps__glow {
    left: 28%;
    width: 780px;
  }

  .sg-steps__content {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 50px;
  }

  .sg-step h3 {
    font-size: 34px;
  }

  .sg-mobile-banner__grid {
    display: grid;
    min-height: 0;
    aspect-ratio: auto;
    grid-template-columns: 1fr;
    grid-template-rows: auto 520px;
    align-items: start;
    padding: 86px 52px 0;
  }

  .sg-mobile-banner__grid::before,
  .sg-mobile-banner__grid::after {
    top: 0;
    height: 100%;
  }

  .sg-mobile-banner__copy {
    position: relative;
    top: auto;
    left: auto;
    width: 100%;
    max-width: 760px;
  }

  .sg-mobile-banner h2 {
    font-size: clamp(48px, 7.2vw, 60px);
  }

  .sg-mobile-banner__copy > p {
    max-width: 640px;
    margin: 22px 0 28px;
    font-size: 16px;
  }

  .sg-mobile-banner .sg-button {
    min-height: 48px;
    font-size: 18px;
  }

  .sg-mobile-banner__visual {
    position: relative;
    inset: auto;
    width: 100%;
    min-height: 520px;
  }

  .sg-mobile-banner__map {
    top: 50%;
    left: 60%;
    width: min(680px, 95%);
    transform: translate(-50%, -50%);
  }

  .sg-mobile-banner__person {
    top: auto;
    right: auto;
    bottom: 0;
    left: 8%;
    width: min(38%, 300px);
    height: auto;
    object-fit: contain;
  }

}

@media (max-width: 700px) {
  :where(main#conteudo) .sg-container {
    width: min(calc(100% - 36px), var(--sg-container));
  }

  .sg-hero {
    padding: 58px 0 76px;
  }

  .sg-hero__grid {
    gap: 42px;
  }

  .sg-eyebrow {
    width: 100%;
    height: auto;
    max-width: 310px;
    font-size: 15px;
    line-height: 1.35;
  }

  .sg-hero__copy h1 {
    width: 100%;
    min-height: 0;
    font-size: clamp(40px, 11.4vw, 64px);
    line-height: .94;
  }

  .sg-hero__copy .sg-button {
    width: 100%;
    margin: 30px 0 0;
  }

  .sg-hero__media {
    aspect-ratio: 1.02 / 1;
    border-radius: 24px;
  }

  .sg-hero__media img {
    object-position: 42% center;
  }

  .sg-steps {
    padding: 78px 0 94px;
  }

  .sg-steps__heading {
    min-height: 360px;
  }

  .sg-steps__heading h2,
  .sg-section-heading h2 {
    font-size: clamp(46px, 13vw, 62px);
  }

  .sg-mobile-banner h2 {
    font-size: clamp(44px, 12vw, 56px);
  }

  .sg-solutions .sg-section-heading h2 {
    font-size: clamp(42px, 11.5vw, 54px);
  }

  .sg-steps__glow {
    left: 43%;
    width: 620px;
  }

  .sg-steps__content {
    grid-template-columns: 1fr;
    gap: 76px;
  }

  .sg-step h3 {
    max-width: 100%;
    font-size: 30px;
  }

  .sg-step {
    max-width: 100%;
    overflow: hidden;
  }

  .sg-marquee {
    width: calc(100% + 18px);
  }

  .sg-marquee__set {
    gap: 18px;
    padding-right: 18px;
  }

  .sg-marquee__set img,
  .sg-speed-chip {
    width: 92px;
    height: 92px;
  }

  .sg-plans {
    padding: 86px 0 104px;
  }

  .sg-section-heading {
    margin-bottom: 46px;
    text-align: left;
  }

  .sg-section-heading p {
    margin-top: 14px;
    font-size: 17px;
  }

  .sg-plans__scroll {
    width: calc(100% + 18px);
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .sg-plans__scroll::-webkit-scrollbar {
    display: none;
  }

  .sg-plans__grid {
    display: flex;
    width: max-content;
    gap: 16px;
    align-items: flex-end;
    justify-content: flex-start;
    padding: 18px 18px 24px 0;
  }

  .sg-plan-card {
    flex: none;
    scroll-snap-align: start;
  }

  .sg-plans .sg-section-heading h2 {
    font-size: 46px;
    line-height: 48px;
    white-space: normal;
  }

  .sg-mobile-banner__grid {
    width: min(calc(100% - 28px), var(--sg-container));
    min-height: 0;
    grid-template-rows: auto 390px;
    padding: 54px 22px 0;
    border-radius: 30px;
  }

  .sg-mobile-banner__copy > p {
    margin: 22px 0 28px;
    font-size: 16px;
  }

  .sg-mobile-banner__visual {
    min-height: 390px;
  }

  .sg-mobile-banner__map {
    top: 48%;
    left: 56%;
    width: 116%;
  }

  .sg-mobile-banner__person {
    right: auto;
    left: 7%;
    width: min(45%, 220px);
  }

  .sg-solutions {
    padding: 80px 0 92px;
  }

  .sg-solutions .sg-container {
    gap: 38px;
  }

  .sg-solutions .sg-section-heading h2 {
    font-size: clamp(42px, 11.5vw, 54px);
    line-height: .98;
  }

  .sg-solutions .sg-section-heading p {
    margin-top: 18px;
    font-size: 17px;
    line-height: 1.15;
  }

  .sg-solutions__grid {
    width: 100%;
    flex-direction: column;
    align-items: center;
    gap: 48px;
  }

  .sg-solution-card {
    width: min(280px, 100%) !important;
  }

  .sg-near {
    padding: 84px 0;
  }

  .sg-near__features {
    grid-template-columns: 1fr;
  }

  .sg-feature-card {
    grid-template-columns: 78px 1fr;
  }

  .sg-feature-card img {
    width: 78px;
    height: 78px;
  }

  .sg-near__photo {
    border-radius: 24px;
  }

  .sg-near__grid {
    width: min(calc(100% - 28px), var(--sg-container));
    padding: 28px 18px;
    border-radius: 30px;
  }


}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
  }

  .sg-marquee {
    overflow-x: auto;
    mask-image: none;
  }

  .sg-marquee__set[aria-hidden="true"] {
    display: none;
  }
}
