/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul[role="list"],
ol[role="list"] {
  list-style: none;
}

/* Set core root defaults */
html:focus-within {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img,
picture {
  max-width: 100%;
  display: block;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Remove all animations, transitions and smooth scroll for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* --------------------- SITE COLOR SCHEME  ----------- */
/* declarando variaveis de cores */
:root {
  --Black: #0000;
  --Dark: #222222;
  --White: #fff;
  --Red: #e52a49;
  --DarkRed: #a52137;
  --Wine: #7d0e11;
  --Borda: #c5c5c5;
  --Bg_cinza: #eee;
}

/* --------------------- SITE FONTS  ----------- */

@font-face {
  font-family: "Nunito-Regular";
  src: url("../assets/fonts/Nunito-Regular.ttf");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Nunito-Bold";
  src: url("../assets/fonts/Nunito-Bold.ttf");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Nunito-Semi-Bold";
  src: url("../assets/fonts/Nunito-SemiBold.ttf");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Nunito-Extra-Bold";
  src: url("../assets/fonts/Nunito-ExtraBold.ttf");
  font-weight: normal;
  font-style: normal;
}

html {
  width: 100%;
  height: 100%;
}
body {
  width: 100%;
  height: 100%;
  font-family: "Nunito-Regular";
  font-size: 14px;
  color: var(--Black);
  line-height: 1.3em;
  background: #fff;
}

/* --------------------- GLOBAL SETTINGS ----------- */
a {
  transition: 0.5s;
}
input,
select {
  font-family: "Nunito-Regular";
  font-size: 14px;
  width: 100%;
  padding: 10px;
  border-radius: 10px;
  border: 1px solid var(--Borda);
}
/* --------------------- MAIN PAGE HOME ----------- */
section#home {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  width: 100%;
  height: auto;
  overflow-x: hidden;
}

/* --------------------- SCAFOLD --------------- */
section#scafold {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  height: auto;
  /* overflow-x: hidden; */

  div#dark_bar {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 0 15px;
    background: var(--Dark);
    min-height: 20px;
    div.desktop {
      display: flex;
      width: 100%;
      max-width: 1100px;
      align-items: center;
      justify-content: space-between;
      column-gap: 30px;
      @media (max-width: 1024px) {
        display: none;
      }

      p {
        color: var(--White);
        span {
          font-family: "Nunito-Bold";
        }
        @media (max-width: 1030px) {
          padding: 0 20px;
          text-align: center;
        }
      }
      div.contact {
        @media (max-width: 800px) {
          display: none;
        }
      }
      div.tour {
        display: flex;
        @media (max-width: 680px) {
          display: none;
        }
        a {
          display: flex;
          align-items: center;
          justify-content: flex-start;
          column-gap: 10px;
          width: max-content;
          padding: 10px;
          text-decoration: none;
          svg {
            width: 50px;
            height: auto;
            color: var(--White) !important;
          }
          p {
            font-size: 20px;
            letter-spacing: -1px;
          }
        }
        background: var(--Wine);
      }
      @media (max-width: 540px) {
        display: none;
      }
    }
    div.mobile {
      display: none;
      @media (max-width: 1024px) {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 15px 0;
        div.social {
          display: flex;
          width: max-content;
          align-items: center;
          justify-content: center;
          column-gap: 15px;

          a {
            text-decoration: none;
            svg {
              color: var(--White);
              @media (max-width: 540px) {
                width: 25px;
                height: auto;
              }
            }
          }
        }
      }
    }
  }
  /* --------------------------------------------- */
  div#braces {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 1450px;
    min-width: 200px;
    align-items: center;
    justify-content: center;
    padding-top: 50px;

    margin: 0 auto;
    @media (max-width: 1250px) {
      max-width: 100%;
      padding: 0 15px;
    }
    @media (max-width: 1024px) {
      padding: 0;
    }
    div.groupLinks {
      position: relative;
      width: 100%;
      max-width: 1100px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      div.s_left {
        position: relative;
        width: 45%;
        display: flex;
        align-items: center;
        justify-content: space-between;

        @media (max-width: 1024px) {
          width: 100%;
          display: flex;
          flex-direction: row;
          align-items: center;
          justify-content: space-between;
          padding: 0 15px;
          background: #f2f2f2;
        }
        a {
          display: flex;
          width: 100%;
          max-width: 200px;

          img.logo {
            width: 200px;
            height: auto;
            @media (max-width: 540px) {
              width: 90px;
              height: auto;
            }
          }
        }

        img.top100 {
          width: 60px;
          height: auto;
        }
        img.cbc_image {
          width: 60px;
          height: auto;
          @media (max-width: 680px) {
            display: none;
          }
          @media (max-width: 540px) {
            display: flex;
            max-width: 55px;
            height: auto;
          }
        }
      }

      div.menu_mobile {
        display: none;
        @media (max-width: 1024px) {
          &.show {
            position: absolute;
            top: 70px;
            left: 0;
            z-index: 999;
            display: flex;
            width: 80%;
            max-width: 400px;
            flex-direction: column;
            padding: 0 10px;
            min-height: 200px;
            background: var(--Bg_cinza);
            div.groupCloseMenuMobile {
              width: 100%;
              display: flex;
              align-items: center;
              padding: 15px 0;
              justify-content: flex-end;
              a.closeMenuMobile {
                align-items: center;
                justify-content: center;
                width: 15px;
                height: auto;
                text-decoration: none;
                color: var(--Red);
                font-size: 30px;
              }
            }
          }
          form.groupSearchMobile {
            display: flex;
            width: 100%;

            column-gap: 15px;
            margin: 15px 0;
            input.field {
              width: 100%;
              padding: 5px;
            }
            input.sbmt {
              background: var(--Dark);
              color: var(--White);
              font-family: "Nunito-Bold";
              width: max-content;
            }
          }
          ul.main {
            display: flex;
            flex-direction: column;
            list-style: none;
            padding-left: 0;
            align-items: flex-start;
            justify-content: flex-start;

            li {
              font-family: "Nunito-Semi-Bold";
              flex-direction: column;
              position: relative;
              display: flex;
              align-items: center;
              justify-content: space-between;
              padding: 0 10px;
              margin-bottom: 10px;
              div.group {
                display: flex;
                align-items: center;
                justify-content: flex-start;
                column-gap: 15px;
                width: 100%;
              }
              a {
                color: var(--Dark);
                text-decoration: none;
                padding: 10px 0;
              }
              svg {
                color: var(--Dark);
              }
              ul.submenu {
                display: none;
                flex-direction: column;
                margin-top: 10px;
                list-style: none;
                align-items: center;
                justify-content: flex-start;
                padding-left: 20px;
                align-items: flex-start;
                justify-content: flex-start;
                li {
                  margin-bottom: 5px;
                  a {
                    color: var(--Wine);
                    text-decoration: none;
                  }
                }
                &.show {
                  display: flex;
                }
              }
            }
          }
        }
      }
      div.groupTopMobile {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: flex-start;
        padding: 10px 5px;
        column-gap: 30px;
        @media (max-width: 1024px) {
          align-items: center;
          justify-content: space-between;
          width: 100%;
        }
        a.collapsed {
          display: none;
          @media (max-width: 1024px) {
            display: flex;
            width: 100%;
            max-width: 40px;
            img {
              display: flex;
              width: 45px;
              height: auto;
            }
          }
        }
        div.groupLogos {
          display: flex;
          align-items: center;
          justify-content: flex-start;
          width: 100%;
          column-gap: 15px;
          @media (max-width: 1024px) {
            align-items: center;
            justify-content: flex-end;
            width: 80%;
          }
          img {
            max-width: max-content;
            @media (max-width: 1024px) {
              max-width: 50px;
              height: auto;
            }
          }
          img.logo {
            width: 300px;
            height: auto;
            @media (max-width: 1024px) {
              width: 100%;
              max-width: 180px;
              height: auto;
            }
          }
        }
      }
    }
    div.s_right {
      width: 45%;
      max-width: 400px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      column-gap: 20px;
      padding: 0 10px;

      @media (max-width: 1024px) {
        display: none;
      }
      div.groupPortal {
        display: flex;
        align-items: center;
        justify-content: center;
        width: max-content;
        column-gap: 10px;
        @media (max-width: 870px) {
          /* background: lightblue; */
        }
        p.title {
          color: #000;
          margin: 0;
        }
        a.btn {
          padding: 15px 20px;
          color: var(--White);
          border-radius: 10px;
          text-decoration: none;
          background: var(--Dark);
          &:hover {
            background: var(--Wine);
          }
        }
      }
      div.social {
        width: 100%;
        max-width: 120px;
        display: flex;
        align-items: center;
        justify-content: center;

        img {
          width: 35px;
          height: auto;
        }
        svg {
          margin-top: 8px;
          color: var(--Dark);
        }
        @media (max-width: 870px) {
          display: none;
        }
      }
    }
  }
  div.search_area_desktop {
    display: flex;
    width: 100%;
    max-width: 1100px;
    min-height: 15px;
    padding: 20px 15px;
    align-items: center;
    justify-content: center;
    @media (max-width: 1024px) {
      display: none;
    }
    form {
      display: flex;
      width: 95%;
      column-gap: 20px;
      margin: 0 auto;
      input#busca {
        width: 100%;
        padding: 10px;
        border-radius: 5px;
      }
      input.sbmt {
        font-family: "Nunito-Bold";
        width: max-content;
        padding: 10px 15px;
        background: var(--Dark);
        color: var(--White);
        border: none;
      }
    }
    @media (max-width: 540px) {
      display: none;
    }
  }

  div.groupBannerMenu {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 30px;
    @media (max-width: 1024px) {
      padding: 0;
    }

    div.topBanner {
      position: relative;
      width: 100%;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;

      img.banner-interno {
        width: auto;
        height: 496px;
        @media (max-width: 768px) {
          width: 100%;
          height: auto;
        }
      }
      h1.title {
        position: absolute;
        font-size: 100px;
        margin: 0;
        z-index: 10;
        color: #fff;
        z-index: 20;
        letter-spacing: -2px;
        text-shadow: 4px 1px 4px rgba(5, 2, 1, 0.16);
        @media (max-width: 600px) {
          font-size: 35px;
        }
      }
    }
  }

  div#groupMenuRed {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 100%;
    min-height: 5px;
    @media (max-width: 1024px) {
      display: none;
    }

    ul#menu_red {
      position: absolute;
      top: -7px;
      z-index: 999;
      display: flex;
      align-items: center;
      justify-content: center;
      width: 98%;
      max-width: 1100px;
      height: auto;
      background: var(--Red);
      padding: 20px 25px;
      border-radius: 8px;
      column-gap: 20px;
      @media (max-width: 1200px) {
        padding: 20px 0;
      }

      li {
        position: relative;
        width: max-content;
        a {
          display: flex;
          align-items: center;
          justify-content: center;
          column-gap: 10px;
          font-family: "Nunito-Bold";
          color: var(--White);
          text-decoration: none;
          font-size: 16px;
          svg {
            color: var(--Black);
          }
        }
        div.submenuContent {
          display: none;
          z-index: 999;
          &.show {
            position: absolute;
            top: 44px;
            left: -10px;
            display: flex;
            flex-direction: column;
            width: max-content;
            background: var(--Wine);
            padding: 15px;
            font-family: "Nunito-Bold";
            color: var(--White);
            text-decoration: none;
            font-size: 16px;
            align-items: flex-start;
            justify-content: center;
            z-index: 5;
            row-gap: 15px;
            -webkit-border-bottom-right-radius: 8px;
            -webkit-border-bottom-left-radius: 8px;
            -moz-border-radius-bottomright: 8px;
            -moz-border-radius-bottomleft: 8px;
            border-bottom-right-radius: 8px;
            border-bottom-left-radius: 8px;
            svg {
              position: absolute;
              top: -10px;
              left: 3px;
              &.adm {
                left: 122px;
              }
              &.clube {
                left: 75px;
              }
              &.sports {
                left: 83px;
              }
            }
            &.great {
              flex-direction: row;
              padding: 40px 15px;
              flex-wrap: wrap;
              width: 335px;
              align-items: center;
              justify-content: space-between;
              column-gap: 100px;
              > a {
                width: max-content;
                box-sizing: border-box;
                text-align: center;
              }
            }
            a {
              text-decoration: none;
              &:hover {
                color: gold;
              }
            }
          }
        }
      }
    }
  }
} /* bracaes end */

