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: 960px;
    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: 960px;
  }
  
  .text-format .img-p1 .display-imgs {
    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-format h3 {
    color: #fff !important;
  }

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

  .text-format h3 {
    text-align: center;
    margin: 1.5rem 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;
  }

  .tc-2 .text-format p,
  .tc-3 .text-format p {
    color: var(--light-900) !important;
  }

.text-format .texts-grid-p1 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.text-format .table-p1 {
    width: 100%;
    
    overflow-x: scroll;
}

.text-format .table-p1 table {
    width: 100%;
    min-width: 640px;
    background: var(--dark-750);
    border-collapse: collapse;
}

.text-format .table-p1 table thead {
    background: var(--dark-700);
}

.text-format .table-p1 table td,
.text-format .table-p1 table th{
    border: 2px solid var(--dark-800);
    padding: 8px 12px;
}

.text-format .table-p1 table td.stronger {
    font-weight: bold;
}

.text-format .table-p1 table td a {
    color: var(--primary);
}

.text-format .table-p1 table td a:hover {
    color: var(--secondary);
}
  
  .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;
  }

.text-format .references .ref-texts a {
    color: var(--primary);
}

.text-format .references .ref-texts a:hover {
    color: var(--secondary);
}

.text-format .list-p1 {
    color: var(--light-800);
    padding: 0 2rem;
}


.text-format .list-p1 li {
    padding: 0.5rem 0;
}
  
  @media(max-width: 640px) {
    .text-format .img-p1 .display-imgs {
      display: grid;
      grid-template-columns: 1fr 1fr;
      align-items: center;
    }
    
    .text-format .texts-grid-p1 {
      grid-template-columns: 1fr;
      gap: 0;
    }
  }
  
  
  @media(max-width: 490px) {
    
  }