* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  font-style: normal;
}

html,
body {
  height: 100%;
}

body {
  overflow-x: hidden;
}

/* Boot CSS */
.left {
  float: left;
}

.right {
  float: right;
}

.clear {
  clear: both;
}

.w50 {
  width: 50%;
}

.w25 {
  width: 25%;
}

.container {
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 2%;
}

/* Botão base */
.btn {
  display: inline-block;
  text-decoration: none;
  font-weight: 600;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  color: white;
  background-color: #e1b073;
  transition: background-color 0.3s ease;
  text-align: center;
}

/* Variações de tamanho */
.btn-small {
  padding: 8px 16px;
  font-size: 0.85rem;
}

.btn-medium {
  padding: 12px 24px;
  font-size: 1rem;
}

.btn-large {
  padding: 16px 32px;
  font-size: 1.1rem;
}

/* Efeito hover (opcional) */
.btn:hover {
  background-color: #c8945f;
}

.blur {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0; /* ou -1 se quiser que fique atrás */
  overflow: hidden;
}

.bullet-blur {
  position: absolute;
  top: 0;
  width: 60vw;
  height: 40vh;
  background: radial-gradient(
    circle,
    rgba(255, 166, 0, 0.12) 40%,
    transparent 70%
  );
  filter: blur(100px);
  opacity: 0.8;
}

.bl-left {
  left: -30vw;
}

.bl-right {
  right: -30vw;
}

/* Fim Boot CSS */

header .banner {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  min-height: 100vh;
  position: relative;
}
header .banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.2); /* 0.5 = 50% de opacidade */
  z-index: 0;
}

.menu {
  background-color: transparent;
  position: relative;
  z-index: 20;
  border-bottom: 1.5px solid #e1b073;
}

.menu .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 2%;
  position: relative;
  z-index: 5;
}

.menu .logo img {
  width: 60px;
}

.menu-desktop {
  display: flex;
  gap: 30px;
  list-style: none;
}

.menu-desktop li a {
  color: white;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  padding: 8px 12px;
  transition: color 0.3s ease;
}

.menu-desktop li a:hover {
  color: #e1b073;
}

.hamburguer {
  display: none;
  flex-direction: column;
  gap: 8px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 10;
}

.hamburguer .line {
  width: 30px;
  height: 3px;
  background-color: white;
  border-radius: 4px;
}

/* Menu Mobile */
.menu-mobile {
  display: none;
  flex-direction: column;
  background-color: #1a1a1a;
  position: absolute;
  width: 100%;
  top: 100%;
  left: 0;
  padding: 20px 0;
  list-style: none;
  z-index: 4;
  border-bottom: 2px solid #d29a5f;
}

.menu-mobile li {
  text-align: center;
  margin-bottom: 15px;
}

.menu-mobile li a {
  color: white;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  display: block;
  padding: 10px;
  transition: color 0.3s;
}

.menu-mobile li a:hover {
  color: #e1b073;
}

/* Responsividade */
@media (max-width: 768px) {
  .menu-desktop {
    display: none;
  }

  .hamburguer {
    display: flex;
  }

  .menu-mobile.active {
    display: flex;
  }
}

header .banner .content-banner {
  position: absolute;
  top: 50%;
  left: 10%;
  transform: translateY(-50%);
  max-width: 600px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  color: white;
  text-align: left;
  border-left: 1.5px solid;
  padding: 30px 0 0 20px;
  position: absolute;
  z-index: 2; /* abaixo do menu */
}

header .banner .content-banner h2 {
  font-size: 2.8rem;
  font-weight: 300;
  line-height: 1.3;
}

header .banner .content-banner p {
  font-size: 1.2rem;
  line-height: 1.6;
  font-weight: 300;
}

header .banner .content-banner .btn {
  background-color: #e1b073;
  color: white;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: 30px;
  text-decoration: none;
  font-size: 1rem;
  width: fit-content;
  position: relative;
  top: 20px;
}

