@charset "UTF-8";
/* CSS Document */
/* Version: 1.5 */


/* RESET */
/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/

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;
}
/* HTML5 display-role reset for older browsers */
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;
}
input {
	padding-top:0 ;
	padding-right: 0;
	padding-bottom: 0;
	padding-left: 0;
	border-top-width: 0;
	border-right-width: 0;
	border-bottom-width: 0;
	border-left-width: 0;
}

/* INICIO */

html {
  font-smoothing: antialiased;
  -webkit-font-smoothing: antialiased;
}
/* importante para garantir aplicação de tamanho correto: html {font-size: px} body {font-size: em} restantes elementos {font-size: rem} */
body {
  font-size: 1em;
}
@media screen and (min-width: 320px) {
  html {
    font-size: 18px;
  }
}
@media screen and (min-width: 768px) {
  html {
    font-size: 21px;
  }
}
@media screen and (min-width: 1240px) {
  html {
    font-size: 28px;
  }
}
@media screen and (min-width: 1920px) {
  html {
    font-size: 36px;
  }
}

@media screen and (orientation:portrait) {
  .desktop {
    display: none;
  }
  #intro .entrada {
    background-image:url(../ims/coliseu_porto-19121941m.jpg);
  }
  #m-um .entrada {
    background-image:url(../ims/coliseu_porto-montra01m.jpg);
  }
  #m-dois .entrada {
    background-image:url(../ims/coliseu_porto-montra02m.jpg);
  }
  #m-tres .entrada {
    background-image:url(../ims/coliseu_porto-montra03m.jpg);
  }
  #m-quatro .entrada {
    background-image:url(../ims/coliseu_porto-montra04m.jpg);
  }
  #m-cinco .entrada {
    background-image:url(../ims/coliseu_porto-montra05m.jpg);
  }
  #m-seis .entrada {
    background-image:url(../ims/coliseu_porto-montra06m.jpg);
  }
  .logo {
    margin: 8vh 8vh 5vh;
    width: 50vw;
    height: 23.75vw;
  }
  .apoios {
    margin: 5vh;
    width: 80vw;
  }
  .menu {
    width:100vw;
  }
  button, .submenu a.btn {
    display: flex;
  }
  .menu.saida {
    -webkit-animation: fadeout 1s;
    animation: fadeout 1s;
    opacity: 1;
    animation-fill-mode: forwards;
    -webkit-animation-fill-mode: forwards;
  }
}
@media screen and (orientation:landscape) {
  .mobile, button, footer {
    display: none;
  }
  #intro .entrada {
    background-image:url(../ims/coliseu_porto-19121941.jpg);
  }
  #m-um .entrada {
    background-image:url(../ims/coliseu_porto-montra01.jpg);
  }
  #m-dois .entrada {
    background-image:url(../ims/coliseu_porto-montra02.jpg);
  }
  #m-tres .entrada {
    background-image:url(../ims/coliseu_porto-montra03.jpg);
  }
  #m-quatro .entrada {
    background-image:url(../ims/coliseu_porto-montra04.jpg);
  }
  #m-cinco .entrada {
    background-image:url(../ims/coliseu_porto-montra05.jpg);
  }
  #m-seis .entrada {
    background-image:url(../ims/coliseu_porto-montra06.jpg);
  }
  .logo {
    margin: 5vh;
    width: 15vw;
  }
  .apoios {
    margin: 5vh;
    width: 25vw;
  }
  .menu {
    width:30%;
  }
  .menu li.mn:hover {
    background-color: #0f6f9f;
  }
  .conteudo {
    display: grid;
    grid-template-columns: 30vw 70vw;
    grid-template-rows: auto;
    -moz-column-gap: 0px;
         column-gap: 0px;
  }
  .submenu a.btn {
    display: flex;
  }
}

@keyframes fadein {
    from { opacity: 0;}
    to   { opacity: 1;}
}

@-webkit-keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

@keyframes fadeto {
    from { opacity: 0;}
    to   { opacity: .8;}
}

@-webkit-keyframes fadeto {
    from { opacity: 0; }
    to   { opacity: .8; }
}

@keyframes fadeout {
    from { opacity: 1;}
    to { opacity: 0; transform: translateY(-100%); }
}

@-webkit-keyframes fadeout {
    from { opacity: 1; }
    to { opacity: 0; -webkit-transform: translateY(-100%) }
}

@keyframes fade {
    from { opacity: 1;}
    to { opacity: 0;}
}

@-webkit-keyframes fade {
    from { opacity: 1; }
    to { opacity: 0;}
}

@keyframes entrada {
  0% { opacity: 0; }
  10%   { opacity: 1;}
  90%   { opacity: 1;}
  100%   { opacity: 0; }
}

@-webkit-keyframes entrada {
    0% { opacity: 0; }
    10%   { opacity: 1; }
    90%   { opacity: 1;}
    100%   { opacity: 0;}
}



/* inicio */
.conteudo {
  -webkit-animation: fadein 1s;
  animation: fadein 1s;
  opacity: 0;
  width:100vw;
  height: 100vh;
  height: calc(var(--vh, 1vh) * 100);
  animation-delay: 3s;
  -webkit-animation-delay: 3s;
  -ms-animation-delay: 3s;
  -o-animation-delay: 3s;
  animation-fill-mode: forwards;
  -webkit-animation-fill-mode: forwards;
}

