/* 
  _____   _____   ____    ____       _      __  __   _____   _   _   _____      _      ____      ____    ___    ____   ___   _____      _      ___   ____  
 |  ___| | ____| |  _ \  |  _ \     / \    |  \/  | | ____| | \ | | |_   _|    / \    / ___|    |  _ \  |_ _|  / ___| |_ _| |_   _|    / \    |_ _| / ___| 
 | |_    |  _|   | |_) | | |_) |   / _ \   | |\/| | |  _|   |  \| |   | |     / _ \   \___ \    | | | |  | |  | |  _   | |    | |     / _ \    | |  \___ \ 
 |  _|   | |___  |  _ <  |  _ <   / ___ \  | |  | | | |___  | |\  |   | |    / ___ \   ___) |   | |_| |  | |  | |_| |  | |    | |    / ___ \   | |   ___) |
 |_|     |_____| |_| \_\ |_| \_\ /_/   \_\ |_|  |_| |_____| |_| \_|   |_|   /_/   \_\ |____/    |____/  |___|  \____| |___|   |_|   /_/   \_\ |___| |____/ 

 
  ____     ____   __  __     _____   ____    _ 
 |  _ \   / ___| |  \/  |   |_   _| |  _ \  / |
 | | | | | |  _  | |\/| |     | |   | |_) | | |
 | |_| | | |_| | | |  | |     | |   |  __/  | |
 |____/   \____| |_|  |_|     |_|   |_|     |_|
                                               

 █▀▀▄ █▀▀█ ▀█░█▀ ░▀░ █▀▀▄   █▀▀█ █▀▀▄ ▀▀█▀▀ █▀▀█    
 █░░█ █▄▄█ ░█▄█░ ▀█▀ █░░█   █▄▄█ █░░█ ░░█░░ █▄▄█
 ▀▀▀░ ▀░░▀ ░░▀░░ ▀▀▀ ▀▀▀░   ▀░░▀ ▀░░▀ ░░▀░░ ▀░░▀   
                                                                       
*/

/* CSS RESET */

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

/* meu codigo */
header {
    display: flex;
    align-items: center;
  }
  
  @media (min-width: 700px) {
   .leading {
      display: flex;
      align-items: center;
    }
  }
/* header */

html{
  scroll-behavior: smooth;
}
body{
  background-color: black;
  font-family: Arial, Helvetica, sans-serif;
}
b {
  font-weight: bold;
  font-family: Arial, Helvetica, sans-serif;
}
p {
  text-align:justify;
  word-spacing:-2px;
  font-family: Arial, Helvetica, sans-serif;
}

article {
  margin:0 auto;
  max-width: 100%;
  line-height: 1.5;
  font-size: 18px;
  padding-top: 3em;
  padding-bottom: 5em;
}
@media (max-width: 800px) {
  article {
    font-size: 16px;
    max-width: 75%;
   }
 }

/* WRAPPER'S */

.wrapper {
  width: 80%;
  margin: auto; 
  }
  @media (max-width: 800px){
  .wrapper {
    width: 100%;
    grid-template-columns: 1fr;
  }
}

.wrapper2 {
  display: grid;
  grid-gap: 2em;
  grid-template-columns: repeat(auto-fill, minmax(500px, 1fr));
  }
  @media (max-width: 700px){
  .wrapper2 {
    grid-template-columns: 1fr;
  }
}

.wrapper3 {
  display:grid;
  padding: 80px;
  grid-template-columns:repeat(4, 1fr);
  grid-gap:4em;
  grid-auto-rows: minmax(100px, auto);
}
@media (max-width: 1800px){
  .wrapper3 {
    padding: 50px;
    grid-template-columns:repeat(3, 1fr);
  }
}
@media (max-width: 1500px){
  .wrapper3 {
    padding: 100px;
    grid-template-columns:repeat(2, 1fr);
  }
}
@media (max-width: 950px){
  .wrapper3 {
    padding: 20px;
    grid-template-columns:repeat(1, 1fr);
  }
}

/* BARRA DE NAVEGAÇÃO */

nav{
  width: 90%;
  background: black;
  overflow: hidden;
  position: fixed;
  z-index: 2;  
}
@media (max-width: 700px){
  nav {
    width: 100%;
    font-size: 10px;
  }
}

ul{
  padding: 0;
  margin: 0;
  list-style: none;
}
ul li a:hover { 
  color:pink;
 }

li{
  float: left;
  width: 150px;
}
@media (max-width: 700px){
  li {
    width: 85px;
  }
}