/* last news  */
section#last_news {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: auto;
  align-items: center;
  justify-content: center;
  .swiper-pagination {
    display: none !important;
  }
  div.area_slider {
    position: relative;
    display: flex;
    width: 100%;
    max-width: 1100px;
    min-height: 200px;
  }
}

/* ------------------- Read news/showArticle -----------------*/
section#showArticle {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: auto;
  align-items: center;
  justify-content: center;
  background: #fff;
  max-width: 1100px;
  border-radius: 10px;
  padding: 50px 15px;
  margin: 80px auto 50px auto;
  z-index: 1;
  @media (max-width: 580px) {
    padding: 0 15px;
    margin-top: 15px;
  }

  div.groupText {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    width: 100%;
    max-width: 900px;

    margin-bottom: 20px;
    img.cover {
      width: 100%;
      height: auto;
      margin: 0 auto 20px auto;
    }
    h1 {
      max-width: 650px;
      font-family: "Nunito-Bold";
      font-size: 26px;
      color: #000;
      line-height: 1.1em;
      text-align: left;
      margin-bottom: 15px;
    }
    div.content_article {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      justify-content: center;
    }
    p {
      line-height: 1.4em !important;
      margin-bottom: 20px !important;
      color: #000;
      line-height: 1.5em !important;
    }
    img {
      width: 100% !important;
      height: auto !important;
      margin-bottom: 50px !important;
    }
  }
}
section#more-news {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  background: transparent;
  min-height: 200px;
  padding: 0 15px;
  margin-bottom: 100px;
  h2.more {
    font-size: 35px;
    font-weight: 900;
    color: #000;
    letter-spacing: -1px;
    margin-bottom: 20px;
  }
  div.group_cards {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
    width: 100%;
    height: auto;
    @media (max-width: 580px) {
      align-items: center;
      justify-content: center;
    }

    a.card {
      position: relative;
      width: 100%;
      max-width: 350px;
      height: 350px;

      text-decoration: none;
      @media (max-width: 580px) {
        margin-bottom: 30px;
      }
      img.cover {
        margin-bottom: 15px;
      }
      h3.title {
        font-size: 20px;
        color: #000;
        line-height: 1.1em;
        margin-bottom: 15px;
        margin-bottom: 15px;
      }
      p.cat {
        position: absolute;
        bottom: -50px;
        left: 0;
        margin-bottom: 15px;
        padding: 10px 20px;
        background: var(--Red);
        width: max-content;
        color: var(--White);
        font-size: 14px;
        font-weight: 600;
        border-radius: 20px;
      }
    }
  }
}