.entrada {
  position: fixed;
  z-index: 9999;
	width:100vw;
  height: 100vh;
  height: calc(var(--vh, 1vh) * 100);
	background-size:cover;
	background-repeat:no-repeat;
  background-position: center bottom;
	margin:0;
	padding:0;
  display: flex;
  flex-direction: column;
  align-items: center;
  align-content: center;
  justify-content: space-between;
}
.aparece {
  -webkit-animation: fadein 2s;
  animation: fadein 2s;
  opacity: 0;
/*  animation-delay: 2s;
  -webkit-animation-delay: 2s;
  -ms-animation-delay: 2s;
  -o-animation-delay: 2s;*/
  animation-fill-mode: forwards;
  -webkit-animation-fill-mode: forwards;
}
.apoios.aparece {
  -webkit-animation: fadein 1s;
  animation: fadein 1s;
  opacity: 0;
  animation-delay: 2s;
  -webkit-animation-delay: 2s;
  -ms-animation-delay: 2s;
  -o-animation-delay: 2s;
  animation-fill-mode: forwards;
  -webkit-animation-fill-mode: forwards;
}

.saida {
  -webkit-animation: fadeout 2s;
  animation: fadeout 2s;
  opacity: 1;
  animation-delay: 4s;
  -webkit-animation-delay: 4s;
  -ms-animation-delay: 4s;
  -o-animation-delay: 4s;
  animation-fill-mode: forwards;
  -webkit-animation-fill-mode: forwards;
}

.tituloexpo {
  text-align: center;
  color: white;
  padding-bottom: 10vh;
}

/* menus */
.menu {
  position: fixed;
  z-index: 9998;
  height: 100vh;
  height: calc(var(--vh, 1vh) * 100);
  background-color: #006699;
  margin:0;
	padding:0;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  align-content: center;
  justify-content: space-around;
  -webkit-animation: fadein .3s;
  animation: fadein .3s;
  opacity: 0;
  animation-fill-mode: forwards;
  -webkit-animation-fill-mode: forwards;
}
.submenu {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
  padding: 5vh;
}
footer {
  bottom: 0;
  right: 0;
  padding: 5vh;
  position: fixed;
 }
button, .submenu a.btn {
  background-color: #006699;
  box-shadow: 0px 0px 10px rgba(0,0,0,.3);
  border-radius: 2rem;
  line-height: 1rem;
  width: 4rem;
  height: 4rem;
  z-index: 1;
  border: none;
  padding: 0;
  align-items: center;
  justify-content: center;
  font-size: .7rem;
  font-weight: 400;
  color: white;
  cursor: pointer;
}
.menu li {
  flex: 1;
  display: flex;
  border-top: solid white thin;
  padding-left: 5vh;
  align-items: center;
}
.menu li:first-child {
  border-top: none;
  align-self: center;
  padding: 0;
  flex: 3;
}

.menu li.ativo, .menu li.ativo a {
  background-color: white;
  color: #006699;
}
.menu li:hover {
  cursor: pointer;
}


/* fonts */
.menu li a, h1, h2 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
}
.menu li a {
  text-transform: uppercase;
  text-decoration: none;
  color: white;
  font-size: .8rem;
  letter-spacing: .06rem;
}
p {
  font-family: 'Zilla Slab', serif;
  font-weight: 300;
}
i {
  font-style: italic;
}
h1 {
  font-size: 2rem;
}
h2 {
  font-size: 1.6rem;
  margin: 2rem 0;
  line-height: 120%;
}
h3 {
  font-size: 0.9rem;
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
}
.nobreak {
  white-space: nowrap;
}

/* conteudos */
article {
  width: 100%;
  color: #333;
}
img {
  width: 100%;
  height: auto;
}
.leg {
  display: block;
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  max-width: calc(100% - 3.2rem);
  -webkit-animation: fadeto 1s;
  animation: fadeto 1s;
  opacity: 0;
  animation-fill-mode: forwards;
  -webkit-animation-fill-mode: forwards;
  cursor: pointer;
}
.legenda p {
  background-color:#eee;
  color: #222;
  padding: .5rem .6rem;
  border-radius: .3rem;
  line-height: 120%;
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-size: 0.8rem;
}
.legenda i {
  -webkit-filter: invert(1) grayscale(1) contrast(9);
          filter: invert(1) grayscale(1) contrast(9);
  font-size: 1.4rem
}
.off {
  -webkit-animation: fade .2s;
  animation: fade .2s;
  opacity: 0;
  animation-fill-mode: forwards;
  -webkit-animation-fill-mode: forwards;
/*  visibility: hidden;
  transform:opacity(0);
  transition: all .1s;*/
}
.imagem {
  position: relative;
}
.titulos {
  padding: 2rem;
  text-align: center;
}
.texto {
  padding: 1rem;
  line-height: 140%;
}
.texto p {
  margin: 1rem 0;
}
.citado {
  font-family: 'Poppins', sans-serif;
  text-align: center;
  padding: 1rem;
}
.nomes {
  font-size: 80%;
  font-weight: 700;
}
