body{
    background-color: #ffffff; font-family: Verdana, Geneva, Tahoma, sans-serif ;
    font-size: 150%;
    font-family: "Josefin Sans", sans-serif;
    font-optical-sizing: auto;
    font-weight:weight;
    font-style:normal;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

section {
    scroll-margin-top: 9vh;
}

header{
    box-sizing: border-box;
    background-color: #840000;
    padding: 3%;
    display: flex; 
    justify-content: space-between;
    align-items: center;
}

.cabecalho{
    background-color: #840000;
    padding: 10px 20px;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1;
    box-sizing: border-box;
}

nav ul {
    margin: 0;
    padding: 0;
    display: flex;
}


nav ul li {
    margin: 0 10px;
    text-decoration: none;
    padding: 10px 15px;
    display: block;
}

.menu-icon {
    display: none;
    font-size: 30px;
    color: white;
    cursor: pointer;
}

#menu-toggle {
    display: none;
}

.rodape{
    padding: 3%;
}

.container-tittle {
    position: relative;
}

.float {
    float: right; 
    width: 45%; 
    padding-left: 5%;
    padding-right: 5%; 
    padding-bottom: 2%;
}

.abraco {
    line-height: 1.5; 
    font-size: 1.2em; 
    padding-left: 15px; 
    padding-right: 15px;
} 

.titulo {
  position: absolute;
  text-align: center;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: "Major Mono Display", monospace;
  font-weight: 400;
  font-style: normal;
  font-size: 10vw;
  color: #ffffff;
}

.titulos{
    line-height: 3;
    text-align: center;
    font-weight: bold;
    font-family: "League Gothic", sans-serif;
    font-optical-sizing: auto;
    font-weight: 700;
    font-style: normal;
    font-variation-settings: "wdth" 100;
    font-size: 2em;
}
h1{
    font-size: 2.5em;
}
h2{
    font-size: 1.5em;
}
h3{
    line-height: 1;
    font-size: 1em;
    padding-left: 15px;
    padding-right: 15px;
    font-family: "League Gothic", sans-serif;
    font-optical-sizing: auto;
    font-weight: 100;
    font-style: normal;
    font-variation-settings: "wdth" 100;
}
p{
    line-height: 1.5;
    font-size: 1.5em;
    padding-left: 15px;
    padding-right: 15px;
    font-family: "League Gothic", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-variation-settings: "wdth" 100;
    text-align: justify;
}
ul li{
    line-height: 1.5;
    font-size: 2em;
    padding-left: 15px;
    padding-right: 15px;
    font-family: "League Gothic", sans-serif;
}

.logo{
    width: 55px;
    border-radius: 10px;
    padding: 4%;
}

main{
    background-color: rgb(80, 180, 208);
}

a{
    text-decoration: none;
    color: #3ca5c5;
}

a:hover{
    color: #0e60be;
    cursor: pointer;
}

.a{
    background-color: #a6a6a6;
}

.b{
    background-color: #840000;
}

.b .titulos{
    color: #f1f1f1;
}

footer{
    background-color: #840000;
    padding: 3%;
    display: flex; 
    justify-content: space-between;
    align-items: center;
    color: #ffffff;
}


img{
    display: block; margin-left: auto ; margin-right: auto; width: 100%;
}

.cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 2px 16px;
}

.card {
    width: calc(33% - 20px); 
    margin-bottom: 20px;
    padding: 10px;
    box-sizing: border-box;
    box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
    transition: 0.3s;
    border-radius: 10px;
    background-color: #5785a3;
    cursor: pointer;
}

.card:hover{
  transform: scale(1.03);
  background-color: #0e60be;
}

.imgcard{
    border-radius: 10px;
}

@media screen and (max-width: 600px) {
  .column {
    width: 100%;
  }
}


@media screen and (max-width: 850px) {
    .card {
        width: calc(100% - 20px);
    }
}

