@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600&family=Noto+Sans:wght@400;700&display=swap');

:root {
    --color-neutral-0: #0e0c0c;
    --color-neutral-10: #171717;
    --color-neutral-30: #a8a29e;
    --color-neutral-40: #f5f5f5;
}

* {
    margin: 0;
    padding: 0;
    
    
}

/* Começo da Footer */

main {
    /*height: 80vh; /* Define a altura do main como 80% da viewport */
    min-height: calc(200vh - 150px); /* Ou o valor que funcionar melhor para o seu layout */
    
}

/* Footer Styles - Adapted from provided CSS */
footer {
    background-color: var(--color-neutral-0);;
    color: #fff;
    font-size: 0.875em;
    width: 100%;
    float: left;
  }
  
  #footer_content {
    float: left;
    width: 90%;
    margin: 0 5%;
    padding: 5em 0;
  }
  
  /* Contacts section with logos */
  #contacts {
    width: 100%;
    height: auto;
    float: left;
    margin-bottom: 2em;
  }
  
  #logo-paroquia {
    max-width: 180px;
    height: auto;
    margin-bottom: 1em;
    padding: 5px;
    border-radius: 4px;
  }
  
  #logo-pascom {
    max-width: 150px;
    height: auto;
    padding: 5px;
    border-radius: 4px;
  }
  
  /* List info section */
  .list-info {
    width: 100%;
    float: left;
  }
  
  .footer-list {
    width: 100%;
    height: auto;
    float: left;
    margin-bottom: 2em;
    list-style: none;
    padding: 0;
  }
  
  .footer-list h3 {
    font-family: "open_sansregular", Arial, sans-serif;
    font-size: 1.3em;
    color: #ffffff;
    padding-bottom: 0.5em;
    margin-bottom: 0.5em;
    border-bottom: 1px #ffffff solid;
  }
  
  .footer-list li {
    padding: 0.2em 0em;
  }
  
  .footer-link {
    text-decoration: none;
    color: #ffffff;
    font-size: 1em;
  }
  
  .footer-link:hover {
    text-decoration: underline;
  }
  
  /* Social media section */
  #footer_social_media {
    width: 100%;
    float: left;
    margin-bottom: 2em;
  }
  
  #footer_social_media .footer-link {
    padding: 10px 12px;
    color: #fff;
    font-family: "open_sansregular", Arial, sans-serif;
    letter-spacing: 2px;
    text-align: center;
    position: relative;
    text-decoration: none;
    display: inline-block;
    margin-right: 7px;
    font-size: 1em;
    border: 1px solid #ffffff;
    border-radius: 3px;
    overflow: hidden !important;
    -webkit-transition: all .4s ease-in-out;
    -moz-transition: all .4s ease-in-out;
    -o-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out;
    background: transparent !important;
    z-index: 10;
  }
  
  #footer_social_media .footer-link:hover {
    border: 1px solid #262626;
    color: #2adee3 !important;
  }
  
  #footer_social_media .footer-link::before {
    content: "";
    width: 0%;
    height: 100%;
    display: block;
    background: #262626;
    position: absolute;
    -ms-transform: skewX(-15deg);
    -webkit-transform: skewX(-15deg);
    transform: skewX(-15deg);
    left: -10%;
    opacity: 1;
    top: 0;
    z-index: -12;
    -moz-transition: all .7s cubic-bezier(0.77, 0, 0.175, 1);
    -o-transition: all .7s cubic-bezier(0.77, 0, 0.175, 1);
    -webkit-transition: all .7s cubic-bezier(0.77, 0, 0.175, 1);
    transition: all .7s cubic-bezier(0.77, 0, 0.175, 1);
    box-shadow: 2px 0px 14px rgba(0, 0, 0, 0.6);
  }
  
  #footer_social_media .footer-link::after {
    content: "";
    width: 0%;
    height: 100%;
    display: block;
    background: #2adee3;
    position: absolute;
    -ms-transform: skewX(-15deg);
    -webkit-transform: skewX(-15deg);
    transform: skewX(-15deg);
    left: -10%;
    opacity: 0;
    top: 0;
    z-index: -15;
    -webkit-transition: all .94s cubic-bezier(0.2, 0.95, 0.57, 0.99);
    -moz-transition: all .4s cubic-bezier(0.2, 0.95, 0.57, 0.99);
    -o-transition: all .4s cubic-bezier(0.2, 0.95, 0.57, 0.99);
    transition: all .4s cubic-bezier(0.2, 0.95, 0.57, 0.99);
    box-shadow: 2px 0px 14px rgba(0, 0, 0, 0.6);
  }
  
  #footer_social_media .footer-link:hover::before,
  #footer_social_media .footer-link:hover::before {
    opacity: 1;
    width: 120%;
  }
  
  #footer_social_media .footer-link:hover::after,
  #footer_social_media .footer-link:hover::after {
    opacity: 1;
    width: 150%;
  }
  
  /* Copyright section */
  #footer_copyright {
    background-color: var(--color-neutral-10);
    width: 100%;
    float: left;
    text-align: center;
    padding: 1.5em 0em;
  }
  
  #footer_copyright p {
    font-family: "open_sanslight", Arial, sans-serif;
    font-size: 1em;
    color: #e1e0e0;
    margin: 0;
  }

  /* Back to Top Button */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #fcaa3e;
  color: #fff;
  text-align: center;
  line-height: 50px;
  font-size: 20px;
  text-decoration: none;
  opacity: 0;
  visibility: hidden;
  z-index: 999;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease-in-out;
  overflow: hidden !important;
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
}