/* ------------------- Last Galleries -----------------*/
section#last-galleries {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 1300px;
  height: auto;
  margin: 50px auto;
  padding: 0 15px;
  h2 {
    font-size: 35px;
    color: #000;
    font-weight: 600;
    margin-bottom: 20px;
  }
  div.group_cards {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 20px;

    a.card {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      justify-content: center;
      width: 100%;
      max-width: 395px;
      height: auto;
      color: #000;
      font-size: 16px;
      font-weight: 600px;
      text-decoration: none;
      img.cover {
        margin-bottom: 15px;
      }
    }
  }
}

/* ------------------- Show Gallery -----------------*/
section#show-gallery {
  width: 100%;
  max-width: 1100px;
  height: auto;
  margin: 80px auto 50px auto;
  padding: 20px;
  div.content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    width: 100%;
    height: auto;
    h1 {
      font-size: 40px;
      color: var(--White);
      margin-bottom: 15px;
      line-height: 1.1em;
      @media (max-width: 580px) {
        font-size: 35px;
        font-weight: 600;
        text-align: center;
        margin-bottom: 20px;
      }
    }
    div.groupPhotos {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: space-between;
      row-gap: 40px;
      margin-bottom: 100px;
      img.thumb {
        width: 100%;
        max-width: 330px;
        height: auto;
      }
    }
  }
}

