:root {
    --black: #071018;
    --white: #ffffff;
    --yellow: #FFF200;
    --orange: #fc6500;
    --blue: #009DDB;
    --purple: #3F4096;
    --gray: #101826;
    --mid: #17243A;
  }

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

  html { scroll-behavior: smooth; }

  body {
    background: var(--mid);
    color: var(--white);
    font-family: 'DM Sans', sans-serif;
    overflow-x: hidden;
  }

  body::before {
    content: '';
    position: fixed; inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 9999;
    opacity: .5;
  }

  nav {
    position: fixed; top: 0; width: 100%;
    z-index: 100;
    display: flex; align-items: center; justify-content: space-between;
    padding: .75rem 4vw;
    min-height: 82px;
    background: rgb(23, 36, 58);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(0,157,219,.18);
  }

  .logo {
    display: flex;
    align-items: center;
    text-decoration: none;
  }

  .logo img {
    height: 48px;
    width: auto;
    display: block;
    object-fit: contain;
    filter: drop-shadow(0 4px 12px rgba(0,0,0,.35));
  }

  .nav-links {
    display: flex; gap: 2.5rem; list-style: none;
  }

  .nav-links a {
    color: var(--white);
    text-decoration: none;
    font-size: .82rem;
    font-weight: 500;
    letter-spacing: .12em;
    text-transform: uppercase;
    opacity: .7;
    transition: opacity .2s, color .2s;
  }

  .nav-links a:hover { opacity: 1; color: var(--yellow); }

  .nav-cta {
    background: var(--yellow);
    color: var(--mid) !important;
    padding: .45rem 1.2rem;
    border-radius: 2px;
    opacity: 1 !important;
    font-weight: 500;
    transition: background .2s !important;
  }

  .nav-cta:hover { background: var(--orange) !important; color: var(--white) !important; }

  .hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
  .hamburger span { display: block; width: 26px; height: 2px; background: var(--white); transition: .3s; }
  .hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .hamburger.open span:nth-child(2) { opacity: 0; }
  .hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  .mobile-menu {
    display: none;
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: var(--mid);
    z-index: 99;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
  }

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

  .mobile-menu a {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.5rem;
    color: var(--white);
    text-decoration: none;
    letter-spacing: .1em;
    transition: color .2s;
  }

  .mobile-menu a:hover { color: var(--yellow); }

  #hero {
    min-height: 100vh;
    display: flex; align-items: center;
    padding: 120px 4vw 4rem;
    position: relative;
    overflow: hidden;
  }

  .hero-bg {
    position: absolute; inset: 0;
    background:
      radial-gradient(ellipse 70% 60% at 80% 50%, rgb(23, 36, 58) 0%, transparent 60%),
      radial-gradient(ellipse 40% 40% at 20% 80%, rgba(255,242,0,.12) 0%, transparent 55%);
  }

  .hero-stripes {
    position: absolute;
    right: -10%;
    top: 0; bottom: 0;
    width: 55%;
    background: repeating-linear-gradient(
      -60deg,
      transparent,
      transparent 38px,
      rgb(23, 36, 58) 38px,
      rgba(0,157,219,.06) 40px
    );
    pointer-events: none;
  }

  .hero-content { position: relative; z-index: 2; max-width: 760px; }

  .hero-logo {
    width: min(260px, 62vw);
    max-height: 175px;
    height: auto;
    display: block;
    object-fit: contain;
    margin-bottom: 1.2rem;
    filter: drop-shadow(0 12px 35px rgba(0,157,219,.25));
    animation: fadeUp .6s ease both;
  }

  .hero-tag {
    display: inline-block;
    background: var(--yellow);
    color: var(--mid);
    font-size: .7rem;
    font-weight: 500;
    letter-spacing: .2em;
    text-transform: uppercase;
    padding: .3rem .9rem;
    margin-bottom: 1.8rem;
    animation: fadeUp .6s ease both;
  }

  .hero-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(4rem, 10vw, 9rem);
    line-height: .92;
    letter-spacing: .02em;
    animation: fadeUp .7s .1s ease both;
  }

  .hero-title .line2 { color: var(--yellow); }

  .hero-sub {
    margin-top: 1.8rem;
    font-size: clamp(.95rem, 1.5vw, 1.1rem);
    font-weight: 300;
    max-width: 500px;
    line-height: 1.7;
    opacity: .75;
    animation: fadeUp .7s .2s ease both;
  }

  .hero-btns {
    margin-top: 2.5rem;
    display: flex; gap: 1rem; flex-wrap: wrap;
    animation: fadeUp .7s .3s ease both;
  }

  .btn-primary {
    background: var(--yellow);
    color: var(--mid);
    padding: .85rem 2.2rem;
    font-weight: 500;
    font-size: .9rem;
    letter-spacing: .06em;
    text-transform: uppercase;
    border: none; cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: background .2s, transform .2s;
  }

  .btn-primary:hover { background: var(--blue); color: var(--white); transform: translateY(-2px); }

  .btn-outline {
    border: 1px solid rgba(255,255,255,.3);
    color: var(--white);
    padding: .85rem 2.2rem;
    font-weight: 500;
    font-size: .9rem;
    letter-spacing: .06em;
    text-transform: uppercase;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: border-color .2s, transform .2s;
  }

  .btn-outline:hover { border-color: var(--yellow); color: var(--yellow); transform: translateY(-2px); }

  .hero-scroll {
    position: absolute;
    bottom: 2.5rem; left: 50%;
    transform: translateX(-50%);
    display: flex; flex-direction: column; align-items: center;
    gap: .5rem;
    opacity: .4;
    animation: bounce 2s infinite;
  }

  .hero-scroll span { font-size: .65rem; letter-spacing: .2em; text-transform: uppercase; }
  .hero-scroll svg { width: 20px; }

  @keyframes bounce {
    0%,100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(8px); }
  }

  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to   { opacity: 1; transform: translateY(0); }
  }

  .marquee-wrap {
    overflow: hidden;
    background: var(--yellow);
    padding: .9rem 0;
    border-top: 1px solid rgba(0,0,0,.1);
    border-bottom: 1px solid rgba(0,0,0,.1);
  }

  .marquee-track {
    display: flex; width: max-content;
    animation: marquee 22s linear infinite;
  }

  .marquee-item {
    white-space: nowrap;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.25rem;
    letter-spacing: .1em;
    color: var(--mid);
    padding: 0 2rem;
  }

  .marquee-dot { color: var(--orange); }

  @keyframes marquee {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
  }

  section { padding: clamp(4rem, 10vw, 7rem) 4vw; }

  .section-label {
    font-size: .68rem;
    font-weight: 500;
    letter-spacing: .25em;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 1rem;
  }

  .section-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2.4rem, 5vw, 4rem);
    letter-spacing: .04em;
    line-height: 1;
  }

  .section-title span { color: var(--yellow); }

  #servicos {
    background:
      radial-gradient(ellipse 45% 55% at 10% 20%, rgba(255,242,0,.07), transparent 65%),
      radial-gradient(ellipse 55% 65% at 90% 50%, rgba(0,157,219,.10), transparent 70%),
      var(--mid);
  }

  .services-grid {
    margin-top: 3.5rem;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1px;
    background: rgba(255,255,255,.06);
  }

  .service-card {
    background: rgba(16,24,38,.72);
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
    transition: background .3s;
    cursor: default;
  }

  .service-card::before {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 0; height: 3px;
    background: var(--yellow);
    transition: width .4s ease;
  }

  .service-card:hover { background: var(--mid); }
  .service-card:hover::before { width: 100%; }

  .service-icon {
    font-size: 2.4rem;
    margin-bottom: 1.2rem;
    display: block;
  }

  .service-name {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.6rem;
    letter-spacing: .06em;
    margin-bottom: .7rem;
  }

  .service-desc {
    font-size: .88rem;
    font-weight: 300;
    line-height: 1.7;
    opacity: .65;
  }

  .service-num {
    position: absolute;
    top: 1.5rem; right: 1.8rem;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3.5rem;
    color: rgba(255, 255, 255, 0.04);
    line-height: 1;
  }

  #sobre {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5vw;
    align-items: center;
  }

  .sobre-visual { position: relative; }

  .sobre-box {
    aspect-ratio: 4/3;
    background: var(--mid);
    position: relative;
    overflow: hidden;
    display: flex; align-items: center; justify-content: center;
  }


  .sobre-logo {
    width: min(360px, 82%);
    height: auto;
    display: block;
    object-fit: contain;
    filter: drop-shadow(0 10px 28px rgba(0,157,219,.25));
    position: relative;
    z-index: 2;
  }

  .sobre-box-inner {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(5rem, 10vw, 8rem);
    color: rgba(255,242,0,.12);
    line-height: 1;
    text-align: center;
    letter-spacing: .05em;
  }

  .sobre-accent {
    position: absolute;
    bottom: -1.5rem; right: -1.5rem;
    width: 9rem; height: 9rem;
    background: var(--yellow);
    z-index: -1;
  }

  .sobre-badge {
    position: absolute;
    top: -1.2rem; left: -1.2rem;
    background: var(--blue);
    color: var(--white);
    padding: 1.2rem;
    font-family: 'Bebas Neue', sans-serif;
    font-size: .95rem;
    letter-spacing: .1em;
    line-height: 1.3;
    text-transform: uppercase;
  }

  .sobre-badge strong { font-size: 2.2rem; display: block; font-family: 'Bebas Neue', sans-serif; }

  .sobre-text p {
    font-size: clamp(.9rem, 1.4vw, 1rem);
    font-weight: 300;
    line-height: 1.8;
    opacity: .75;
    margin-bottom: 1.2rem;
  }

  .stats-row {
    display: flex; gap: 2.5rem; margin-top: 2rem; flex-wrap: wrap;
  }

  .stat strong {
    display: block;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.8rem;
    color: var(--yellow);
    line-height: 1;
  }

  .stat span { font-size: .78rem; opacity: .6; letter-spacing: .1em; text-transform: uppercase; }

  #portfolio { background: var(--mid); }

  .gallery-grid {
    margin-top: 3rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto;
    gap: 8px;
  }

  .gallery-item {
    background: var(--mid);
    position: relative;
    overflow: hidden;
    cursor: pointer;
  }

  .gallery-item:nth-child(1) { grid-column: span 1; aspect-ratio: 1; }
  .gallery-item:nth-child(2) { grid-column: span 2; aspect-ratio: 16/8; }
  .gallery-item:nth-child(3) { aspect-ratio: 1; }
  .gallery-item:nth-child(4) { aspect-ratio: 1; }
  .gallery-item:nth-child(5) { grid-column: span 2; aspect-ratio: 16/8; }

  .gallery-inner {
    width: 100%; height: 100%;
    display: flex; align-items: center; justify-content: center;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.4rem;
    letter-spacing: .1em;
    opacity: .15;
    background: var(--mid);
    position: absolute; inset: 0;
    background-image: repeating-linear-gradient(
      45deg,
      transparent,
      transparent 18px,
      rgba(255,255,255,.025) 18px,
      rgba(255,255,255,.025) 20px
    );
  }

  .gallery-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,.85) 0%, transparent 50%);
    display: flex; align-items: flex-end;
    padding: 1.5rem;
    opacity: 0;
    transition: opacity .35s;
  }

  .gallery-item:hover .gallery-overlay { opacity: 1; }

  .gallery-overlay h4 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.3rem;
    letter-spacing: .08em;
  }

  .gallery-overlay p { font-size: .78rem; opacity: .65; color: var(--white) ;}

  .gp1 { background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%); }
  .gp2 { background: linear-gradient(135deg, #2d1b00 0%, #4a2c00 100%); }
  .gp3 { background: linear-gradient(135deg, #1a0a00 0%, #3d1a00 100%); }
  .gp4 { background: linear-gradient(135deg, #0d1a00 0%, #1a3300 100%); }
  .gp5 { background: linear-gradient(135deg, #1a001a 0%, #330033 100%); }

  .gp1 .gallery-inner, .gp2 .gallery-inner, .gp3 .gallery-inner,
  .gp4 .gallery-inner, .gp5 .gallery-inner {
    background: transparent; color: rgba(255,255,255,.25);
  }

  #diferenciais { background: var(--yellow); color: var(--mid); }
  #diferenciais .section-label { color: var(--white); }
  #diferenciais .section-title { color: var(--black); }
  #diferenciais .section-title span { color: var(--orange); }

  .diff-grid {
    margin-top: 3rem;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 2px;
  }

  .diff-card {
    background: rgba(0,0,0,.07);
    padding: 2rem 1.8rem;
    border-top: 3px solid rgba(0,0,0,.15);
    transition: background .25s;
  }

  .diff-card:hover { background: rgba(0,0,0,.13); }

  .diff-card .icon { font-size: 1.8rem; margin-bottom: 1rem; }

  .diff-card h4 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.3rem;
    letter-spacing: .06em;
    margin-bottom: .5rem;
    color: var(--mid);
  }

  .diff-card p { font-size: .82rem; opacity: .65; line-height: 1.6; }

  #contato {
    background:
      radial-gradient(ellipse 45% 55% at 12% 25%, rgba(255,242,0,.07), transparent 65%),
      radial-gradient(ellipse 55% 65% at 88% 50%, rgba(0,157,219,.10), transparent 70%),
      var(--mid);
  }

  .contato-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5vw;
    margin-top: 3rem;
    align-items: center;
  }

  .contato-info h3,
  .contato-whatsapp h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.8rem;
    letter-spacing: .06em;
    margin-bottom: 1.5rem;
    color: var(--yellow);
  }

  .contato-item {
    display: flex; align-items: flex-start;
    gap: 1rem; margin-bottom: 1.4rem;
  }

  .contato-item .ci-icon {
    font-size: 1.2rem;
    margin-top: .1rem;
    min-width: 24px;
  }

  .contato-item p { font-size: .9rem; line-height: 1.6; opacity: .75; }
  .contato-item a { color: var(--yellow); text-decoration: none; }
  .contato-item a:hover { text-decoration: underline; }

  .contato-whatsapp {
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(0,157,219,.25);
    backdrop-filter: blur(10px);
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
  }

  .contato-whatsapp::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--yellow);
  }

  .contato-whatsapp p {
    font-size: .95rem;
    line-height: 1.7;
    opacity: .72;
    margin-bottom: 2rem;
  }

  .btn-whatsapp {
    width: 100%;
    background: var(--yellow);
    color: var(--black);
    border: none;
    padding: 1rem;
    font-family: 'DM Sans', sans-serif;
    font-size: .9rem;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background .2s, transform .2s;
    text-decoration: none;
    display: inline-block;
    text-align: center;
  }

  .btn-whatsapp:hover {
    background: var(--blue);
    color: var(--white);
    transform: translateY(-2px);
  }

  .wa-float {
    position: fixed;
    bottom: 1.8rem; right: 1.8rem;
    z-index: 200;
    background: #25D366;
    color: #fff;
    width: 58px; height: 58px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.6rem;
    box-shadow: 0 6px 24px rgba(0,0,0,.4);
    text-decoration: none;
    transition: transform .25s, box-shadow .25s;
    animation: pulse 2.5s infinite;
  }

  .wa-float:hover { transform: scale(1.1); box-shadow: 0 8px 30px rgba(37,211,102,.4); }

  @keyframes pulse {
    0%,100% { box-shadow: 0 6px 24px rgba(37,211,102,.3); }
    50% { box-shadow: 0 6px 36px rgba(37,211,102,.55); }
  }

  footer {
    background: var(--mid);
    border-top: 1px solid rgba(255,255,255,.07);
    padding: 2.5rem 4vw;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
  }

  .footer-logo img {
    height: 52px;
    width: auto;
    display: block;
    filter: drop-shadow(0 4px 12px rgba(0,0,0,.3));
  }

  footer p {
    font-size: .78rem;
    opacity: .35;
    letter-spacing: .05em;
  }

  .reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity .7s ease, transform .7s ease;
  }

  .reveal.visible { opacity: 1; transform: translateY(0); }

  @media (max-width: 900px) {
    #hero {
      padding-top: 105px;
    }

    .hero-logo {
      width: min(220px, 72vw);
      max-height: 150px;
    }

    #sobre {
      grid-template-columns: 1fr;
    }

    .sobre-visual { display: block; }

    .contato-wrap {
      grid-template-columns: 1fr;
    }
  }

  @media (max-width: 680px) {
    .logo img { height: 46px; }
    nav { min-height: 74px; }
    .logo img { height: 46px; }
    .nav-links { display: none; }
    .hamburger { display: flex; }

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

    .gallery-item:nth-child(1) { grid-column: span 1; aspect-ratio: 1; }
    .gallery-item:nth-child(2) { grid-column: span 2; aspect-ratio: 16/9; }
    .gallery-item:nth-child(3) { aspect-ratio: 1; }
    .gallery-item:nth-child(4) { grid-column: span 2; aspect-ratio: 16/9; }
    .gallery-item:nth-child(5) { grid-column: span 2; aspect-ratio: 16/9; }

    .hero-btns { flex-direction: column; }
    .btn-primary, .btn-outline { text-align: center; }

    footer { flex-direction: column; text-align: center; }
  }

  @media (max-width: 480px) {
    .services-grid { gap: 1px; }

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

    .gallery-item, .gallery-item:nth-child(n) {
      grid-column: span 1;
      aspect-ratio: 4/3;
    }

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

#sobre {
  background:
    radial-gradient(ellipse 45% 55% at 12% 35%, rgba(255,242,0,.08), transparent 65%),
    radial-gradient(ellipse 50% 60% at 90% 50%, rgba(0,157,219,.10), transparent 70%),
    var(--mid);
}

