* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
:root {
  /* Cores */
  --primary: #e8b52a;
  --primary-hover: #d6a316;

  --gold-metalic: linear-gradient(
    90deg,
    #8f6900 0%,
    #f8dc7d 20%,
    #fff6cf 35%,
    #e8b52a 50%,
    #fff6cf 65%,
    #f8dc7d 80%,
    #8f6900 100%
  );

  --metallic-gold-black: linear-gradient(
    180deg,
    #fff4c2 0%,
    #e8b52a 8%,
    #3a3a3a 18%,
    #1a1a1a 35%,
    #0d0d0d 50%,
    #1a1a1a 65%,
    #c99700 82%,
    #fff4c2 100%
  );

  --metallic-black: linear-gradient(
    180deg,
    #3a3a3a 0%,
    #1f1f1f 15%,
    #0d0d0d 35%,
    #2c2c2c 55%,
    #0d0d0d 75%,
    #3a3a3a 100%
  );

  --gold-brushed: linear-gradient(
    180deg,
    #fff4c2 0%,
    #f8dc7d 15%,
    #e8b52a 35%,
    #c99700 55%,
    #f8dc7d 75%,
    #fff4c2 100%
  );

  --secondary: #1f2937;
  --secondary-light: #374151;

  --background: #ffffff;
  --background-alt: #f9fafb;

  --text: #111827;
  --text-light: #6b7280;

  --border: #e5e7eb;

  /* Sombras */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.18);

  /* Bordas */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;

  /* Container */
  --container: 1200px;

  /* Tipografia */
  --font-heading: "Montserrat", sans-serif;
  --font-body: "Inter", sans-serif;

  /* Transições */
  --transition: all 0.3s ease;
}
h1,
h2,
h3,
h4 {
  font-family: var(--font-heading);
  line-height: 1;
  position: relative;
  line-height: 1;
  background: linear-gradient(
    90deg,
    #8f6900 0%,
    #f8dc7d 20%,
    #fff6cf 35%,
    #e8b52a 50%,
    #fff6cf 65%,
    #f8dc7d 80%,
    #8f6900 100%
  );

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
p,
a,
div {
  font-family: var(--font-body);
  line-height: 1;
}
h1,
h2 {
  font-size: clamp(2rem, 4vw, 3rem);
}
html {
  scroll-behavior: smooth;
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}
.ctaButton {
  width: fit-content;
  margin: 0 auto;
  text-decoration: none;
  color: #fff;
  background: linear-gradient(135deg, #13a36d 0%, #0f8f5f 50%, #0a774e 100%);
  padding: 10px;
  border-radius: 5px;
}

/*HEADER*/
/* HEADER */

#header {
  position: fixed;
  top: 0;
  left: 0;

  width: 100%;

  display: flex;
  align-items: center;
  justify-content: space-between;

  padding: 10px 40px;

  background: #0d0d0d;

  backdrop-filter: blur(12px);

  z-index: 9999;

  transition:
    transform 0.4s ease,
    background 0.4s ease,
    box-shadow 0.4s ease;
}

#header.scrolled {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

#header.hide {
  transform: translateY(-100%);
}
.logo {
  width: 100%;
  max-width: 90px;
}
.navigation {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.navigation a {
  position: relative;

  color: white;

  text-decoration: none;

  font-weight: 600;

  transition: 0.3s;
}

.navigation a:hover {
  color: #e8b52a;
}
.navigation a::after {
  content: "";

  position: absolute;

  bottom: -6px;
  left: 0;

  width: 0%;
  height: 2px;

  background: #e8b52a;

  transition: 0.3s;
}

.navigation a:hover::after {
  width: 100%;
}
.menu-toggle {
  display: none;

  background: transparent;

  border: none;

  color: white;

  font-size: 2rem;

  cursor: pointer;
}
.overlay {
  position: fixed;

  inset: 0;

  background: rgba(0, 0, 0, 0.6);

  opacity: 0;
  visibility: hidden;

  transition: 0.3s;

  z-index: 999;
}

.overlay.active {
  opacity: 1;
  visibility: visible;
}
@media (max-width: 992px) {
  .menu-toggle {
    display: block;
  }

  .navigation {
    position: fixed;

    top: 0;
    right: -320px;
    width: 320px;
    height: 100vh;

    background: #0d0d0d;

    flex-direction: column;

    padding: 120px 30px;

    gap: 2rem;

    transition: 0.4s ease;

    z-index: 1000;

    align-items: baseline;
  }

  .navigation.active {
    right: 0;
  }
}
/*HERO*/
.hero {
  min-height: 90vh;

  background-image:
    linear-gradient(rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.75)),
    url("assets/images/wedson-hero.webp");
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  display: flex;
  align-items: center;
}

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

  display: flex;
  flex-direction: column;
  align-items: center;

  text-align: center;
  gap: 1.5rem;

  padding: 2rem;
}