a{
    padding: 20px;
    width: 100%;
    height: 100%;
    display:block;
    text-decoration: none;
    color: #fff;
    text-transform: uppercase;
    font-weight: bold;
}

/* SLIDER */

[class^="swiper-button-"] {
  transition: all .3s ease;
}
.swiper-slide {
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}
*, *:before, *:after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
.swiper-container {
  width: 80%;
  height: 700px;
  float: left;
  transition: opacity .6s ease, -webkit-transform .3s ease;
  transition: opacity .6s ease, transform .3s ease;
  transition: opacity .6s ease, transform .3s ease, -webkit-transform .3s ease;
}
.swiper-container.nav-slider {
  width: 20%;
  padding-left: 5px;
}
.swiper-container.nav-slider .swiper-slide {
  cursor: pointer;
  opacity: .4;
  transition: opacity .3s ease;
}
.swiper-container.nav-slider .swiper-slide.swiper-slide-active {
  opacity: 1;
}
.swiper-container.nav-slider .swiper-slide .content {
  width: 100%;
}
.swiper-container.nav-slider .swiper-slide .content .title {
  font-size: 20px;
}
.swiper-container:hover .swiper-button-prev,
.swiper-container:hover .swiper-button-next {
  -webkit-transform: translateX(0);
          transform: translateX(0);
  opacity: 1;
  visibility: visible;
}
.swiper-container.loading {
  opacity: 0;
  visibility: hidden;
}
.swiper-slide {
  overflow: hidden;
}
.swiper-slide .slide-bgimg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-position: center;
  background-size: cover;
}
.swiper-slide .entity-img {
  display: none;
}
.swiper-slide .content {
  position: absolute;
  top: 40%;
  left: 0;
  width: 50%;
  padding-left: 5%;
  color: #fff;
}
.swiper-slide .content .title {
  font-size: 2.6em;
  font-weight: bold;
  margin-bottom: 30px;
}
.swiper-slide .content .caption {
  display: block;
  font-size: 13px;
  line-height: 1.4;
  -webkit-transform: translateX(50px);
          transform: translateX(50px);
  opacity: 0;
  transition: opacity .3s ease, -webkit-transform .7s ease;
  transition: opacity .3s ease, transform .7s ease;
  transition: opacity .3s ease, transform .7s ease, -webkit-transform .7s ease;
}
.swiper-slide .content .caption.show {
  -webkit-transform: translateX(0);
          transform: translateX(0);
  opacity: 1;
}

[class^="swiper-button-"] {
  width: 44px;
  opacity: 0;
  visibility: hidden;
}
.swiper-button-prev {
  -webkit-transform: translateX(50px);
          transform: translateX(50px);
}
.swiper-button-next {
  -webkit-transform: translateX(-50px);
          transform: translateX(-50px);
}

/* SECÇÕES */


/* 1 */
#section1{
    background:pink;
    display: inline-block;
    width: 100%;  
}

/* 2 */
#navbox2{
    height: 53px;
    background:black;
    width: 100%; 
    display: inline-block;       
}
#section2{
  background:black;
}

/* 3 */
#navbox3{
    height: 53px;
    background:black;
    width: 100%;  
}
#section3{
    background:pink;
    display: inline-block;
    width: 100%; 
    height: 100%;  
}

/* 4 */
#navbox4{
    height: 53px;
    background:black;
    width: 100%;    
}
#section4{
    height: 100vh;
    background:linear-gradient(rgb(255, 192, 203),rgb(42, 33, 70));
    display: inline-block;
    width: 100%;  
    text-align: center;
    margin-top:0%;
}
@media (max-width: 700px){
  #section4 {
    height: 150%;
  }
}

/* GALERIA MODAL THUMBNAIL ZOOM ANIME */
  

.zoom {
  padding: 50px;
  background-position: center;
  background-size: 100%;
  background-repeat: no-repeat;
  transition: transform .2s; 
  width: 250px;
  height: 250px;
  margin: 0 auto;
}
@media (max-width: 700px){
  .zoom {
    width: 200px;
    height: 200px;
  }
}
.zoom:hover {
  transform: scale(1.5); 
}
@media (max-width: 700px){
  .zoom:hover {
    transform: scale(1);
  }
}

/* GALERIA MODAL + IMAGE 1 */

img {
  width: 100%;
  display: block;
  margin: auto;
  max-height: 70vh;
  max-width: 70vh;
  transition: all .5s;
}

