*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

@import url('https://fonts.googleapis.com/css2?family=League+Spartan:wght@700&display=swap');

/*navbar*/
a {
  color: #fff;
  text-decoration: none;
  transition: 0.3s;
}

nav > ul > li:hover {
  opacity: 0.5;
  transition: 0.5s;
  font-style: italic;
}

.logo{
  font-size: 24px;
  text-transform: uppercase;
  letter-spacing: 4px;
}

.logo:hover {
  opacity: 0.5;
  transition: 0.5s;
  font-weight: 480;
  font-style: italic;
}

nav {
  display: flex;
  position: relative;
  justify-content: space-around;
  align-items: center;
  font-family: system-ui, -apple-system, Helvetica, Arial, sans-serif;
  background: #1369b4;
  height: 8vh;
  box-shadow: rgb(0, 0, 0)  0px 0px 10px;
}

.nav-list {
  list-style: none;
  display: flex;
  
}

.nav-list li {
  letter-spacing: 3px;
  margin-left: 32px;
}

.mobile-menu {
  display: none;
  cursor: pointer;
}

.mobile-menu div {
  width: 32px;
  height: 2px;
  background: #fff;
  margin: 8px;
  transition: 0.3s;
}

@media (max-width: 999px) {
  body {
    overflow-x: hidden;
  }
  .nav-list {
    position: absolute;
    top: 8vh;
    right: 0;
    width: 50vw;
    height: 92vh;
    background: #1369b4;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
    transform: translateX(100%);
    transition: transform 0.3s ease-in;
    
  }
  .nav-list li {
    margin-left: 0;
    opacity: 0;
  }
  .mobile-menu {
    display: block;
  }
}
.nav-list.active {
  transform: translateX(0);
}

@keyframes navLinkFade {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.mobile-menu.active .line1 {
  transform: rotate(-45deg) translate(-8px, 8px);
}

.mobile-menu.active .line2 {
  opacity: 0;
}

.mobile-menu.active .line3 {
  transform: rotate(45deg) translate(-5px, -7px);
}

/*pag home*/
body{
  background: linear-gradient(to top,#ffffff, #def5ff, #d7f2ff) no-repeat center center;
  background-size: cover;
  background-attachment: fixed;
  height: 92vh;
}

.main{
  max-width: 1200px;
  margin: 0 auto;
}

h1 {
  color: #001696;
  font-family: "League Spartan", sans-serif;
  font-optical-sizing: auto;
  text-shadow: 2px 2px 3px rgba(29, 132, 158, 0.705);
  font-weight: 700;
  font-size: 50px;
  text-transform: uppercase;
  text-align: center;
  margin-top: 8vh;
  margin-bottom: 3vh;
}

/* carrossel */
.banner_responsivo_base {
  border-radius: 2px;
}

.slides {
  display: block;
  position: relative;
  max-width: 1472px;
  width: 95%;
  height: 360px;
  margin: 5px auto;
  padding: 0;
  overflow: hidden;
  list-style: none;

}

.slides input {
  display: none;
  transition: all 0.5s ease-in-out;
}

.slide-container {
  display: block;
}

.slide-image {
  display: flex;
  flex-direction: column;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  opacity: 0;
  transition: all 0.7s ease-in-out;
}

.slide-image img {
  width: auto;
  min-width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;

}


.carousel-controls {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  font-size: 100px;
  line-height: 360px;
  color: #9b9696;
  display: flex;
  transition: opacity 0.3s ease-in-out;
  cursor: pointer;

}

.carousel-controls label {
  display: none;
  position: absolute;
  padding: 0 20px;
  opacity: 0;
  transition: opacity 0.2s;
  cursor: pointer;
}

.slide-image:hover + .carousel-controls label {
  opacity: 0.5;
}

.carousel-controls label:hover {
  opacity: 1;
}

.carousel-controls .prev-slide {
  width: 10%;
  text-align: left;
  left: 0;
}

.carousel-controls .next-slide {
  width: 10%;
  text-align: right;
  right: 0;
}

.carousel-dots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -5px;
  z-index: 999;
  text-align: center;
}

.carousel-dots .carousel-dot {
  display: inline-block;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background-color: #fff;
  opacity: 0.5;
  margin: 5px;
}

input:checked + .slide-container .slide-image {
  opacity: 1;
  transform: scale(1);
  transition: opacity 1s ease-in-out;
}

input:checked + .slide-container .carousel-controls label {
  display: block;
}

input#img-1:checked ~ .carousel-dots label#img-dot-1,
input#img-2:checked ~ .carousel-dots label#img-dot-2,
input#img-3:checked ~ .carousel-dots label#img-dot-3,
input#img-4:checked ~ .carousel-dots label#img-dot-4,
input#img-5:checked ~ .carousel-dots label#img-dot-5,
input#img-6:checked ~ .carousel-dots label#img-dot-6 {
  opacity: 2;
}