.hero h1 {
  position: relative;
  line-height: 1;
  background: linear-gradient(
    90deg,
    #8f6900 0%,
    #f8dc7d 20%,
    #fff6cf 35%,
    #e8b52a 50%,
    #fff6cf 65%,
    #f8dc7d 80%,
    #8f6900 100%
  );

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero p {
  max-width: 750px;

  color: rgba(255, 255, 255, 0.9);
  font-size: 1.25rem;
  line-height: 1;

  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
}

/*Sobre*/
.sobre {
  background-color: #0d0d0d;
}
.sobre .container {
  gap: 1rem;
  display: flex;
  flex-direction: column;
}
.sobre .text {
  display: flex;
  flex-direction: column;
  text-align: center;
  gap: 1rem;
}
.sobre .text p {
  color: #e5e7eb;
}
.boxBenefits {
  background-color: #0d0d0d;
  padding: 20px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  gap: 1rem;
  max-width: 1000px;
  margin: 0 auto;
}
.boxItem {
  padding: 20px;
  border: 1px solid var(--primary);
  max-width: 350px;
  width: 100%;
  max-height: 400px;
  height: 200px;
  border-radius: 12px;
}
.boxItem p {
  color: #e5e7eb;
}

/*Serviços*/

.services {
  padding: 6rem 0;
  background: #f8fafc;
}
.services .container {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.services .sectionHeader h2,
.services .sectionHeader span,
.gallery .sectionHeader h2,
.gallery .sectionHeader span,
.faq h2,
.faq span {
  background: var(--metallic-black);

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  background-clip: text;
}
.sectionHeader {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 4rem;
}

.sectionHeader span {
  color: var(--primary);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.sectionHeader h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin: 1rem 0;
}
.localSeo .sectionHeader p {
  color: #fff;
}
.sectionHeader p {
  color: #64748b;
  line-height: 1.8;
}

.servicesGrid {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
}

.serviceCard {
  position: relative;
  overflow: hidden;

  min-height: 400px;
  max-width: 350px;
  width: 100%;
  border-radius: 24px;

  background-size: cover;
  background-position: center;

  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);

  transition: 0.4s ease;

  margin: 0 auto;
}

.serviceCard:hover {
  transform: translateY(-10px);
}

.serviceCard .overlay {
  position: absolute;
  inset: 0;

  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.2) 0%,
    rgba(0, 0, 0, 0.45) 30%,
    rgba(0, 0, 0, 0.75) 60%,
    rgba(0, 0, 0, 0.95) 100%
  );

  z-index: 1;
}
.serviceCard::before {
  content: "";

  position: absolute;
  inset: 0;

  background: radial-gradient(
    circle at center,
    transparent 5%,
    rgba(0, 0, 0, 1.5) 100%
  );

  z-index: 1;
}
.serviceCard .content {
  position: relative;
  z-index: 2;

  height: 100%;

  display: flex;
  flex-direction: column;

  padding: 1rem;
}

.serviceCard h3 {
  min-height: 90px;

  display: flex;
  align-items: center;
  gap: 0.75rem;

  font-size: 1.5rem;
  color: var(--gold);
}

.serviceCard p {
  min-height: 140px;

  line-height: 1;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
  margin-bottom: 1.5rem;
}

