:root {
  --commercial-green: #009879;
  --commercial-green-dark: #006f5d;
  --commercial-green-deep: #005f51;
  --commercial-ink: #222222;
  --commercial-muted: #3f3f3f;
  --commercial-soft: #eeeeee;
  --commercial-line: #d5d5d5;
}

.commercial-page {
  min-width: 0;
  margin: 0;
  color: var(--commercial-ink);
  background: #ffffff;
  font-family: "Montserrat", Arial, Helvetica, sans-serif;
}

.commercial-container {
  width: min(100% - 40px, 1000px);
  margin-inline: auto;
}

.commercial-page .commercial-button {
  display: inline-flex;
  min-width: 178px;
  height: 36px;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border: 0;
  border-radius: 5px;
  color: #ffffff;
  background: var(--commercial-green);
  cursor: pointer;
  font: inherit;
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.commercial-button:hover,
.commercial-button:focus-visible {
  background: var(--commercial-green-dark);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.14);
  transform: translateY(-1px);
}

.commercial-page .commercial-button--light {
  min-width: 224px;
  height: 44px;
  border-radius: 6px;
  color: var(--commercial-green);
  background: #ffffff;
  font-size: 16px;
}

.commercial-button--light:hover,
.commercial-button--light:focus-visible {
  color: var(--commercial-green-dark);
  background: #ffffff;
}

/* Mantem o cabecalho dentro do mesmo banner principal usado pela home. */
.commercial-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 4;
  color: #ffffff;
  background: transparent;
}

.commercial-header__inner {
  display: flex;
  min-height: 0;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 50px 66px 0;
}

.commercial-header__logo img {
  width: 165px;
  height: auto;
}