/* ------------------- Show Galleries -----------------*/
section#showGalleries {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: auto;
  min-height: 200px;
  margin-top: 60px;
  margin-bottom: 100px;
  @media (max-width: 600px) {
    margin-top: 0;
  }
  div.content {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 1100px;
    min-height: 200px;
    background: var(--White);
    border-radius: 5px;
    padding: 20px 20px 50px 20px;
    @media (max-width: 580px) {
      padding: 15px;
    }
    h1 {
      color: #000;
      font-size: 40px;
      margin-bottom: 20px;
      font-weight: 600;
      letter-spacing: -1px;
      @media (max-width: 580px) {
        font-size: 35px;
      }
    }
    div.groupCards {
      width: 100%;
      display: flex;
      flex-wrap: wrap;
      min-height: 200px;
      align-items: center;
      justify-content: space-between;
      row-gap: 40px;
      margin-bottom: 60px;
      a.card {
        position: relative;
        display: flex;
        flex-direction: column;
        width: 100%;
        max-width: 320px;
        height: auto;
        text-decoration: none;
        img.cover {
          width: 100%;
          height: auto;
        }
        h3 {
          color: #000;
          margin-top: 15px;
          line-height: 1.1em;
        }
        div.counter {
          display: flex;
          align-items: center;
          justify-content: center;
          background: var(--Red);
          padding: 10px 20px;
          column-gap: 5px;
          color: var(--White);
          width: max-content;
          border-radius: 20px;
          position: absolute;
          top: 10px;
          right: 10px;
        }
      }
    }

    div.pagination {
      display: flex;
      justify-content: center;
      align-items: center;
      margin-top: 40px;
      gap: 10px;
      flex-wrap: wrap;
      .pagination-item {
        padding: 10px 15px;
        border: 1px solid var(--Borda);
        border-radius: 5px;
        text-decoration: none;
        color: var(--Dark);
        background-color: var(--White);
        transition: background-color 0.3s ease, color 0.3s ease,
          border-color 0.3s ease;
        font-family: "Nunito-Semi-Bold";
      }

      .pagination-item:hover:not(.current):not(.disabled) {
        background-color: var(--Red);
        color: var(--White);
        border-color: var(--Red);
      }

      .pagination-item.current {
        background-color: var(--Red);
        color: var(--White);
        border-color: var(--Red);
        cursor: default;
      }

      .pagination-item.disabled {
        background-color: var(--Bg_cinza);
        color: #999;
        cursor: not-allowed;
        border-color: #ddd;
      }
    }
  }
}
/* ------------------- Show Gallery Home -----------------*/
section#videos-home {
  display: flex;
  flex-direction: column;
  width: 100%;
  background: #000;
  align-items: center;
  justify-content: center;
  padding: 100px 15px;
  div.content {
    width: 100%;
    max-width: 1300px;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    h1 {
      font-size: 40px;
      color: var(--White);
      font-weight: 600;
      letter-spacing: -1px;
      margin-bottom: 20px;
    }
    a.channel {
      display: flex;
      padding: 10px;
      color: var(--White);
      background: var(--Red);
      align-items: center;
      justify-content: center;
      width: max-content;
      column-gap: 4px;
      text-decoration: none;
      margin: 40px 0 0 0;
      border-radius: 20px;
    }
    div.groupCards {
      display: flex;
      flex-wrap: wrap;
      width: 100%;
      height: auto;
      align-items: center;
      justify-content: space-between;
      row-gap: 35px;
      a.card {
        display: flex;
        flex-direction: column;
        width: 100%;
        max-width: 395px;
        height: auto;
        text-decoration: none;
        margin-bottom: 15px;
        img.cover {
          width: 100%;
          height: auto;
          margin-bottom: 15px;
        }
        h3 {
          color: var(--White);
          font-weight: 600;
          font-size: 24px;
          line-height: 1.1em;
        }
      }
    }
  }
}

