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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  color: #000;
  background: #f8f7fc;
  overflow-x: hidden;
}

a {
  text-decoration: none;
}

p {
  line-height: 1.65;
}

img {
  max-width: 100%;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 18px;
  line-height: 1;
  height: 51px;
  min-width: 205px;
  padding: 0 28px;
  border-radius: 8px 20px 8px 20px;
  cursor: pointer;
  border: none;
  text-decoration: none;
  transition: opacity 0.2s, transform 0.15s;
  white-space: nowrap;
}
.btn:hover {
  opacity: 0.88;
}
.btn:active {
  transform: scale(0.97);
}
.btn--green {
  background: #19a361;
  color: #fff;
}
.btn--orange {
  background: #99045b;
  color: #fff;
}
.btn--outline {
  background: transparent;
  color: #02154B;
  border: 2px solid #02154B;
  min-width: 185px;
  height: 46px;
  font-size: 16px;
}

.s-title {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
}
.s-title--pink {
  color: #02154B;
}
.s-title--white {
  color: #fff;
}
.s-title--center {
  text-align: center;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: #f8f7fc;
  width: 100%;
}

.header-inner {
  display: flex;
  align-items: center;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 62px;
  height: 124px;
  gap: 40px;
}

.header-logo {
  flex-shrink: 0;
}
.header-logo img {
  width: 200px;
  height: auto;
  display: block;
}

.header-nav {
  flex: 1;
}
.header-nav ul {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
}
.header-nav a {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 16px;
  color: #02154B;
  white-space: nowrap;
  position: relative;
}
.header-nav a::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: #02154B;
  transition: width 0.25s;
}
.header-nav a:hover::after {
  width: 100%;
}

.header-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  border: none;
  background: transparent;
  margin-left: auto;
}
.header-hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: #02154B;
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.header-hamburger.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.header-hamburger.is-open span:nth-child(2) {
  opacity: 0;
}
.header-hamburger.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.s-hero {
  display: flex;
  background: #f8f7fc;
  overflow: hidden;
  max-width: 1440px;
  padding-bottom: 50px;
  margin: 0 auto;
  width: 90%;
}

.s-hero-wrap {
  background: #f8f7fc;
  overflow: hidden;
}

.hero-left {
  position: relative;
  z-index: 2;
  flex-shrink: 0;
  width: 680px;
  padding: 100px 0 100px 0;
  display: flex;
  flex-direction: column;
}

.hero-tag {
  display: inline-block;
  background: rgba(48, 93, 216, 0.5);
  border-radius: 50px;
  padding: 5px 18px;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: #02154B;
  width: fit-content;
  margin-bottom: 22px;
}

.hero-left h1 {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 32px;
  line-height: 42px;
  color: #02154B;
  margin-bottom: 28px;
}

.hero-desc {
  font-size: 16px;
  color: #434343;
  margin-bottom: 32px;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}

.hero-video-link {
  font-size: 16px;
  color: #000;
  text-decoration: underline;
  text-underline-offset: 3px;
  white-space: nowrap;
}

.hero-badges {
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: absolute;
  bottom: 15%;
  left: -80px;
  z-index: 5;
}

.hero-badge {
  background: #fff;
  border-radius: 15px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 24px 50px 24px 30px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.07);
}
.hero-badge img {
  width: 48px !important;
  height: 48px !important;
  flex-shrink: 0;
}
.hero-badge span {
  font-size: 15px;
  color: rgb(0, 16, 61);
  line-height: 1.3;
  display: block;
}
.hero-badge.hero-badge--lg {
  transform: scale(1.2);
  transform-origin: bottom left;
}

.hero-right {
  position: absolute;
  width: 40vw;
  right: 0;
  height: 100%;
}
.hero-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.s-desafios {
  position: relative;
  background: rgb(0, 16, 61);
  border-radius: 40px 40px 0 0;
  padding: 100px 0;
}
.s-desafios:after {
  width: 115px;
  height: 42px;
  content: "";
  background: url(../images/arrow-detail.svg);
  position: absolute;
  left: 50%;
  top: 0;
  transform: translate(-50%, -100%);
  z-index: 5;
}

