/* FontsGob */
@font-face {
  font-family: "GeogrotesqueSharp";
  src: url("fonts/GeogrotesqueSharp/GeogrotesqueSharp-WideRg.otf")
    format("opentype");
}

@font-face {
  font-family: "BeVietnamPro";
  src: url("fonts/BeVietnamPro/BeVietnamPro-Regular.ttf") format("opentype");
}

/* Generics Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  outline: none;
  border: none;
  text-decoration: none;
  overflow: hidden;
}

body {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: column;

  font-family: "GeogrotesqueSharp", "BeVietnamPro";

  height: 100vh;

  background: #fff;
  color: #fff;
}

/* Structure Styles */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;

  width: 100%;
  padding: 0.5rem 5%;

  background-color: #009ada;
  color: #fff;

  img {
    height: 3rem;
  }

  h1 {
    white-space: nowrap;
    overflow: hidden;

    text-transform: uppercase;
    font-size: 1.5em;
  }
}

main {
  display: flex;
  align-items: center;
  justify-content: center;

  padding: 0% 0% 5% 0%;

  .Container-MaintenimentBox {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    text-align: center;

    color: #004582;

    gap: 1rem;

    i {
      margin: 1rem 0rem;
      font-size: 15em;
    }

    h2 {
      font-size: 2em;
      font-family: "GeogrotesqueSharp";
      text-transform: uppercase;
    }

    p {
      font-size: 1.4em;
      font-family: "BeVietnamPro";
      white-space: nowrap;
    }

    span {
      font-size: 1.8em;
    }
  }
}

footer {
  display: flex;
  flex-direction: column;

  width: 100%;

  font-family: "GeogrotesqueSharp";
  text-align: center;

  background-color: #009ada;
  color: #fff;

  a {
    color: #fff;
  }

  .Container-CBA-LinkData {
    display: flex;
    justify-content: space-around;
    flex-direction: column;

    width: 100%;

    margin: auto auto;


    .Titles-CBA-LinkData {
      display: flex;
      justify-content: space-around;
      align-items: start;

      padding: 0.5rem 0rem;
      border-bottom: 1px solid #fff;

      h2 {
        width: 30%;
      }
    }

    .Links-CBA-LinkData {
      display: flex;
      justify-content: space-around;
      align-items: start;

      padding: 1rem 0rem 0rem 0rem;

      article {
        width: 30%;
      }
    }

    article {
      h2 {
        display: flex;
        padding: 0.5rem;
      }

      ul {
        display: flex;
        flex-direction: column;

        li :hover {
          text-decoration: underline;
        }
      }
    }
  }

  .social-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 2%;

    span {
      display: flex;
      height: 1px;
      background-color: #fff;
      width: 100%;
    }

    ul {
      display: flex;
      justify-content: center;
      font-size: 1.5em;

      width: 30%;

      margin: 0rem 1rem;
      gap: 0.5rem;

      li {
        a i {
          display: flex;
          align-items: center;
          justify-content: center;
        }
      }
    }
  }

  .Container-CBA-LinkMainPage {
    display: flex;
    text-align: center;
    justify-content: center;
    align-items: center;

    padding: 0.5rem 2rem;
    margin: 0% auto 0% auto;

    width: 85%;

    border-top-left-radius: 20px;
    border-top-right-radius: 20px;

    white-space: nowrap;
    background: #004582;

    a {
      font-weight: bold;
    }
  }
}

/* Media query para dispositivos móviles */
@media (max-width: 576px) {
  header {
    h1 {
      font-size: 1.2em;
    }

    img {
      height: 2rem;
    }
  }

  main {
    padding: 0% 0% 15% 0%;

    .Container-MaintenimentBox p {
      font-size: 1.1em;
    }
  }

  .social-container {
    ul {
      width: 50% !important;
    }

    span {
      width: 150px !important;
    }
  }

  .Container-CBA-LinkData{
    font-size: 0.8em;
  }
}