/* ------------------- Show News Genetal -----------------*/
section#showNewsGeneral {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 50px 15px;
  @media (max-width: 580px) {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0;
  }

  div.content {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 1100px;
    background: #fff;
    min-height: 400px;
    align-items: center;
    justify-content: flex-start;
    padding: 20px;
    @media (max-width: 580px) {
      padding: 50px 0 50px 0;
    }
    h1 {
      font-size: 45px;
      font-weight: 900;
      margin-bottom: 20px;
      color: #000;
      letter-spacing: -1px;
    }
    form#form-search {
      display: flex;
      flex-direction: column;
      width: 100%;
      max-width: 600px;
      padding: 20px;

      margin-bottom: 20px;
    }
    div#news_content {
      display: flex;
      flex-wrap: wrap;
      width: 100%;
      max-width: 1000px;
      min-height: 500px;
      align-items: flex-start;
      justify-content: space-between;
      @media (max-width: 580px) {
        width: 95%;
        align-items: center;
        justify-content: center;
      }

      div.groupArticles {
        position: relative;
        display: flex;
        flex-wrap: wrap;
        width: 100%;
        height: auto;
        padding: 25px 0;
        color: #000;
        align-items: flex-start;
        justify-content: flex-start;
        column-gap: 15px;
        row-gap: 15px;
        @media (max-width: 580px) {
          align-items: center;
          justify-content: center;
        }
        a.card {
          display: flex;
          flex-direction: column;
          text-decoration: none;
          width: 100%;
          max-width: 320px;
        }
        a.clear {
          position: absolute;
          top: -25px;
          left: 0;
          text-decoration: none;
          background: var(--Red);
          color: var(--White);
          padding: 10px;
          border-radius: 20px;
          @media (max-width: 580px) {
            padding: 5px;
            border-radius: 0;
          }
        }
      }

      a.card {
        max-width: 320px;
        margin-bottom: 20px;
        text-decoration: none;
        img.cover {
          width: 100%;
          max-width: 320px;
          height: auto;
          margin-bottom: 15px;
        }
        h3 {
          color: #000;
          line-height: 1.1em;
          letter-spacing: -1px;
        }
      }
      div#pagination {
        display: flex;
        justify-content: center;
        margin-top: 30px;
      }
      .pagination {
        display: flex;
        list-style: none;
        padding: 0;
      }
      .page-item {
        margin: 0 5px;
      }
      .page-link {
        display: block;
        padding: 8px 12px;
        border: 1px solid #ccc;
        border-radius: 4px;
        text-decoration: none;
        color: #333;
        transition: background-color 0.3s ease;
      }
      .page-link:hover {
        background-color: #eee;
      }
      .page-item.active .page-link {
        background-color: #007bff; /* Cor de destaque para a página ativa */
        color: white;
        border-color: #007bff;
      }
    }
  }
}