.sobre-text strong {
  color: var(--yellow);
  font-weight: 600;
}

.footer-info {
  display: flex;
  flex-direction: column;
  gap: .45rem;
  align-items: center;
  text-align: center;
}

.footer-map-link {
  color: var(--yellow);
  text-decoration: none;
  font-size: .82rem;
  letter-spacing: .04em;
  opacity: .85;
  transition: color .2s, opacity .2s;
}

.footer-map-link:hover {
  color: var(--mid);
  opacity: 1;
  text-decoration: underline;
}

.footer-phones {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: .3rem 1.1rem;
}

.footer-phone-link {
  color: var(--yellow);
  text-decoration: none;
  font-size: .82rem;
  letter-spacing: .04em;
  opacity: .85;
  white-space: nowrap;
  transition: color .2s, opacity .2s;
}

.footer-phone-link:hover {
  color: var(--mid);
  opacity: 1;
  text-decoration: underline;
}

@media (max-width: 680px) {
  .footer-phones {
    flex-direction: column;
    gap: .45rem;
  }
}

@media (max-width: 480px) {
  .footer-phone-link {
    font-size: .76rem;
  }
}

@media (max-width: 900px) {
  .sobre-visual {
    display: block;
    max-width: 460px;
    width: 100%;
    margin: 0 auto 2rem;
  }
}