.modal{
 background-color: rgba(0,0,0, .8);
 width:100%;
 height: 100vh;
 position: fixed;
 top: 0;
 left: 0; 
 z-index: 99;
 opacity: 0;
 visibility: hidden;
 transition: all .5s;
}
.modal__content{
 width: 100%;
 display: absolute;
 margin: auto;
 max-height: 90vh;
 max-width: 90vh;
 background-color: white;
 position: absolute;
 top: 50%;
 left: 50%;
 transform: translate(-50%, -50%);
 padding: 2em;
 border-radius: 1em;
 opacity: 0;
 visibility: hidden;
 transition: all .5s;
}
#modal:target{
 opacity: 1;
 visibility: visible;
}
#modal:target .modal__content{
 opacity: 1;
 visibility: visible;
}
.modal__close{
 color: #363636;
 font-size: 2em;
 top: .5em;
 right: 1em;
}
.modal__next{
 color: #363636;
 font-size: 3em;
 top: 50%;
 height: 10%;
 width: 20px;
 right: .5em;
 text-align: right;
 position: absolute;
}
@media (max-width: 1000px){
 .modal__next {
   right: .2em;
 }
}
.modal__prev {
  color: #363636;
  font-size: 3em;
  top: 50%;
  height: 10%;
  width: 20px;
  left: 0em;
  text-align: left;
  position: absolute;
 }
@media (max-width: 1000px){
  .modal__prev {
    left: -0.37em;
  }
 }
.modal-open{
  display: inline-block;
  color: dodgerblue;
  margin: 2em;
}

/* MODAL IMAGE 2 */


.modal2{
  background-color: rgba(0,0,0, .8);
  width:100%;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0; 
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  transition: all .5s;
}
.modal__content2{
  width: 100%;
  display: absolute;
  margin: auto;
  max-height: 90vh;
  max-width: 90vh;
  background-color: white;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 2em;
  border-radius: 1em;
  opacity: 0;
  visibility: hidden;
  transition: all .5s;
}
#modal2:target{
  opacity: 1;
  visibility: visible;
}
#modal2:target .modal__content2{
  opacity: 1;
  visibility: visible;
}

/* MODAL IMAGE 3 */


.modal3{
  background-color: rgba(0,0,0, .8);
  width:100%;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0; 
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  transition: all .5s;
}
.modal__content3{
  width: 100%;
  display: absolute;
  margin: auto;
  max-height: 90vh;
  max-width: 90vh;
  background-color: white;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 2em;
  border-radius: 1em;
  opacity: 0;
  visibility: hidden;
  transition: all .5s;
}
#modal3:target{
  opacity: 1;
  visibility: visible;
}
#modal3:target .modal__content3{
  opacity: 1;
  visibility: visible;
}

/* MODAL IMAGE 4 */


.modal4{
  background-color: rgba(0,0,0, .8);
  width:100%;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0; 
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  transition: all .5s;
}
.modal__content4{
  width: 100%;
  display: absolute;
  margin: auto;
  max-height: 90vh;
  max-width: 90vh;
  background-color: white;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 2em;
  border-radius: 1em;
  opacity: 0;
  visibility: hidden;
  transition: all .5s;
}
#modal4:target{
  opacity: 1;
  visibility: visible;
}
#modal4:target .modal__content4{
  opacity: 1;
  visibility: visible;
}

/* MODAL IMAGE 5 */


.modal5{
  background-color: rgba(0,0,0, .8);
  width:100%;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0; 
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  transition: all .5s;
}
.modal__content5{
  width: 100%;
  display: absolute;
  margin: auto;
  max-height: 90vh;
  max-width: 90vh;
  background-color: white;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 2em;
  border-radius: 1em;
  opacity: 0;
  visibility: hidden;
  transition: all .5s;
}
#modal5:target{
  opacity: 1;
  visibility: visible;
}
#modal5:target .modal__content5{
  opacity: 1;
  visibility: visible;
}
/* MODAL IMAGE 6 */


.modal6{
  background-color: rgba(0,0,0, .8);
  width:100%;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0; 
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  transition: all .5s;
}
.modal__content6{
  width: 100%;
  display: absolute;
  margin: auto;
  max-height: 90vh;
  max-width: 90vh;
  background-color: white;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 2em;
  border-radius: 1em;
  opacity: 0;
  visibility: hidden;
  transition: all .5s;
}
#modal6:target{
  opacity: 1;
  visibility: visible;
}
#modal6:target .modal__content6{
  opacity: 1;
  visibility: visible;
}

/* MODAL IMAGE 7 */