.s-desafios__inner {
  max-width: 1440px;
  margin: 0 auto;
  width: 100%;
  padding: 0 62px;
}

.s-desafios .s-title {
  font-size: 36px;
  line-height: 40px;
  margin-bottom: 64px;
  text-align: center;
}

.desafios-row {
  display: flex;
  align-items: flex-start;
  gap: 64px;
  margin: 120px 0;
  align-items: center;
}
.desafios-row--flip {
  flex-direction: row-reverse;
}

.desafios-col--text {
  flex: 1;
  min-width: 0;
  color: #fff;
  font-size: 16px;
  line-height: 1.7;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-top: 48px;
}
.desafios-col--text a.btn {
  margin-top: 28px;
}
.desafios-col--img {
  position: relative;
  flex-shrink: 0;
  width: 580px;
}

.desafios-dashed-rect {
  position: absolute;
  border-radius: 25px;
  border: 3px dashed #305dd8;
  width: 300px;
  height: 220px;
  pointer-events: none;
  z-index: 0;
}
.desafios-dashed-rect--tr {
  top: -22px;
  left: -22px;
}
.desafios-dashed-rect--bl {
  bottom: 74px;
  right: -22px;
}

.img-box {
  position: relative;
  overflow: hidden;
}
.img-box img {
  display: block;
  width: 100%;
  height: 420px;
  object-fit: cover;
}
.img-box--border {
  border-radius: 30px;
  border: 10px solid rgb(0, 16, 61);
}
.img-box--rounded {
  border-radius: 25px;
}
.img-box--material {
  border-radius: 25px;
}
.img-box--material img {
  height: 420px;
}

.img-overlay {
  position: absolute;
  inset: 0;
  border-radius: inherit;
}

.desafios-blur-1 {
  position: absolute;
  top: -10px;
  right: -10px;
  width: 88px;
  height: 90px;
  border-radius: 8px;
  background: rgba(255, 233, 243, 0.5);
  backdrop-filter: blur(5px);
  box-shadow: 0 13px 16px rgba(0, 0, 0, 0.11);
  pointer-events: none;
  z-index: 5;
}

.desafios-blur-2 {
  position: absolute;
  top: 30px;
  right: 30px;
  width: 66px;
  height: 67px;
  border-radius: 8px;
  background: rgba(2, 21, 75, 0.5);
  backdrop-filter: blur(5px);
  box-shadow: 0 13px 16px rgba(0, 0, 0, 0.11);
  pointer-events: none;
  z-index: 5;
}

.desafios-dashed-small {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 118px;
  height: 118px;
  border-radius: 50%;
  border: 3px dashed #305dd8;
  pointer-events: none;
  z-index: 5;
  transform: translate(30%, 30%);
}

.s-abordagem {
  background: #f8f7fc;
  padding: 170px 0;
}

.s-abordagem__inner {
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  gap: 120px;
  align-items: flex-start;
  width: 100%;
  padding: 0 62px;
}

.abordagem-col--left {
  flex: 1;
  max-width: 469px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.abordagem-col--left .s-title {
  font-size: 36px;
  line-height: 40px;
}
.abordagem-col--left p {
  font-size: 16px;
  line-height: 1.65;
}
.abordagem-col--left strong {
  font-weight: 700;
}
.abordagem-col--right {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 44px;
}

.abordagem-item {
  display: flex;
  align-items: flex-start;
  gap: 22px;
}

.abordagem-item__icon {
  position: relative;
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background-color: #02154B;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.abordagem-item__icon .abordagem-icon-bg {
  position: absolute;
  inset: 0;
  background: #02154B;
  border-radius: 9px;
}
.abordagem-item__icon img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 8px;
  filter: brightness(0) invert(1);
}