.reviews-grid {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
}

.review-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(0,157,219,.22);
  padding: 2rem;
}

.review-card p {
  font-size: .92rem;
  line-height: 1.7;
  opacity: .74;
  margin: 1rem 0;
}

.review-card strong {
  color: var(--yellow);
  font-size: .85rem;
}

.stars {
  color: var(--yellow);
  letter-spacing: .15em;
}

.mapa-wrap {
  margin-top: 2rem;
  background: rgb(23, 36, 58);
  border: 1px solid rgba(0,157,219,.22);
  padding: .75rem;
  max-width: 760px;
}

.mapa-wrap h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.35rem;
  letter-spacing: .06em;
  color: var(--yellow);
  margin-bottom: .55rem;
}

.mapa-wrap iframe {
  display: block;
  height: 170px;
  filter: grayscale(.15) contrast(1.05);
}

.page-hero {
  min-height: 75vh;
  display: flex;
  align-items: center;
  padding: 130px 4vw 5rem;
  position: relative;
  overflow: hidden;
}

.page-hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
}

.page-hero-content p:not(.section-label) {
  max-width: 620px;
  font-size: 1rem;
  line-height: 1.8;
  opacity: .75;
  margin: 1.4rem 0 2rem;
}

.page-logo {
  width: min(220px, 62vw);
  height: auto;
  display: block;
  margin-bottom: 1.4rem;
  filter: drop-shadow(0 12px 35px rgba(0,157,219,.25));
}

