/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

@font-face {
  font-family: "MostraThree";
  font-display: swap;
  src: url("../fonts/MostraThree-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}
/* RESET */

/* GLOBAL */
:root {
  --bauer-orange: #e4b058;
}

body {
  font-family: "MostraThree", Helvetica, Arial, sans-serif;
}

.section-title {
  font-weight: 700;
  font-size: 56px;
  line-height: 64px;
  margin: 0;
}

.section-description {
  font-weight: 400;
  font-size: 20px;
  line-height: 30px;
  color: #757575;
  margin: 0;
}

.section-padding {
  padding-top: 185px;
}

@media (max-width: 600px) {
  .section-title {
    font-size: 32px;
    line-height: 40px;
  }

  .section-description {
    font-size: 16px;
    line-height: 24px;
  }
}
/* GLOBAL */

/* HEADER */
.toolbar-section {
  margin-top: 30px;
}

.toolbar {
  border-radius: 99px;
  border: 1px solid transparent;
  background:
    linear-gradient(rgba(247, 247, 247, 1), rgba(247, 247, 247, 1)) padding-box,
    linear-gradient(180deg, rgba(0, 0, 0, 1), rgba(102, 102, 102, 1)) border-box;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  position: relative;
}

.toolbar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
}

.toolbar-logo {
  height: 38px;
  width: auto;
}

.contact-button {
  background: transparent;
  border: 1px solid var(--bauer-orange);
  color: var(--bauer-orange);
  padding: 8px 20px;
  border-radius: 99px;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.2s ease;
  font-weight: 700;
  text-decoration: none;
}

.contact-button:hover {
  background: var(--bauer-orange);
  color: white;
}

.desktop-menu {
  display: none;
  gap: 30px;
}

.desktop-menu a {
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  color: black;
  transition:
    transform 0.2s ease,
    color 0.2s ease;
}

.desktop-menu a:hover {
  color: var(--bauer-orange);
  transform: translateY(-3px);
}

.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  background: none;
  border: none;
  cursor: pointer;
}

/* lines */

.hamburger span {
  width: 100%;
  height: 2px;
  background: black;
  border-radius: 2px;
  transition:
    transform 0.25s ease,
    opacity 0.25s ease;
}

/* animation */

.hamburger.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* mobile menu */

.mobile-menu {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 25px;
  padding: 30px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-10px);
  transition: 0.25s;
}

.mobile-menu.active {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
  background: #000000cf;
  z-index: 9999;
  border-radius: 10px;
}

.mobile-menu a {
  text-decoration: none;
  color: var(--bauer-orange);
  font-weight: 400;
}

/* desktop */

@media (min-width: 1000px) {
  .desktop-menu {
    display: flex;
  }

  .hamburger {
    display: none;
  }

  .mobile-menu {
    display: none;
  }
}

@media (max-width: 600px) {
  .toolbar-content {
    padding: 15px 20px;
  }

  .contact-button {
    padding: 6px 16px;
    font-size: 12px;
  }
}

/* HEADER */

/* HOME */
.highlight-section {
  margin-top: 50px;
  position: relative;
  height: 600px;
  border-radius: 48px;
  overflow: hidden;
  background-image: url("../assets/images/home.webp");
  background-size: cover;
  background-position: center right;
}

/* card branco */
.highlight-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 37%;
  min-width: 300px;
  background: white;
  padding: 35px 35px 35px 0;
  border-bottom-right-radius: 40px;
}

.highlight-content img {
  width: 195px;
  height: auto;
}

.highlight-content p {
  color: #434343;
  font-weight: 400;
  font-size: 18px;
  line-height: 26px;
  margin: 0;
  margin-top: 27px;
}

/* tablet */
@media (max-width: 1000px) {
  .highlight-section {
    height: 520px;
  }

  .highlight-content {
    width: 45%;
    padding: 25px 25px 25px 0;
  }

  .highlight-content img {
    width: 120px;
    height: auto;
  }

  .highlight-content p {
    font-size: 16px;
    line-height: 24px;
    margin-top: 20px;
  }
}

/* mobile */
@media (max-width: 600px) {
  .highlight-section {
    height: 450px;
  }

  .highlight-content {
    width: 75%;
    padding: 20px;
  }

  .highlight-content p {
    font-size: 14px;
    line-height: 22px;
  }

  .highlight-content img {
    width: 100px;
    height: auto;
  }
}

@media (max-width: 400px) {
  .highlight-section {
    border-radius: 0;
  }

  .highlight-content {
    padding: 0;
    width: 100%;
    border-bottom-right-radius: 0px;
  }

  .highlight-content p {
    margin-bottom: 27px;
  }
}

