@import url('https://fonts.googleapis.com/css2?family=Noto+Sans:ital,wght@0,100..900;1,100..900&display=swap');

* {
  margin: 0;
  padding: 0;
  outline: 0;
  border: 0;
  box-sizing: border-box;
  transition: ease .2s;

  font-family: "Noto Sans", sans-serif;
  font-optical-sizing: auto;
  font-variation-settings:
    "wdth" 100;
}

:root {
  --red: #a41121;
  --grid-columns: 12;
  --column-gap: 10px;
  --row-gap: 10px;
}

html {
  font-size: 62.5%;
  display: flex;
  width: 100%;
}

body {
  display: flex;
  flex: 1;
  font-size: 1.6rem;
  background: #fff;
  flex-direction: column;
  overflow: auto;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: var(--light);
  font-size: 1.2rem;
  font-weight: 500;
  margin: 10px 0;
}

a:hover {
  color: var(--red);
}

img {
  width: 100%;
  max-width: 100%;
  height: auto;
}

h1 {
  font-size: 4.2rem;
}

h2 {
  font-size: 3.0rem;
}

h3 {
  font-size: 2.4rem;
}

h4 {
  font-size: 2.0rem;
}

h5 {
  font-size: 1.8rem;
}

h6 {
  font-size: 1.6rem;
}

p {
  line-height: 1.5;
}

.red {
  color: var(--red);
}

header {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.5rem;
  background: #FFF;
  box-shadow: 0 .1rem .5rem .1rem rgba(0, 0, 0, .1);
  position: relative;
}

header .logo {
  display: flex;
  flex: 1;
}

header .logo img {
  width: 100%;
  max-width: 15rem;
}

header nav {
  position: relative;
  display: flex;
  flex: 1;
  justify-content: flex-end;
  align-items: center;
}

header nav ul {
  list-style: none;
  display: flex;
  flex-direction: row;
  gap: 1rem;
}

header nav ul li a {
  padding: 1rem;
  color: #121214;
  font-size: 1.6rem;
}

header nav #navToggle {
  display: none;
  padding: 1rem 1.2rem;
  border-radius: .6rem;
  background: var(--red);
  color: #FFF;
  cursor: pointer;
  font-size: 2rem;
}

header nav #navToggle:hover {
  opacity: .9;
}

header nav #navClose {
  display: none;
  padding: 1rem 1.2rem;
  border-radius: .6rem;
  background: transparent;
  color: #FFF;
  cursor: pointer;
  z-index: 11;
  font-size: 2rem;
  position: fixed;
}

header nav #navClose:hover {
  opacity: .9;
}

@media all and (max-width: 992px) {
  header nav #navToggle {
    display: flex;
  }

  header nav ul {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .95);
    z-index: 10;
    display: none;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
  }

  header nav ul li a {
    color: #FFF;
    font-size: 2rem;
    text-transform: uppercase;
  }

  header nav ul li a:hover {
    color: #FeFeFe;
  }

  nav ul.menu.open {
    display: flex;
  }
}

/*
.home {
  position: relative;
  display: flex;
  background: url("../images/bg-Informacoes.jpeg"); */
  /*background: url("../images/pexels-weekendplayer-93820.jpg");*/
/*  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  width: 100vw;
  height: 100vh;
  max-height: 50vh;
}*/


.home {
  position: relative;
  display: flex;
  background: url("../images/bg-Informacoes-2.jpg");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  width: 100%;
  height: 640px;
}

/* Small devices (portrait tablets and large phones, 600px and up) */
@media only screen and (min-width: 380px) {
  .home {
      height: 140px;
    }
}

/* Extra small devices (phones, 600px and down) */
@media only screen and (max-width: 600px) {
  .home {
      height: 140px;
    }
}

/* Small devices (portrait tablets and large phones, 600px and up) */
@media only screen and (min-width: 600px) {
  .home {
      height: 140px;
    }
}

/* Medium devices (landscape tablets, 768px and up) */
@media only screen and (min-width: 768px) {
  .home {
      height: 260px;
    }
} 