.servicos-detalhados {
  background: var(--mid);
}

.filter-bar {
  display: flex;
  gap: .7rem;
  flex-wrap: wrap;
  margin: 2rem 0 2.5rem;
}

.filter-btn {
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.04);
  color: var(--white);
  padding: .75rem 1.2rem;
  font-family: 'DM Sans', sans-serif;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background .2s, color .2s, border-color .2s, transform .2s;
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--yellow);
  color: var(--mid);
  border-color: var(--yellow);
  transform: translateY(-2px);
}

.servicos-photo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1rem;
}

.photo-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(0,157,219,.20);
  overflow: hidden;
  transition: transform .25s, border-color .25s, background .25s;
}

.photo-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255,242,0,.45);
  background: rgba(255,255,255,.075);
}

.photo-card.hidden {
  display: none;
}

.photo-placeholder {
  min-height: 230px;
  display: flex;
  align-items: flex-end;
  padding: 1.3rem;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem;
  letter-spacing: .06em;
  color: var(--white);
  text-shadow: 0 8px 20px rgba(0,0,0,.55);
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.photo-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.76), transparent 68%);
  z-index: -1;
}

.photo-placeholder::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(45deg, transparent, transparent 18px, rgba(255,255,255,.045) 18px, rgba(255,255,255,.045) 20px);
  z-index: -1;
}