.commercial-header__link {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.commercial-header__link:hover,
.commercial-header__link:focus-visible {
  text-decoration: underline;
}

.commercial-breadcrumb {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.commercial-breadcrumb a {
  color: inherit;
}

.commercial-breadcrumb a:hover,
.commercial-breadcrumb a:focus-visible {
  color: #ffffff;
}

.commercial-hero {
  position: relative;
  height: clamp(720px, 100vh, 920px);
  min-height: 720px;
  overflow: hidden;
  color: #ffffff;
  background-color: #073f39;
  background-image:
    linear-gradient(90deg, rgba(0, 152, 121, 0.88) 0%, rgba(0, 152, 121, 0.76) 31%, rgba(0, 152, 121, 0.35) 54%, rgba(0, 152, 121, 0) 73%),
    linear-gradient(180deg, rgba(0, 64, 54, 0.08), rgba(0, 64, 54, 0.18)),
    url("../images/hero-building.jpg");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.commercial-hero__inner.commercial-container {
  width: 100%;
  min-height: inherit;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 0 66px 0 144px;
}

.commercial-hero h1 {
  text-transform: uppercase;
  max-width: 680px;
  margin: 0;
  font-size: clamp(36px, 4.1vw, 56px);
  font-weight: 900;
  line-height: 1.1;
}

.commercial-hero p {
  max-width: 620px;
  margin: 48px 0 24px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 20px;
  font-weight: 500;
  line-height: 1.35;
}

.commercial-products {
  padding: 66px 20px 120px;
}

.commercial-products__heading {
  text-align: center;
}

.commercial-products__heading h2 {
  margin: 0;
  color: var(--commercial-green);
  font-size: 38px;
  font-weight: 900;
  line-height: 1.15;
}

.commercial-products__heading p {
  margin: 27px 0 0;
  color: #434343;
  font-size: 14px;
  font-weight: 500;
}

.commercial-products__grid {
  display: flex;
  width: min(100%, 936px);
  flex-wrap: wrap;
  justify-content: center;
  gap: 42px 36px;
  margin: 45px auto 0;
}

.commercial-product-card {
  display: flex;
  width: 288px;
  min-height: 398px;
  flex: 0 0 288px;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid #cfcfcf;
  border-radius: 4px;
  background: #ffffff;
  transition: border-color 0.22s ease, box-shadow 0.22s ease, transform 0.22s ease;
}

.commercial-product-card:hover {
  border-color: rgba(0, 152, 121, 0.46);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.13);
  transform: translateY(-6px);
}

.commercial-product-card img {
  width: 100%;
  height: 174px;
  object-fit: cover;
  transition: transform 0.32s ease;
}

.commercial-product-card:hover img {
  transform: scale(1.04);
}

.commercial-product-card__body {
  display: flex;
  min-height: 224px;
  flex: 1;
  flex-direction: column;
  align-items: flex-start;
  padding: 42px 24px 24px;
}

.commercial-product-card h3 {
  margin: 0 0 24px;
  font-size: 14px;
  font-weight: 900;
  line-height: 1.15;
}

.commercial-product-card p {
  min-height: 58px;
  margin: 0;
  color: #4c4c4c;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.25;
}

.commercial-product-card .commercial-button {
  min-width: 92px;
  height: 34px;
  margin-top: auto;
  padding-inline: 17px;
  font-size: 12px;
}

.commercial-content {
  padding: 92px 0 28px;
}

.commercial-copy {
  max-width: 1000px;
}

.commercial-copy p,
.commercial-why__copy p,
.commercial-process p,
.commercial-conversion__question {
  margin: 0 0 30px;
  color: var(--commercial-muted);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.28;
}

.commercial-why {
  display: grid;
  grid-template-columns: 467px minmax(0, 1fr);
  gap: 48px;
  align-items: start;
  padding: 48px 0 124px;
}

.commercial-why__image {
  width: 467px;
  margin: 0;
  overflow: hidden;
  border-radius: 4px;
  background: var(--commercial-soft);
}

.commercial-why__image img {
  width: 467px;
  height: 429px;
  object-fit: cover;
}

.commercial-why__copy {
  padding-top: 3px;
}

.commercial-copy h2,
.commercial-why__copy h2,
.commercial-process h2,
.commercial-conversion h2 {
  margin: 0 0 36px;
  color: var(--commercial-green);
  font-size: 26px;
  font-weight: 900;
  line-height: 1.12;
}

.commercial-why__copy p {
  margin-bottom: 0;
}

.commercial-resale {
  padding: 0 0 82px;
}

.commercial-resale__heading {
  text-align: center;
}

.commercial-resale__heading h2 {
  margin: 0;
  color: var(--commercial-green);
  font-size: 39px;
  font-weight: 900;
  line-height: 1.15;
}

.commercial-resale__heading p {
  margin: 28px 0 0;
  color: #434343;
  font-size: 14px;
  font-weight: 500;
}

.commercial-resale__bars {
  width: min(100%, 690px);
  margin: 48px auto 0;
}

.commercial-resale__bars p {
  min-height: 49px;
  margin: 0 0 16px;
  padding: 16px 24px 14px;
  border-radius: 5px;
  color: #ffffff;
  background: var(--commercial-green);
  font-size: 12px;
  font-weight: 500;
  line-height: 1.2;
  transition: background 0.22s ease, box-shadow 0.22s ease, transform 0.22s ease;
}

.commercial-resale__bars p:hover {
  background: var(--commercial-green-dark);
  box-shadow: 0 10px 22px rgba(0, 111, 93, 0.22);
  transform: translateX(6px);
}

.commercial-resale__bars strong {
  font-weight: 900;
}

.commercial-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 390px));
  justify-content: center;
  gap: 50px;
  padding: 0 0 124px;
}

.commercial-card {
  min-height: 252px;
  overflow: hidden;
  border-radius: 2px;
  color: #ffffff;
  background: var(--commercial-green);
  transition: box-shadow 0.22s ease, transform 0.22s ease;
}

.commercial-card:hover {
  box-shadow: 0 13px 28px rgba(0, 0, 0, 0.14);
  transform: translateY(-6px);
}

