/* ============================================
   LAYOUT - NetApp Storage LP
   ============================================ */

.container {
  width: min(90%, 80rem);
  margin-inline: auto;
}

.spacing {
  padding-block: var(--spacing);
}

/* Buttons */
.btn {
  font-size: 1.125rem;
  padding: 0.8rem 1.25rem;
  background: linear-gradient(164deg, #de241b -36.98%, #6e47a5 184.66%);
  color: var(--white);
  font-weight: 700;
  min-width: 22rem;
  text-align: center;
  display: grid;
  max-width: max-content;
}

.btn:hover,
.btn:focus {
  transition: all 200ms ease;
  filter: brightness(1.1);
}

.btn.center {
  margin-inline: auto;
}

.btn.mt {
  margin-top: 2.5rem;
}

.btn.red {
  background: var(--clr-accent);
}

@media (max-width: 1100px) {
  .btn {
    display: none;
  }
}

/* Section Titles */
.section-title {
  font-size: clamp(1.85rem, 3.5vw, 2.25rem);
  line-height: 120%;
  margin-bottom: 2rem;
  max-width: 25ch;
  font-weight: 700;
  color: var(--black);
  font-family: var(--font-gotham-bold);
}

.section-title.accent {
  color: var(--clr-accent);
}

.section-title.light {
  color: var(--white);
}

.section-title.center {
  text-align: center;
  margin-inline: auto;
}

@media (min-width: 70em) {
  .section-title {
    margin-bottom: 2.15rem;
  }
}

/* Doted List */
.doted-list {
  display: grid;
  gap: 0.65rem;
}

.doted-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.doted-list li::before {
  content: "";
  background-color: var(--clr-accent, red);
  width: 5px;
  aspect-ratio: 1;
  border-radius: 50%;
  flex-shrink: 0;
  position: relative;
  top: 9px;
}

/* Remover ponto da lista na section 1 (mitigação de riscos) */
.mitg .doted-list li::before {
  display: none;
}

.small {
  font-size: 0.85rem;
}

