body {
  background-color: var(--dark-800);
}

.container {
  min-height: 100vh;
  overflow: hidden;
  color: #F1F7F7;
}

.container .sct {
  width: 100%;
  min-height: 100vh;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(180deg, #1DBB87 0%, #6394BF 100%);
  overflow: hidden;
}

.c-main {
  width: 100%;
  max-width: 640px;
  margin: 4rem 2rem 7rem;
  text-align: center;
  display: flex;
  align-items: center;
}

.c-main h1 {
  width: 100%;
  font-size: 2.6rem;
  color: #fff;
}

@media(max-width: 860px) {
  .c-main h1 {
      font-size: 2rem;
  } 
}

.wave {
  position: absolute;
  overflow: hidden;
  bottom: -10px;
  left: 0;
  width: 100%;
}

.wave img {
  min-width: 1224px;
  width: 100%
}


.container .texts-container {
  width: 100%;
  min-height: 80vh;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  background-color: var(--dark-900);
}

.tc-2 {
  background-color: var(--dark-800) !important;
}

.tc-3 {
  background-color: var(--dark-750) !important;
}

.container .texts-container .texts {
  width: 100%;
  max-width: 890px;
  padding: 3rem 2rem 8rem;
}

.text-format {
  margin-bottom: 2rem;  
}

.text-format .texts-p1 p {
  text-align: justify;
}

.text-format .img-p1 {
  width: 100%;
  margin: 1rem 0;
}

.text-format .img-p1 img {
  width: 100%;
  max-width: 890px;
}

.text-format .img-p1 .display-imgs {
  width: 100%;
  display: flex;
  gap: 0.25rem;
}

.text-format .img-p1 span {
  color: var(--primary);
}

.text-format .img-p1 .display-imgs img {
  width: 100%;  
}

.text-format .p1 {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.text-format h2 {
    text-align: center;
    margin: 2rem 0;
}

.text-format ul.types-organisms {
    width: 100%;
    max-width: 320px;
}

.text-format ul.types-organisms li {
    padding: 0.25rem 0;
}

.text-format p {
  line-height: 24px;
  color: var(--light-800);
  text-align: center;
  margin: 1rem 0;
}

.text-format .references {
  padding: 0.75rem 1.75rem;
  border: 1px solid var(--secondary);
  border-radius: 12px;
  margin-top: 1.5rem;
}

.text-format .references .ref-texts p {
  text-align: justify;
  line-height: 24px;
}


@media(max-width: 640px) {
  .text-format .img-p1 .display-imgs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }

}


@media(max-width: 490px) {
  
}