/* ------------------- Powers -----------------*/
div#powerArea {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 200px;
  padding: 50px 15px;
  @media (max-width: 600px) {
    padding: 0 15px 50px 0;
  }

  div.content {
    width: 100%;
    max-width: 1100px;
    background: #fff;
    padding: 25px;
    min-height: 200px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    margin-bottom: -80px;
    h1 {
      font-size: 26px;
      font-weight: 600;
      margin-bottom: 35px;
      color: #000;
      letter-spacing: -1px;
      margin-top: 30px;
      &.title {
        margin-left: 40px;
      }
    }
    p {
      font-size: 16px;
      line-height: 1.5em;
      margin-bottom: 15px;
      color: #000;
    }
    ul {
      width: 100%;
      display: flex;
      flex-direction: column;
      row-gap: 20px;
      li {
        width: 100%;
        height: auto;
        display: flex;
        align-items: center;
        justify-content: flex-start;
        a {
          font-size: 16px;
          font-weight: bold;
          color: #000;
          text-decoration: none;
          &:hover {
            color: var(--Red);
          }
        }
      }
    }
    a.accordion {
      width: 100%;
      height: auto;
      padding: 20px;
      background: #f1f1f1;
      display: flex;
      align-items: center;
      justify-content: space-between;
      text-decoration: none;
      border-radius: 5px;
      p {
        font-size: 16px;
        color: #000;
        font-weight: 900;
      }
      margin-bottom: 5px;
    }
    div.accordionContent {
      display: none;
      width: 100%;
      height: auto;
      padding: 25px 0;
      &.active {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
      }
      p {
        color: #000;
        font-size: 15px;
        margin-left: 40px;
        margin-bottom: 30px;
      }
      h2 {
        color: #000;
        margin: 50px auto;
      }

      ul {
        width: 100%;
        display: flex;
        flex-direction: column;
        row-gap: 20px;
        @media (max-width: 600px) {
          margin-left: -60px;
        }
        li {
          width: 100%;
          height: auto;
          display: flex;
          align-items: center;
          justify-content: flex-start;
          a {
            font-size: 16px;
            font-weight: bold;
            color: #000;
            text-decoration: none;
            &:hover {
              color: var(--Red);
            }
            @media (max-width: 600px) {
              font-family: "Nunito-Regular";
              font-size: 14px;
              font-weight: 100;
            }
          }
        }
      }
      div.groupMembers {
        display: flex;
        flex-wrap: wrap;
        align-items: flex-start;
        justify-content: flex-start;
        row-gap: 20px;
        column-gap: 20px;
        width: 100%;
        max-width: 900px;
        height: auto;
        margin: 0 auto;
        @media (max-width: 940px) {
          max-width: 680px;
        }
        @media (max-width: 720px) {
          max-width: 450px;
        }
        @media (max-width: 540px) {
          max-width: 185px;
        }
        div.card {
          display: flex;
          flex-direction: column;
          align-items: center;
          justify-content: center;
          width: 100%;
          max-width: 200px;
          height: auto;

          img {
            width: 140px;
            height: 140px;
            border-radius: 50%;
            margin-bottom: 10px;
          }
          p {
            font-size: 12px;
            text-align: center;
            margin: 0;
            margin-bottom: 5px;
          }
          div.groupTitle {
            display: flex;
            width: 100%;
            align-items: center;
            justify-content: center;
            column-gap: 5px;
            svg {
              max-height: 10px;
            }
          }
        }
      }
    }
  }
}