.serviceCard ul {
  margin-top: auto;
  list-style: none;
}
.serviceCard li {
  color: white;

  padding: 0.4rem 0;

  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.serviceCard li:last-child {
  border-bottom: none;
}
.engenharia {
  background-image: url("assets/images/wedson-engenharia-card.webp");
}

.construcao {
  background-image: url("assets/images/wedson-construcoes-card.webp");
}

.reformas {
  background-image: url("/assets/images/wedson-reformas-card.webp");
}

.gerenciamento {
  background-image: url("/assets/images/wedson-gerenciamento-card.webp");
}

/*AUTORIDADE*/
.authority {
  padding: 6rem 0;
  background: #0d0d0d;
}

.authority .sectionHeader {
  max-width: 800px;
  margin: 0 auto 4rem;
  text-align: center;
}

.authority .sectionHeader span {
  color: var(--primary);
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.authority .sectionHeader h2 {
  margin: 1rem 0;
  font-size: clamp(2rem, 4vw, 3rem);
}

.authority .sectionHeader p {
  color: #64748b;
  line-height: 1.8;
}

.authorityGrid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}
.authorityCard {
  background: #0d0d0d;

  padding: 2rem;

  border-radius: 20px;

  border: 1px solid gold;

  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);

  transition: 0.3s ease;
  max-width: 350px;
  width: 100%;
}

.authorityCard:hover {
  transform: translateY(-8px);

  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.authorityCard .icon {
  width: 70px;
  height: 70px;

  display: flex;
  align-items: center;
  justify-content: center;

  margin-bottom: 1.5rem;

  border-radius: 50%;

  background: linear-gradient(135deg, #e8b52a, #c99700);

  font-size: 2rem;
}

.authorityCard h3 {
  margin-bottom: 1rem;

  color: var(--secondary);

  font-size: 1.4rem;
}

.authorityCard p {
  color: #64748b;
  line-height: 1.8;
}
.authority .container {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/*SEO LOCAL*/
.localSeo {
  padding: 6rem 0;

  background-image:
    linear-gradient(rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.75)),
    url("assets/images/regional-bg.webp");
  background-attachment: fixed;
  background-size: cover;
  background-repeat: no-repeat;
  color: white;
}
.citiesGrid {
  display: grid;

  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));

  gap: 1rem;

  margin-top: 3rem;
}
.cityCard {
  display: flex;
  align-items: center;
  gap: 1rem;

  padding: 1.2rem;

  border-radius: 16px;

  background: #0d0d0d;

  border: 1px solid rgba(255, 255, 255, 0.08);

  transition: 0.3s;
}

.cityCard:hover {
  transform: translateY(-5px);

  /*background: rgba(232, 181, 42, 0.1);*/

  border-color: rgba(232, 181, 42, 0.3);
}
.cityCard i {
  color: #e8b52a;

  font-size: 1.4rem;
}
.localCta {
  margin-top: 4rem;

  text-align: center;

  padding: 3rem;

  border-radius: 24px;

  background: rgba(255, 255, 255, 0.05);

  border: 1px solid rgba(255, 255, 255, 0.08);
}

.localCta h3 {
  font-size: 2rem;

  margin-bottom: 1rem;
}

.localCta p {
  max-width: 700px;

  margin: 0 auto 2rem;

  color: rgba(255, 255, 255, 0.8);
}
.seoContent {
  padding: 4rem 0;
  background: #f8fafc;
}

.seoContent .container {
  max-width: 900px;
}

.seoContent h2 {
  margin-bottom: 1.5rem;
}

.seoContent p {
  line-height: 1.8;
  color: #475569;
}

/*faq*/

.faq {
  padding: 6rem 0;
  background: #f8fafc;
}

.faqContainer {
  max-width: 900px;
  margin: 3rem auto 0;
}

.faqContainer details {
  background: #0d0d0d;

  margin-bottom: 1rem;

  border-radius: 16px;

  overflow: hidden;

  border: 1px solid rgba(0, 0, 0, 0.08);

  transition: 0.3s;
}

.faqContainer details[open] {
  border-color: rgba(232, 181, 42, 0.4);

  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}
