:root {
      --red: #e01a1a;
      --red-dark: #a80f0f;
      --red-glow: rgba(224, 26, 26, 0.4);
      --black: #0a0a0a;
      --black-mid: #111111;
      --black-soft: #1a1a1a;
      --gray: #2a2a2a;
      --gray-light: #888;
      --cream: #f0ebe0;
      --white: #ffffff;
    }

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

    html { scroll-behavior: smooth; }

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

    /* ── CURSOR ── */
    .cursor {
      width: 6px; height: 6px;
      background: rgba(224, 26, 26, 0.72);
      border-radius: 50%;
      position: fixed;
      pointer-events: none;
      z-index: 9999;
      transition: transform 0.18s ease, opacity 0.18s ease, background 0.18s ease;
      mix-blend-mode: normal;
      opacity: 0.65;
    }
    .cursor-follower {
      width: 28px; height: 28px;
      border: 1px solid rgba(224,26,26,0.28);
      border-radius: 50%;
      position: fixed;
      pointer-events: none;
      z-index: 9998;
      opacity: 0.55;
      transition: transform 0.28s ease, border-color 0.2s ease, background 0.2s ease, opacity 0.2s ease;
    }
    body:has(a:hover) .cursor,
    body:has(button:hover) .cursor {
      background: var(--red);
      opacity: 0.9;
      transform: scale(1.35);
    }
    body:has(a:hover) .cursor-follower,
    body:has(button:hover) .cursor-follower {
      background: rgba(224,26,26,0.08);
      border-color: rgba(224,26,26,0.65);
      opacity: 0.9;
      transform: scale(1.65);
    }

    /* ── NOISE OVERLAY ── */
    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='1'/%3E%3C/svg%3E");
      opacity: 0.025;
      pointer-events: none;
      z-index: 9997;
    }

    /* ── NAVBAR ── */
    nav {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 1000;
      padding: 20px 60px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      transition: all 0.4s ease;
    }
    nav.scrolled {
      background: rgba(10, 10, 10, 0.92);
      backdrop-filter: blur(20px);
      padding: 14px 60px;
      border-bottom: 1px solid rgba(224,26,26,0.15);
    }
    .nav-logo img {
      height: 44px;
      object-fit: contain;
    }
    .nav-links {
      display: flex;
      align-items: center;
      gap: 36px;
      list-style: none;
    }
    .nav-links a {
      color: rgb(255, 255, 255);
      text-decoration: none;
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 13px;
      font-weight: 600;
      letter-spacing: 2px;
      text-transform: uppercase;
      transition: color 0.3s;
      position: relative;
    }
    .nav-links a::after {
      content: '';
      position: absolute;
      bottom: -4px; left: 0;
      width: 0; height: 1px;
      background: var(--red);
      transition: width 0.3s ease;
    }
    .nav-links a:hover { color: var(--white); }
    .nav-links a:hover::after { width: 100%; }

    .nav-social { display: flex; gap: 16px; }
    .nav-social a {
      color: rgb(255, 255, 255);
      font-size: 18px;
      transition: all 0.3s;
      text-decoration: none;
    }
    .nav-social a:hover { color: var(--red); transform: translateY(-2px); }

    .nav-cta {
      background: var(--red);
      color: var(--white) !important;
      padding: 8px 20px !important;
      border-radius: 2px;
      font-family: 'Barlow Condensed', sans-serif !important;
      font-weight: 700 !important;
      letter-spacing: 2px;
      text-transform: uppercase;
      transition: background 0.3s ease, transform 0.2s !important;
    }
    .nav-cta:hover { background: var(--red-dark) !important; transform: translateY(-1px) !important; }
    .nav-cta::after { display: none !important; }

    .hamburger {
      display: none;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
      background: none;
      border: none;
      padding: 4px;
    }
    .hamburger span {
      display: block;
      width: 26px; height: 2px;
      background: var(--white);
      transition: all 0.3s;
    }

    /* Mobile nav */
    .mobile-nav {
      display: none;
      position: fixed;
      inset: 0;
      background: var(--black);
      z-index: 999;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 32px;
    }
    .mobile-nav.open { display: flex; }
    .mobile-nav a {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 48px;
      color: var(--white);
      text-decoration: none;
      letter-spacing: 4px;
      transition: color 0.3s;
    }
    .mobile-nav a:hover { color: var(--red); }
    .mobile-nav-close {
      position: absolute;
      top: 24px; right: 32px;
      background: none;
      border: none;
      color: var(--white);
      font-size: 32px;
      cursor: pointer;
    }

    /* ── HERO ── */
    #inicio {
      position: relative;
      height: 100vh;
      min-height: 700px;
      display: flex;
      align-items: flex-end;
      overflow: hidden;
    }
    .hero-bg {
      position: absolute;
      inset: 0;
      background-image: url('../img/fachadacortada16x9.JPG');
      background-size: cover;
      background-position: center;
      transform: scale(1.06);
      transition: transform 8s ease-out;
    }
    .hero-bg.loaded { transform: scale(1); }
    .hero-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(
        105deg,
        rgba(10,10,10,0.97) 0%,
        rgba(10,10,10,0.75) 40%,
        rgba(10,10,10,0.2) 70%,
        rgba(10,10,10,0.6) 100%
      );
    }
    .hero-red-line {
      position: absolute;
      left: 0; top: 0; bottom: 0;
      width: 4px;
      background: var(--red);
      box-shadow: 0 0 30px var(--red-glow), 0 0 80px var(--red-glow);
    }

    .hero-content {
    position: relative;
    z-index: 2;
    padding: 0 60px 80px;
    max-width: 760px;
    align-self: flex-end; /* mantém no fundo */
    margin-bottom: 0;
  }
    .hero-eyebrow {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 15px;
      font-weight: 600;
      letter-spacing: 5px;
      text-transform: uppercase;
      color: var(--red);
      margin-bottom: 5px;
      opacity: 0;
      transform: translateY(20px);
      animation: fadeUp 0.7s 0.3s forwards;
    }
    .hero-title {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(64px, 10vw, 120px);
      line-height: 0.92;
      letter-spacing: 2px;
      color: var(--white);
      opacity: 0;
      transform: translateY(30px);
      animation: fadeUp 0.8s 0.5s forwards;
    }
    .hero-title span { color: var(--red); }
    .hero-sub {
      font-size: 18px;
      font-weight: 300;
      color: rgb(255, 255, 255);
      line-height: 1.7;
      margin: 16px 0 40px;
      max-width: 480px;
      opacity: 0;
      transform: translateY(20px);
      animation: fadeUp 0.7s 0.8s forwards;
    }
    .hero-actions {
      display: flex;
      gap: 16px;
      flex-wrap: wrap;
      opacity: 0;
      transform: translateY(20px);
      animation: fadeUp 0.7s 1s forwards;
    }
    .btn-primary-red {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: var(--red);
      color: var(--white);
      text-decoration: none;
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 14px;
      font-weight: 700;
      letter-spacing: 2.5px;
      text-transform: uppercase;
      padding: 16px 32px;
      border-radius: 2px;
      transition: all 0.3s;
      position: relative;
      overflow: hidden;
    }
    .btn-primary-red::before {
      content: '';
      position: absolute;
      inset: 0;
      background: rgba(255,255,255,0.1);
      transform: translateX(-100%);
      transition: transform 0.4s ease;
    }
    .btn-primary-red:hover::before { transform: translateX(0); }
    .btn-primary-red:hover { transform: translateY(-2px); box-shadow: 0 8px 30px var(--red-glow); }

    .btn-outline-white {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      border: 1px solid rgba(255,255,255,0.3);
      color: var(--white);
      text-decoration: none;
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 14px;
      font-weight: 600;
      letter-spacing: 2.5px;
      text-transform: uppercase;
      padding: 16px 32px;
      border-radius: 2px;
      transition: all 0.3s;
    }
    .btn-outline-white:hover {
      background: rgba(255,255,255,0.08);
      border-color: rgba(255,255,255,0.7);
      transform: translateY(-2px);
    }

    .hero-stats {
      position: absolute;
      right: 60px;
      bottom: 80px;
      z-index: 2;
      display: flex;
      flex-direction: column;
      gap: 24px;
      opacity: 0;
      animation: fadeIn 1s 1.3s forwards;
    }
    .stat-item { text-align: right; }
    .stat-num {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 42px;
      color: var(--white);
      line-height: 1;
    }
    .stat-num span { color: var(--red); }
    .stat-label {
      font-size: 15px;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: rgb(255, 255, 255);
      font-family: 'Barlow Condensed', sans-serif;
    }

    .hero-scroll {
      position: absolute;
      bottom: 32px;
      left: 50%;
      transform: translateX(-50%);
      z-index: 2;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 8px;
      opacity: 0;
      animation: fadeIn 1s 1.6s forwards;
    }
    .scroll-line {
      width: 1px; height: 40px;
      background: linear-gradient(to bottom, transparent, var(--red));
      animation: scrollPulse 2s infinite;
    }
    .scroll-text {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 10px;
      letter-spacing: 3px;
      color: rgba(255,255,255,0.4);
      text-transform: uppercase;
    }

    /* ── TICKER ── */
    .ticker-wrap {
      background: var(--red);
      padding: 12px 0;
      overflow: hidden;
      position: relative;
    }
    .ticker-track {
      display: flex;
      white-space: nowrap;
      animation: ticker 25s linear infinite;
    }
    .ticker-item {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 13px;
      font-weight: 700;
      letter-spacing: 3px;
      text-transform: uppercase;
      padding: 0 40px;
      display: inline-flex;
      align-items: center;
      gap: 16px;
    }
    .ticker-dot { width: 5px; height: 5px; background: rgba(255,255,255,0.5); border-radius: 50%; flex-shrink: 0; }

    /* ── SERVIÇOS ── */
    #serviços {
      padding: 120px 60px;
      background: var(--black);
    }
    .section-header {
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
      margin-bottom: 70px;
      flex-wrap: wrap;
      gap: 24px;
    }
    .section-label {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 15px;
      font-weight: 700;
      letter-spacing: 5px;
      text-transform: uppercase;
      color: var(--red);
      margin-bottom: 12px;
    }
    .section-title {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(42px, 6vw, 72px);
      line-height: 0.95;
      letter-spacing: 1px;
    }
    .section-title span { color: var(--red); }
    .section-desc {
      font-size: 15px;
      font-weight: 300;
      color: rgb(255, 255, 255);
      max-width: 340px;
      line-height: 1.7;
      text-align: right;
    }

    .services-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 2px;
    }
    .service-card {
      position: relative;
      aspect-ratio: 3/4;
      overflow: hidden;
      cursor: pointer;
    }
    .service-card img {
      width: 100%; height: 100%;
      object-fit: cover;
      transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
      filter: grayscale(30%) brightness(0.7);
    }
    .service-card:hover img { transform: scale(1.08); filter: grayscale(0%) brightness(0.75); }

    .service-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(10,10,10,0.95) 0%, rgba(10,10,10,0.3) 50%, transparent 100%);
      transition: background 0.4s;
    }
    .service-card:hover .service-overlay {
      background: linear-gradient(to top, rgba(10,10,10,0.97) 0%, rgba(10,10,10,0.5) 60%, rgba(224,26,26,0.1) 100%);
    }

    .service-content {
      position: absolute;
      bottom: 0; left: 0; right: 0;
      padding: 32px;
    }
    .service-num {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 64px;
      color: rgba(255, 0, 0, 0.185);
      line-height: 1;
      transition: color 0.4s;
    }
    .service-card:hover .service-num { color: rgba(224,26,26,0.15); }
    .service-name {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 32px;
      letter-spacing: 2px;
      color: var(--white);
      margin-top: -8px;
    }
    .service-text {
      font-size: 15px;
      font-weight: 300;
      color: rgb(255, 255, 255);
      line-height: 1.6;
      margin-top: 10px;
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.5s ease, opacity 0.4s;
      opacity: 0;
    }
    .service-card:hover .service-text { max-height: 80px; opacity: 1; }
    .service-line {
      width: 0; height: 2px;
      background: var(--red);
      margin-top: 14px;
      transition: width 0.5s ease;
    }
    .service-card:hover .service-line { width: 40px; }

    /* ── SOBRE ── */
    #sobre {
      padding: 120px 60px;
      background: var(--black-mid);
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 100px;
      align-items: center;
    }
    .about-media {
      position: relative;
    }
    .about-main-img {
      width: 100%;
      aspect-ratio: 4/5;
      object-fit: cover;
      border-radius: 2px;
      display: block;
    }
    .about-accent-img {
      position: absolute;
      width: 55%;
      aspect-ratio: 1;
      object-fit: cover;
      bottom: -40px;
      right: -40px;
      border: 4px solid var(--black-mid);
      border-radius: 2px;
    }
    .about-badge {
      position: absolute;
      top: 30px;
      left: -30px;
      background: var(--red);
      padding: 20px 24px;
      border-radius: 2px;
      text-align: center;
    }
    .about-badge-num {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 48px;
      line-height: 1;
      display: block;
    }
    .about-badge-text {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 11px;
      letter-spacing: 2px;
      text-transform: uppercase;
      display: block;
      opacity: 0.85;
    }

    .about-text { padding-right: 20px; }
    .about-body {
      font-size: 16px;
      font-weight: 300;
      color: rgb(255, 255, 255);
      line-height: 1.9;
      margin: 24px 0 40px;
    }
    .about-features {
      display: flex;
      flex-direction: column;
      gap: 20px;
      margin-bottom: 44px;
    }
    .about-feature {
      display: flex;
      align-items: flex-start;
      gap: 16px;
      padding: 20px;
      background: rgba(255,255,255,0.03);
      border: 1px solid rgba(255,255,255,0.06);
      border-radius: 2px;
      transition: all 0.3s;
    }
    .about-feature:hover {
      background: rgba(224,26,26,0.06);
      border-color: rgba(224,26,26,0.2);
      transform: translateX(4px);
    }
    .about-feature-icon {
      font-size: 22px;
      color: var(--red);
      flex-shrink: 0;
      margin-top: 2px;
    }
    .about-feature-title {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 15px;
      font-weight: 700;
      letter-spacing: 1px;
      text-transform: uppercase;
      color: var(--white);
    }
    .about-feature-desc {
      font-size: 13px;
      font-weight: 300;
      color: rgb(255, 255, 255);
      line-height: 1.6;
      margin-top: 4px;
    }

    /* ── AVALIAÇÕES ── */
    #avaliaçoes {
      padding: 120px 60px;
      background: var(--black);
      overflow: hidden;
    }
    .reviews-embed {
      margin-top: 60px;
      background: rgba(255,255,255,0.02);
      border: 1px solid rgba(255,255,255,0.06);
      border-radius: 4px;
      padding: 40px;
      transition: box-shadow 0.4s;
    }
    .reviews-embed:hover {
      box-shadow: 0 0 60px rgba(224,26,26,0.08);
      border-color: rgba(224,26,26,0.15);
    }

    .stars-row {
      display: flex;
      align-items: center;
      gap: 6px;
      margin-bottom: 12px;
    }
    .star { color: #f5c518; font-size: 20px; }
    .rating-text {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 36px;
      margin-left: 8px;
    }
    .rating-count {
      font-size: 13px;
      color: rgba(255,255,255,0.4);
      margin-left: 4px;
    }

    /* ── LOCALIZAÇÃO ── */
    #localizaçao {
      padding: 120px 60px;
      background: var(--black-mid);
    }
    .location-grid {
      display: grid;
      grid-template-columns: 1fr 1.5fr;
      gap: 60px;
      align-items: start;
      margin-top: 60px;
    }
    .location-info { display: flex; flex-direction: column; gap: 28px; }
    .info-card {
      display: flex;
      gap: 20px;
      padding: 24px;
      background: rgba(255,255,255,0.03);
      border: 1px solid rgba(255,255,255,0.06);
      border-radius: 2px;
      transition: all 0.3s;
    }
    .info-card:hover {
      background: rgba(224,26,26,0.05);
      border-color: rgba(224,26,26,0.2);
      transform: translateX(4px);
    }
    .info-icon {
      font-size: 24px;
      color: var(--red);
      flex-shrink: 0;
    }
    .info-label {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 15px;
      font-weight: 700;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: var(--red);
      margin-bottom: 6px;
    }
    .info-value {
      font-size: 15px;
      color: rgba(255,255,255,0.8);
      line-height: 1.6;
    }
    .map-container {
      border-radius: 2px;
      overflow: hidden;
      border: 1px solid rgba(255,255,255,0.08);
      transition: border-color 0.4s;
      height: 420px;
    }
    .map-container:hover { border-color: rgba(224,26,26,0.3); }
    .map-container iframe { width: 100%; height: 100%; border: 0; display: block; }

    /* ── FOOTER ── */
    footer {
      background: var(--black);
      border-top: 1px solid rgba(255,255,255,0.06);
      padding: 60px;
    }
    .footer-inner {
      display: grid;
      grid-template-columns: 1.5fr 1fr 1fr;
      gap: 60px;
      margin-bottom: 60px;
    }
    .footer-logo img {
      height: 50px;
      object-fit: contain;
      margin-bottom: 16px;
    }
    .footer-tagline {
      font-size: 14px;
      font-weight: 300;
      color: rgb(255, 255, 255);
      line-height: 1.8;
      max-width: 280px;
    }
    .footer-socials {
      display: flex;
      gap: 14px;
      margin-top: 24px;
    }
    .footer-social {
      width: 38px; height: 38px;
      border: 1px solid rgba(255,255,255,0.15);
      border-radius: 2px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: rgba(255,255,255,0.5);
      font-size: 16px;
      text-decoration: none;
      transition: all 0.3s;
    }
    .footer-social:hover { background: var(--red); border-color: var(--red); color: var(--white); }
    .footer-col-title {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 15px;
      font-weight: 700;
      letter-spacing: 4px;
      text-transform: uppercase;
      color: rgb(255, 255, 255);
      margin-bottom: 24px;
    }
    .footer-links { list-style: none; display: flex; flex-direction: column; gap: 12px; }
    .footer-links a {
      font-size: 14px;
      color: rgb(255, 255, 255);
      text-decoration: none;
      transition: color 0.3s;
      display: flex;
      align-items: center;
      gap: 8px;
    }
    .footer-links a::before {
      content: '';
      width: 0; height: 1px;
      background: var(--red);
      transition: width 0.3s;
    }
    .footer-links a:hover { color: var(--white); }
    .footer-links a:hover::before { width: 16px; }
    .footer-contact-item {
      display: flex;
      align-items: flex-start;
      gap: 12px;
      margin-bottom: 16px;
    }
    .footer-contact-item i { color: var(--red); font-size: 16px; margin-top: 2px; flex-shrink: 0; }
    .footer-contact-item span { font-size: 13px; color: rgb(255, 255, 255); line-height: 1.6; }
    .footer-contact-item a { color: rgb(255, 255, 255); text-decoration: none; transition: color 0.3s; }
    .footer-contact-item a:hover { color: var(--red); }
    .footer-bottom {
      border-top: 1px solid rgba(255,255,255,0.06);
      padding-top: 28px;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }
    .footer-copy {
      font-size: 12px;
      color: rgba(255,255,255,0.25);
      letter-spacing: 1px;
    }
    .footer-copy span { color: var(--red); }

    /* ── CTA FLOAT WHATSAPP ── */
    .whatsapp-float {
      position: fixed;
      bottom: 30px;
      right: 30px;
      z-index: 500;
      width: 56px; height: 56px;
      background: #25d366;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 26px;
      color: var(--white);
      text-decoration: none;
      box-shadow: 0 4px 20px rgba(37,211,102,0.4);
      transition: all 0.3s;
      animation: pulse-green 3s infinite;
    }
    .whatsapp-float:hover {
      transform: scale(1.1);
      box-shadow: 0 6px 30px rgba(37,211,102,0.6);
    }

    /* ── ANIMATIONS ── */
    @keyframes fadeUp {
      to { opacity: 1; transform: translateY(0); }
    }
    @keyframes fadeIn {
      to { opacity: 1; }
    }
    @keyframes ticker {
      0% { transform: translateX(0); }
      100% { transform: translateX(-50%); }
    }
    @keyframes scrollPulse {
      0%, 100% { opacity: 0.4; transform: scaleY(1); }
      50% { opacity: 1; transform: scaleY(1.3); }
    }
    @keyframes pulse-green {
      0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.4); }
      50% { box-shadow: 0 4px 40px rgba(37,211,102,0.7); }
    }

    /* ── SCROLL REVEAL ── */
    .reveal {
      opacity: 0;
      transform: translateY(40px);
      transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    }
    .reveal.visible { opacity: 1; transform: translateY(0); }
    .reveal-left {
      opacity: 0;
      transform: translateX(-50px);
      transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1), transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
    }
    .reveal-left.visible { opacity: 1; transform: translateX(0); }
    .reveal-right {
      opacity: 0;
      transform: translateX(50px);
      transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1), transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
    }
    .reveal-right.visible { opacity: 1; transform: translateX(0); }
    .delay-1 { transition-delay: 0.1s; }
    .delay-2 { transition-delay: 0.2s; }
    .delay-3 { transition-delay: 0.35s; }
    .delay-4 { transition-delay: 0.5s; }

    /* ── RESPONSIVE ── */
    @media (max-width: 1100px) {
      .services-grid { grid-template-columns: repeat(2, 1fr); }
      #sobre { grid-template-columns: 1fr; gap: 60px; }
      .about-accent-img { right: -20px; }
      .about-badge { left: -16px; }
      .location-grid { grid-template-columns: 1fr; }
      .footer-inner { grid-template-columns: 1fr 1fr; }
    }
    @media (max-width: 768px) {
      nav { padding: 16px 24px; }
      nav.scrolled { padding: 12px 24px; }
      .nav-links, .nav-social { display: none; }
      .hamburger { display: flex; }
      .hero-content { padding: 0 24px 80px; }
      .hero-stats { display: none; }
      #serviços, #avaliaçoes { padding: 80px 24px; }
      #sobre { padding: 80px 24px; }
      #localizaçao { padding: 80px 24px; }
      footer { padding: 60px 24px; }
      .section-header { flex-direction: column; align-items: flex-start; }
      .section-desc { text-align: left; }
      .services-grid { grid-template-columns: 1fr; gap: 2px; }
      .service-card { aspect-ratio: 16/9; }
      .footer-inner { grid-template-columns: 1fr; gap: 40px; }
      .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
    }
  .about-main-video {
    width: 100%;
    aspect-ratio: 9/16;
    object-fit: cover;
    border-radius: 2px;
    display: block;
  }