.bg-veiculo { background: linear-gradient(135deg, #0f3460, #009DDB); }
.bg-frota { background: linear-gradient(135deg, #071018, #3F4096); }
.bg-fachada { background: linear-gradient(135deg, #17243A, #fc6500); }
.bg-adesivo { background: linear-gradient(135deg, #101826, #00a76f); }
.bg-recorte { background: linear-gradient(135deg, #17243A, #FFF200); color: var(--black); }
.bg-impressao { background: linear-gradient(135deg, #3F4096, #009DDB); }
.bg-letra { background: linear-gradient(135deg, #071018, #FFF200); color: var(--black); }
.bg-parede { background: linear-gradient(135deg, #101826, #fc6500); }

.photo-content {
  padding: 1.5rem;
}

.photo-content h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.55rem;
  letter-spacing: .06em;
  margin-bottom: .6rem;
}

.photo-content p {
  font-size: .88rem;
  line-height: 1.7;
  opacity: .72;
  margin-bottom: 1rem;
}

.photo-content a {
  color: var(--yellow);
  text-decoration: none;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.photo-content a:hover {
  color: var(--blue);
}

.cta-servicos {
  background: var(--mid);
  text-align: center;
}

.cta-servicos h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: .05em;
  color: var(--yellow);
}

.cta-servicos p {
  max-width: 720px;
  margin: 1rem auto 2rem;
  line-height: 1.7;
  opacity: .72;
}

@media (max-width: 680px) {
  .page-hero {
    min-height: auto;
    padding-top: 110px;
  }

  .filter-bar {
    flex-direction: column;
  }

  .filter-btn {
    width: 100%;
  }
}


.servicos-accordion-section { background: var(--gray); }

.service-topics {
  display: grid;
  gap: 1rem;
  margin-top: 2.5rem;
}

.service-topic {
  border: 1px solid rgba(0,157,219,.24);
  background: rgba(255,255,255,.045);
  overflow: hidden;
}

.service-topic summary {
  list-style: none;
  cursor: pointer;
  padding: 1.35rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border-left: 4px solid var(--yellow);
  transition: background .2s;
}

.service-topic summary::-webkit-details-marker { display: none; }

.service-topic summary::after {
  content: '+';
  width: 32px;
  height: 32px;
  border: 1px solid rgba(255,255,255,.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--yellow);
  font-size: 1.5rem;
  line-height: 1;
  flex: 0 0 auto;
}

.service-topic[open] summary::after { content: '−'; }
.service-topic summary:hover { background: rgba(255,242,0,.06); }

.service-topic summary span {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(1.4rem, 3vw, 2rem);
  letter-spacing: .06em;
  color: var(--white);
}

.service-topic summary small {
  display: block;
  margin-top: .25rem;
  font-size: .78rem;
  line-height: 1.5;
  opacity: .62;
}

.topic-content { padding: 0 1.5rem 1.5rem; }

.topic-text {
  max-width: 760px;
  padding: 1rem 0 1.3rem;
}

.topic-text h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.7rem;
  color: var(--yellow);
  letter-spacing: .05em;
  margin-bottom: .35rem;
}

.topic-text p {
  font-size: .93rem;
  line-height: 1.7;
  opacity: .72;
}

.topic-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .75rem;
}

.service-photo-slot {
  min-height: 190px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 1rem;
  isolation: isolate;
  border: 1px solid rgba(255,255,255,.08);
}

.service-photo-slot::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.74), transparent 70%);
  z-index: -1;
}

.service-photo-slot::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(45deg, transparent, transparent 18px, rgba(255,255,255,.04) 18px, rgba(255,255,255,.04) 20px);
  z-index: -1;
}

.service-photo-slot span {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.25rem;
  letter-spacing: .08em;
  color: var(--white);
  text-shadow: 0 6px 18px rgba(0,0,0,.55);
}

.topic-whatsapp {
  display: inline-block;
  margin-top: 1.2rem;
  background: var(--yellow);
  color: var(--black);
  text-decoration: none;
  padding: .85rem 1.4rem;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  transition: background .2s, color .2s, transform .2s;
}

.topic-whatsapp:hover {
  background: var(--blue);
  color: var(--white);
  transform: translateY(-2px);
}

@media (max-width: 900px) {
  .topic-gallery { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 560px) {
  .service-topic summary { align-items: flex-start; }
  .topic-gallery { grid-template-columns: 1fr; }
  .service-photo-slot { min-height: 170px; }
}

/* Galeria organizada por pastas */
.folder-tip {
  font-size: .82rem !important;
  opacity: .68 !important;
  margin-top: .55rem;
}

.folder-tip strong {
  color: var(--yellow);
}

.service-photo-card {
  min-height: 190px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
  margin: 0;
}

.service-photo-card img {
  width: 100%;
  height: 210px;
  display: block;
  object-fit: cover;
  transition: transform .35s, filter .35s;
}

.service-photo-card:hover img {
  transform: scale(1.06);
  filter: brightness(1.08);
}

.service-photo-card figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 2.3rem 1rem .9rem;
  background: linear-gradient(to top, rgba(0,0,0,.78), transparent);
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.2rem;
  letter-spacing: .08em;
  color: var(--white);
  text-shadow: 0 6px 18px rgba(0,0,0,.55);
}

@media (max-width: 560px) {
  .service-photo-card img { height: 190px; }
}

/* PORTFOLIO COM FOTOS NA PAGINA PRINCIPAL */
.portfolio-intro {
  max-width: 680px;
  margin-top: 1rem;
  font-size: .95rem;
  line-height: 1.7;
  opacity: .72;
}

.gallery-item {
  display: block;
  text-decoration: none;
  min-height: 220px;
  border: 1px solid rgba(0,157,219,.12);
}

.gallery-img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: 50% 20%;
  transform: scale(1.01);
  transition: transform .45s ease, filter .45s ease;
}

.img-top {
  object-position: top;
}

.img-top-soft {
  object-position: 50% 20%;
}

.img-center {
  object-position: center;
}

.gallery-item:hover .gallery-img {
  transform: scale(1.08);
  filter: saturate(1.1) contrast(1.05);
}

.gallery-item .gallery-overlay {
  opacity: 1;
  background: linear-gradient(to top, rgba(7,16,24,.95) 0%, rgba(7,16,24,.55) 45%, rgba(7,16,24,.08) 100%);
}

.gallery-item:hover .gallery-overlay {
  background: linear-gradient(to top, rgba(0,157,219,.88) 0%, rgba(7,16,24,.55) 55%, rgba(7,16,24,.05) 100%);
}

.gallery-overlay h4 {
  color: var(--yellow);
  text-shadow: 0 3px 18px rgba(0,0,0,.55);
}

.portfolio-actions {
  margin-top: 2rem;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

@media (max-width: 680px) {
  .portfolio-actions { flex-direction: column; }
}


.sobre-fachada-box {
  background: var(--mid);
  border: 1px solid rgba(0,157,219,.22);
  overflow: hidden;
}

.sobre-fachada-box::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.28), transparent 55%);
  pointer-events: none;
  z-index: 2;
}

.sobre-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  position: relative;
  z-index: 1;
}

.mapa-wrap {
  max-width: 560px;
  margin-top: 1.4rem;
  padding: .55rem;
  opacity: .9;
}

.mapa-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: .45rem;
}

.mapa-head h3 {
  margin: 0;
  font-size: 1.12rem;
}

.mapa-head a {
  color: var(--yellow);
  text-decoration: none;
  font-size: .72rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  opacity: .8;
}

.mapa-head a:hover {
  opacity: 1;
  color: var(--blue);
}

.mapa-wrap iframe {
  height: 120px !important;
  border-radius: 2px;
  opacity: .78;
  filter: grayscale(.25) contrast(1.05) brightness(.88);
}

@media (max-width: 900px) {
  .sobre-visual {
    display: block !important;
    max-width: 520px;
    width: 100%;
    margin: 0 auto 2rem;
  }
}

/* MELHORIAS ADICIONADAS - ORÇAMENTO, PROCESSO E GALERIA */
.hamburger {
  appearance: none;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.como-funciona-section {
  background: radial-gradient(circle at 15% 15%, rgba(255,242,0,.10), transparent 32%), var(--dark);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.step-card {
  position: relative;
  padding: 1.4rem;
  min-height: 210px;
  border: 1px solid rgba(0,157,219,.25);
  background: linear-gradient(145deg, rgba(255,255,255,.06), rgba(255,255,255,.015));
  overflow: hidden;
}

.step-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-top: 3px solid var(--yellow);
  opacity: .75;
}

.step-card span {
  display: inline-block;
  color: var(--blue);
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.4rem;
  line-height: 1;
  margin-bottom: .85rem;
}

.step-card h3 {
  color: var(--yellow);
  font-size: 1.25rem;
  margin-bottom: .6rem;
}

.step-card p {
  color: rgba(255,255,255,.72);
  line-height: 1.65;
  font-size: .93rem;
}

.quote-form {
  display: grid;
  gap: .85rem;
  margin-top: 1.15rem;
}

.quote-form label {
  display: grid;
  gap: .35rem;
  color: rgba(255,255,255,.85);
  font-size: .84rem;
  text-align: left;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(0,0,0,.35);
  color: #fff;
  padding: .82rem .9rem;
  border-radius: 4px;
  font: inherit;
  outline: none;
}

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
  border-color: var(--yellow);
  box-shadow: 0 0 0 3px rgba(255,242,0,.12);
}

.quote-form textarea {
  resize: vertical;
  min-height: 110px;
}

.quote-form .btn-whatsapp {
  border: 0;
  cursor: pointer;
  width: 100%;
  margin-top: .25rem;
}

.gallery-img,
.service-photo-card img,
.photo-card img {
  cursor: zoom-in;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 5vw;
  background: rgba(0,0,0,.88);
  backdrop-filter: blur(6px);
}

.lightbox.open {
  display: flex;
}

.lightbox img {
  max-width: min(1100px, 96vw);
  max-height: 86vh;
  object-fit: contain;
  box-shadow: 0 18px 70px rgba(0,0,0,.65);
}

.lightbox-close {
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  color: #fff;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
}

@media (max-width: 980px) {
  .steps-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .steps-grid {
    grid-template-columns: 1fr;
  }

  .step-card {
    min-height: auto;
  }
}

/* Ajuste solicitado: seção de orçamento mais compacta */
#contato {
  padding-top: clamp(2.5rem, 5vw, 4rem);
  padding-bottom: clamp(2.5rem, 5vw, 4rem);
}

#contato .section-label {
  margin-bottom: .45rem;
}

#contato .section-title {
  font-size: clamp(2.2rem, 4.2vw, 3.4rem);
}

.contato-wrap {
  margin-top: 1.6rem;
  gap: clamp(2rem, 3.5vw, 4rem);
  align-items: start;
}

.contato-info h3,
.contato-whatsapp h3 {
  margin-bottom: .9rem;
}

.contato-info > p {
  margin-bottom: 1.25rem !important;
}

.contato-item {
  margin-bottom: .95rem;
}

.contato-whatsapp {
  padding: clamp(1.4rem, 2.5vw, 2rem);
}

.contato-whatsapp p {
  margin-bottom: 1.2rem;
  line-height: 1.55;
}

.quote-form {
  gap: .65rem;
  margin-top: .8rem;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  padding: .68rem .85rem;
}

.quote-form textarea {
  min-height: 86px;
}

.quote-form .btn-whatsapp {
  padding: .85rem 1rem;
}

/* Ajuste: localização integrada ao bloco de contato */
.contato-wrap {
  grid-template-columns: minmax(320px, .9fr) minmax(420px, 1.15fr);
  gap: clamp(2.2rem, 4vw, 4.5rem);
  align-items: stretch;
}

.contato-info {
  display: flex;
  flex-direction: column;
}

.mapa-contato {
  width: 100%;
  max-width: 100%;
  margin-top: 1.15rem;
  padding: .65rem;
  background: rgba(255,255,255,.045);
  border: 1px solid rgba(0,157,219,.28);
}

.mapa-contato iframe {
  height: 150px !important;
  opacity: .86;
}

.mapa-contato .mapa-head h3 {
  font-size: 1.18rem;
}

.mapa-contato .mapa-head {
  margin-bottom: .55rem;
}

@media (max-width: 900px) {
  .contato-wrap {
    grid-template-columns: 1fr;
  }

  .mapa-contato iframe {
    height: 180px !important;
  }
}

/* HERO - LOGOS PLAYART + CAMBEA */
.hero-logos {
  display: flex;
  align-items: center;
  gap: 28px;
  width: fit-content;
  margin-bottom: 1.8rem;
}

.hero-logo {
  width: min(340px, 58vw);
  height: auto;
  display: block;
}

.cambea-logo {
  width: 115px;
  height: auto;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 10px 24px rgba(0, 0, 0, 0.35));
}