header .banner .line-space {
  position: absolute;
  bottom: 0;
  text-align: center;
  width: 100%;
  background-color: #e1b073ad;
}

header .banner .line-space p {
  color: white;
  display: inline-block;
  padding: 10px 25px;
  font-size: 1.3rem;
}

section.categories,
section.projects {
  background: linear-gradient(145deg, #1a1a1a, #2a2a2a);
  padding: 60px 0;
  color: white;
  padding: 90px 0;
  position: relative;
}

section.categories .container,
section.projects .container {
  padding: 0;
  text-align: center;
}

section.categories .gallery,
section.projects .gallery {
  overflow: hidden;
  width: 100%;
}

section.categories .gallery .line,
section.projects .gallery .line {
  display: flex;
  flex-direction: row;
  width: 115%;
  position: relative;
  left: -4%;
}

section.categories .gallery .item,
section.projects .gallery .item {
  width: 25%;
  position: relative;
  padding: 3px;
}

section.categories .gallery .item div,
section.projects .gallery .item div {
  position: relative;
  width: 100%;
  padding-top: 70%;
  background-position: center;
  background-size: cover;
  border-radius: 25px;
  overflow: hidden;
}
section.projects .gallery .item div h2 {
  position: absolute;
  top: 50%;
  left: 40%;
  transform: translate(-50%, -50%);
  text-align: left;
  margin: 0;
  font-size: 2.2vw;
  font-weight: 300;
}

section.categories .gallery .border,
section.projects .gallery .border {
  border: 1px solid #e1b073;
}

section.categories .gallery .bg,
section.projects .gallery .bg {
  background-color: #e1b073;
}

section.categories .btn,
section.projects .btn {
  padding: 7px;
  margin: 15px 0;
  width: 50%;
  position: relative;
  top: 40px;
}

section.categories img,
section.projects img {
  width: 50px;
  height: 50px;
  position: relative;
  top: 65px;
  left: 50%;
  transform: translateX(-50%);
}

section.about {
  background: radial-gradient(circle at left, #332a21, #111);
  color: #fff;
  padding: 80px 20px;
  font-family: "Inter", sans-serif;
}

section.about .container {
  max-width: 1200px;
  margin: 0 auto;
}

section.about .content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
  margin-bottom: 60px;
}

section.about .image-area {
  position: relative;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

section.about .image-area .image-outline {
  position: absolute;
  /* top: 20px; */
  /* left: 20px; */
  width: 60%;
  height: 100%;
  border: 1px solid #e1b073;
  border-radius: 20px;
  z-index: 0;
  background-color: #1d1d1d;
}

section.about .image-area img {
  margin: 60px 0;
  width: 60%;
  max-height: 350px;
  border-radius: 30px;
  position: relative;
  z-index: 1;
  left: 90px;
}

section.about .text-area {
  flex: 1;
  min-width: 300px;
}

section.about .text-area h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

section.about .text-area p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

section.about .text-area .btn {
  padding: 7px;
  width: 85%;
}

section.about .benefits {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
  text-align: center;
}

section.about .benefit {
  flex: 1;
  min-width: 200px;
  margin: 30px 0;
}

section.about .benefit .arrow {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 15px;
  height: 50px; /* ou ajuste conforme o ícone */
}

section.about .benefit .arrow img {
  height: 50px; /* tamanho da seta */
  width: auto;
}

section.about .benefit h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
  font-weight: 600;
}

section.about .benefit p {
  font-size: 0.95rem;
  color: #ccc;
}

section.categories .container > h2 {
  font-size: 2rem;
  margin-bottom: 40px;
  text-align: center;
}

section.categories .gallery-columns .item div p {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-weight: 600;
  text-align: center;
  font-size: 1.1rem;
  line-height: 1.4;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

section.categories .gallery-columns .item div:hover p {
  opacity: 0;
}

section.categories .gallery-columns .item div {
  position: relative;
  overflow: hidden;
}

section.categories .gallery-columns .item div:not(.bg):not(.border) {
  position: relative;
  overflow: hidden;
}

section.categories .gallery-columns .item div:not(.bg):not(.border)::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 1;
  opacity: 1;
  transition: opacity 0.4s ease;
}

/* Efeito hover: overlay desaparece */
section.categories
  .gallery-columns
  .item
  div:not(.bg):not(.border):hover::before {
  opacity: 0;
}

section.categories .gallery-columns .item div p {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-weight: 600;
  text-align: center;
  font-size: 1.1rem;
  line-height: 1.4;
}

.gallery-columns {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  padding: 40px 0;
}

.gallery-columns .column {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.gallery-columns .column > div,
.gallery-columns .column > a {
  width: 100%;
}

.gallery-columns .item {
  width: 220px;
  max-width: 100%;
  text-decoration: none;
}

.gallery-columns .item div {
  width: 100%;
  padding-top: 70%;
  background-position: center;
  background-size: cover;
  border-radius: 20px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.gallery-columns .item div p {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-weight: 600;
  text-align: center;
}

.gallery-columns .item div:not(.bg):not(.border):hover {
  transform: scale(1.03);
}

/* mantém estilos existentes */
.gallery-columns .item .bg {
  background-color: #e1b073;
}

.gallery-columns .item .border {
  border: 1px solid #e1b073;
}

.slider-miniaturas {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.slider-miniaturas img {
  flex: 1 1 200px;
  max-width: 320px;
  aspect-ratio: 4 / 3;
  border-radius: 20px;
  object-fit: cover;
  cursor: pointer;
  transition: transform 0.3s ease;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.slider-miniaturas img:hover {
  transform: scale(1.05);
}

.gallery-columns .swiper-horizontal {
  max-height: 1000px !important;
}

/* Posicionamento das bullets */
.gallery-columns .swiper-pagination {
  text-align: center;
  position: relative;
  /* bottom: 150px !important; */
  z-index: 10;
}

/* Estilo visual das bullets */
.gallery-columns .swiper-pagination-bullet {
  background-color: #ccc !important;
  opacity: 1 !important;
  width: 12px !important;
  height: 12px !important;
  margin: 0 6px !important;
  border-radius: 50% !important;
  transition: background-color 0.3s ease;
}

.gallery-columns .swiper-pagination-bullet-active {
  background-color: #e1b073 !important;
}

section.contact {
  background: url("/assets/bg-contact.jpg") no-repeat center center;
  background-size: cover;
  position: relative;
  padding: 100px 20px;
  color: white;
}

section.contact::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  z-index: 1;
}

section.contact .container {
  position: relative;
  z-index: 2;
  margin: 0 auto;
  display: flex;
  gap: 60px;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  padding: 10px 8%;
}

section.contact .form-box {
  flex: 1;
  min-width: 300px;
}

section.contact .form-box form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
section.contact .line {
  background-color: white;
  width: 1.5px;
  height: 300px;
}

section.contact .form-box input {
  padding: 12px 18px;
  background: transparent;
  border: none;
  border-bottom: 1.5px solid #fff;
  color: white;
  font-size: 1rem;
  outline: none;
}

section.contact .form-box input::placeholder {
  color: #ccc;
}

section.contact .text-box {
  flex: 1;
  min-width: 300px;
}

section.contact .text-box h2 {
  font-size: 2.4rem;
  font-weight: 400;
  margin-bottom: 20px;
}

section.contact .text-box p {
  font-size: 1.1rem;
  line-height: 1.6;
}

section.contact .contact-logo {
  margin-top: 60px;
  width: 75px;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.footer {
  background-color: #1a1a1a;
  color: #ccc;
  padding: 60px 20px 20px 20px;
  font-family: "Poppins", sans-serif;
}

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

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid #333;
}

.footer-logo img {
  width: 60px;
  height: auto;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 60px;
}

.footer-column {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-column h4 {
  font-size: 1rem;
  color: #fff;
  margin-bottom: 10px;
  font-weight: 600;
}

.footer-column a {
  text-decoration: none;
  color: #e1b073;
  font-weight: 400;
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

.footer-column a:hover {
  color: #ffffff;
}

.footer-social {
  display: flex;
  gap: 15px;
}

.footer-social i {
  font-size: 24px;
  color: #e1b073;
}

.footer-copy {
  text-align: center;
  margin-top: 30px;
  font-size: 0.9rem;
  color: #777;
}

/* Página Projetos */
.content-banner-projects {
  padding: 90px 0;
}

.project-highlight {
  display: flex;
  gap: 40px;
  align-items: center;
  justify-content: center;

  max-width: 1280px;
  margin: 0 auto 40px auto;
  flex-wrap: nowrap; /* impede quebra para nova linha */
}

.main-image {
  position: relative;
  flex: 1 1 450px;
  max-width: 400px;
  height: 450px;
  border-radius: 30px;
  background-color: #111;
  border: 1px solid #e1b073;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
  padding: 0;
}

.image-wrapper {
  position: absolute;
  right: -65px; /* imagem saindo da borda à direita */
  top: 50%;
  transform: translateY(-50%);

  width: 400px;
  height: 300px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.project-info {
  flex: 1 1 400px;
  color: #fff;
  padding: 70px;
  position: relative;
  z-index: 10;
}

.project-info h2 {
  font-size: 2.4rem;
  margin-bottom: 15px;
  max-width: 650px;
}

.project-info p {
  font-size: 1.05rem;
  line-height: 1.6;
  color: #a7b5c5;
  margin-bottom: 20px;
  max-width: 650px;
  justify-content: space-between;
}

.project-info .btn {
  background-color: #e1b073;
  color: white;
  padding: 7px 28px;
  border-radius: 30px;
  font-weight: 600;
  display: inline-block;
  text-decoration: none;
  width: 60%;
  max-width: 450px;

  transition: all 0.3s ease;
}

.project-info .btn:hover {
  background-color: #d29a5f;
}

section.project-gallery {
  padding-top: 50px;
}

section.project-gallery h2 {
  text-align: center;
  color: #ccc;
  font-weight: 600;
  padding-bottom: 60px;
}

/* ===== ETAPAS DO PROJETO ===== */
.etapas-projeto {
  color: #fff;
  padding: 100px 20px;
}
.etapas-projeto h2 {
  font-size: 2.4rem;
  font-weight: 300;
  color: #fff;
  line-height: 1.4;
  text-align: center;
  padding-bottom: 60px;
}
.etapas-projeto h2 strong {
  color: #fff;
  font-weight: 700;
} /* CTA já usa sua classe .btn/.btn-large */

.etapas-projeto .container {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 70px;
}
.etapa-item {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}
.etapa-item:nth-child(even) {
  flex-direction: row-reverse;
}
.etapa-item img {
  width: 420px;
  border-radius: 35px;
  max-height: 300px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
  object-fit: cover;
}
.etapa-texto {
  flex: 1;
}
.etapa-texto h3 {
  font-size: 1.8rem;
  margin-bottom: 15px;
  font-weight: 700;
  color: #fff;
}
.etapa-texto p {
  font-size: 1rem;
  line-height: 1.7;
  color: #c9c9c9;
} /* ===== PASSOS DO PROJETO ===== */
.passos-projeto {
  padding: 90px 20px;
  color: #fff;
  text-align: center;
}
.passos-projeto .passos {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
  margin-bottom: 60px;
}
.passos-projeto .passo {
  flex: 1 1 280px;
  max-width: 320px;
  background: #181818;
  border: 1px solid #2c2c2c;
  border-radius: 20px;
  padding: 40px 20px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
  position: relative;
  z-index: 999;
}
.passos-projeto .passo:hover {
  transform: translateY(-8px);
}
.passos-projeto .passo img {
  width: 55px;
  margin-bottom: 20px;
}
.passos-projeto .passo h4 {
  color: #e1b073;
  font-size: 1.3rem;
  margin-bottom: 10px;
  font-weight: 600;
}
.passos-projeto .passo p {
  font-size: 0.95rem;
  color: #ccc;
  line-height: 1.6;
}
.cta-final {
  text-align: center;
  position: relative;
  z-index: 999;
}
.cta-final .btn {
  background-color: #e1b073;
  color: #fff;
  font-weight: 600;
  padding: 14px 34px;
  border-radius: 30px;
  font-size: 1.1rem;
  text-decoration: none;
}
.cta-final .btn:hover {
  background-color: #d29a5f;
} /* ===== RESPONSIVO ===== */
@media (max-width: 768px) {
  .etapa-item {
    flex-direction: column;
    text-align: center;
  }
  .etapa-item:nth-child(even) {
    flex-direction: column;
  }
  .etapa-item img {
    width: 100%;
    max-width: 500px;
  }
  .etapa-texto h3 {
    font-size: 1.5rem;
  }
  .etapa-texto p {
    font-size: 0.95rem;
  }
}
:root {
  --gold: #e1b073;
  --gold-600: #d29a5f;
  --bg-900: #0f0f10;
  --bg-800: #161617;
  --text-100: #ffffff;
  --text-300: #cfcfcf;
  --line: #2b2b2d;
  --cyan: #49bdf2; /* borda do card destacado */
}
.sec-entregaveis {
  padding: 60px 0 40px;
  color: var(--text-100);
}
.sec-entregaveis .container {
  max-width: 1100px;
}
.card-feature {
  display: flex;
  gap: 24px;
  background: linear-gradient(180deg, #151515, #121212);
  border: 1px solid var(--gold);
  border-radius: 24px;
  padding: 28px;
  margin-bottom: 28px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}
.card-feature--alt {
  box-shadow: 0 0 0 2px rgba(73, 189, 242, 0.15),
    0 10px 30px rgba(0, 0, 0, 0.35);
}
.card-feature__icon {
  flex: 0 0 84px;
  height: 84px;
  border-radius: 18px;
  background: #1e1e1f;
  border: 1px solid var(--gold);
  display: grid;
  place-items: center;
  align-self: flex-start;
}
.card-feature__icon img {
  width: 46px;
  height: 46px;
  fill: var(--gold);
}
.card-feature__body h3 {
  font-size: 2rem;
  line-height: 1.15;
  font-weight: 700;
  margin-bottom: 12px;
  color: #fff;
}
.card-feature__body p {
  color: var(--text-300);
  line-height: 1.7;
  margin: 10px 0;
} /* DESCRITIVO */
.descritivo-projeto {
  max-width: 850px;
  margin: 80px auto 0 auto;
}
.descritivo-projeto h3 {
  font-size: 2rem;
  font-weight: 700;
  margin: 10px 0 18px;
  color: #fff;
}
.check-list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  display: grid;
  gap: 14px;
}
.check-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.check-list li img {
  width: 35px;
  height: 35px;
}
.check-list .check {
  flex: 0 0 28px;
  height: 28px;
  border-radius: 8px;
  border: 1px solid var(--gold);
  display: grid;
  place-items: center;
  position: relative;
  top: 2px;
  background: #1a1a1b;
}
.check-list .check::after {
  content: "";
  width: 12px;
  height: 8px;
  border: 3px solid var(--gold);
  border-top: none;
  border-left: none;
  transform: rotate(45deg);
  display: block;
}
.check-list p {
  margin: 0;
  color: var(--text-300);
  line-height: 1.6;
}
.check-list p strong {
  color: #fff;
  font-weight: 700;
} /* CTA já usa sua classe .btn/.btn-large */
.descritivo-projeto .cta-final {
  text-align: center;
  margin-top: 24px;
}
.descritivo-projeto .cta-final .btn {
  background: var(--gold);
}
.descritivo-projeto .cta-final .btn:hover {
  background: var(--gold-600);
}
.formulario-briefing {
  position: relative;
  background: url("../assets/bg-project.jpg") no-repeat center center;
  background-size: cover;
  color: #fff;
  padding: 120px 20px 80px;
  overflow: hidden;
}

.formulario-briefing .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.87);
  z-index: 1;
}
.formulario-briefing .container {
  position: relative;
  z-index: 2;
  max-width: 850px;
  margin: 0 auto;
}
.formulario-briefing .text-area {
  text-align: center;
  margin-bottom: 50px;
}
.formulario-briefing .text-area h2 {
  font-size: 2.4rem;
  font-weight: 300;
  color: #fff;
  line-height: 1.4;
}
.formulario-briefing .text-area h2 strong {
  font-weight: 700;
}
.formulario-briefing .text-area p {
  font-size: 1.1rem;
  color: #ddd;
  margin-top: 10px;
}
.form-briefing {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 600px;
  margin: 0 auto;
}
.form-briefing label {
  font-size: 0.95rem;
  color: #fff;
  font-weight: 400;
  margin-right: 10px;
}
/* 1) Deixa o campo WhatsApp com o MESMO visual dos demais */
.form-briefing input[type="text"],
.form-briefing input[type="email"],
.form-briefing input[type="tel"],      /* <<< importante */
.form-briefing textarea {
  width: 100%;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  background: transparent;
  color: #fff;
  padding: 9px 0;
  font: inherit; /* herda tipografia do site */
  outline: none;
}

.form-briefing input[type="radio"] {
  padding-top: 10px;
  vertical-align: middle;
}

/* 2) Foco consistente */
.form-briefing input[type="text"]:focus,
.form-briefing input[type="email"]:focus,
.form-briefing input[type="tel"]:focus,
.form-briefing textarea:focus {
  border-bottom-color: #ffa733; /* ajuste à sua cor de destaque */
}

/* 3) Placeholder na mesma paleta */
.form-briefing ::placeholder {
  color: rgba(255, 255, 255, 0.55);
  opacity: 1;
}

/* 4) Corrige fundo branco do autofill (Chrome/Opera/Edge) */
.form-briefing input:-webkit-autofill,
.form-briefing input:-webkit-autofill:hover,
.form-briefing input:-webkit-autofill:focus {
  -webkit-text-fill-color: #fff;
  -webkit-box-shadow: 0 0 0 1000px rgba(0, 0, 0, 0) inset; /* mantém transparente */
  transition: background-color 9999s ease-out 0s;
}

/* 5) Caso queira forçar via id específico (#whatsapp) */
#whatsapp {
  background: transparent !important;
  color: #fff !important;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
}
#whatsapp:focus {
  border-bottom-color: #ffa733;
}

.form-briefing h3 {
  margin-top: 30px;
  font-weight: 700;
  font-size: 1.1rem;
  color: #e1b073;
}
.question {
  margin-top: 20px;
  font-weight: 500;
  font-size: 1rem;
  color: #fff;
}
.checkbox-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 10px;
}
.checkbox-group label {
  font-size: 0.95rem;
  color: #ddd;
}
.checkbox-group input[type="checkbox"] {
  margin-right: 8px;
  accent-color: #e1b073;
  transform: scale(1.1);
}
.btn.btn-large {
  background-color: #e1b073;
  color: #fff;
  border: none;
  border-radius: 15px;
  padding: 10px 30px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  align-self: center;
  margin-top: 25px;
  transition: background-color 0.3s ease;
}
.btn.btn-large:hover {
  background-color: #d29a5f;
}
.symbol-footer {
  text-align: center;
  margin-top: 50px;
}
.symbol-footer img {
  width: 65px;
  opacity: 0.9;
} /* Responsivo */
@media (max-width: 768px) {
  .formulario-briefing .text-area h2 {
    font-size: 1.9rem;
  }
  .formulario-briefing .container {
    max-width: 95%;
  }
} /* RESPONSIVO */
@media (max-width: 820px) {
  .card-feature {
    flex-direction: column;
  }
  .card-feature__icon {
    width: 74px;
    height: 74px;
  }
  .card-feature__body h3 {
    font-size: 1.7rem;
  }
} /* Fim Página Projetos */

/* ================== RESPONSIVO ================== */
@media (max-width: 960px) {
  .etapa-card {
    grid-template-columns: 160px 1fr;
  }
  .etapa-media img {
    width: 160px;
    height: 110px;
  }
  .passos-wrap {
    flex-wrap: wrap;
  }
}

@media (max-width: 680px) {
  .etapa-card {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .etapa-media img {
    width: 100%;
    height: 180px;
  }
  .passos-wrap {
    justify-content: center;
  }
  .card-feature {
    flex-direction: column;
  }
}

@media screen and (min-width: 1599px) {
  section.projects .gallery .item div h2 {
    font-size: 2.5rem;
  }
}
@media screen and (max-width: 1024px) {
  .footer-content {
    flex-direction: column;
    align-items: center;
    gap: 40px;
    text-align: center;
  }

  .footer-links {
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }

  .footer-column {
    align-items: center;
  }

  .footer-social {
    justify-content: center;
  }

  .footer-copy {
    margin-top: 20px;
    font-size: 0.85rem;
  }

  /* Página de projetos */
  .project-highlight {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .project-highlight .main-image,
  .project-highlight .project-info {
    width: 100%;
    max-width: 600px;
  }

  .project-info h2 {
    font-size: 2rem;
  }

  .project-info p {
    font-size: 1rem;
  }

  .project-info a:first-of-type {
    margin-top: 35px;
    width: 100%;
  }

  .project-info a:last-of-type {
    top: 25px;
    width: 40% !important;
  }

  .slider-miniaturas {
    justify-content: center;
    flex-wrap: wrap;
  }

  .slider-miniaturas a {
    margin: 10px;
  }

  .banner .content-banner-projects {
    padding: 30px 15px;
  }

  .image-wrapper {
    position: absolute;
    left: 50%; /* imagem saindo da borda à direita */
    top: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
  }
  /* Fim Página de projetos */
}

@media screen and (max-width: 920px) {
  section.contact .contact-logo,
  section.contact .line {
    display: none;
  }
}

@media screen and (min-height: 900px) {
  /* Posicionamento das bullets */
  .gallery-columns .swiper-pagination {
    bottom: 280px !important;
  }
}

@media screen and (min-height: 1020px) {
  /* Posicionamento das bullets */
  .gallery-columns .swiper-pagination {
    bottom: 340px !important;
  }
}

@media screen and (min-height: 1080px) {
  /* Posicionamento das bullets */
  .gallery-columns .swiper-pagination {
    bottom: 380px !important;
  }
}

@media screen and (min-height: 1120px) {
  /* Posicionamento das bullets */
  .gallery-columns .swiper-pagination {
    bottom: 520px !important;
  }
}
@media (max-width: 768px) {
  section.contact .contact-logo,
  section.contact .line {
    display: none;
  }

  section.about .content {
    flex-direction: column;
    text-align: center;
  }

  section.about .image-area {
    margin: 0 auto 30px auto;
    justify-content: center;
  }

  section.about .image-area .image-outline {
    position: absolute;
    /* top: 20px; */
    /* left: 20px; */
    width: 100%;
    height: 100%;
    border: 1px solid #e1b073;
    border-radius: 20px;
    z-index: 0;
    background-color: #1d1d1d;
  }

  section.about .image-area img {
    left: 0px;
    width: 80%;
  }

  section.about .benefits {
    flex-direction: column;
  }

  section.projects .gallery .line .item > div > h2 {
    font-size: 20px;
  }
  section.projects .gallery .line .item:nth-of-type(3) {
    display: none;
  }
  section.projects .gallery .item {
    width: 33.33%;
  }
}

@media (max-width: 600px) {
  .footer {
    padding: 40px 20px 20px 20px;
  }

  .footer-logo img {
    width: 50px;
  }

  .footer-column h4 {
    font-size: 0.95rem;
  }

  .footer-column a {
    font-size: 0.9rem;
  }
}
