* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font: 400 1rem "Inter", sans-serif;
}

ul,
li {
  list-style: none;
}

a {
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

html {
  /* Header */
  --bgHeader:#212529;
  --colorTitle: #FFB742;
  --colorItensMenuActive: #FFB742;
  --colorItensMenu: #FFFFFF;
  --colorBorderBottomMenuMobile: #FFFFFF;
  /* Switch theme */
  --colorHeadingsSwitchTheme: #0077FF;
  --colorToogleSwitchTheme: #FFB742;
  --colorToogleSwitchThemeLabel: #F1F1F1;
  /*Main Hero*/
  --bgHero: #212529;
  --colorHero: #FFFFFF;
  --colorSpan: #FFB742;
  /* Footer */
  --bgFooter: #212529;
  --colorFooter: #FFFFFF;
  --colorTitleColMedium: #FFB742;
  --colorTitleColLight: #F5FBF2;
  --colorMenuListLink: #7B7B7B;
  --bgBtnModalContact: #FFB742;
  --colorBtnModalContact: #212529;
  --colorIconMenuListLink: #E9E9E9;
}

header {
  background-color: var(--bgHeader);
  color: var(--colorItensMenu);
  width: 100%;
  padding: 2rem 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
header .titleAplication a {
  color: var(--colorTitle);
}
header .navMenu .menuList {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.5625rem;
}
header .navMenu .menuList .itensMenu {
  font-size: 1.125rem;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  color: var(--colorItensMenu);
  transition: 0.3s ease-in-out;
  display: block;
  padding: 0.5rem;
}
header .navMenu .menuList .itensMenu.activePage {
  color: var(--colorItensMenuActive);
}
header .navMenu .menuList .itensMenu:hover {
  filter: opacity(0.5);
}
@media screen and (max-width: 58.5rem) {
  header .navMenu .menuList {
    display: block;
    position: absolute;
    width: 100%;
    top: 5.625rem;
    right: 0;
    background-color: var(--bgHeader);
    transition: 0.6s;
    z-index: 1000;
    height: 0;
    visibility: hidden;
    overflow-y: hidden;
  }
  header .navMenu .menuList .itensMenu {
    text-align: center;
    padding: 2rem;
    border-bottom: 0.125rem solid var(--colorBorderBottomMenuMobile);
  }
  header .navMenu .menuList .toggle-container {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 1.5rem;
  }
}
header .navMenu .ph-list {
  display: none;
}
@media screen and (max-width: 58.5rem) {
  header .navMenu .ph-list {
    display: block;
    font-size: 1.625rem;
    cursor: pointer;
  }
}
header .navMenu.activeMenuMobile .menuList {
  height: calc(100vh - 5.625rem);
  visibility: visible;
  overflow-y: auto;
}
header .navMenu .toggle-container input[type=checkbox] {
  height: 0;
  width: 0;
  visibility: hidden;
}
header .navMenu .toggle-container label {
  cursor: pointer;
  text-indent: -624.9375rem;
  width: 3.25rem;
  height: 1.6875rem;
  background: var(--colorToogleSwitchTheme);
  float: right;
  border-radius: 6.25rem;
  position: relative;
}
header .navMenu .toggle-container label::after {
  content: "";
  position: absolute;
  top: 0.1875rem;
  left: 0.1875rem;
  width: 1.25rem;
  height: 1.25rem;
  background-color: var(--colorToogleSwitchThemeLabel);
  border-radius: 5.625rem;
  transition: 0.3s;
}
header .navMenu .toggle-container input:checked + label {
  background-color: var(--colorHeadingsSwitchTheme);
}
header .navMenu .toggle-container input:checked + label::after {
  left: calc(100% - 0.3125rem);
  transform: translateX(-100%);
}
header .navMenu .toggle-container label:active:after {
  width: 2.8125rem;
}

.hero {
  background-color: var(--bgHero);
  color: var(--colorHero);
  width: 100%;
  padding: 2.8125rem 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero .containerHero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.hero .containerHero .antTitle {
  padding: 0.3125rem 0;
  font-size: 1.5rem;
  font-family: "Inter", sans-serif;
  font-weight: 700;
  margin-bottom: 1rem;
}
.hero .containerHero .antTitle span {
  color: var(--colorSpan);
}
.hero .containerHero .title {
  padding: 0.625rem 0;
  margin-bottom: 1rem;
  font-size: 2rem;
  font-family: "Inter", sans-serif;
  font-weight: 900;
}
.hero .containerHero .subTitle {
  padding: 0.3125rem 0 0.625rem 0;
  margin-bottom: 1rem;
  font-size: 1rem;
  font-family: "Inter", sans-serif;
  font-weight: 400;
}
.hero .containerHero .imgProfile {
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero .containerHero .imgProfile img {
  border-radius: 5%;
  width: 95%;
}
@media screen and (min-width: 58.5rem) {
  .hero .containerHero {
    width: 80%;
  }
  .hero .containerHero .antTitle {
    font-size: 2rem;
  }
  .hero .containerHero .title {
    font-size: 3rem;
  }
  .hero .containerHero .subTitle {
    font-size: 1.5rem;
  }
}

footer {
  background-color: var(--bgFooter);
  color: var(--colorFooter);
  width: 100%;
  padding: 5rem 1.5625rem;
  display: flex;
  flex-direction: column;
}
footer .containerFooter {
  display: flex;
  flex-wrap: wrap;
  border-bottom: 0.0625rem solid gray;
}
footer .containerFooter .col-1 {
  margin-bottom: 1rem;
  padding: 0.625rem 1.5625rem;
}
footer .containerFooter .col-1 h5 {
  font-size: 2rem;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  color: var(--colorTitleColMedium);
  margin-bottom: 0.875rem;
}
footer .containerFooter .col-1 h6 {
  font-size: 1.375rem;
  font-family: "Work Sans", sans-serif;
  font-weight: 700;
  color: var(--colorTitleColLight);
  margin-bottom: 0.875rem;
}
footer .containerFooter .col-1 ul li {
  padding: 0.75rem 0;
}
footer .containerFooter .col-1 ul li a {
  font-size: 1.125rem;
  font-family: "Work Sans", sans-serif;
  font-weight: 600;
  color: var(--colorMenuListLink);
  transition: 0.3s ease-in-out;
}
footer .containerFooter .col-1 ul li a:hover {
  filter: opacity(0.7);
}
footer .containerFooter .col-1 .textContact {
  font-size: 1.125rem;
  font-family: "Work Sans", sans-serif;
  font-weight: 600;
  color: var(--colorMenuListLink);
  margin-bottom: 0.875rem;
}
footer .containerFooter .col-1 .btnModalContact {
  background-color: var(--bgBtnModalContact);
  color: var(--colorBtnModalContact);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem;
  font-size: 1.125rem;
  font-family: "Work Sans", sans-serif;
  font-weight: 400;
  border-radius: 0.5rem;
}
footer .containerFooter .col-1 .btnModalContact i {
  font-size: 1.5rem;
}
@media screen and (min-width: 58.5rem) {
  footer .containerFooter {
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    flex-wrap: wrap;
  }
}
footer .containerCopyright {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 0.625rem 1.5625rem;
  margin-top: 0.8125rem;
}
footer .containerCopyright p {
  font-size: 1.25rem;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
footer .containerCopyright p i {
  margin-top: 0.125rem;
  font-size: 1rem;
}
footer .containerCopyright .col-2 ul {
  margin-top: 0.75rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}
footer .containerCopyright .col-2 ul li a {
  padding: 0.875rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.875rem;
  color: var(--colorIconMenuListLink);
  transition: 0.3s ease-in-out;
}
footer .containerCopyright .col-2 ul li a:hover {
  filter: opacity(0.7);
}
@media screen and (min-width: 58.5rem) {
  footer .containerCopyright {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
  }
}/*# sourceMappingURL=index.css.map */