@media screen and (max-width: 1382px) {
    .menu-icon {
        display: block;
        padding-right: 10px;
    }

    nav ul {
        display: none;
        flex-direction: column;
        width: 100%;
        background-color: #840000;
        position: absolute;
        /* top: 150px; */
        left: 0;
        z-index: 1;
        padding: 0;
    }

    #menu-toggle:checked + .menu-icon + ul {
        display: flex;
    }

    nav ul li h1{
        text-align: center;
        margin: 0;
    }

    nav ul li a h1{
        padding: 15px 0;
    }

    nav ul li label h1 {
        /* width: 100%; */
        display: block;
    }
}

  label {
    display: block;
    text-align: left;
    margin-bottom: 10px;
    color: #000000;
}

input {
    width: calc(100% - 40px); /* Calcule a largura do input para considerar o padding */
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #000000;
    border-radius: 4px;
    font-size: 20px;
}


.slideshow-container {
  max-width: 1000px;
  position: relative;
  margin: auto;
}

.mySlides {
  display: none;
}

.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  margin-top: -22px;
  padding: 16px;
  color: white;
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
}

.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

.prev:hover, .next:hover {
  background-color: rgba(0,0,0,0.8);
}

.container{
  position: relative;
  max-width: 100%;
  margin: 0; 
}

.container .content {
    position: absolute; /* Position the background text */
    bottom: 0; /* At the bottom. Use top:0 to append it to the top */
    background: rgb(0, 0, 0); /* Fallback color */
    background: rgba(0, 0, 0, 0.5); /* Black background with 0.5 opacity */
    color: #f1f1f1; /* Grey text */
    width: 100%; /* Full width */
    padding: 20px; /* Some padding */
  }

.numbertext {
  color: #f2f2f2;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}

.dot {
  cursor: pointer;
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.active, .dot:hover {
  background-color: #717171;
}

.fade {
  animation-name: fade;
  animation-duration: 1.5s;
}

@keyframes fade {
  from {opacity: .4}
  to {opacity: 1}
}


.responsive-form {
    max-width: 900px;
    width: 90%;
    margin: 40px auto;
    padding: 30px;
}

.responsive-form form {
    display: flex;
    flex-direction: column;
}

.responsive-form label {
    font-weight: bold;
    margin-bottom: 5px;
    color: #ffffff;
}

.responsive-form input,
.responsive-form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 20px;
    border-radius: 8px;
    font-size: 16px;
    font-family: inherit;
    transition: 0.3s ease;
    background-color: #cacaca;
}

.responsive-form input:focus,
.responsive-form textarea:focus {
    outline: none;
}

.responsive-form textarea {
    min-height: 120px;
    resize: vertical;
}

.responsive-form input[type="submit"] {
    background-color: #5785a3;
    border: none;
    cursor: pointer;
    font-weight: bold;
    font-size: 18px;
    transition: 0.3s ease;
}

.responsive-form input[type="submit"]:hover {
    background-color: #0e60be;
    transform: translateY(-2px);
}

ol {
  list-style: decimal;
  padding-left: 30px;
}

.modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 1; /* Sit on top */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgb(0,0,0); /* Fallback color */
  background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}

/* Modal Content/Box */
.modal-content {
  background-image: linear-gradient(to bottom right, #5785a3, #0e60be);
  margin: 10% auto; /* 15% from the top and centered */
  padding: 20px;
  border: 1px solid #888;
  width: 80%; /* Could be more or less, depending on screen size */
}

.modal-content p{
  font-size: 25px;
  line-height: 1.6;
  text-align: left;
}

.modal-content ul{
  padding-left: 10px;
}

.modal-content li{
  font-size: 20px;
  margin-bottom: 8px;
}

.modal-content h2{
  text-align: center;
  margin-bottom: 1px;
}

/* The Close Button */
.close {
  color: #aaa;
  float: right;
  font-size: 9vh;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}