@import url("https://fonts.googleapis.com/css?family=Noto+Sans&display=swap");
* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  opacity: 0;
  transition: opacity 2s;
  background: #1d1d1d;
  color: #f6f6f6;
  font-family: "Noto Sans", sans-serif;
}

header {
  min-height: 600px;
  max-height: 100vh;
}
header .heading {
  display: none;
}

#toggle {
  position: fixed;
  z-index: 3;
  width: 2.5714285714em;
  height: 2.5714285714em;
  top: 0;
  right: 0;
  margin: 15px 15px 0 15px;
  cursor: pointer;
}
#toggle span {
  display: block;
  position: absolute;
  width: 100%;
  height: 0.15em;
  margin: 1.125em 0 0 0;
  background: #009EE0;
  -webkit-transition: 350ms ease all;
  -moz-transition: 350ms ease all;
  transition: 350ms ease all;
}
#toggle span:before, #toggle span:after {
  content: " ";
  position: absolute;
  width: 100%;
  height: 0.15em;
  background: #009EE0;
  -webkit-transition: 350ms ease all;
  -moz-transition: 350ms ease all;
  transition: 350ms ease all;
}
#toggle span:before {
  margin: -0.9em 0 0 0;
}
#toggle span:after {
  margin: 0.9em 0 0 0;
}
#toggle.open span {
  background-color: transparent;
}
#toggle.open span:before, #toggle.open span:after {
  margin: 0;
  background: #009EE0;
}
#toggle.open span:before {
  -webkit-transform: rotate(135deg);
  -moz-transform: rotate(135deg);
  transform: rotate(135deg);
}
#toggle.open span:after {
  -webkit-transform: rotate(-135deg);
  -moz-transform: rotate(-135deg);
  transform: rotate(-135deg);
}

#menu {
  visibility: hidden;
  opacity: 0;
  position: fixed;
  z-index: 2;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  text-align: center;
  background: #1d1d1d;
  -webkit-transform: scale(1.5);
  -moz-transform: scale(1.5);
  transform: scale(1.5);
}
#menu.opened {
  visibility: visible;
  opacity: 1;
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  transform: scale(1);
  -webkit-transition: 350ms ease all;
  -moz-transition: 350ms ease all;
  transition: 350ms ease all;
}
#menu span#title {
  padding-top: 1.125em;
  display: block;
  line-height: 0.9em;
  margin: 0 0 0.45em 0;
  font-size: 3.4615384615em;
  color: #f6f6f6;
}
#menu ul {
  list-style: none;
  margin: 0 auto;
}
#menu ul li {
  display: block;
  width: 90%;
  height: 65px;
  margin: 0 auto 0.45em auto;
}
#menu ul li:after {
  content: " ";
  position: absolute;
  width: 90%;
  height: 65px;
  margin: -65px 0 0 5%;
  left: 0;
  opacity: 0;
  background: #009EE0;
  border-radius: 0.225em;
  -webkit-transition: 350ms ease all;
  -moz-transition: 350ms ease all;
  transition: 350ms ease all;
}
#menu ul li:hover:after {
  opacity: 1;
}
#menu ul li a {
  position: relative;
  z-index: 4;
  display: block;
  width: 100%;
  line-height: 65px;
  margin: 0 auto;
  color: #009EE0;
  text-decoration: none;
  text-transform: uppercase;
  height: 65px;
  -webkit-transition: 350ms ease all;
  -moz-transition: 350ms ease all;
  transition: 350ms ease all;
}
#menu ul li a:hover {
  color: #1d1d1d;
  border-color: #1d1d1d;
}
#menu ul li a span {
  font-size: 1.4516129032em;
}
#menu ul li a i {
  position: absolute;
  padding: 0 1.125em 0 0;
  font-size: 1.8em;
}

