#supervision {
  .cover {
    background-position: top;
  }

  .content {
    margin-bottom: 6rem;
  }

  .description {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 2rem;

    img {
      grid-column: 1 / span 4;
      background-color: black;
      border-radius: 2rem;
      box-shadow: 0 4px 11px 0 rgba(0, 0, 0, 0.33);
      width: 100%;

      @media (max-width: 1024px) {
        grid-column-end: span 12;
        min-height: 400px;
      }
    }

    .superior,
    .inferior {
      grid-column: 5 / span 8;
      padding: 2.5rem;

      @media (max-width: 1024px) {
        grid-column: 1 / span 12;
      }
    }

    > * {
      border-radius: 2.5rem;
      box-shadow: 0 4px 11px 0 rgba(0, 0, 0, 0.33);
    }

    .superior {
      grid-row: 1;
      background-color: var(--purple-main);
      color: white;

      .title {
        text-align: center;
        font-size: 3rem;
        font-weight: 400;
        line-height: 1;

        &,
        > * {
          margin: 0;
        }
      }

      .subtitle {
        text-align: center;
        font-size: 1.5rem;
        font-weight: 300;
        line-height: 1.5;
      }

      .body {
        text-align: justify;
      }

    }

    .inferior {
      grid-row: 2;
      border: 1px solid black;
      background-color: white;

      @media (max-width: 1024px) {
        grid-row: 3;
      }

      .body {
        font-size: 1.25rem;
        font-weight: 400;
        line-height: 1.5;
        text-align: justify;
      }
    }
  }

  .nucleos {
    display: grid;
    justify-items: center;

    & > .title {
      font-size: 2.5rem;
      font-weight: 400;
      display: flex;
      margin-bottom: 5rem;
    }

    .nucleos__list {
      display: grid;
      grid-template-columns: 1fr;
      gap: 4rem;

      @media (max-width: 1024px) {
        gap: 2rem;

        &.nucleos__list .nucleo {
          border: 2px solid var(--purple-main);
          border-radius: 2rem;
          grid-template-columns: 1fr;
          padding: 2rem 2rem 0;

          &.nucleo > * {
            border: none;
            grid-column: 1;
          }

          .col-1 {

            .nucleo__person {
              align-items: center;
              align-content: center;
              justify-items: flex-start;
              justify-content: flex-start;
              grid-template-columns: auto auto;
              gap: 0 2rem;
              padding-bottom: 0;
              background-color: transparent;
              box-shadow: none;
              color: black;
              text-align: left;

              img {
                align-content: center;
                grid-row: 1 / span 4;
              }

              .nucleo__person__position {
                grid-row: 3;

                &::after {
                  all: unset;
                }

                & + * {
                  grid-row: 2;
                }
              }
            }

            .cta {
              grid-row: 1;
            }
          }

          .col-2 {
            padding: 0 0 1rem 0;
            border-radius: 0;
            border-bottom: 2px solid var(--purple-main);
          }

          .col-3 > .nucleo__schedule {
            border: none;
            justify-content: flex-start;
            text-align: left;
          }
        }
      }

      button {
        background-color: var(--active-pink);
        padding: .5rem 2rem;
        box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.33);
      }

      .nucleo {
        display: grid;
        grid-template-columns: 1fr 4fr 1fr;
        gap: 1.5rem;

        .col-1 {
          grid-column: 1;
          display: grid;
          gap: 2rem;

          .cta {
            justify-self: center;
          }

          .nucleo__person {
            background-color: var(--purple-main);
            color: white;
            padding: 1rem;
            border-radius: 2rem;
            text-align: center;
            font-size: 1rem;
            font-weight: 400;
            line-height: 1.5;
            box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.33);
            display: grid;
            justify-content: center;
            justify-items: center;

            img {
              border-radius: 50%;
              aspect-ratio: 1/1;
              object-fit: cover;
              width: 150px;
              height: auto;
              background-color: black;
              margin-bottom: 1rem;
              box-shadow: 0 8px 11px 0 rgba(255, 255, 255, 0.33);
            }

            .nucleo__person__position {
              font-size: 1rem;
              font-weight: 700;
              line-height: 1.5;
              margin-bottom: 0.5rem;
              --underline-color: white;
            }
          }
        }

        .col-2 {
          grid-column: 2;
          border: 2px solid black;
          border-radius: 2rem;
          padding: 1rem 2rem;
          text-align: center;



          .nucleo__title {
            text-align: left;
            color: var(--active-pink);
            font-size: 2rem;
            margin: 0;
            font-weight: 500;
          }

          .nucleo__description {
            text-align: justify;
            font-size: 1rem;
            font-weight: 400;
            line-height: 1.5;
          }
        }

        .col-3 {
          grid-column: 3;
          display: grid;
          gap: 1rem;

          .nucleo__schedule {
            border: 2px solid black;
            border-radius: 2rem;
            padding: .5rem;
            text-align: center;
            display: grid;
            gap: .25rem;
            font-size: 1rem;

            .nucleo__schedule__title {
              color: var(--active-pink);
              font-weight: 600;
            }
          }

          .nucleo__cta {
            display: grid;
            gap: 1rem;
            background-color: var(--purple-main);
            color: white;
            border-radius: 2rem;
            padding: 1rem;
            font-size: .75rem;
            box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.33);

            button {
              background-color: transparent;
              padding: 0;
              box-shadow: none;
              border-radius: 0;
              font-size: 1.25rem;

              i {
                margin-left: .5rem;
                transform: rotate(-45deg);
              }
            }
          }
        }
      }
    }
  }
}