/* [ BASE ] */
p {
  margin-top: 0;
}
:is(h1, .h1) {
  font-size: 2rem;
}
:is(h2, .h2) {
  font-size: 1.5rem;
  font-weight: bold;
}
:is(h3, .h3) {
  font-size: 1.25rem;
}
:is(h4, .h4) {
  font-size: 1.15rem;
}
:is(h5, .h5, h6, .h6) {
  font-size: 1rem;
}
:is(h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6) > small {
  font-size: 0.5em;
}

/* TITLES */
.main-title {
  font-size: 2rem;
  font-weight: var(--semi-bold);
  text-align: left;
  color: var(--black-1);
  margin: 0 0 0.5rem;
  width: 100%;
  text-wrap: balance;
}
.sec-title {
  color: var(--black-1);
  font-weight: var(--semi-bold);
  text-align: left;
  font-size: 1.5rem;
  margin: 0 0 0.5rem;
  width: 100%;
}
.primary-title {
  color: var(--primary);
  font-weight: var(--semi-bold);
  text-align: left;
  font-size: 1.25rem;
  margin: 0 0 0.5rem;
  width: 100%;
}
.pre-title {
  display: block;
  margin: 0 0 0.25rem;
  width: 100%;

  font-size: 0.75rem;
  font-weight: var(--semi-bold);
  text-align: left;
  text-transform: uppercase;
  letter-spacing: 0.125rem;
  color: var(--primary);
}
@media screen and (max-width: 570px) {
  .main-title {
    font-size: 1.7rem;
  }
  .sec-title {
    font-size: 1.25rem;
  }
}

/* COLORS */
.text-primary {
  color: var(--primary) !important;
}
.text-secondary {
  color: var(--preto-light) !important;
}
.text-warning {
  color: var(--warning) !important;
}
.text-danger {
  color: var(--danger) !important;
}
.text-success {
  color: var(--success) !important;
}
.text-white {
  color: #fff !important;
}
.text-black {
  color: var(--black-2) !important;
}

/* FONT WEIGHT */
.regular {
  font-weight: 400;
}
.semi-bold {
  font-weight: var(--semi-bold);
}
.bold {
  font-weight: var(--bold);
}

.nowrap {
  white-space: nowrap;
}

/* DECORATION */
.line-through {
  text-decoration: line-through;
}
.decoration-none {
  text-decoration: none;
}

/* TEXT ALIGNMENT */
.text-center {
  text-align: center !important;
}
.text-left {
  text-align: left !important;
}

/* [ PRICES ] */
.price {
  --font-size: 3.5rem;
  font-size: var(--font-size);
  font-weight: var(--bold);
  color: var(--black-1);
  position: relative;
}
.price > *:is(small) {
  font-size: 0.35em;
  font-weight: var(--semi-bold);
  color: var(--preto-light);
  position: relative;
}