/* ------------------- footer ------------------- */
footer.footer-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: auto;
  background: var(--DarkRed);

  div.groupCards {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    max-width: 1100px;
    height: auto;
    padding: 50px;
    background: var(--DarkRed);
    align-items: flex-start;
    justify-content: space-between;

    div.card {
      display: flex;
      flex-direction: column;
      width: max-content;
      height: auto;
      @media (max-width: 550px) {
        padding: 0;
        margin-bottom: 30px;
      }

      h4.title {
        font-size: 20px;
        color: var(--White);
        margin-bottom: 10px;
        font-weight: bold;
      }
      a {
        text-decoration: none;
        color: var(--White);
        &:hover {
          color: gold;
        }
      }

      &.sports {
        display: flex;
        flex-direction: column;
        max-width: 250px;

        div.groupSports {
          display: block;
          columns: 2;
          column-gap: 45px;
          /* column-rule: 1px solid #ccc; */
          a {
            display: block;
            margin-bottom: 5px;
          }
        }
      }
    }
  }
}
/* ------------------- footer horarios ------------------- */
footer.footer-horarios {
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 50px 50px 0 50px;
  background: var(--Dark);
  div.horarios {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    width: 100%;
    max-width: 1100px;
    background: var(--Dark);
    height: auto;
    display: flex;
    align-items: flex-start;
    justify-content: center;

    @media (max-width: 550px) {
      flex-direction: column;
      padding: 50px 15px;
    }
    div.card {
      width: 50%;
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      justify-content: flex-start;
      margin-bottom: 40px;
      background: var(--Dark);
      @media (max-width: 550px) {
        width: 100%;
        &:last-child {
          margin-bottom: 0;
        }
      }
      h2 {
        color: var(--White);
        font-weight: bold;
        margin-bottom: 10px;
      }
      p {
        color: var(--White);
        &.margin {
          margin-bottom: 15px;
        }
      }
      h4 {
        color: var(--White);
        font-weight: bold;
      }
      a {
        color: var(--White);
        text-decoration: none;
        font-weight: 600;
        &:hover {
          color: gold;
        }
      }
    }
  }
}
/* ------------------- barra sign ------------------- */
footer.sign {
  width: 100%;
  background: var(--Dark);
  padding: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  div.group {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    max-width: 1100px;
    align-items: center;
    justify-content: space-between;
    color: var(--White);
    p {
      color: var(--White);
      font-weight: bold;
    }
    a {
      color: var(--White);
      font-weight: bold;
      text-decoration: none;
      &:hover {
        color: gold;
      }
    }
    @media (max-width: 550px) {
      align-items: center;
      justify-content: center;
    }
  }
  padding-bottom: 100px;
}