.back-to-top::before {
  content: "";
  width: 0%;
  height: 100%;
  display: block;
  background: #262626;
  position: absolute;
  -ms-transform: skewX(-15deg);
  -webkit-transform: skewX(-15deg);
  transform: skewX(-15deg);
  left: -10%;
  opacity: 1;
  top: 0;
  z-index: -12;
  -moz-transition: all .7s cubic-bezier(0.77, 0, 0.175, 1);
  -o-transition: all .7s cubic-bezier(0.77, 0, 0.175, 1);
  -webkit-transition: all .7s cubic-bezier(0.77, 0, 0.175, 1);
  transition: all .7s cubic-bezier(0.77, 0, 0.175, 1);
  box-shadow: 2px 0px 14px rgba(0, 0, 0, 0.6);
}

.back-to-top::after {
  content: "";
  width: 0%;
  height: 100%;
  display: block;
  background: #fcaa3e;
  position: absolute;
  -ms-transform: skewX(-15deg);
  -webkit-transform: skewX(-15deg);
  transform: skewX(-15deg);
  left: -10%;
  opacity: 0;
  top: 0;
  z-index: -15;
  -webkit-transition: all .94s cubic-bezier(0.2, 0.95, 0.57, 0.99);
  -moz-transition: all .4s cubic-bezier(0.2, 0.95, 0.57, 0.99);
  -o-transition: all .4s cubic-bezier(0.2, 0.95, 0.57, 0.99);
  transition: all .4s cubic-bezier(0.2, 0.95, 0.57, 0.99);
  box-shadow: 2px 0px 14px rgba(0, 0, 0, 0.6);
}

.back-to-top:hover {
  color: #fcaa3e;
}

.back-to-top:hover::before {
  opacity: 1;
  width: 120%;
}

.back-to-top:hover::after {
  opacity: 1;
  width: 150%;
}

.back-to-top i {
  position: relative;
  z-index: 10;
}
  
  /* Responsive adjustments */
  @media (min-width: 48em) {
    #contacts {
      width: 30%;
      margin-right: 5%;
      margin-bottom: 0;
    }
  
    .footer-list {
      width: 30%;
      margin-right: 5%;
      margin-bottom: 0;
      float: left;
    }
  
    .footer-list:nth-of-type(3n + 0) {
      margin-right: 0;
      border-right: 0;
    }

  
    #footer_social_media {
      width: 30%;
      margin-right: 0;
      margin-bottom: 0;
    }
  }

  @media (max-width: 1200px) {
    #footer_copyright {
        font-size: 0.5rem !important;
    }
    .back-to-top {
      width: 45px;
      height: 45px;
      line-height: 45px;
      right: 20px;
      bottom: 20px;
      font-size: 18px;
    }
}
















/*@media screen and (max-width: 768px) {
    #footer_content {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media screen and (max-width: 426px) {
    #footer_content {
        grid-template-columns: repeat(1, 1fr);
        padding: 3rem 2rem;
    }
}*/

/*@media screen and (max-width: 1200px) {
    #footer_content {
        grid-template-columns: repeat(3, 1fr);
        display: flex;
        flex-direction: column;
        font-size: 20px;
        
    }

    #footer_copyright {
        display: flex;
        justify-content: center;
        background-color: var(--color-neutral-0);
        font-size: 0.6rem;
        padding: 1.5rem;
        font-weight: 100;
    }

}*/

/*
@media screen and (max-width: 768px) {
    #footer_content {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    #footer_copyright {
        display: flex;
        justify-content: center;
        background-color: var(--color-neutral-0);
        font-size: 0.5rem;
        padding: 1.5rem;
        font-weight: 100;
    }

    #logo-york3 {
        height: auto;
        width: 80px;
    }

    #logo-senac2 {
        height: auto;
        width: 90px;
    }
}
*/

