@font-face {
  font-family: charter;
  src: url('../fonts/charter-regular.otf');
  font-style: normal;
  font-weight: normal;
}

@font-face {
  font-family: charter;
  src: url('../fonts/charter-italic.otf');
  font-style: italic;
  font-weight: normal;
}

@font-face {
  font-family: charter;
  src: url('../fonts/charter-bold.otf');
  font-style: normal;
  font-weight: bold;
}

@font-face {
  font-family: charter;
  src: url('../fonts/charter-bold-italic.otf');
  font-style: italic;
  font-weight: bold;
}

:root {
  font-size: 16px;
  --white30: #212121;
  --white20: #212429;
  --white10: #616161;
}

body {
  color: var(--white30);
  font-family: 'Roboto', sans-serif;
  margin: 0;
}

a {
  color: var(--white30)
}

header {
  margin-block-start: 0px;
  font-size: 14px;
  color: var(--white10);
}

header a {
  color: var(--gray10);
  text-decoration: none;
}

header a:hover {
  font-weight: bold;
}

nav details summary {
  color:var(--white10);
  font-weight: bold;
  line-height: 25px;
  margin-top: 24px;
  margin-bottom: 16px;
  cursor: pointer;

}

header li {
  margin-bottom: 16px;
}

html {
  scroll-behavior: smooth;
}

.header-content {
  padding-inline: 20px;
}

blockquote {
  font-size: 24px;
  margin: 32px 0;
  padding-inline-start: 32px;
  line-height: 24px;
  border-left: 4px solid blue
}

blockquote p {
  color: var(--white30)
}

blockquote span {
  color: var(--white10);
}

blockquote span::before {
  content: "-";
}

h1 {
  font-size: 40px;
  text-align: center;
  margin-top: 20px;
  margin-bottom: 16px;
  font-weight: normal;
}

h1+p {
  margin-bottom: 64px;
  text-align: center;
}


hr {
  margin-block: 40px;

}

pre {
  background: white;
  border-radius: 8px;
  border-bottom: 8px solid #5551FF;
  border-top: 8px solid #5551FF;
  border-left: 8px solid #5551FF;
  border-right: 8px solid #5551FF;
  box-shadow: -10px 10px 0 0 #abaaf6;
  padding: 40px;
  font-family: 'Roboto';
  line-height: 24px;
  overflow: auto;
  overflow-x: hidden;
}

h2 {
  font-size: 32px;
  margin-block: 40px;
  font-weight: bold;
  text-align: center;
}

h3 {
  font-size: 24px;
  font-weight: normal;
  margin-top: 16px;
  margin-bottom: 24px;
  position: relative;
  margin-block: 16px;
  top: 0;
  text-align: center;
}

p {
  display: block;
  margin-block-start: 1em;
  margin-block-end: 1em;
  margin-inline-start: 0px;
  margin-inline-end: 0px;
  color: var(--white20);
}

.hero {
  background: linear-gradient(274.51deg, rgba(74, 0, 224, 0.6) 5%, rgba(142, 45, 226, 0.5) 130.61%), url(../images/componente2.png);
  block-size: 50px;
}

hr {
  margin: 64px 0px;
}

.main hr {
  display: none;
}

.wrapper {
  max-inline-size: 902px;
  margin: auto;
}

.main-content {
  background: white;
}

.slider-container {
  display: block;
  overflow: auto;
  scroll-behavior: smooth;
  white-space: nowrap;
  font-size: 0;
  overflow-x: hidden;
}

.video {
  margin: 0;
  display: inline-block;
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
}

.slider-bullet-list {
  text-align: center;
  margin-block-start: 15px;
  font-size: 0;
}

.slider-bullet {
  display: inline-block;
  inline-size: 15px;
  block-size: 15px;
  background: #8E2DE280;
  border-radius: 50%;
  margin-inline: 2px;
}

.form input {
  inline-size: 100%;
  border: 1px solid var(--white30);
  background: white;
  box-sizing: border-box;
  border-radius: 90px;
  padding-inline: 16px;
  padding-block: 12px;
  color: black;
  font-size: 16px;
  display: block;
  margin-block-end: 24px;
  text-align: center;
}

.form input[type="submit"] {
  background: blue;
  color: white;
  border: none;
  padding-block: 12px;
}

input {
  writing-mode: horizontal-tb !important;
  text-rendering: auto;
  letter-spacing: normal;
  word-spacing: normal;
  line-height: normal;
  text-transform: none;
  text-indent: 0px;
  text-shadow: none;
  text-align: start;
  appearance: auto;
  -webkit-rtl-ordering: logical;
  cursor: text;
  margin: 0em;
}

.form input::-webkit-input-placeholder {
  color: var(--white20);

}

.form ::-webkit-input-placeholder {
  color: var(--white20);
}

footer {
  background: var(--white30);
  margin-block-start: 90px;
}

.footer-content {
  block-size: 177px;
  display: grid;
  align-content: center;
}

footer p {
  color: white;
  font-size: 16px;
  text-align: center;
  margin-block-start: 0;
}

.social {
  text-align: center;
}

.social img {
  text-align: center;
  padding-inline-end: 16px;
}

@media screen and (min-width: 700px) {

  .hero {
    block-size: 350px;
  }

  .header {
    position: sticky;
    inset-block-start: -55px;
    scroll-behavior: smooth;
    clear: right;
    margin-block-start: 0;
    float: right;
  }

  .header-content {
    position: relative;
    inset-block-start: 55px;
    padding-inline: 0;
    padding-block-start: 0;

  }

  header {
    position: absolute;
    inset-block-start: 0;
    inset-inline-start: -208px;
    inline-size: 200px;
  }

  h1 {
    font-size: 60px;
    margin-block-start: 64px;
  }
}

.div {
  display: block;
}

.no-count h3::before {
  content: none;
}

.section-content {
  margin-top: 164px;
  position: relative;
}


.section-content:first-of-type {
  margin: 0;
}

.section-content ol li {
  font-weight: normal;
  line-height: 24px;
}

.section-content ul li {
  font-weight: normal;
  margin-bottom: 16px;
}

.section-content * hr {
  display: none;
}

.section-content img {
  margin:auto;
  display: block;
  max-width: 100%;
}

.section-content-2 img {
  width: 100%;
}

.section-content {
  counter-reset: titleList;
}

.section-content h3 {
  content: '';
  counter-increment: titleList;
  display: block;
  padding-bottom: 4px;
}

.section-content h3::before {
  content: counter(titleList, decimal)'. ';
}

.hidden-number h3 {
  counter-set: none;
  border: 0;
  font-weight: normal;
}