.faqContainer summary {
  cursor: pointer;
  background: linear-gradient(
    90deg,
    #8f6900 0%,
    #f8dc7d 20%,
    #fff6cf 35%,
    #e8b52a 50%,
    #fff6cf 65%,
    #f8dc7d 80%,
    #8f6900 100%
  );

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  padding: 1.5rem;

  font-weight: 700;

  font-size: 1.1rem;

  list-style: none;

  position: relative;
}

.faqContainer summary::-webkit-details-marker {
  display: none;
}
.faqContainer summary::after {
  content: "+";

  position: absolute;

  right: 25px;

  color: var(--primary);

  font-size: 1.5rem;

  transition: 0.3s;
}

.faqContainer details[open] summary::after {
  transform: rotate(45deg);
}
.faqContainer p {
  padding: 0 1.5rem 1.5rem;

  color: #fff;

  line-height: 1.8;
}
/*footer*/
.footer {
  background: #0d0d0d;

  color: white;

  padding-top: 5rem;
}
.footerGrid {
  display: grid;

  grid-template-columns: 2fr 1fr 1fr 1.5fr;

  gap: 3rem;
}
.footerBrand img {
  width: 220px;
  margin-bottom: 1.5rem;
}

.footerBrand p {
  color: rgba(255, 255, 255, 0.7);

  line-height: 1.8;
}
.footerColumn h3 {
  color: var(--primary);

  margin-bottom: 1.5rem;

  font-size: 1.2rem;
}
.footerColumn ul {
  list-style: none;
}

.footerColumn li {
  margin-bottom: 1rem;

  color: rgba(255, 255, 255, 0.75);
}

.footerColumn a {
  color: rgba(255, 255, 255, 0.75);

  text-decoration: none;

  transition: 0.3s;
}

.footerColumn a:hover {
  color: var(--primary);
}
.socialLinks {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}

.socialLinks a {
  width: 45px;
  height: 45px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;

  background: rgba(255, 255, 255, 0.08);

  color: white;

  transition: 0.3s;
  text-decoration: none;
}

.socialLinks a:hover {
  background: var(--primary);

  color: #111;
}
.footerWhatsapp {
  display: inline-flex;

  margin-top: 1rem;

  padding: 1rem 1.5rem;

  border-radius: 12px;

  text-decoration: none;

  font-weight: 700;

  color: white;

  background: linear-gradient(135deg, #13a36d, #0f8f5f, #0a774e);

  box-shadow: 0 10px 30px rgba(15, 143, 95, 0.25);
}
.footerBottom {
  margin-top: 4rem;

  padding: 2rem 0;

  border-top: 1px solid rgba(255, 255, 255, 0.08);

  display: flex;

  justify-content: space-between;

  flex-wrap: wrap;

  gap: 1rem;
}

.footerBottom p {
  color: rgba(255, 255, 255, 0.6);
}

.footerBottom a {
  color: var(--primary);

  text-decoration: none;
}
.footerCTA {
  position: relative;

  padding: 5rem 2rem;

  background-image:
    linear-gradient(rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.75)),
    url("assets/images/parede.webp");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 70%;
  background-attachment: fixed;
  text-align: center;

  overflow: hidden;
}
.footerCTA .container {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.footerCTA p {
  color: #fff;
}
.gallery {
  padding: 6rem 0;
  background: #f8fafc;
}
.gallery .container .ctaButton {
  display: flex;
  margin-top: 20px;
  margin-bottom: 20px;
}

.gallerySwiper {
  margin-top: 3rem;
}

.gallerySwiper img {
  width: 100%;
  height: 450px;

  object-fit: cover;

  border-radius: 24px;

  transition: 0.4s;
}
.swiper-slide {
  overflow: hidden;
  border-radius: 24px;
}

.swiper-slide:hover img {
  transform: scale(1.05);
}
.whatsappFloat img {
  width: 50px;
}
.whatsappFloat {
  position: fixed;

  right: 5px;
  bottom: 25px;

  z-index: 9999;

  display: flex;
  align-items: center;
  gap: 12px;

  border-radius: 999px;

  text-decoration: none;

  color: white;

  font-weight: 700;

  background: linear-gradient(135deg, #13a36d, #0f8f5f, #0a774e);

  box-shadow: 0 10px 30px rgba(15, 143, 95, 0.35);

  transition: 0.3s ease;
}

.whatsappFloat:hover {
  transform: translateY(-5px);

  box-shadow: 0 20px 40px rgba(15, 143, 95, 0.45);
}
.whatsappFloat::before {
  content: "";

  position: absolute;

  inset: 0;

  border-radius: inherit;

  background: rgba(19, 163, 109, 0.4);

  animation: pulse 2s infinite;

  z-index: -1;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 0.8;
  }

  70% {
    transform: scale(1.3);
    opacity: 0;
  }

  100% {
    opacity: 0;
  }
}
@media (max-width: 768px) {
  .whatsappFloat {
    width: 65px;
    height: 65px;

    padding: 0;

    justify-content: center;
  }

  .whatsappFloat span {
    display: none;
  }

  .whatsappFloat i {
    font-size: 2rem;
  }
  .footer .container {
    flex-direction: column;
  }
  .footerGrid {
    display: flex;
    flex-wrap: wrap;
  }
}
.engineerSection {
  padding: 6rem 1rem;
  background: #ffffff;
}

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

  display: grid;
  grid-template-columns: 450px 1fr;
  gap: 4rem;
  align-items: center;
}