.container {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.container .logo-section {
  margin: 2% auto;
  align-self: flex-start;
}
.container .logo-section img {
  width: 100%;
  max-width: 27em;
  padding: 2.25em;
}
.container .logo-section p {
  text-align: center;
}
.container .logo-section #natal {
  margin-top: 5%;
  display: none;
  text-align: center;
}
.container .logo-section .tree {
  height: 60px;
  fill: #f6f6f6;
}
.container .about-section {
  z-index: -30;
}
.container .about-section img {
  display: none;
  max-width: 553px;
  max-width: 100%;
  width: 100%;
}
.container .about-section p {
  text-align: center;
  padding: 1.5em;
  max-width: 530px;
}

.sublinha {
  max-width: 13.5em;
  margin: 1.5em auto;
  border: 0.5px solid #C4127C;
}

.title {
  text-align: center;
  text-transform: uppercase;
  font-size: 1.2em;
}

.produtos, .contactos {
  display: flex;
  flex-wrap: wrap;
  padding: 0 2.25em 0;
  justify-content: center;
}
.produtos h3, .contactos h3 {
  text-transform: uppercase;
  padding: 1em;
  font-size: 1.1em;
}
.produtos .arrow, .contactos .arrow {
  height: 23px;
  width: 23px;
  fill: #f6f6f6;
  margin-bottom: -3px;
  margin-right: 10px;
}
.produtos .coluna, .contactos .coluna {
  z-index: -30;
  max-width: 530px;
  padding-bottom: 1.5em;
}
.produtos .coluna img, .contactos .coluna img {
  width: 100%;
  max-width: 500px;
}
.produtos .coluna.icon, .contactos .coluna.icon {
  display: flex;
  align-items: center;
  min-width: 226px;
  z-index: 200;
}
.produtos .coluna .telIcon, .produtos .coluna .mailIcon, .produtos .coluna .locationIcon, .contactos .coluna .telIcon, .contactos .coluna .mailIcon, .contactos .coluna .locationIcon {
  height: 60px;
  fill: #f6f6f6;
}
.produtos .coluna .number, .contactos .coluna .number {
  font-size: 21px;
  padding: 0 17px 0 17px;
}
.produtos .coluna .number, .produtos .coluna .mail, .contactos .coluna .number, .contactos .coluna .mail {
  color: #f6f6f6;
  text-decoration: unset;
  transition: 350ms;
}
.produtos .coluna .number:hover, .produtos .coluna .mail:hover, .contactos .coluna .number:hover, .contactos .coluna .mail:hover {
  color: #009EE0;
}
.produtos .coluna .morada, .contactos .coluna .morada {
  padding: 14px;
  font-size: 16px;
}
.produtos .coluna a, .contactos .coluna a {
  color: #009EE0;
  -webkit-transition: 350ms ease all;
  -moz-transition: 350ms ease all;
  transition: 350ms ease all;
  text-decoration: none;
}
.produtos .coluna a:hover, .contactos .coluna a:hover {
  color: #C4127C;
}
.produtos .coluna .mail, .contactos .coluna .mail {
  padding: 17px;
  font-size: 16px;
}
.produtos ul, .contactos ul {
  padding: 0 1.5em 0 3em;
  max-width: 460px;
}

.info {
  text-align: center;
  padding: 0.9em 2.25em 4.5em;
  font-size: 0.9em;
}

.contactos {
  justify-content: left;
}

footer {
  text-align: center;
  font-size: 14px;
}
footer p {
  padding: 1em;
}
footer .linha-footer {
  border: 0.5px solid #009EE0;
  max-width: 60%;
  margin: 1.5em auto;
}
footer .insta, footer .fb {
  height: 35px;
  width: 40px;
  z-index: 300;
  fill: #f6f6f6;
  transition: 350ms;
}
footer .insta:hover, footer .fb:hover {
  fill: #C4127C;
}

