@charset "UTF-8";
/* imports das fonts*/
@import url("https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,300;1,400;1,500;1,600;1,700;1,800&display=swap");

@import url("https://fonts.googleapis.com/css2?family=Courgette&display=swap");

/* versão mobile first*/
/* difinindo as fontes e paletas de cores*/
:root {
  --font_padrao: Arial, Helvetica, sans-serif;
  --font_links: "Open Sans", sans-serif;
  --font_destaque: "Courgette", cursive;
  --vermelho: #bf1b39;
  --amarelo-claro: #f2dc6d;
  --amarelo-escuro: #b7a05a;
  --marrom: #685e30;
}

body,
html {
  user-select: none;
}

* {
  scroll-behavior: smooth;
  margin: 0;
  padding: 0;
  font-family: var(--font_padrao);
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}
input,
textarea,
a,
div,
span,
button,
select {
  -webkit-tap-highlight-color: #00000000;
}

/*Configurações de cabeçalho*/

header#menu_grande {
  display: none;
}

header {
  background-color: var(--amarelo-escuro);
  position: fixed;
  text-align: center;
  width: 100%;
  z-index: 1;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.261);
  padding-top:.6rem;
  padding-bottom: .6rem;
}

img#logo {
  width: 160px;
  margin-top: 70px;
}

div#tela_grande {
  display: none;
}

div#mobile{
  text-align: center;
}

.mobile-menu div {
  width: 32px;
  height: 2px;
  background: var(--marrom);
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 8px;
  transition: all 0.3s;
}
.mobile-menu:hover {
  cursor: pointer;
}
.mobile-menu.active .line1 {
  transform: rotate(-45deg) translate(-7px, 7px);
}

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

.mobile-menu.active .line3 {
  transform: rotate(45deg) translate(-6px, -8px);
}
.overlay {
  width: 100%;
  height: 0;
  background-color: var(--amarelo-escuro);
  z-index: 9;
  position: fixed;
  top: 40px;
  overflow-y: hidden;
  transition: all 0.5s;
}

.overlay a {
  padding: 7vh;
  text-decoration: none;
  color: white;
  display: block;
  font-size: 1.8em;
  transition: 0.3s;
}

@media screen and (orientation: landscape) {
  .overlay a {
    padding-bottom: 15vh;
  }
  #optLandscape {
    display: block;
    float: left;
    margin-left: 15%;
  }
  #optLandscape a {
    display: block;
  }
  .overlay-content {
    text-align: center;
    padding-top: 1rem;
  }
}

.overlay a:active {
  color: var(--marrom);
  transition: 0.3s;
}
main {
  max-width: 800px;
  min-width: 100px;
  margin: auto;
}
/*seção do home */
strong {
  color: var(--marrom);
  font-weight: bold;
}

section#home {
  background-image: url(../imagens/canario-net5.jpg);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  height: 600px;
}
div#homeBack {
  height: 600px;
  background-color: rgba(0, 0, 0, 0.301);
  padding-top: 250px;
}
section#home h1 {
  font-family: var(--font_destaque);
  font-size: 5em;
  font-weight: bolder;
  color: white;
  text-align: center;
  text-shadow: 0px 0px 10px rgba(0, 0, 0, 0.571);
}
/*--------------------------*/

/*seção de info*/
h1,
h2 {
  color: var(--marrom);
  font-family: var(--font_destaque);
}

h2 {
  text-align: center;
  margin-top: 35px;
  font-size: 3em;
  padding: 15px;
}

section#desc h2 {
}
p {
  margin-top: 30px;
  text-align: justify;
  text-indent: 20px;
  line-height: 2em;
  font-size: 1.3em;
  padding-left: 20px;
  padding-right: 20px;
}
/*--------------------------*/

/*section de imagem da gaiola*/
section#gaiola {
  text-align: center;
}
section#gaiola img {
  margin-top: 30px;
  width: 90%;

  border-radius: 10px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.33);
  border: 1px solid black;
}
/*--------------------------*/