.commercial-card h2 {
  margin: 0;
  padding: 24px 31px 23px;
  color: #ffffff;
  background: var(--commercial-green-deep);
  font-size: 16px;
  font-weight: 900;
  line-height: 1.15;
}

.commercial-card ul {
  margin: 0;
  padding: 24px 31px 25px 50px;
}

.commercial-card li {
  margin-bottom: 3px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.25;
}

.commercial-process {
  padding: 0 0 112px;
}

.commercial-process__inner {
  max-width: 820px;
  text-align: center;
}

.commercial-process h2 {
  margin-bottom: 28px;
  font-size: 38px;
}

.commercial-process p {
  margin: 0;
}

.commercial-conversion {
  padding: 42px 20px 74px;
  background: #ffffff;
}

.commercial-conversion__inner {
  position: relative;
  width: min(100%, 872px);
  min-height: 560px;
  margin-inline: auto;
  overflow: hidden;
  border-radius: 8px;
  color: #ffffff;
}

.commercial-conversion__inner::before {
  position: absolute;
  inset: 0;
  z-index: 0;
  border-radius: inherit;
  content: "";
  background:
    linear-gradient(90deg, rgba(7, 10, 20, 0.99) 0%, rgba(8, 10, 19, 0.98) 36%, rgba(8, 10, 18, 0.72) 51%, rgba(8, 10, 18, 0.22) 67%, rgba(8, 10, 18, 0.86) 100%),
    radial-gradient(circle at 54% 64%, rgba(228, 216, 178, 0.54), rgba(228, 216, 178, 0.18) 27%, rgba(8, 10, 18, 0) 57%),
    image-set(
      url("../images/form-wall-bg.webp") type("image/webp"),
      url("../images/form-wall-bg.jpg") type("image/jpeg")
    ) center center / cover no-repeat;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.18);
  pointer-events: none;
}

.commercial-conversion__inner::after {
  position: absolute;
  right: -22px;
  bottom: 0;
  z-index: 1;
  width: 430px;
  height: 556px;
  content: "";
  background: image-set(
    url("../images/form-person-new.webp") type("image/webp"),
    url("../images/form-person-new.png") type("image/png")
  ) center bottom / auto 542px no-repeat;
  pointer-events: none;
}

.commercial-conversion__inner > div,
.commercial-form {
  position: relative;
  z-index: 2;
  width: 380px;
  margin-left: 42px;
}

.commercial-conversion__inner > div {
  padding-top: 38px;
}

.commercial-conversion h2 {
  margin: 0 0 12px;
  color: #ffffff;
  font-size: 20px;
}

.commercial-conversion__question {
  max-width: 360px;
  margin: 0 0 13px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 13px;
  line-height: 1.32;
}

.commercial-conversion__inner > div .commercial-button {
  min-width: 171px;
  height: 26px;
  border-radius: 4px;
  font-size: 12px;
}

.commercial-form {
  margin-top: 18px;
  padding: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.commercial-form label {
  display: block;
  margin-bottom: 16px;
}

.commercial-form label span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.commercial-form input,
.commercial-form textarea {
  width: 100%;
  border: 0;
  border-radius: 8px;
  color: #394049;
  background: #ffffff;
  font: inherit;
  font-size: 15px;
  font-weight: 500;
  outline: none;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.02);
}

.commercial-form input {
  height: 45px;
  padding: 0 22px;
}

.commercial-form textarea {
  height: 98px;
  padding: 22px;
  resize: vertical;
}

.commercial-form input:hover,
.commercial-form textarea:hover,
.commercial-form input:focus,
.commercial-form textarea:focus {
  box-shadow: inset 0 0 0 2px rgba(0, 152, 121, 0.28);
  transform: translateY(-1px);
}

.commercial-form .field-error {
  outline: 2px solid #ff7269;
}

.commercial-form .commercial-button {
  min-width: 171px;
  height: 26px;
  margin: 2px 0 0 8px;
  border-radius: 4px;
  font-size: 12px;
}