.button {
  font-size: 1.0465116279em;
  display: block;
  margin: auto;
  padding: 15px 50px;
  border: none;
  background-color: #1d1d1d;
  color: #f6f6f6;
  cursor: pointer;
  position: relative;
  z-index: 1;
  -webkit-backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
}
.button span {
  font-family: "Noto sans", sans serif;
  text-transform: uppercase;
}
.button:focus {
  outline: none;
}
.button.button-contactar {
  overflow: hidden;
  -webkit-transition: color 350ms;
  transition: color 350ms;
  -webkit-transition-timing-function: cubic-bezier(0.75, 0, 0.125, 1);
  transition-timing-function: cubic-bezier(0.75, 0, 0.125, 1);
}
.button.button-contactar:before, .button.button-contactar:after {
  content: "";
  position: absolute;
  z-index: -1;
}
.button.button-contactar:after {
  top: 0.1em;
  left: 0.1em;
  right: 0.1em;
  bottom: 0.1em;
  background: #f6f6f6;
}
.button.button-contactar:before {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-transform: translate3d(0, 100%, 0);
  transform: translate3d(0, 100%, 0);
  -webkit-transition: -webkit-transform 350ms;
  transition: transform 350ms;
  -webkit-transition-timing-function: cubic-bezier(0.75, 0, 0.125, 1);
  transition-timing-function: cubic-bezier(0.75, 0, 0.125, 1);
}
.button.button-contactar:hover::before {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.button.button-contactar.button--inverted {
  background: #f6f6f6;
  color: #f6f6f6;
}
.button.button-contactar.button--inverted:after {
  background: #1d1d1d;
}
.button.button-contactar.button--inverted:before {
  background: #009EE0;
}
.button.button-contactar.button--inverted:hover {
  color: #009EE0;
}

.svg {
  display: none;
}

@media screen and (max-width: 400px) {
  .about-section {
    font-size: 0.93em;
  }
}
@media screen and (min-width: 768px) {
  .contactos {
    justify-content: center;
  }
}
@media screen and (min-width: 768px) and (min-height: 930px) {
  .container .about-section p {
    margin: auto;
    padding-top: 0;
  }
  .container .about-section img {
    display: block;
    margin: auto;
  }

  #toggle {
    top: 33px;
    right: 33px;
  }
}
@media screen and (min-width: 1025px) {
  #toggle {
    display: none;
  }

  #menu {
    position: initial;
    visibility: visible;
    height: auto;
    background: none;
    opacity: 1;
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    transform: scale(1);
  }
  #menu span#title {
    display: none;
  }
  #menu ul {
    text-align: right;
    padding-right: 4.5em;
    max-width: 1300px;
  }
  #menu ul li {
    display: inline;
    padding: 4.5em 0.9em 0.9em;
  }
  #menu ul li:after {
    content: none;
  }
  #menu ul li a {
    display: inline;
    font-size: 0.75em;
    line-height: 85px;
  }
  #menu ul li a:hover {
    color: #C4127C;
  }

  .container {
    flex-direction: row;
  }
  .container .logo-section {
    margin: 0;
    padding-right: 6%;
    margin-top: -2.25em;
  }
  .container .about-section {
    max-width: 47%;
    padding: 2.25em;
    align-self: center;
    min-width: 600px;
  }
  .container .about-section img {
    display: block;
    margin: auto;
  }
  .container .about-section p {
    margin: auto;
    padding-top: 0;
  }

  .produtos, .contactos {
    padding: 1.5em 4.5em;
  }
  .produtos ul, .contactos ul {
    padding: 0 3em 0 3em;
  }
  .produtos .coluna, .contactos .coluna {
    max-width: 33%;
  }
  .produtos .coluna .mail, .contactos .coluna .mail {
    font-size: 17px;
  }
  .produtos .coluna .morada, .contactos .coluna .morada {
    font-size: 16px;
  }
}
@media screen and (min-width: 1700px) {
  .container .logo-section img {
    max-width: 33.75em;
  }
}

/*# sourceMappingURL=style.css.map */