/*section canarios */
section#canarios {
  text-align: center;
}
section#canarios p {
  text-align: center;
  margin-bottom: 30px;
}
span#canarinho img {
  height: 100%;
  width: 80%;
  display: inline;
  margin-bottom: 30px;
  border: 1px solid black;
  border-radius: 10px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.368);
}
/*---------------------------*/

/*section contato*/
#img_grande {
  display: none;
}
section#contato {
  background-image: url(../imagens/canario-net2.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  height: 700px;
}
div#contatoBack {
  height: 700px;
  background-color: rgba(0, 0, 0, 0.308);
}
section div#contato-header {
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid darkgray;
}
section#contato h2 {
  padding-top: 1rem;
  color: white;
  text-shadow: 0px 0px 10px black;
}
section div#contato-body img {
  transition: all 0.3s;
}
section div#contato-body {
  display: block;
  padding: 1rem;
}

ul {
  padding: 1rem;
  margin: 1rem;
  display: inline;
  text-align: center;
  list-style-type: none;
}
li {
  display: block;
  margin-bottom: 5rem;
}
ul p {
  display: inline;
  transition: all 0.3s;
}
section div#contato-body a {
  text-decoration: none;
  color: rgb(248, 248, 248);
  font-weight: 700;
  text-shadow: 0px 0px 10px black;
  font-size: 1.2rem;
}

li img {
  border-radius: 10px;
}

/*todos os hovers*/
@media (hover: hover) and (pointer: fine) {
  .scrollTop:hover {
    transition: all 0.5s ease 0s;
    background-color: var(--amarelo-claro);
    color: var(--marrom);
  }
  footer a:hover {
    color: #3d371c;
    transition: all 0.3s;
  }

  a#link:hover {
    color: var(--marrom);
  }

  header#menu_grande a:hover,
  header#menu_grande a:focus {
    color: var(--marrom);
    transition: 0.3s;
  }

  ul#lista_contato a:hover {
    transform: translate(-5px);
    transition: all 0.3s;
  }

  a:hover,
  a:focus,
  a:active {
    outline: none;
  }

  span#closebnt:hover {
    color: #342f19;
    cursor: pointer;
  }

  span#openbnt:hover {
    color: #342f19;
    cursor: pointer;
  }

  section#contato p:hover {
    color: var(--marrom);
    transition: all 0.3s;
  }
  .overlay a:hover,
  .overlay a:focus {
    color: var(--marrom);
  }

  ul#lista_contato img:hover,
  ul#lista_contato img:active {
    transform: translate(-5px);
    box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.289);
    transition: all 0.5s;
  }
}

a:active,
section#contato p:active {
  color: var(--marrom);
  transition: all 0.3s;
}

/*-----------------------------*/

/*rodapé*/
footer {
  background-color: var(--amarelo-escuro);
  color: white;
  font-family: var(--font_links);
  font-weight: bolder;
}
footer p {
  font-size: 1rem;
  margin-top: 0;
  text-indent: 0;
  text-align: center;
}

footer a {
  text-decoration: none;
  color: var(--marrom);
}
footer a:hover,
footer a:focus {
  text-decoration: none;
  color: #403a1e;
}
/*-------------------------*/
/*scroll para o topo*/

.scrollTop {
  position: fixed;
  bottom: -50px;
  right: 30px;
  padding: 2.5px 5px;
  background-color: var(--marrom);
  color: white;
  border-radius: 50%;
  cursor: pointer;
  opacity: 0;
  font-weight: bolder;
  transition: all 0.5s ease 0s;
}
span#top {
  top: 1px;
  position: relative;
  font-size: 2rem;
  font-weight: 800;
}

.scrollTop:active {
  background-color: var(--amarelo-claro);
  color: var(--marrom);
  transition: all 0.5s ease 0s;
}
.scrollTop.active {
  opacity: 1;
  bottom: 30px;
  transition: all 0.5s ease 0s;
}