/* HOME */

/* OUR TEAM */

/* BOTÃO */

.btn-photo {
  display: none;
  margin-top: 20px;
  padding: 12px 20px;
  border: none;
  background: var(--bauer-orange);
  color: white;
  border-radius: 6px;
  cursor: pointer;
}

/* aparece só no mobile */

@media (max-width: 600px) {
  .btn-photo {
    display: inline-block;
  }
}

/* MODAL */

.close-modal-class {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 40px;
  color: white;
  cursor: pointer;
}
/* OUR TEAM */

/* MARKET YEARS */
.split-image {
  width: 50%;
  background-image: url("../assets/images/market-years-image.webp");
  background-size: cover;
  background-position: center;
  height: 672px;
  border-radius: 48px;
}

.split-content {
  width: 50%;
  display: flex;
  align-items: flex-end;
  padding: 40px 40px 0 40px;
}

.text-wrapper {
  max-width: 500px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.section-description-market {
  color: #434343;
  font-weight: 400;
  font-size: 20px;
  line-height: 30px;
}

.market-card {
  background-color: #f5f5f5;
  display: flex;
  flex-direction: column;
  padding: 15px 20px;
  gap: 10px;
  width: 285px;
  border-radius: 24px;
}

.market-card img {
  width: 38px;
  height: 38px;
}

.market-card h4 {
  font-weight: 700;
  font-size: 18px;
  line-height: 28px;
  margin: 0;
}

@media (max-width: 1000px) {
  .split-section,
  .container.d-flex {
    flex-direction: column;
  }

  .split-image {
    width: 100%;
    height: 300px;
    border-radius: 32px;
  }

  .split-content {
    width: 100%;
    padding: 30px 0 0 0;
    align-items: flex-start;
  }

  .text-wrapper {
    max-width: 100%;
  }

  .market-card {
    width: 100%;
  }

  .section-description-market {
    font-size: 18px;
    line-height: 28px;
  }
}
/* MARKET YEARS */

/* ENGINEERING SYSTEMS */
.engineering-projects-wrapper {
  display: flex;
  gap: 40px;
}

.engineering-projects-wrapper > div {
  flex: 1;
}

.engineering-items-box {
  margin-top: 30px;
}

.engineering-item-title {
  color: #1e1e1e;
  font-weight: 700;
  font-size: 24px;
  line-height: 32px;
}

.engineering-item-description {
  color: #757575;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
}

.engineering-projects-images {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.engineering-projects-images img {
  border-radius: 40px;
}

.engineering-projects-image-big {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.engineering-projects-image-row {
  display: flex;
  gap: 20px;
}

.engineering-projects-image-row img {
  width: 50%;
  height: 200px;
  object-fit: cover;
}

@media (max-width: 600px) {
  .engineering-item-title {
    font-size: 18px;
    line-height: 26px;
  }
}
@media (max-width: 800px) {
  .engineering-projects-wrapper {
    flex-direction: column;
  }

  .engineering-projects-image-big {
    height: 240px;
  }

  .engineering-projects-image-row {
    flex-direction: column;
  }

  .engineering-projects-image-row img {
    width: 100%;
    height: 200px;
  }
}
/* ENGINEERING SYSTEMS */

/* CONSTRUCTION SYSTEMS */

.construction-systems-gray-bg {
  background-color: #f7f7f7;
  padding: 50px 150px;
  border-radius: 48px;
}

.construction-systems-grid {
  margin-top: 44px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(214px, 1fr));
  justify-content: center;
  gap: 44px;
}

.construction-card {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.construction-image {
  width: 214px;
  height: 578px;
  background-size: cover;
  background-position: center;
  border-radius: 16px;
}

.construction-title {
  margin-top: 6px;
  font-weight: 700;
  font-size: 24px;
  color: #141414;
  text-align: center;
}

@media (max-width: 1000px) {
  .construction-systems-gray-bg {
    padding: 40px 40px;
  }
}
/* CONSTRUCTION SYSTEMS */

/* METHODOLOGY */

.process-section {
  display: flex;
  height: 600px; /* altura fixa novamente */
  gap: 20px;
  margin-top: 50px;
}

.process-image {
  flex: 1;
  background-image: url("../assets/images/methodology-house.webp");
  background-size: cover;
  background-position: center;
  border-radius: 48px;
}

.process-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
  height: 100%; /* importante */
  overflow-y: auto;
  padding-right: 10px;
  padding-bottom: 20px;
}

.process-card {
  background: #f7f7f7;
  padding: 40px 53px;
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.process-card-title {
  color: var(--bauer-orange);
  font-weight: 700;
  font-size: 24px;
}

.process-card-description {
  font-weight: 400;
  font-size: 24px;
  line-height: 32px;
  color: #2c2c2c;
}

.process-content::-webkit-scrollbar {
  width: 6px;
}

.process-content::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 10px;
}

@media (max-width: 800px) {
  .process-section {
    flex-direction: column;
    height: auto;
  }

  .process-image {
    width: 100%;
    height: 300px;
    flex: none;
  }

  .process-content {
    width: 100%;
    max-height: none; /* remove limite */
    overflow: visible; /* remove scroll interno */
  }

  .process-card {
    padding: 30px 28px;
  }

  .process-card-title {
    font-size: 20px;
  }

  .process-card-description {
    font-size: 18px;
    line-height: 28px;
  }
}

@media (max-width: 500px) {
  .process-image {
    height: 220px;
  }
}
/* METHODOLOGY */

/* OUR WORKS */
.our-works-content {
  padding: 185px 0;
}

.our-works-content-box {
  border-radius: 48px;
  border: 1px solid #d9d9d9;
  padding: 36px;
  margin-top: 68px;
}

.works-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
  gap: 20px 40px;
}

.work-card {
  display: flex;
  flex-direction: column;
  background-color: #f5f5f5;
  border-radius: 12px;
  transition:
    transform 0.6s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.work-card:hover {
  transform: translateY(-10px) scale(1.02); /* leve crescimento + subida */
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.18);
}

.work-image {
  height: 205px;
  background-size: cover;
  background-position: center;
}

.work-info {
  display: flex;
  flex-direction: column;
  padding: 20px;
}

.work-title {
  font-weight: 600;
  font-size: 20px;
  color: var(--bauer-orange);
}

.work-condo {
  font-weight: 400;
  font-size: 18px;
  color: #141414;
  margin-bottom: 8px;
}

.work-info > div {
  flex-wrap: wrap;
  gap: 8px;
}

.work-chip {
  display: flex;
  align-items: center;
  background: #e3e3e3;
  padding: 8px 12px;
  border-radius: 99px;
  gap: 4px;
  white-space: nowrap;
}

.work-chip span {
  font-weight: 400;
  font-size: 12px;
  color: #2c2c2c;
}

.work-chip img {
  width: 16px;
  height: 16px;
}

@media (max-width: 600px) {
  .works-grid {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  }

  .work-image {
    height: 170px;
  }

  .our-works-content-box {
    padding: 26px;
  }
}

@media (max-width: 400px) {
  .works-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }

  .work-info {
    padding: 16px;
  }

  .work-title {
    font-size: 16px;
  }

  .work-condo {
    font-size: 14px;
  }

  .work-chip {
    padding: 6px 10px;
  }

  .work-chip span {
    font-size: 11px;
  }

  .work-image {
    height: 150px;
  }
}
/* OUR WORKS */