input:checked + .slide-container .nav label {
  display: block;
}
/*sobre*/
h2{
  font-size: 30px;
  text-align: center;
  margin-top: 5vh;
  margin-bottom: 2vh;
  color: #3f233b;
  text-transform: unset;
  font-family: "Inter", sans-serif;
}

p{
  font-size: 19px;
  text-align: center;
  margin: 0 auto;
  width: 80%;
  color: #181212;
  line-height: 1.6;
  font-family: "Inter", sans-serif;
  margin-bottom: 7vh;
  text-shadow: 1px 1px 2px rgba(233, 233, 233, 0.842);
  font-weight: 400;
  letter-spacing: 0.5px;
}

/* cursos */
 img {
  height: auto;
  max-width: 100%;
  border-radius: 10px;
  vertical-align: middle;
}

.btn {
  color: #ffffff;
  padding: 0.8rem;
  font-size: 14px;
  text-transform: uppercase;
  border-radius: 4px;
  font-weight: 400;
  display: block;
  width: 100%;
  cursor: pointer;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: transparent;
}

.btn:hover {
  background-color: rgba(255, 255, 255, 0.12);
}


.cards {
  position: relative;
  display: flex;
  flex-wrap:wrap;
  
  align-items: center;
  justify-content: center;
  margin: auto;
  padding: 0;
  width: 100%;
  max-width: 1200px;
  
}

ul > .cards {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.cards_item {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin: 1rem;
  padding: 0;
  box-sizing: border-box;
  transition: transform 0.3s ease-in-out;
  cursor: pointer;
}

@media (min-width: 40rem) {
  .cards_item {
    width: 39%;
  }
}

@media (min-width: 5rem) {
  .cards_item {
    width: 30%;
  }
}

.card {
  background-color: white;
  border-radius: 0.25rem;
  box-shadow: 0 20px 40px -14px rgba(0, 0, 0, 0.25);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  width: 100%;
  height: auto ;
}

.card_content {
  padding: 1.5rem;
  background: linear-gradient(to bottom left, #a3ade2 40%, #8375cf 100%);
  
}

.card_title {
  color: #ffffff;
  text-shadow: 1px 1px 2px rgba(8, 8, 8, 0.842);
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: capitalize;
  margin: auto;
}

.card_text {
  color: #ffffff;
  text-shadow: 1px 1px 2px rgba(8, 8, 8, 0.842);
  font-size: 0.875rem;
  line-height: 1.5;
  margin-bottom: 1.25rem;    
  font-weight: 400;
}

.made_by{
  font-weight: 400;
  font-size: 13px;
  margin-top: 35px;
  text-align: center;
}
 /*localização*/

 iframe{
  width: 60%;
  height: 260px;
  margin: 0 auto;
  margin-top: 5vh;
  align-items: center;
  display: block;
}

/*contatos*/
.social-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
}

.social-links > a {
  display: inline-block;
}


.social-links > a > img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}


.social-links > a> img:hover{
    opacity: 0.3;
    transition: 0.5s;
    cursor: pointer;
}

footer > p{
  font-size: 15px;
}