.engineerImage {
  text-align: center;
}

.engineerImage img {
  max-width: 420px;
  width: 100%;

  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.25));
}

.sectionTag {
  display: flex;
  width: fit-content;
  padding: 0.6rem 1rem;

  border-radius: 999px;

  background: rgba(212, 175, 55, 0.12);

  color: gold;

  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1px;
}

.engineerContent h2 {
  margin: 1rem 0;

  font-size: clamp(2rem, 4vw, 3rem);

  line-height: 1.2;

  background: linear-gradient(135deg, #0d0d0d, #3f3f3f, #d4af37);

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.engineerContent p {
  margin-bottom: 1rem;

  color: #555;

  line-height: 1.8;
}

.creaBox {
  margin: 2rem 0;
  position: absolute;
  bottom: -80px;
  display: inline-flex;
  flex-direction: column;

  padding: 1rem 2rem;

  border-radius: 20px;

  background: linear-gradient(135deg, #111, #1f1f1f);

  border: 1px solid rgba(212, 175, 55, 0.35);

  box-shadow: 0 0 30px rgba(212, 175, 55, 0.12);
}

.creaBox span {
  color: #bbb;
  font-size: 0.9rem;
}

.creaBox strong {
  color: gold;
  font-size: 1.6rem;
  margin-top: 0.3rem;
}

.engineerBenefits {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;

  margin-bottom: 2rem;
}

.benefitItem {
  background: #f8f8f8;

  padding: 1rem;

  border-radius: 12px;

  border-left: 4px solid var(--gold);

  font-weight: 500;
}

@media (max-width: 900px) {
  .engineerSection .container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .engineerBenefits {
    grid-template-columns: 1fr;
  }

  .creaBox {
    margin-inline: auto;
  }
}
.engineerImage img {
  width: 100%;
  max-width: 550px;
  min-width: 450px;

  transform: scale(1.25);

  filter: drop-shadow(0 25px 50px rgba(226, 213, 26, 0.25));
}
.engineerImage {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 0;
  padding: 0;
  margin: 0;
  position: relative;
}

.engineerInfo {
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 100px;
}
.engineerText {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.engineerText p {
  color: #bbb;
}
@media screen and (max-width: 768px) {
  .engineerInfo {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 2rem;
  }

  .engineerText {
    width: 100%;
    align-items: center;
  }

  .engineerText h2 {
    font-size: 2rem;
    line-height: 1.2;
  }

  .engineerImage {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 20px;
    position: relative;
    margin-bottom: 50px;
  }

  .creaBox {
    margin: 0 auto;
    position: absolute;
    margin-bottom: 70px;
  }
  .engineerInfo {
    grid-template-columns: 1fr;
  }
  .sobre .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .engineerImage img {
    width: 100%;
    max-width: 350px;
    min-width: unset;
    max-height: 500px;
    min-height: 300px;

    transform: none;
  }
}