.commercial-footer {
  min-height: 263px;
  padding: 62px 20px 24px;
  color: #ffffff;
  background: var(--commercial-green);
  text-align: center;
}

.commercial-footer__logo {
  width: 168px;
  height: auto;
  margin: 0 auto 50px;
}

.commercial-footer__cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.commercial-footer strong {
  display: block;
  margin-bottom: 12px;
  font-size: 13px;
  font-weight: 700;
}

.commercial-footer p {
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 12px;
  font-weight: 500;
}

.commercial-footer a {
  color: inherit;
  text-decoration: none;
}

.commercial-footer a:hover,
.commercial-footer a:focus-visible {
  text-decoration: underline;
}

.commercial-footer__copyright {
  margin: 72px 0 0 !important;
  padding-top: 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
}

.commercial-page :focus-visible {
  outline: 3px solid rgba(0, 111, 93, 0.55);
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .commercial-button,
  .commercial-card,
  .commercial-form input,
  .commercial-form textarea {
    transition: none;
    animation: none;
  }
}

@media (max-width: 1100px) {
  .commercial-products__grid {
    width: min(100%, 612px);
  }

  .commercial-why {
    grid-template-columns: 43% minmax(0, 1fr);
  }

  .commercial-why__image,
  .commercial-why__image img {
    width: 100%;
  }

  .commercial-why__image img {
    height: auto;
    aspect-ratio: 467 / 429;
  }
}

@media (max-width: 820px) {
  .commercial-hero {
    height: auto;
    min-height: 620px;
    background-position: 56% center;
  }

  .commercial-header__inner {
    padding: 42px 28px 0;
  }

  .commercial-header__logo img {
    width: 150px;
  }

  .commercial-hero__inner.commercial-container {
    min-height: 620px;
    padding: 0 28px;
  }

  .commercial-hero h1 {
    max-width: 520px;
    font-size: 44px;
  }

  .commercial-hero p {
    margin-top: 36px;
    font-size: 18px;
  }

  .commercial-content {
    padding-top: 70px;
  }

  .commercial-why {
    grid-template-columns: 1fr;
    gap: 38px;
    padding-bottom: 88px;
  }

  .commercial-why__image {
    max-width: 560px;
  }

  .commercial-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 30px;
    padding-bottom: 88px;
  }

  .commercial-process {
    padding-bottom: 84px;
  }

  .commercial-conversion__inner {
    width: 100%;
  }
}