/* HERO - IMAGEM LATERAL */
.hero {
  position: relative;
  overflow: hidden;
}

.hero-showcase {
  position: absolute;
  right: 7%;
  top: 18%;
  width: 38vw;
  max-width: 620px;
  min-width: 360px;
  z-index: 2;
}

.hero-photo {
  width: 100%;
  aspect-ratio: 16 / 10;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
  transform: rotate(-2deg);
  background: rgba(255, 255, 255, 0.04);
}

.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.hero-mini-card {
  position: absolute;
  background: rgba(7, 20, 38, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #fff;
  padding: 16px 20px;
  border-radius: 18px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
}

.hero-mini-card strong {
  display: block;
  color: #fff200;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.hero-mini-card span {
  display: block;
  font-size: 0.85rem;
  opacity: 0.85;
  margin-top: 3px;
}

.card-top {
  top: -24px;
  left: -28px;
}

.card-bottom {
  right: -20px;
  bottom: -24px;
}

/* RESPONSIVO */
@media (max-width: 1200px) {
  .hero-showcase {
    right: 4%;
    width: 34vw;
    min-width: 320px;
  }
}

@media (max-width: 1000px) {
  .hero-showcase {
    position: relative;
    right: auto;
    top: auto;
    width: 100%;
    max-width: 620px;
    min-width: 0;
    margin-top: 2.5rem;
  }

  .hero-photo {
    transform: rotate(0deg);
  }
}

@media (max-width: 768px) {
  .hero-logos {
    gap: 16px;
  }

  .hero-logo {
    width: min(250px, 64vw);
  }

  .cambea-logo {
    width: 82px;
  }

  .hero-mini-card {
    padding: 12px 15px;
    border-radius: 14px;
  }

  .hero-mini-card strong {
    font-size: 0.95rem;
  }

  .hero-mini-card span {
    font-size: 0.76rem;
  }

  .card-top {
    top: 12px;
    left: 12px;
  }

  .card-bottom {
    right: 12px;
    bottom: 12px;
  }
}

@media (max-width: 480px) {
  .hero-logos {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .hero-logo {
    width: min(220px, 72vw);
  }

  .cambea-logo {
    width: 78px;
  }

  .hero-showcase {
    margin-top: 2rem;
  }

  .hero-photo {
    border-radius: 18px;
    aspect-ratio: 4 / 3;
  }

  .hero-mini-card {
    position: static;
    margin-top: 10px;
    width: fit-content;
  }

  .card-top,
  .card-bottom {
    top: auto;
    left: auto;
    right: auto;
    bottom: auto;
  }
}