/* FOOTER STYLE */
.footer-content {
  background-color: #1e1e1e;
  padding: 120px 0;
}

.footer-container {
  display: grid;
  grid-template-columns: 1.4fr 1.8fr auto;
  gap: 40px;
}

.footer-column {
  display: flex;
  gap: 12px;
  flex-direction: column;
}

.footer-logo {
  width: 65px;
}

.footer-title {
  font-weight: 700;
  font-size: 18px;
  color: #f7f7f7;
}

.footer-text {
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
  color: #f7f7f7;
  text-align: left;
}

.social-icons {
  display: flex;
  gap: 12px;
}

.social-icons a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #fff;
  border-radius: 50%;
  color: #fff;
  text-decoration: none;
  transition: 0.3s;
}

.social-icons a img {
  width: 24px;
  height: 24px;
}

.social-icons a:hover {
  background: #252525;
}

.footer-info-icons {
  width: 24px;
  height: 24px;
}

.footer-whatsapp-link:hover .footer-text {
  color: #e4b058;
  transition: color 0.2s ease-in-out;
}

@media (max-width: 900px) {
  .footer-container {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .footer-container {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .footer-column {
    gap: 8px;
  }

  .footer-text {
    font-size: 14px;
  }
}
/* FOOTER STYLE */

/* WhatsApp flutuante atualizado */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: #25d366; /* verde WhatsApp */
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
  animation: pulse 2s infinite; /* animação pulsante */
}

.whatsapp-float img {
  width: 32px;
  height: 32px;
}

.whatsapp-float:hover {
  transform: scale(1.2); /* aumenta mais ao passar mouse */
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

/* animação de pulso contínuo */
@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1); /* leve aumento */
  }
  100% {
    transform: scale(1);
  }
}

#projects {
  overflow-x: hidden;
}