.modal7{
  background-color: rgba(0,0,0, .8);
  width:100%;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0; 
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  transition: all .5s;
}
.modal__content7{
  width: 100%;
  display: absolute;
  margin: auto;
  max-height: 90vh;
  max-width: 90vh;
  background-color: white;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 2em;
  border-radius: 1em;
  opacity: 0;
  visibility: hidden;
  transition: all .5s;
}
#modal7:target{
  opacity: 1;
  visibility: visible;
}
#modal7:target .modal__content7{
  opacity: 1;
  visibility: visible;
}

/* MODAL IMAGE 8 */


.modal8{
  background-color: rgba(0,0,0, .8);
  width:100%;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0; 
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  transition: all .5s;
}
.modal__content8{
  width: 100%;
  display: absolute;
  margin: auto;
  max-height: 90vh;
  max-width: 90vh;
  background-color: white;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 2em;
  border-radius: 1em;
  opacity: 0;
  visibility: hidden;
  transition: all .5s;
}
#modal8:target{
  opacity: 1;
  visibility: visible;
}
#modal8:target .modal__content8{
  opacity: 1;
  visibility: visible;
}

/* MODAL IMAGE 9 */


.modal9{
  background-color: rgba(0,0,0, .8);
  width:100%;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0; 
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  transition: all .5s;
}
.modal__content9{
  width: 100%;
  display: absolute;
  margin: auto;
  max-height: 90vh;
  max-width: 90vh;
  background-color: white;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 2em;
  border-radius: 1em;
  opacity: 0;
  visibility: hidden;
  transition: all .5s;
}
#modal9:target{
  opacity: 1;
  visibility: visible;
}
#modal9:target .modal__content9{
  opacity: 1;
  visibility: visible;
}

/* MODAL IMAGE 10 */


.modal10{
  background-color: rgba(0,0,0, .8);
  width:100%;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0; 
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  transition: all .5s;
}
.modal__content10{
  width: 100%;
  display: absolute;
  margin: auto;
  max-height: 90vh;
  max-width: 90vh;
  background-color: white;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 2em;
  border-radius: 1em;
  opacity: 0;
  visibility: hidden;
  transition: all .5s;
}
#modal10:target{
  opacity: 1;
  visibility: visible;
}
#modal10:target .modal__content10{
  opacity: 1;
  visibility: visible;
}

/* MODAL IMAGE 11 */


.modal11{
  background-color: rgba(0,0,0, .8);
  width:100%;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0; 
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  transition: all .5s;
}
.modal__content11{
  width: 100%;
  display: absolute;
  margin: auto;
  max-height: 90vh;
  max-width: 90vh;
  background-color: white;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 2em;
  border-radius: 1em;
  opacity: 0;
  visibility: hidden;
  transition: all .5s;
}
#modal11:target{
  opacity: 1;
  visibility: visible;
}
#modal11:target .modal__content11{
  opacity: 1;
  visibility: visible;
}

/* MODAL IMAGE 12 */


.modal12{
  background-color: rgba(0,0,0, .8);
  width:100%;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0; 
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  transition: all .5s;
}
.modal__content12{
  width: 100%;
  display: absolute;
  margin: auto;
  max-height: 90vh;
  max-width: 90vh;
  background-color: white;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 2em;
  border-radius: 1em;
  opacity: 0;
  visibility: hidden;
  transition: all .5s;
}
#modal12:target{
  opacity: 1;
  visibility: visible;
}
#modal12:target .modal__content12{
  opacity: 1;
  visibility: visible;
}


/* CONTACTOS */

h1{
  font-family: Arial, Helvetica, sans-serif;
  font-size: 38px;
  text-align: left; 
  font-weight: bold;
  padding-bottom: 10px;
  padding-left:0px;
}

.contact-title{
    margin-top: 80px;
    text-transform: uppercase;
    color: white;
    transition: all 4s ease-in-out;
}

.contact-title h1{
    text-align: center;
    font-size: 32px;
    line-height: 10px;
}

.contact-title h2{
    font-size: 16px;
    padding-left: 10%;
    padding-right: 10%;
}

form{
    margin-top: 50px;
    transition: all 4s ease-in-out;
}

.form-control{
width: 40%;
background: transparent;
color: #fff;
border: none;
outline:none;
border-bottom: 1px solid white;
font-size: 18px;
max-width: 500px;
margin-bottom: 16px;} 
input{height: 45px;}

@media (max-width: 1500px){
  .form-control {
    width: 70%;
  }
}

#test{
background:orangered;;
border-color: transparent;
color: white;
font-size: 20px;
font-weight: bold;
letter-spacing: 2px;
height: 50px;
margin-top: 20px;}

/*------------------------*/
 
.illustration img {
  width: 100%;
  display: block;
  margin: auto;
  padding: 40px;
}
