@charset "UTF-8";
/* Arquivo principal do SASS */
/* Reset CSS */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Variáveis globais */
html {
  scroll-behavior: smooth;
}

body {
  font-family: "Nunito", sans-serif;
  color: #fff;
  overflow-x: hidden;
}

@font-face {
  font-family: "limousine-normal";
  src: url("../fonts/ChampagneLimousines.ttf") format("truetype");
}
@font-face {
  font-family: "limousine-bold";
  src: url("../fonts/ChampagneLimousinesBold.ttf") format("truetype");
}
@font-face {
  font-family: "limousine-italic-bold";
  src: url("../fonts/ChampagneLimousinesBoldItalic.ttf") format("truetype");
}
@font-face {
  font-family: "limousine-italic";
  src: url("../fonts/ChampagneLimousinesItalic.ttf") format("truetype");
}
@font-face {
  font-family: "flatory-sans-regular";
  src: url("../fonts/flatory-sans-regular.ttf") format("truetype");
}
@font-face {
  font-family: 'flatory-serif-condensed';
  src: url("../fonts/flatory-serif-condensed.ttf") format("truetype");
}
.content {
  background: #000;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.content section {
  padding: 100px 0px 0px 0px;
}
.progress-wrap {
  position: fixed;
  right: 50px;
  bottom: 50px;
  height: 46px;
  width: 46px;
  cursor: pointer;
  display: block;
  border-radius: 50px;
  box-shadow: inset 0 0 0 2px rgba(0, 0, 0, 0.2);
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  -webkit-transition: all 200ms linear;
  transition: all 200ms linear;
}