.abordagem-item__body {
  flex: 1;
  min-width: 0;
}
.abordagem-item__body h3 {
  font-size: 36px;
  line-height: 40px;
  color: #02154B;
  font-weight: 600;
  margin-bottom: 14px;
}
.abordagem-item__body p {
  font-size: 16px;
  line-height: 1.65;
}

.s-porque {
  position: relative;
  background: #236688;
  border-radius: 40px 40px 0 0;
  padding: 120px 0;
  z-index: 1;
}

.s-porque__inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 62px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}
.s-porque__inner .s-title {
  font-size: 36px;
  line-height: 40px;
}
.s-porque__inner p {
  font-size: 16px;
  line-height: 1.7;
  color: #fff;
  text-align: center;
  max-width: 766px;
}
.s-porque__inner strong {
  font-weight: 700;
}

.s-diferencial {
  background: #f8f7fc;
  padding: 80px 0 100px;
}

.s-diferencial__inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 62px;
}
.s-diferencial__inner > .s-title {
  font-size: 36px;
  line-height: 40px;
  margin-bottom: 56px;
}

.diferencial-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.diferencial-card {
  border: 2px solid #02154B;
  border-radius: 25px;
  padding: 40px 48px;
  min-height: 350px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.diferencial-card h3 {
  font-weight: 600;
  font-size: 24px;
  color: #02154B;
  line-height: 1.2;
}
.diferencial-card p {
  font-size: 16px;
  line-height: 1.65;
}
.diferencial-card strong {
  font-weight: 700;
}

.s-material {
  position: relative;
  background: #236688;
  border-radius: 40px 40px 0 0;
  padding: 140px 0 140px 0;
  overflow: hidden;
}

.s-material__inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 62px;
}
.s-material__inner > .s-title {
  text-align: center;
  font-size: 36px;
  line-height: 40px;
  margin-bottom: 76px;
}

.material-layout {
  display: flex;
  gap: 72px;
  align-items: flex-start;
}

.material-text {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 22px;
  color: #fff;
  font-size: 16px;
  line-height: 1.7;
}
.material-text strong {
  font-weight: 700;
}
.material-text .btn {
  margin-top: 10px;
}

.material-image {
  position: relative;
  flex-shrink: 0;
  width: 580px;
  padding-bottom: 60px;
  padding-top: 24px;
}
.material-image img {
  position: relative;
  z-index: 4;
}

.material-dashed-rect {
  position: absolute;
  top: 0;
  left: -24px;
  width: 300px;
  height: 220px;
  border-radius: 25px;
  border: 3px dashed #85d6ff;
  pointer-events: none;
  z-index: 1;
}

.material-cambridge-card {
  position: absolute;
  bottom: 0;
  left: -24px;
  background: #fff;
  border-radius: 15px;
  padding: 14px 20px;
  width: 248px;
  height: 83px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.14);
  z-index: 5;
}
.material-cambridge-card img {
  width: 182px;
  height: auto;
  object-fit: contain;
}

.material-blur-1 {
  position: absolute;
  top: 16px;
  right: -16px;
  width: 88px;
  height: 90px;
  border-radius: 8px;
  background: rgba(255, 233, 243, 0.5);
  backdrop-filter: blur(5px);
  box-shadow: 0 13px 16px rgba(0, 0, 0, 0.11);
  pointer-events: none;
  z-index: 5;
}

.material-blur-2 {
  position: absolute;
  top: 50px;
  right: 20px;
  width: 66px;
  height: 67px;
  border-radius: 8px;
  background: rgba(35, 102, 136, 0.6);
  backdrop-filter: blur(5px);
  box-shadow: 0 13px 16px rgba(0, 0, 0, 0.11);
  pointer-events: none;
  z-index: 6;
}