/* ------------------- Modal ------------------- */
/* Estilos básicos para o modal */
.modal {
  display: none; /* Escondido por padrão */
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: fixed; /* Fica no topo da página */
  z-index: 9999; /* Z-index alto para ficar acima de outros elementos */
  left: 0;
  top: 0;
  width: 100%; /* Largura total */
  height: 100%; /* Altura total */
  overflow: auto; /* Habilita o scroll se necessário */
  background-color: rgba(0, 0, 0, 0.8); /* Fundo escuro semi-transparente */
}
/* Conteúdo do Modal */
.modal-content {
  position: relative;
  background-color: #fefefe;
  margin: 5% auto; /* 10% do topo e centralizado horizontalmente */
  padding: 0px;
  border: 1px solid #888;
  width: 80%; /* Largura do modal */
  max-width: 900px; /* Largura máxima para telas maiores */
  position: relative;
  border-radius: 8px;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  background: #000;
  @media (max-width: 580px) {
    width: 70%;
    margin: 50% auto; /* 10% do topo e centralizado horizontalmente */
  }
}
/* Botão de Fechar */
.close {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--White);
  float: right;
  font-size: 15px;
  font-weight: bold;
  position: absolute;
  top: -15px;
  right: -15px;
  cursor: pointer;
  z-index: 1; /* Para garantir que o 'X' esteja acima do vídeo */
  background: var(--Red);
  width: 30px;
  height: 30px;
  border-radius: 50%;
}
.close:hover,
.close:focus {
  color: #000;
  text-decoration: none;
  cursor: pointer;
}

/* Contêiner responsivo para o vídeo (16:9 aspect ratio) */
.video-container {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio (height / width = 9 / 16 = 0.5625) */
  height: 0;
  overflow: hidden;
  margin-top: 20px; /* Espaço para o botão de fechar */
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
/* Media queries para responsividade, se desejar ajustar o tamanho do modal em telas menores */
@media screen and (max-width: 768px) {
  .modal-content {
    width: 95%;
    margin: 5% auto;
  }
}