.progress-wrap.active-progress {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.progress-wrap::after {
  position: absolute;
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  content: '\f062';
  text-align: center;
  line-height: 46px;
  font-size: 18px;
  color: #fff;
  left: 0;
  top: 0;
  height: 46px;
  width: 46px;
  cursor: pointer;
  display: block;
  z-index: 1;
  -webkit-transition: all 200ms linear;
  transition: all 200ms linear;
}

.lightScrollIcon::after {
  color: #ecedf3 !important;
}

.progress-wrap:hover::after {
  opacity: 0;
}

.progress-wrap::before {
  position: absolute;
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  content: '\f062';
  text-align: center;
  line-height: 46px;
  font-size: 18px;
  opacity: 0;
  background-image: #fff;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  left: 0;
  top: 0;
  height: 46px;
  width: 46px;
  cursor: pointer;
  display: block;
  z-index: 2;
  -webkit-transition: all 200ms linear;
  transition: all 200ms linear;
}

.progress-wrap:hover::before {
  opacity: 1;
}

.progress-wrap svg path {
  fill: none;
}

.progress-wrap svg.progress-circle path {
  stroke: #fff;
  stroke-width: 4;
  box-sizing: border-box;
  -webkit-transition: all 200ms linear;
  transition: all 200ms linear;
}
.fg-landscape .fg-panel-buttons{
    width: 77px !important;
}
@media screen and (max-width: 1280px) {
  .container {
    max-width: 100%;
    padding: 0 4%;
  }
}
@media screen and (max-width: 768px) {
  .container {
    padding-left: 3%;
    padding-right: 3%;
  }
}
/* Estilos do cabeçalho */
header {
  background-color: transparent;
  padding: 20px 0px 20px 0px;
  position: fixed;
  width: 100%;
  transition: ease-in-out 0.32s;
  z-index: 999999;
}
header.header__fixed {
  background-color: #000 !important;
  transition: ease-in-out 0.32s;
}
header.fixed {
  background-color: transparent;
}
header.fixed .social {
  display: flex;
  gap: 40px;
  align-items: center;
}
@media (max-width: 768px) {
  header.fixed .social {
    display: none;
  }
}
header.fixed .social__item {
  color: #fff; /* Ou cor desejada */
  font-size: 20px;
  text-decoration: none;
}
header.fixed .social__item:hover {
  color: #376668; /* Exemplo: Cor de destaque no hover */
}
header.fixed a .logo__image {
  background-image: url(../img/logo.png) !important;
}
header.fixed .menu ul li a {
  color: #fff;
}
header .hamburger {
  display: none;
}
header .header__wrapper {
  display: flex;
  align-items: center;
  justify-content: unset;
}
@media (max-width: 768px) {
  header .header__wrapper {
    justify-content: space-between;
  }
}
header .header__wrapper a {
  width: -moz-fit-content;
  width: fit-content;
  display: block;
}
header .header__wrapper a .logo__image {
  height: 60px;
  width: 200px;
  background-image: url(../img/logo-black.png);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  mix-blend-mode: difference;
}
header .header__wrapper .menu {
  margin-left: auto;
  margin-right: 40px;
}
@media (max-width: 768px) {
  header .header__wrapper .menu {
    margin-right: 0px;
  }
}
header .header__wrapper .menu ul {
  display: flex;
  gap: 30px;
  list-style: none;
}
header .header__wrapper .menu ul li a {
  text-decoration: none;
  color: #fff;
  font-size: 16px;
}
@media (max-width: 768px) {
  header .header__wrapper .menu ul li a {
    color: #000;
  }
}

@media (max-width: 768px) {
  .hamburger {
    position: relative;
    width: 1em;
    height: 1em;
    font-size: inherit;
    transition: all 0.3s ease;
    cursor: pointer;
    display: block !important;
  }
  .hamburger.is-sm {
    font-size: 1rem;
  }
  .hamburger.is-md {
    font-size: 1.5rem;
  }
  .hamburger.is-lg {
    font-size: 2rem;
  }
  .hamburger-line {
    position: absolute;
    right: 0;
    width: 100%;
    height: 0.125em;
    border-radius: 0.125em;
    background: currentColor;
    transition: inherit;
  }
  .hamburger-line:nth-child(1) {
    top: 0.125em;
  }
  .hamburger.is-active .hamburger-line:nth-child(1), .w-nav-button.w--open .hamburger-line:nth-child(1) {
    top: 50%;
    transform: translateY(-50%) rotateZ(-135deg);
    background-color: #000 !important;
  }
  .hamburger-line:nth-child(2) {
    top: 0.438em;
  }
  .hamburger.is-active .hamburger-line:nth-child(2), .w-nav-button.w--open .hamburger-line:nth-child(2) {
    right: 50%;
    width: 0;
    background-color: #000 !important;
  }
  .hamburger-line:nth-child(3) {
    top: 0.75em;
    width: 0.625em;
  }
  .hamburger.is-active .hamburger-line:nth-child(3), .w-nav-button.w--open .hamburger-line:nth-child(3) {
    top: 50%;
    width: 100%;
    transform: translateY(-50%) rotateZ(135deg);
    background-color: #000 !important;
  }
  .hamburger {
    z-index: 9999 !important;
  }
  .menu {
    position: absolute;
    top: 0;
    right: 0;
    height: 100vh;
    width: 100%;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: #fff;
    transform: translateX(-100%);
    transition: transform 0.3s ease-in-out;
  }
  .menu.open {
    transform: translateX(0) !important;
  }
  .menu ul {
    flex-direction: column !important;
    gap: 25px !important;
    color: #000 !important;
    padding: 30px;
  }
}
/* Estilos de botões */
button {
  background-color: #336666;
  color: white;
  padding: 0.5rem 1rem;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.hero {
  height: 100vh;
  background-image: url(../img/banner-casa.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}
.hero::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background: rgba(1, 1, 1, 0.5);
  z-index: 700;
  left: 0;
  top: 0;
}
.hero .container {
  height: 100%;
}
.hero .hero__content {
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
  z-index: 99999;
  position: relative;
}
.hero .hero__content .buttons {
  display: flex;
  flex-direction: row;
  gap: 20px;
  align-items: center;
  justify-content: center;
}
.hero .hero__content .hero__cta {
  display: block;
  padding: 10px 30px;
  background: transparent;
  border: 2px solid #fff;
  width: -moz-fit-content;
  width: fit-content;
  border-radius: 30px;
  text-decoration: none;
  color: #fff;
  font-weight: bold;
  margin-top: 20px;
}
.hero .hero__content .whatsapp {
  display: block;
  padding: 10px 30px;
  background: #336666;
  border: 2px solid #336666;
  width: -moz-fit-content;
  width: fit-content;
  border-radius: 30px;
  text-decoration: none;
  color: #fff;
  font-weight: bold;
  margin-top: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: "Wix Madefor Text", sans-serif !important;
}
.hero .hero__content .whatsapp:hover {
    background: #fff;
    color: #000;
    border: 2px solid #fff;
}
.hero .hero__content .whatsapp svg {
  height: 20px;
  width: 20px;
}
.hero .hero__content .whatsapp:hover svg path {
  fill: #000;
}
.hero .hero__content .whatsapp svg path {
  fill: #fff;
}
.hero .hero__content .col2 {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  width: 100%;
}
.hero .hero__content .col2 .col {
  width: calc(50% - 15px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: 0 auto;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .hero .hero__content .col2 .col {
    width: calc(90% - 15px);
  }
}
.hero .hero__content .col2 .col .banner {
  height: 500px;
  width: 100%;
  margin: 0 auto;
  background-image: url(../img/arc.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
.hero .hero__content .hero__title {
  display: flex;
  flex-direction: column;
  color: #fff;
  font-family: "Wix Madefor Display", sans-serif !important;
}
.hero .hero__content .hero__description {
  color: #fff;
  font-family: "limousine-normal", sans-serif !important;
}

.about .col2 {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .about .col2 {
    flex-direction: column;
  }
}
.about .col2 .col {
  width: calc(50% - 15px);
  display: flex;
  justify-content: center;
  flex-direction: column;
  font-family: "limousine-normal", sans-serif !important;
}
.about .col2 .col h1 {
  margin-bottom: 16px;
}
@media screen and (max-width: 768px) {
  .about .col2 .col {
    width: 100%;
  }
}
.about .col2 .col p {
  font-family: "Wix Madefor Text", sans-serif !important;
}
.about .col2 .col .house {
  height: 330px;
  width: 100%;
  border-radius: 20px;
  position: relative;
  margin-bottom: 20px;
}
.about .col2 .col .house .overlay::after {
  content: "";
  background-color: #000;
  height: 100%;
  width: 100%;
  position: absolute;
  opacity: 0.5;
  border-radius: 20px;
  height: 100%;
  width: 100%;
  background-image: url(../img/casa92.jpg);
  background-repeat: no-repeat;
  background-size: cover;
}
.about .col2 .col .house .overlay::before {
  content: "Projetos Personalizados";
  height: 100%;
  width: 100%;
  position: absolute;
  border-radius: 20px;
  color: #fff;
  z-index: 999;
  align-items: center;
  display: flex;
  justify-content: center;
  font-size: 35px;
  font-family: 'flatory-serif-condensed', sans-serif;
  text-transform: uppercase;
}

.services {
  background: linear-gradient(360deg, #346667 0.960607696%, #000000 100%);
  color: #fff;
  padding: 50px 20px;
}
.services h2 {
  text-align: center;
  font-weight: bold;
  font-family: "limousine-normal", sans-serif !important;
  margin-bottom: 40px;
}
.services svg g {
  fill: #fff;
}
.services .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}
.services__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 2fr));
  gap: 20px;
}
@media (max-width: 768px) {
  .services__grid {
    grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  }
}
.services__card {
  background: transparent;
  border: 2px solid #fff;
  border-radius: 10px;
  padding: 20px;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}
.services__card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}
.services__card .icon {
  font-size: 3rem;
  display: block;
  margin-bottom: 15px;
  color: #00c8ff;
}
.services__card .icon svg {
  width: 30px !important;
  height: 30px !important;
}
.services__card h3 {
  font-weight: 600;
  margin-bottom: 10px;
  font-family: "limousine-italic", sans-serif !important;
}
.services__card p {
  font-size: 0.9rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
  font-family: "limousine-normal", sans-serif !important;
}

.team .title {
  text-align: center;
  font-family: "limousine-normal", sans-serif !important;
}
.team__wrapper {
  display: flex;
  margin-top: 30px;
  flex-direction: row;
  gap: 20px;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .team__wrapper {
    flex-direction: column;
  }
}
.team__member {
  flex: 1;
  max-width: 300px;
  max-width: 30%;
  border: 2px solid #fff;
  border-radius: 20px;
  padding: 30px 20px;
}
@media screen and (max-width: 768px) {
  .team__member {
    width: 100%;
    max-width: 100%;
  }
}
.team__member h3 {
  font-size: 1.5rem;
  margin-bottom: 5px;
  font-weight: bold;
  font-style: italic;
  font-family: "limousine-italic", sans-serif !important;
}
.team__member p {
  font-size: 1rem;
  margin-bottom: 10px;
  font-style: italic;
}
.team__member a {
  color: #fff;
  text-decoration: none;
  margin-bottom: 15px;
  display: inline-block;
}
.team__member a:hover {
  text-decoration: underline;
}
.team__member ul {
  list-style: disc;
  padding-left: 20px;
  font-size: 0.9rem;
}
.team__member ul li {
  margin-bottom: 10px;
}

.footer {
  background: #346667;
  color: #ffffff;
  padding: 40px 20px;
  font-family: "limousine-normal", sans-serif !important;
}
.footer a {
  text-decoration: none;
  color: #fff;
}
.footer__container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  text-align: center;
}
header .header__wrapper .menu ul li a {
    transition: 0.32s;
}
header .header__wrapper .menu ul li a:hover {
    color: #376668;
    transition: 0.32s;
}
@media (min-width: 768px) {
  .footer__container {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}
.footer__info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (min-width: 768px) {
  .footer__info {
    flex-direction: row;
    gap: 50px;
  }
}
.footer__info p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.5;
}
.footer .location__second {
  padding-top: 28px;
}
.footer__social {
  display: flex;
  gap: 15px;
  margin-bottom: 10px;
}
.footer__social a {
  color: #ffffff;
  font-size: 1.5rem;
  transition: color 0.3s;
}
.footer__social a:hover {
  color: #000;
}
.footer__branding {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer__branding p {
  margin: 0;
  font-size: 0.9rem;
}
.footer__branding a {
  color: #00c8ff;
  font-size: 0.9rem;
  text-decoration: none;
  transition: color 0.3s;
}
.footer__branding a:hover {
  color: #ffffff;
}

.projects.content {
  padding: 60px 0px;
  background: linear-gradient(360deg, #346667 0.960607696%, #000000 100%);
}

.page__title {
  margin-bottom: 30px;
}
.page__title h1 {
  text-align: center;
  font-family: "flatory-sans-regular", sans-serif;
  font-weight: 700;
}

.foogallery.fg-thumbnail .fg-image {
  max-height: 330px;
  min-height: 330px;
}
@media (max-width: 768px) {
  .foogallery.fg-thumbnail .fg-image {
    max-height: unset;
    min-height: unset;
  }
}

.hero-projects .hero {
  height: 100px;
}
.hero-projects .hero__content {
  display: none;
}

.foogallery .fg-caption {
  opacity: 1 !important;
  visibility: visible !important;
}

.foogallery .fg-caption:hover {
  opacity: 0 !important;
  visibility: visible !important;
}

.fg-item-inner {
  box-shadow: none !important;
  border: 0px !important;
}

.fg-caption-inner:before {
  display: none !important;
}

.page-content {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  flex-wrap: wrap;
}
.fg-panel-info-inner {
    background: #336666 !important;
    color: #fff !imporant;
}
@media (max-width: 768px) {
  .page-content {
    flex-direction: column;
    gap: 20px;
  }
}

.foogallery {
  width: calc(50% - 15px) !important;
  max-width: calc(50% - 15px) !important;
  margin-bottom: 30px;
  max-height: 330px;
  min-height: 330px;
  overflow: hidden;
}
@media (max-width: 768px) {
  .foogallery {
    width: 100% !important;
    max-width: 100% !important;
    max-height: unset;
    min-height: unset;
  }
}
.foogallery .fg-caption-title {
  font-size: 24px !important;
  padding-right: 30px;
}

.fg-caption-inner {
  flex-direction: column !important;
  align-items: end !important;
  justify-content: center !important;
  transform: translateY(60%) !important;
}

.projects .grid__projects {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
.projects .grid__projects .project__item {
  width: calc(50% - 15px);
  min-height: 350px;
  border-radius: 20px;
  position: relative;
}
.projects .grid__projects .project__item .project__title {
  font-size: 24px;
  color: #fff;
  position: absolute;
  bottom: 20px;
  right: 20px;
}
.projects .grid__projects .project__item .project__thumb {
  height: 100%;
  width: 100%;
}
.projects .grid__projects .project__item .project__thumb .project__image {
  height: 100%;
  width: 350px;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url(../img/1.jpg);
}
#about h1 {
    font-size: 35px !important;
}

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