.s-resultados {
  position: relative;
  background: #02154B;
  border-radius: 40px 40px 0 0;
  margin-top: -40px;
  padding: 100px 0 120px;
}

.s-resultados__inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 62px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.s-resultados__inner > .s-title {
  font-size: 36px;
  line-height: 40px;
  align-self: flex-start;
  margin-bottom: 8px;
  text-align: center;
  width: 100%;
}
.s-resultados__inner p {
  font-size: 16px;
  line-height: 1.7;
  color: #fff;
  text-align: center;
  max-width: 822px;
}
.s-resultados__inner p strong {
  font-weight: 700;
}
.s-resultados__inner .btn {
  margin-top: 20px;
}

.s-contato {
  background: #f8f7fc;
  padding: 100px 0 80px;
}

.s-contato__inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 62px;
  display: flex;
  gap: 72px;
  align-items: flex-start;
}

.contato-info {
  width: 486px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.contato-info > .s-title {
  font-size: 40px;
  line-height: 46px;
}
.contato-info p {
  font-size: 16px;
  line-height: 1.65;
}
.contato-info p strong {
  font-weight: 700;
}

.contato-socials {
  display: flex;
  gap: 14px;
  align-items: center;
}

.contato-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  transition: opacity 0.2s;
}
.contato-social-link:hover {
  opacity: 0.7;
}
.contato-social-link img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: brightness(0) saturate(100%) invert(12%) sepia(80%) saturate(1200%) hue-rotate(295deg) brightness(70%);
}

.contato-logo {
  margin-top: 8px;
}
.contato-logo img {
  width: 178px;
  height: auto;
}

.contato-form {
  flex: 1;
  min-width: 0;
}
.contato-form form {
  display: flex;
  flex-direction: column;
}

.form-field {
  border-bottom: 1px solid #ae9d9d;
  height: 42px;
  display: flex;
  align-items: center;
  margin-bottom: 22px;
}
.form-field input,
.form-field select {
  width: 100%;
  border: none;
  background: transparent;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  color: rgba(0, 0, 0, 0.5);
  text-transform: uppercase;
  outline: none;
  letter-spacing: 0.03em;
  padding: 0 8px;
  appearance: none;
  cursor: pointer;
}
.form-field input::placeholder,
.form-field select::placeholder {
  color: rgba(0, 0, 0, 0.5);
}
.form-field input:focus + label, .form-field input:not(:placeholder-shown) + label,
.form-field select:focus + label,
.form-field select:not(:placeholder-shown) + label {
  opacity: 0;
}
.form-field input option,
.form-field select option {
  text-transform: none;
  color: #000;
}
.form-field input option[value=""],
.form-field select option[value=""] {
  color: rgba(0, 0, 0, 0.5);
}

.contato-form .btn {
  margin-top: 16px;
}

.site-footer {
  background: #f8f7fc;
  padding-top: 48px;
}

.footer-bar {
  max-width: 816px;
  margin: 0 auto;
  height: 49px;
  background: #02154B;
  border-radius: 40px 40px 0 0;
}