@media (max-width: 640px) {
  .commercial-container {
    width: min(100% - 36px, 1000px);
  }

  .commercial-header__inner {
    padding: 34px 22px 0;
  }

  .commercial-header__logo img {
    width: 126px;
  }

  .commercial-header__link {
    font-size: 11px;
  }

  .commercial-hero {
    min-height: 560px;
    background-position: 58% center;
  }

  .commercial-hero__inner.commercial-container {
    min-height: 560px;
    padding: 0 22px;
  }

  .commercial-hero h1 {
    max-width: 360px;
    font-size: 32px;
  }

  .commercial-hero p {
    margin: 30px 0 22px;
    font-size: 16px;
  }

  .commercial-button--light {
    min-width: 190px;
    height: 40px;
    font-size: 14px;
  }

  .commercial-content {
    padding: 56px 0 24px;
  }

  .commercial-products {
    padding: 56px 18px 84px;
  }

  .commercial-products__heading h2 {
    font-size: 28px;
  }

  .commercial-products__heading p {
    margin-top: 18px;
  }

  .commercial-products__grid {
    width: 100%;
    gap: 28px;
    margin-top: 34px;
  }

  .commercial-product-card {
    width: min(100%, 288px);
    flex-basis: min(100%, 288px);
  }

  .commercial-copy p,
  .commercial-why__copy p,
  .commercial-process p {
    font-size: 14px;
    line-height: 1.35;
  }

  .commercial-why {
    gap: 28px;
    padding: 36px 0 64px;
  }

  .commercial-why__image img {
    height: 250px;
    aspect-ratio: auto;
  }

  .commercial-copy h2,
  .commercial-why__copy h2,
  .commercial-process h2 {
    margin-bottom: 24px;
    font-size: 26px;
  }

  .commercial-cards {
    grid-template-columns: 1fr;
    gap: 24px;
    padding-bottom: 64px;
  }

  .commercial-card h2 {
    padding: 21px 24px;
    font-size: 16px;
  }

  .commercial-resale {
    padding-bottom: 56px;
  }

  .commercial-resale__heading h2 {
    font-size: 28px;
  }

  .commercial-resale__heading p {
    margin-top: 18px;
    font-size: 14px;
    line-height: 1.35;
  }

  .commercial-resale__bars {
    margin-top: 34px;
  }

  .commercial-resale__bars p {
    min-height: 0;
    padding: 15px 18px;
    font-size: 12px;
  }

  .commercial-card ul {
    padding: 22px 24px 24px 40px;
  }

  .commercial-card li {
    font-size: 13px;
  }

  .commercial-process {
    padding-bottom: 64px;
  }

  .commercial-conversion {
    padding: 42px 18px 64px;
  }

  .commercial-conversion__inner {
    min-height: 0;
    padding: 0 22px 30px;
  }

  .commercial-conversion__inner::before {
    background:
      linear-gradient(90deg, rgba(7, 10, 20, 0.98), rgba(8, 10, 19, 0.91)),
      image-set(
        url("../images/form-wall-bg.webp") type("image/webp"),
        url("../images/form-wall-bg.jpg") type("image/jpeg")
      ) center / cover no-repeat;
  }

  .commercial-conversion__inner::after {
    right: -150px;
    width: 310px;
    height: 400px;
    background-size: auto 385px;
    opacity: 0.22;
  }

  .commercial-conversion__inner > div,
  .commercial-form {
    width: 100%;
    margin-left: 0;
  }

  .commercial-conversion__inner > div {
    padding-top: 34px;
  }

  .commercial-conversion h2 {
    font-size: 20px;
  }

  .commercial-form input,
  .commercial-form textarea {
    font-size: 14px;
  }

  .commercial-footer {
    padding-bottom: 88px;
  }

  .commercial-footer__cols {
    grid-template-columns: 1fr;
    gap: 26px;
  }

}

/* Diretório central das oportunidades comerciais. */
.partnership-directory {
  padding: 0 0 48px;
}

.partnership-directory__group + .partnership-directory__group {
  margin-top: 42px;
}

.partnership-directory__group > h2 {
  margin: 0 0 20px;
  color: #009879;
  font-size: 24px;
  font-weight: 800;
}

.partnership-directory__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.partnership-directory__card {
  display: flex;
  min-height: 220px;
  flex-direction: column;
  align-items: flex-start;
  padding: 26px;
  border: 1px solid #d7d7d7;
  border-radius: 8px;
  background: #fff;
}

.partnership-directory__card h3 {
  margin: 0 0 14px;
  color: #222;
  font-size: 18px;
  line-height: 1.25;
}

.partnership-directory__card p {
  margin: 0 0 22px;
  color: #343434;
  font-size: 14px;
  line-height: 1.45;
}

.partnership-directory__card .commercial-button {
  margin-top: auto;
}

@media (max-width: 900px) {
  .partnership-directory__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .partnership-directory {
    padding-bottom: 34px;
  }

  .partnership-directory__grid {
    grid-template-columns: 1fr;
  }

  .partnership-directory__card {
    min-height: 0;
    padding: 22px;
  }
}

@media (max-width: 390px) {
  .commercial-hero {
    min-height: 510px;
  }

  .commercial-hero__inner.commercial-container {
    min-height: 510px;
  }

  .commercial-hero h1 {
    font-size: 28px;
  }

  .commercial-form input {
    height: 40px;
    padding-inline: 16px;
  }

  .commercial-form textarea {
    height: 92px;
    padding: 16px;
  }
}