/* Large devices (laptops/desktops, 992px and up) */
@media only screen and (min-width: 992px) {
  .home {
      height: 360px;
    }
} 

/* Extra large devices (large laptops and desktops, 1200px and up) */
@media only screen and (min-width: 1200px) {
  .home {
      height: 640px;
    }
}


.wrapper {
  width: 100%;
  max-width: 127rem;
  margin: 0 auto;
  padding: 3rem 1.5rem;
}

main {
  width: 100%;
}

.ficha {
  margin-top: 3rem;
}

.backTop {
  position: fixed;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1.2rem 1.3rem;
  background-color: #141412;
  color: #FFF;
  border-radius: 50%;
  z-index: 9;
  bottom: 2rem;
  right: 2rem;
  font-size: 1.6rem;
}

.backTop:hover {
  color: #FFF;
  background: var(--red);
}

footer {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1.5rem;
}

.fenaclubes {
  max-width: 250px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(var(--grid-columns), 1fr);
  grid-column-gap: var(--column-gap);
  grid-row-gap: var(--row-gap);
  justify-content: center;
}

.l-1 {
  grid-column-start: span 1;
}

.l-2 {
  grid-column-start: span 2;
}

.l-3 {
  grid-column-start: span 3;
}

.l-4 {
  grid-column-start: span 4;
}

.l-5 {
  grid-column-start: span 5;
}

.l-6 {
  grid-column-start: span 6;
}

.l-7 {
  grid-column-start: span 7;
}

.l-8 {
  grid-column-start: span 8;
}

.l-9 {
  grid-column-start: span 9;
}

.l-10 {
  grid-column-start: span 10;
}

.l-11 {
  grid-column-start: span 11;
}

.l-12 {
  grid-column-start: span 12;
}

@media all and (max-width: 768px) {
  [class*=l-] {
    grid-column-start: span 12;
  }
}

.modal {
  position: fixed;
  /* display: flex; */
  display: none;
  flex: 1;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 100;
  justify-content: center;
  align-items: center;
  transition: all .2s;
}

.modal-content {
  position: relative;
  display: flex;
  flex-direction: column;
  flex: 1;
  width: 100%;
  max-width: 1170px;
  background-color: #FFF;
  z-index: 101;
  padding: 3rem;
  border-radius: .8rem;
}

.modal-close {
  padding: 1rem 1.4rem;
  border-radius: 50%;
  position: absolute;
  right: 2rem;
  top: 1rem;
  cursor: pointer;
}

.form-input {
  width: 100%;
  height: 5rem;
  border-radius: .8rem;
  background-color: #f8f8f8;
  color: #141412;
  padding: 1.5rem;
  border: 1px solid transparent;
  outline: none;
}

.form-input:focus {
  border: 1px solid #121214;
}

#btnForm {
  background: var(--red);
  color: #FFF;
  font-size: 1.6rem;
  font-weight: 500;
  height: 4rem;
  border-radius: .6rem;
  padding: 1rem 2rem;
  margin: 1.5rem 0;
  cursor: pointer;
}

#btnForm:hover {
  opacity: .9;
}

.btnActions {
  background-color: var(--red);
  color: #FFF;
  font-size: 1.4rem;
  padding: .5rem .8rem;
  border-radius: .4rem;
  font-weight: 500;
  cursor: pointer;
}

.btn-primary {
  background: #3B76B8;
}

.btn-success {
  background: #3BB8AA;
}

.btn-danger {
  background: #B8453B;
}

.btn-warning {
  background: #A5B83B;
}

.btn-info {
  background: #4E9BF3;
}

.mt-1 {
  margin-top: 1rem;
}

.mt-2 {
  margin-top: 2rem;
}

.mt-3 {
  margin-top: 3rem;
}

.mb-1 {
  margin-bottom: 1rem;
}

.mb-2 {
  margin-bottom: 2rem;
}

.mb-3 {
  margin-bottom: 3rem;
}

.m-1 {
  margin: 1rem;
}

.m-2 {
  margin: 2rem;
}

.m-3 {
  margin: 3rem;
}