@media (max-width: 1280px) {
  .header-inner {
    padding: 0 40px;
    gap: 28px;
  }
  .header-nav ul {
    gap: 28px;
  }
  .header-logo img {
    width: 180px;
  }
  .s-hero {
    min-height: 760px;
  }
  .hero-left {
    width: 480px;
    padding-left: 40px;
  }
  .hero-right {
    width: 740px;
  }
  .hero-person {
    width: 700px;
  }
  .hero-blue-shape {
    width: 480px;
  }
  .s-desafios__inner,
  .s-abordagem__inner,
  .s-porque__inner,
  .s-diferencial__inner,
  .s-material__inner,
  .s-resultados__inner,
  .s-contato__inner {
    padding: 0 40px;
  }
  .desafios-col--img {
    width: 480px;
  }
  .material-image {
    width: 480px;
  }
}
@media (max-width: 1024px) {
  .header-inner {
    padding: 0 32px;
    height: 90px;
    gap: 20px;
  }
  .header-logo img {
    width: 160px;
  }
  .header-nav ul {
    gap: 16px;
  }
  .header-nav a {
    font-size: 13px;
  }
  .btn--outline {
    min-width: 150px;
    font-size: 13px;
  }
  .s-hero-wrap {
    overflow: hidden;
  }
  .s-hero {
    flex-direction: column;
    min-height: auto;
    overflow: visible;
    max-width: 100%;
  }
  .hero-left {
    width: 100%;
    padding: 56px 32px 40px;
    z-index: 2;
  }
  .hero-right {
    position: relative;
    width: 100%;
    height: 460px;
    overflow: hidden;
  }
  .hero-blue-shape {
    top: 0;
    width: 60%;
    height: 100%;
    border-top-left-radius: 260px;
    right: 0;
  }
  .hero-dashed-circle {
    width: 180px;
    height: 180px;
    top: 60px;
    right: 16px;
  }
  .hero-person {
    position: absolute;
    width: auto;
    height: 100%;
    right: 0;
    top: 0;
    left: auto;
    transform: none;
  }
  .hero-badges {
    flex-direction: row;
    flex-wrap: wrap;
  }
  .hero-badge--lg,
  .hero-badge--sm {
    width: auto;
    min-width: 180px;
    height: 60px;
  }
  .hero-circular-text {
    display: none;
  }
  .hero-play-circle {
    display: none;
  }
  .hero-blur-card {
    display: none;
  }
  .s-desafios__inner {
    padding: 0 32px;
  }
  .desafios-row,
  .desafios-row--flip {
    flex-direction: column;
    gap: 36px;
    margin-bottom: 56px;
  }
  .desafios-col--img {
    width: 100%;
  }
  .desafios-col--text {
    padding-top: 0;
  }
  .desafios-blur-1,
  .desafios-blur-2,
  .desafios-dashed-small {
    display: none;
  }
  .s-abordagem__inner {
    padding: 0 32px;
    flex-direction: column;
    gap: 56px;
  }
  .abordagem-col--left {
    max-width: 100%;
  }
  .s-diferencial__inner {
    padding: 0 32px;
  }
  .diferencial-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .s-material__inner {
    padding: 0 32px;
  }
  .material-layout {
    flex-direction: column;
    gap: 48px;
  }
  .material-image {
    width: 100%;
    padding-bottom: 80px;
  }
  .material-blur-1,
  .material-blur-2 {
    display: none;
  }
  .s-resultados__inner {
    padding: 0 32px;
  }
  .s-contato__inner {
    padding: 0 32px;
    flex-direction: column;
    gap: 48px;
  }
  .contato-info {
    width: 100%;
  }
  .footer-bar {
    max-width: 80%;
  }
}
@media (max-width: 768px) {
  .header-inner {
    padding: 0 24px;
  }
  .header-nav {
    display: none;
    position: absolute;
    top: 90px;
    left: 0;
    right: 0;
    background: #f8f7fc;
    padding: 24px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    z-index: 99;
    border-top: 1px solid rgba(2, 21, 75, 0.1);
  }
  .header-hamburger {
    display: flex;
  }
  .header-nav.is-open {
    display: block;
  }
  .header-nav.is-open ul {
    flex-direction: column;
    gap: 0;
    align-items: flex-start;
  }
  .header-nav.is-open li {
    border-bottom: 1px solid rgba(2, 21, 75, 0.1);
  }
  .header-nav.is-open a {
    display: block;
    padding: 14px 0;
    font-size: 16px;
  }
  .btn--outline {
    display: none;
  }
  .s-desafios,
  .s-material {
    padding-top: 64px;
    padding-bottom: 72px;
  }
  .s-abordagem {
    padding: 72px 0;
  }
  .s-porque {
    padding: 72px 0 88px;
  }
  .s-diferencial {
    padding: 64px 0 80px;
  }
  .s-resultados {
    padding: 72px 0 88px;
  }
  .s-contato {
    padding: 72px 0 60px;
  }
  .s-desafios__inner,
  .s-abordagem__inner,
  .s-porque__inner,
  .s-diferencial__inner,
  .s-material__inner,
  .s-resultados__inner,
  .s-contato__inner {
    padding: 0 24px;
  }
  .s-desafios .s-title,
  .s-title {
    font-size: 28px;
    line-height: 34px;
  }
  .s-diferencial__inner > .s-title {
    font-size: 28px;
    margin-bottom: 36px;
  }
  .s-material__inner > .s-title {
    font-size: 28px;
  }
  .s-resultados__inner > .s-title {
    font-size: 28px;
  }
  .s-porque__inner .s-title {
    font-size: 28px;
  }
  .abordagem-item__body h3 {
    font-size: 26px;
    line-height: 32px;
  }
  .hero-right {
    height: 380px;
  }
  .hero-left {
    padding: 48px 24px 32px;
  }
  .hero-left h1 {
    font-size: 22px;
    line-height: 30px;
  }
  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }
  .btn {
    min-width: 200px;
    font-size: 16px;
    height: 48px;
  }
  .diferencial-card {
    padding: 32px 28px;
    min-height: auto;
  }
  .contato-info > .s-title {
    font-size: 30px;
    line-height: 38px;
  }
  .footer-bar {
    max-width: 85%;
  }
}
@media (max-width: 480px) {
  .header-inner {
    height: 68px;
    padding: 0 20px;
  }
  .header-logo img {
    width: 130px;
  }
  .header-nav {
    top: 68px;
  }
  .hero-left {
    padding: 32px 20px 28px;
  }
  .hero-left h1 {
    font-size: 20px;
    line-height: 27px;
  }
  .hero-desc {
    font-size: 15px;
  }
  .hero-right {
    height: 320px;
  }
  .hero-person {
    width: 340px;
  }
  .s-desafios__inner,
  .s-abordagem__inner,
  .s-porque__inner,
  .s-diferencial__inner,
  .s-material__inner,
  .s-resultados__inner,
  .s-contato__inner {
    padding: 0 20px;
  }
  .s-desafios .s-title,
  .s-title {
    font-size: 24px;
    line-height: 30px;
  }
  .s-desafios {
    padding-top: 52px;
    padding-bottom: 56px;
  }
  .s-porque {
    padding: 56px 0 72px;
  }
  .s-diferencial {
    padding: 52px 0 64px;
  }
  .s-material {
    padding-top: 56px;
    padding-bottom: 80px;
  }
  .s-resultados {
    padding: 56px 0 72px;
  }
  .s-contato {
    padding: 56px 0 52px;
  }
  .btn {
    min-width: unset;
    width: 100%;
    font-size: 15px;
    height: 46px;
  }
  .hero-actions .btn {
    width: auto;
  }
  .hero-badge--lg,
  .hero-badge--sm {
    height: 56px;
    width: auto;
  }
  .img-box img, .img-box--material img {
    height: 280px;
  }
  .diferencial-card {
    padding: 26px 20px;
  }
  .material-cambridge-card {
    position: static;
    margin-top: 20px;
    width: 100%;
  }
  .abordagem-item {
    flex-direction: column;
    gap: 14px;
  }
  .abordagem-item__body h3 {
    font-size: 22px;
    line-height: 28px;
  }
  .contato-info > .s-title {
    font-size: 26px;
    line-height: 32px;
  }
  .footer-bar {
    max-width: 78%;
  }
  .s-porque__inner p {
    text-align: left;
  }
  .s-resultados__inner p {
    text-align: left;
  }
  .header-logo svg {
    width: 150px;
  }
  .contato-logo {
    display: none;
  }
}

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