@media (max-width: 360px) {
  .commercial-header__inner {
    padding-inline: 18px;
  }

  .commercial-hero__inner.commercial-container {
    padding-inline: 18px;
  }

  .commercial-hero h1 {
    font-size: 26px;
  }
}

/* Reserva uma faixa superior para a navegação e o breadcrumb nas landings comerciais. */
.commercial-page .page-breadcrumb {
  top: 132px;
  left: 144px;
  width: min(calc(100% - 210px), 820px);
  padding: 0;
  margin: 0;
  transform: none;
}

.commercial-page .commercial-hero__inner.commercial-container {
  min-height: inherit;
  padding: 152px 66px 64px 144px;
}

.commercial-page .commercial-hero h1 {
  width: min(100%, 820px);
  max-width: 820px;
  font-size: clamp(34px, 3.2vw, 50px);
  line-height: 1.08;
}

.commercial-page .commercial-hero p {
  margin-top: 36px;
}

@media (max-width: 900px) {
  .commercial-page .commercial-hero {
    min-height: 700px;
  }

  .commercial-page .commercial-hero__inner.commercial-container {
    min-height: 700px;
    padding: 118px 44px 54px;
  }

  .commercial-page .commercial-hero h1 {
    width: min(100%, 680px);
    max-width: 680px;
    font-size: clamp(34px, 5vw, 42px);
  }
}

@media (max-width: 640px) {
  .commercial-page .commercial-hero,
  .commercial-page .commercial-hero__inner.commercial-container {
    min-height: 620px;
  }

  .commercial-page .commercial-hero__inner.commercial-container {
    padding: 112px 22px 50px;
  }

  .commercial-page .commercial-hero h1 {
    width: 100%;
    max-width: 100%;
    font-size: clamp(27px, 8.2vw, 34px);
    line-height: 1.1;
  }

  .commercial-page .commercial-hero p {
    margin-top: 26px;
  }
}

@media (max-width: 390px) {
  .commercial-page .commercial-hero,
  .commercial-page .commercial-hero__inner.commercial-container {
    min-height: 600px;
  }
}

/* Painel de orcamento no mesmo formato da landing principal. */
.commercial-conversion__inner {
  min-height: 472px;
}

.commercial-conversion__inner > div {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.commercial-form {
  position: absolute;
  top: 46px;
  left: 42px;
  z-index: 2;
  width: 380px;
  margin: 0;
}

.commercial-form::before {
  display: block;
  margin: 0 0 28px;
  color: #ffffff;
  content: "Solicite seu or\0000e7amento";
  font-size: 20px;
  font-weight: 900;
  line-height: 1.2;
}

.commercial-conversion__inner::after {
  height: 556px;
}

@media (min-width: 901px) {
  .commercial-conversion__inner {
    overflow: visible;
  }
}

@media (max-width: 900px) and (min-width: 641px) {
  .commercial-conversion__inner {
    overflow: hidden;
  }
}

@media (max-width: 640px) {
  .commercial-page .commercial-conversion .commercial-conversion__inner {
    width: 100%;
    max-width: 100%;
    min-height: 0;
    padding: 0 22px 30px;
  }

  .commercial-form {
    position: relative;
    top: auto;
    left: auto;
    width: 100%;
    margin: 0;
    padding-top: 34px;
  }

  .commercial-form::before {
    margin-bottom: 28px;
    font-size: 20px;
  }

  .commercial-form label {
    margin-bottom: 16px;
  }

  .commercial-form input {
    height: 45px;
    padding-inline: 22px;
    font-size: 14px;
  }

  .commercial-form textarea {
    height: 98px;
    padding: 22px;
    font-size: 14px;
  }

  .commercial-form .commercial-button {
    min-width: 171px;
    height: 26px;
    margin: 2px 0 0 8px;
    font-size: 12px;
  }
}
