/* base */
* {
    padding: 0;
    margin: 0;
}

body {
    background: 
        url("../images/background_sheet.svg"),
        url("../images/background.svg"),
        #D65455;

    background-attachment: fixed;
    background-size: cover;
}

h1, h2 {
    color: #464646;
    letter-spacing: -0.05em;
}

h1 {
    font-size: 25pt;
}

h2 {
    font-size: 20pt;
}

@media (min-width: 768px) {
    h1 {
        font-size: 30pt;
    }

    h2 {
        font-size: 25pt;
    }
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

article {
    padding-top: 2em;
    padding-bottom: 2em;
}

/* Download Loader */
.download-loader {
    width: 175px;
    height: 80px;
    display: block;
    margin: auto;
    background-image: 
        radial-gradient(circle 25px at 25px 25px, #eaeaea 100%, transparent 0), 
        radial-gradient(circle 50px at 50px 50px, #eaeaea 100%, transparent 0), 
        radial-gradient(circle 25px at 25px 25px, #eaeaea 100%, transparent 0), 
        linear-gradient(#eaeaea 50px, transparent 0);
    background-size: 50px 50px, 100px 76px, 50px 50px, 120px 40px;
    background-position: 0px 30px, 37px 0px, 122px 30px, 25px 40px;
    background-repeat: no-repeat;
    position: relative;
    box-sizing: border-box;
  }
  .download-loader::after {
    content: '';  
    left: 50%;
    bottom: 0;
    transform: translate(-50%, 0);
    position: absolute;
    border: 15px solid transparent;
    border-top-color: #ed3237;
    box-sizing: border-box;
    animation: fadePush 1s linear infinite;
  }
  .download-loader::before {
    content: '';  
    left: 50%;
    bottom: 30px;
    transform: translate(-50%, 0);
    position: absolute;
    width: 15px;
    height: 15px;
    background: #FF3D00;
    box-sizing: border-box;
    animation: fadePush 1s linear infinite;
  }
  
  @keyframes fadePush {
    0% {
      transform: translate(-50%, -15px);
      opacity: 0;
    }
    50% {
      transform: translate(-50%, 0px);
      opacity: 1;
    }
    100% {
      transform: translate(-50%, 15px);
      opacity: 0;
    }
  }
/* END download-loader */

/* Tables */
th:first-of-type {
    border-top-left-radius: 5px;
}
th:last-of-type {
    border-top-right-radius: 5px;
}
tr:last-of-type td:first-of-type {
    border-bottom-left-radius: 5px;
}
tr:last-of-type td:last-of-type {
    border-bottom-right-radius: 5px;
}

table {
    border-radius: 5px;
    box-shadow: 0 0 10px 0 #ccc;
    margin: auto;
    width: 100%;
}

th, td {
    padding: 0.5em 1em;
}

th {
    background-color: #ed3237;
    color: white;
}

td {
    color: #4d4d4d;
}

tr {
    transition: all 0.1s ease-in-out;
}

tr:nth-child(even) {
    background-color: #fff;
}

tr:nth-child(odd) {
    background-color: #f5f5f5;
}

tr:not(:first-child):hover {
    background-color: #e5e5e5;
}
/* END Tables */

/* END base */

/* Section #title */
#title {
    min-height: 150px;
    padding-top: 60px;
    color: #fff;
}

#title p {
    font-size: 1.2em;
}

#title h1 {
    color: #fff;
}
/* END Section #title */

/* header */
header {
    height: 80px;
}

/* header/navigation */
nav {
    background-color: #ffffff;
    box-shadow: 0 0 5px 0 #424242;
}

.nav-item.nav-link:hover {
    color: #ed3237;
}

.navbar-auth {
    align-items: center;
    display: flex;
    gap: .65rem;
}

.navbar-account {
    color: #4d4d4d;
    max-width: 13rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.navbar-account:hover,
.navbar-account:focus {
    color: #a9272b;
}

.navbar-logout-form {
    margin: 0;
}

@media (max-width: 767px) {
    .navbar-auth {
        align-items: flex-start;
        border-top: 1px solid #e5e5e5;
        margin-top: .75rem;
        padding: .75rem 0;
    }
}
/* END header/navigation */
/* END Header */

/* Section #content */
#content {
    background-color: #fff;
}
/* END Section #content */

/* footer */
footer {
    background-color: #e6e6e6;
    position: relative;
    color: #3b3b3b;
}

footer p {
    margin: 0;
}

@media (max-width: 992px) {
    footer {
        text-align: center;
    }

    footer h5 {
        margin-top: 1em;
    }
}

.footer {
    padding: 60px 0 60px 0;
}


.footer-box {
    padding: 0
}

.footer-logo {
    max-width: 230px;
    width: 100%;
}

@media (max-width: 992px) {
    .footer-logo {
        margin: auto;
    }
}

footer ul {
    list-style: none;
    padding: 0;
}

footer a {
    font-size: 20px;
    color: #3b3b3b;
    transition: all ease-in-out 0.05s;
    text-decoration: none;
    font-size: 1em;
}

footer a:hover {
    color: #ed3237;
    text-decoration: underline;
}

footer h5 {
    color: #ae282c;
    font-size: 1.2em;
}

footer h6 {
    color: #3b3b3b;
}

footer p {
    color: #3b3b3b;
    font-size: 1em;
}

/* Apoiadores */
.footer-apoiadores {
    background-color: #3b3b3b;
}

footer .footer-apoiadores ul {
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

footer .footer-apoiadores li {
    width: 200px;
    display: block;
    padding: 1em 2em 2em 2em;
}

footer .footer-apoiadores h5 {
    color: #fff;
}

.img-apoio {
    width: 100%;
}
/* END Apoiadores */
/* END footer */
