  :root {
    --gold: #B08A45;
    --gold-light: #D8B266;
    --gold-dark: #7A581C;
    --resin: #009cb3;
    --resin-light: #00e5ff;
    --white: #FFFFFF;
    --bg-light: #F9F9FB;
    --bg-gray: #F2F2F6;
    --black: #111111;
    --gray-dark: #1E1E1E;
    --gray: #555555;
    --gray-light: #767676;
    --border-light: rgba(168, 129, 60, 0.12);
    --shadow-soft: 0 10px 40px rgba(0, 0, 0, 0.04);
    --shadow-medium: 0 25px 60px rgba(0, 0, 0, 0.07);
    --shadow-lux: 0 35px 80px rgba(0, 0, 0, 0.12);
  }

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

  html { scroll-behavior: smooth; }

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

  /* ── SCROLLBAR ── */
  ::-webkit-scrollbar { width: 6px; }
  ::-webkit-scrollbar-track { background: var(--bg-light); }
  ::-webkit-scrollbar-thumb { background: var(--gold-light); border-radius: 3px; }

  /* ── HEADER & NAV ── */
  header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    padding: 24px 8%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  }

  header.scrolled {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    padding: 14px 8%;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.02);
  }

  header.menu-active {
    background: rgba(255, 255, 255, 0.98) !important;
    backdrop-filter: blur(20px) !important;
    -webkit-backdrop-filter: blur(20px) !important;
  }

  .nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
  }

  .nav-logo img {
    height: 40px;
    width: auto;
    object-fit: contain;
    transition: filter 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  }

  header:not(.scrolled):not(.menu-active) .nav-logo img {
    filter: brightness(0) invert(1);
  }

  .nav-links {
    display: flex;
    gap: 40px;
    list-style: none;
  }

  .nav-links a {
    color: var(--gray-dark);
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    transition: color 0.3s ease;
    position: relative;
    padding: 6px 0;
  }

  @media (min-width: 769px) {
    header:not(.scrolled) .nav-links a {
      color: rgba(255, 255, 255, 0.85);
    }
    header:not(.scrolled) .nav-links a:hover {
      color: var(--white);
    }
    header:not(.scrolled) .nav-cta {
      background: transparent;
      border-color: rgba(255, 255, 255, 0.4);
      color: var(--white);
    }
    header:not(.scrolled) .nav-cta:hover {
      background: var(--gold);
      border-color: var(--gold);
      color: var(--white);
      box-shadow: 0 10px 25px rgba(168, 129, 60, 0.35);
    }
  }

  .nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0; right: 0;
    height: 2px;
    background: linear-gradient(to right, var(--gold), var(--resin-light));
    transform: scaleX(0);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    transform-origin: right;
  }

  .nav-links a:hover { color: var(--gold-light); }
  .nav-links a:hover::after {
    transform: scaleX(1);
    transform-origin: left;
  }

  .nav-cta {
    background: var(--white);
    border: 1.5px solid var(--gold);
    color: var(--gold-dark);
    padding: 12px 30px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
    border-radius: 30px;
  }

  .nav-cta:hover {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--white);
    border-color: transparent;
    box-shadow: 0 10px 25px rgba(168, 129, 60, 0.25);
  }

  .menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    padding: 4px;
    z-index: 1001;
  }

  .menu-toggle span {
    width: 26px;
    height: 2px;
    background: var(--black);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    transform-origin: center;
  }

  header:not(.scrolled):not(.menu-active) .menu-toggle span {
    background: var(--white);
  }

  header.menu-active .menu-toggle span {
    background: var(--black) !important;
  }

  header.menu-active .menu-toggle span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
  }

  header.menu-active .menu-toggle span:nth-child(2) {
    opacity: 0;
    transform: scale(0);
  }

  header.menu-active .menu-toggle span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
  }

  /* ── 3D HERO CANVAS ── */
  #hero-canvas-container {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
  }
  .hero-video {
    position: absolute;
    inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    opacity: 0.55;
    mix-blend-mode: screen;
    filter: brightness(0.9) contrast(1.1);
  }
  @media (max-width: 1024px) {
    .hero-video { opacity: 0.45; }
  }

  /* ── HERO ── */
  #hero {
    height: 100vh;
    min-height: 800px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 8%;
    overflow: hidden;
    background: #0b0907;
  }

  .hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(11,9,7,0.85) 0%, rgba(11,9,7,0.5) 50%, rgba(11,9,7,0.9) 100%);
    pointer-events: none;
    z-index: 1;
  }

  .hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold-light);
    margin-bottom: 24px;
    opacity: 0;
    animation: fadeUp 0.8s 0.3s ease forwards;
  }

  .hero-tag::before {
    content: '';
    width: 24px;
    height: 2px;
    background: var(--gold-light);
  }

  .hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(48px, 6vw, 78px);
    font-weight: 700;
    color: var(--white);
    line-height: 1.12;
    margin-bottom: 28px;
    opacity: 0;
    animation: fadeUp 0.8s 0.5s ease forwards;
  }

  .hero-title em {
    font-style: italic;
    font-weight: 400;
    color: var(--resin-light);
    text-shadow: 0 0 20px rgba(0, 229, 255, 0.2);
  }

  .hero-subtitle {
    font-size: clamp(16px, 1.7vw, 19px);
    color: rgba(255, 255, 255, 0.7);
    font-weight: 400;
    line-height: 1.8;
    margin-bottom: 48px;
    opacity: 0;
    animation: fadeUp 0.8s 0.7s ease forwards;
  }

  .hero-btns {
    display: flex;
    gap: 20px;
    opacity: 0;
    animation: fadeUp 0.8s 0.9s ease forwards;
  }

  /* ── BOTÃO PREMIUM RESINA FLUIDA ── */
  .btn-resin {
    position: relative;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--white);
    padding: 18px 46px;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 700;
    text-decoration: none;
    border-radius: 30px;
    border: none;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(168, 129, 60, 0.25);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: inline-block;
  }

  .btn-resin::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: all 0.6s ease;
  }

  .btn-resin::after {
    content: '';
    position: absolute;
    top: 0; left: -150%;
    width: 50%; height: 100%;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.3), transparent);
    transform: skewX(-25deg);
    transition: 0.75s;
  }

  .btn-resin:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0, 156, 179, 0.3), 0 0 15px rgba(0, 229, 255, 0.2);
    background: linear-gradient(135deg, var(--resin), var(--resin-light));
  }

  .btn-resin:hover::before {
    left: 100%;
  }

  .btn-resin:hover::after {
    left: 150%;
  }

  .btn-outline-custom {
    position: relative;
    border: 1.5px solid var(--black);
    color: var(--black);
    padding: 18px 46px;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 700;
    text-decoration: none;
    border-radius: 30px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: inline-block;
    background: transparent;
    overflow: hidden;
    z-index: 1;
  }

  #hero .btn-outline-custom {
    border-color: rgba(255, 255, 255, 0.6);
    color: var(--white);
  }

  .btn-outline-custom::before {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    width: 0; height: 0;
    background: rgba(0, 139, 163, 0.08);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.5s ease, height 0.5s ease;
    z-index: -1;
  }

  .btn-outline-custom:hover {
    border-color: var(--resin-light);
    color: var(--resin-light);
  }

  #hero .btn-outline-custom:hover {
    border-color: var(--resin-light);
    color: var(--resin-light);
  }

  .btn-outline-custom:hover::before {
    width: 300%;
    height: 300%;
  }

  .hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 8%;
    display: flex;
    align-items: center;
    gap: 16px;
    z-index: 2;
    opacity: 0;
    animation: fadeUp 0.8s 1.2s ease forwards;
  }

  .hero-scroll span {
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
  }

  .scroll-line {
    width: 60px;
    height: 1px;
    background: linear-gradient(to right, var(--gold-light), transparent);
  }

  /* ── SECTION CONFIGS ── */
  section { padding: 140px 8%; position: relative; z-index: 2; }

  .section-tag {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--gold-light);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .section-tag::before {
    content: '';
    width: 24px;
    height: 1px;
    background: var(--gold-light);
  }

  .section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(34px, 4vw, 52px);
    font-weight: 700;
    color: #16161a;
    line-height: 1.25;
    margin-bottom: 24px;
  }

  .section-title em {
    font-style: italic;
    font-weight: 400;
    color: var(--resin);
  }

  .gold-line {
    width: 70px;
    height: 2px;
    background: linear-gradient(to right, var(--gold), var(--resin));
    margin-bottom: 40px;
  }

  .reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1), transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
  }

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

  /* ── STATS SECTION ── */
  #stats {
    padding: 90px 8%;
    background: var(--bg-light);
    border-top: 1px solid rgba(0,0,0,0.02);
    border-bottom: 1px solid rgba(0,0,0,0.02);
    position: relative;
    z-index: 2;
  }

  .stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
  }

  .stat-item .numero {
    font-family: 'Playfair Display', serif;
    font-size: 54px;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
    display: block;
    margin-bottom: 12px;
  }

  .stat-item .legenda {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2.2px;
    text-transform: uppercase;
    color: var(--gray);
  }

  /* ── SOBRE ── */
  #sobre-section {
    background: var(--white);
  }

  #sobre {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 80px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
  }

  .sobre-img-wrap {
    position: relative;
    perspective: 1000px;
  }

  .sobre-img {
    width: 100%;
    aspect-ratio: 4/5;
    object-fit: cover;
    display: block;
    border-radius: 20px;
    box-shadow: 0 30px 70px rgba(168, 129, 60, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.03);
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.6s ease;
  }

  .sobre-img-wrap:hover .sobre-img {
    box-shadow: 0 35px 80px rgba(168, 129, 60, 0.15);
  }

  .sobre-img-accent {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 100%;
    height: 100%;
    border: 1.5px solid var(--gold-light);
    z-index: -1;
    border-radius: 20px;
    opacity: 0.45;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  }

  .sobre-img-wrap:hover .sobre-img-accent {
    transform: translate(6px, 6px);
  }

  .sobre-badge {
    position: absolute;
    top: 28px;
    left: 28px;
    background: var(--white);
    border: 1.5px solid var(--gold);
    color: var(--gold-dark);
    padding: 16px 26px;
    font-family: 'Playfair Display', serif;
    font-size: 14px;
    font-weight: 700;
    text-align: center;
    line-height: 1.4;
    border-radius: 30px;
    box-shadow: var(--shadow-soft);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  }

  .sobre-img-wrap:hover .sobre-badge {
    transform: translateY(-4px);
    box-shadow: var(--shadow-medium);
  }

  .sobre-text p {
    color: #444448;
    line-height: 1.85;
    font-size: 16px;
    margin-bottom: 24px;
    font-weight: 400;
  }

  /* ── SERVIÇOS ── */
  #servicos {
    background: var(--bg-light);
  }

  .servicos-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 80px;
  }

  .servicos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
  }

  .servico-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 3/4.2;
    cursor: pointer;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.03);
    background: var(--white);
    border: 1px solid rgba(0,0,0,0.02);
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    perspective: 1000px;
  }

  .servico-card img {
    width: 100%;
    height: 60%;
    object-fit: cover;
    display: block;
    border-bottom: 1.5px solid rgba(0, 0, 0, 0.02);
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  }

  .servico-info {
    padding: 26px 30px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    height: 40%;
  }

  .servico-num {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--resin);
    display: block;
    margin-bottom: 6px;
  }

  .servico-nome {
    font-family: 'Playfair Display', serif;
    font-size: 23px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #16161a;
  }

  .servico-desc {
    font-size: 13.5px;
    color: #55555c;
    line-height: 1.65;
    font-weight: 400;
  }

  .servico-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px rgba(168, 129, 60, 0.08);
    border-color: var(--border-light);
  }

  .servico-card:hover img {
    transform: scale(1.05);
  }

  /* ── PORTFÓLIO / GALERIA ── */
  #portfolio-section {
    background: var(--white);
    padding: 120px 8%;
  }

  .portfolio-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 60px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
  }

  .portfolio-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
  }

  .p-item {
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    border: 1px solid rgba(0,0,0,0.03);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.04);
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    perspective: 1000px;
  }

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

  .p-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  }

  .p-item:hover {
    border-color: var(--gold-light);
    box-shadow: 0 35px 80px rgba(168, 129, 60, 0.12);
  }

  .p-item:hover img {
    transform: scale(1.06);
  }

  /* ── SEÇÃO DE BASTIDORES (VÍDEOS REAIS) ── */
  #bastidores {
    background: var(--bg-light);
    padding: 120px 8%;
  }

  .bastidores-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
  }

  .video-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0,0,0,0.02);
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  }

  .video-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 16/10;
    overflow: hidden;
    background: var(--black);
  }

  .video-wrap video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    /* Filtro leve de saturação, contraste e brilho para tratar os vídeos na própria página */
    filter: brightness(1.05) contrast(1.1) saturate(1.02);
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  }

  .video-info {
    padding: 24px 30px;
  }

  .video-tag {
    font-size: 11px;
    font-weight: 700;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 6px;
  }

  .video-title {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-weight: 700;
    color: #16161a;
    margin-bottom: 8px;
  }


  .video-desc {
    font-size: 13.5px;
    color: #55555c;
    line-height: 1.65;
  }

  .video-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 25px 50px rgba(168, 129, 60, 0.06);
    border-color: var(--border-light);
  }

  .video-card:hover video {
    transform: scale(1.04);
  }

  /* ── PROCESSO DE CRIAÇÃO ── */
  #processo {
    background: var(--white);
  }

  .processo-inner {
    max-width: 1200px;
    margin: 0 auto;
  }

  .processo-header { text-align: center; margin-bottom: 80px; }

  .processo-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    position: relative;
  }

  .processo-steps::before {
    content: '';
    position: absolute;
    top: 32px;
    left: 12%;
    right: 12%;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--gold-light), transparent);
  }

  .step {
    text-align: center;
    position: relative;
  }

  .step-num {
    width: 64px;
    height: 64px;
    border: 1.5px solid var(--gold-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--gold-dark);
    margin: 0 auto 24px;
    background: var(--white);
    position: relative;
    z-index: 2;
    box-shadow: var(--shadow-soft);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  }

  .step:hover .step-num {
    border-color: var(--resin);
    color: var(--resin);
    box-shadow: 0 0 0 8px rgba(0, 156, 179, 0.08);
    transform: scale(1.05);
  }

  .step h3 {
    font-family: 'Playfair Display', serif;
    font-size: 19px;
    font-weight: 700;
    color: #16161a;
    margin-bottom: 12px;
  }

  .step p {
    font-size: 14px;
    color: #55555c;
    line-height: 1.7;
  }

  /* ── DEPOIMENTOS ── */
  #depoimentos {
    background: var(--bg-light);
  }

  .dep-header { text-align: center; margin-bottom: 80px; }

  .dep-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
  }

  .dep-card {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(0,0,0,0.02);
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.03);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  }

  .dep-card:hover {
    border-color: rgba(168, 129, 60, 0.25);
    box-shadow: 0 25px 50px rgba(168, 129, 60, 0.06);
    transform: translateY(-5px);
  }

  .dep-quote {
    font-family: 'Playfair Display', serif;
    font-size: 54px;
    color: rgba(168, 129, 60, 0.2);
    line-height: 0.3;
    margin-bottom: 10px;
    display: block;
  }

  .dep-text {
    font-size: 14px;
    color: #3f3f42;
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 24px;
  }

  .dep-author strong {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: var(--black);
  }

  .dep-author span {
    font-size: 12px;
    color: var(--gold);
    font-weight: 600;
  }

  .dep-stars {
    color: var(--gold);
    font-size: 12px;
    letter-spacing: 2px;
    margin-bottom: 20px;
    display: block;
  }

  /* ── CONTATO ── */
  #cta-section {
    position: relative;
    padding: 120px 8%;
    text-align: center;
    background: var(--bg-light);
  }

  .cta-content {
    max-width: 800px;
    margin: 0 auto;
  }

  .cta-content .section-title {
    font-size: clamp(34px, 4.5vw, 60px);
    margin-bottom: 20px;
  }

  .cta-content p {
    font-size: 16px;
    color: #55555c;
    margin-bottom: 48px;
    line-height: 1.8;
  }

  /* ── FORMULÁRIO PREMIUM CLEAN ── */
  .lead-form {
    max-width: 600px;
    margin: 0 auto;
    display: grid;
    gap: 24px;
    text-align: left;
    background: var(--white);
    padding: 40px;
    border-radius: 24px;
    border: 1px solid rgba(168, 129, 60, 0.08);
    box-shadow: 0 25px 60px rgba(168, 129, 60, 0.04);
  }

  .lead-form .field-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }

  .lead-form input,
  .lead-form textarea {
    width: 100%;
    background: #fafafc;
    border: 1.5px solid rgba(0, 0, 0, 0.05);
    color: var(--black);
    padding: 16px 20px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 400;
    outline: none;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    border-radius: 10px;
  }

  .lead-form input::placeholder,
  .lead-form textarea::placeholder { color: var(--gray-light); }

  .lead-form input:focus,
  .lead-form textarea:focus {
    border-color: var(--gold);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(168, 129, 60, 0.1);
  }

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

  .lead-form button {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--white);
    padding: 18px 40px;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 700;
    font-family: 'Inter', sans-serif;
    border: none;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    border-radius: 30px;
  }

  .lead-form button:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(168, 129, 60, 0.3);
  }

  .lead-form button:disabled { opacity: 0.6; cursor: not-allowed; }

  .form-msg {
    font-size: 14px;
    text-align: center;
    min-height: 22px;
    font-weight: 500;
  }

  .form-msg.ok { color: var(--resin); }
  .form-msg.err { color: #d05b5b; }

  .form-alt {
    font-size: 13px;
    color: var(--gray);
    text-align: center;
    margin-top: 8px;
  }

  .form-alt a { color: var(--gold); text-decoration: none; font-weight: 600; }
  .form-alt a:hover { color: var(--resin); text-decoration: underline; }

  /* ── FOOTER ── */
  footer {
    background: var(--white);
    padding: 100px 8% 40px;
    border-top: 1px solid rgba(0, 0, 0, 0.04);
  }

  .footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto 60px;
  }

  .footer-brand img {
    height: 44px;
    width: auto;
    margin-bottom: 20px;
  }

  .footer-brand p {
    font-size: 14px;
    color: #55555c;
    line-height: 1.8;
    font-weight: 400;
    max-width: 320px;
  }

  .footer-col h4 {
    font-family: 'Playfair Display', serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 24px;
  }

  .footer-col ul { list-style: none; }

  .footer-col ul li {
    margin-bottom: 12px;
  }

  .footer-col ul li a {
    font-size: 14px;
    color: #55555c;
    text-decoration: none;
    transition: color 0.3s;
  }

  .footer-col ul li a:hover { color: var(--gold); }

  .footer-col address {
    font-style: normal;
    font-size: 14px;
    color: #55555c;
    line-height: 1.8;
  }

  .footer-col address strong {
    color: var(--gold-dark);
    display: block;
    margin-bottom: 4px;
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 600;
  }

  .social-links {
    display: flex;
    gap: 16px;
    margin-top: 24px;
  }

  .social-link {
    width: 40px;
    height: 40px;
    border: 1.5px solid var(--gold-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-dark);
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    background: transparent;
  }

  .social-link:hover {
    background: var(--gold);
    color: var(--white);
    border-color: var(--gold);
    box-shadow: 0 5px 15px rgba(168, 129, 60, 0.2);
  }

  .footer-bottom {
    border-top: 1px solid rgba(0, 0, 0, 0.04);
    padding-top: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
  }

  .footer-bottom p {
    font-size: 13px;
    color: var(--gray-light);
  }

  .footer-bottom span {
    font-size: 13px;
    color: var(--gray-light);
  }

  /* ── WHATSAPP FLOAT ── */
  .whatsapp-float {
    position: fixed;
    bottom: 40px;
    right: 40px;
    z-index: 999;
    display: flex;
    align-items: center;
    gap: 12px;
    background: #25D366;
    color: white;
    padding: 16px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    box-shadow: 0 10px 30px rgba(37,211,102,0.25);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    animation: floatIn 1s 2s ease forwards;
    opacity: 0;
    transform: translateY(20px);
  }

  .whatsapp-float:hover {
    transform: translateY(-5px) scale(1.03);
    box-shadow: 0 15px 40px rgba(37,211,102,0.45);
  }

  .whatsapp-float svg { width: 22px; height: 22px; }

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

  @keyframes floatIn {
    to { opacity: 1; transform: translateY(0); }
  }

  /* ── RESPONSIVE ── */
  @media (max-width: 1024px) {
    section { padding: 90px 6%; }
    header { padding: 20px 6%; }
    header.scrolled { padding: 14px 6%; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 40px; }
    #sobre { grid-template-columns: 1fr; gap: 50px; }
    .servicos-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
    .bastidores-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
    .processo-steps { grid-template-columns: repeat(2, 1fr); gap: 40px; }
    .processo-steps::before { display: none; }
    .dep-grid { grid-template-columns: 1fr; gap: 24px; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
    .p-item:nth-child(n) { grid-column: span 12; aspect-ratio: 4/3; }
  }

  @media (max-width: 768px) {
    .nav-links, .nav-cta { display: none; }
    .menu-toggle { display: flex; }
    section { padding: 80px 24px; }
    #stats { padding: 60px 24px; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
    .servicos-grid { grid-template-columns: 1fr; }
    .bastidores-grid { grid-template-columns: 1fr; }
    .portfolio-header { flex-direction: column; gap: 24px; align-items: flex-start; }
    .footer-grid { grid-template-columns: 1fr; gap: 40px; }
    .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
    .whatsapp-float span { display: none; }
    .whatsapp-float { padding: 16px; border-radius: 50%; }
    footer { padding: 80px 24px 32px; }
    #cta-section { padding: 100px 24px; }
    .lead-form { padding: 32px 24px; }
    .lead-form .field-row { grid-template-columns: 1fr; gap: 16px; }

    /* ── HERO MOBILE CONFIGS (<=768px) ── */
    #hero {
      height: auto !important;
      min-height: auto !important;
      padding: 0 0 60px 0 !important;
      display: flex !important;
      flex-direction: column !important;
      justify-content: flex-start !important;
      align-items: stretch !important;
    }

    .hero-overlay {
      display: none !important;
    }

    #hero-canvas-container {
      position: relative !important;
      width: 100% !important;
      height: 44vh !important;
      inset: auto !important;
      z-index: 2 !important;
      pointer-events: auto !important;
    }

    .hero-video {
      position: absolute !important;
      top: 0 !important;
      left: 0 !important;
      width: 100% !important;
      height: 100% !important;
      object-fit: cover !important;
      opacity: 1 !important;
      mix-blend-mode: normal !important;
      -webkit-mask-image: none !important;
      mask-image: none !important;
    }

    .hero-content {
      position: relative !important;
      z-index: 2 !important;
      width: 100% !important;
      max-width: 100% !important;
      padding: 40px 24px 0 24px !important;
      text-align: center !important;
      margin: 0 !important;
    }

    .hero-tag {
      display: inline-flex !important;
      justify-content: center !important;
      align-items: center !important;
      font-size: 11px !important;
      letter-spacing: 4px !important;
      margin-bottom: 20px !important;
    }

    .hero-title {
      font-size: clamp(28px, 7vw, 38px) !important;
      line-height: 1.2 !important;
      margin-bottom: 20px !important;
      text-align: center !important;
      color: var(--white) !important;
    }

    .hero-subtitle {
      font-size: 15px !important;
      line-height: 1.65 !important;
      margin-bottom: 36px !important;
      color: rgba(255, 255, 255, 0.75) !important;
      text-align: center !important;
    }

    .hero-btns {
      display: flex !important;
      flex-direction: column !important;
      gap: 12px !important;
      width: 100% !important;
      max-width: 400px !important;
      margin: 0 auto !important;
    }

    .hero-btns a {
      display: block !important;
      width: 100% !important;
      text-align: center !important;
      padding: 16px 20px !important;
      font-size: 13px !important;
      border-radius: 30px !important;
    }

    .hero-scroll {
      display: none !important;
    }
  }

  /* ── RESPONSIVE MOBILE EXCELENTE (360px - 430px) ── */
  @media (max-width: 480px) {
    /* 1. HEADER & NAVIGATION */
    header {
      padding: 12px 16px !important;
      background: transparent !important;
      backdrop-filter: none !important;
      -webkit-backdrop-filter: none !important;
      border-bottom: none !important;
      box-shadow: none !important;
      height: 70px !important;
      display: flex !important;
      align-items: center !important;
    }
    
    header.scrolled {
      padding: 10px 16px !important;
      background: rgba(255, 255, 255, 0.95) !important;
      backdrop-filter: blur(20px) !important;
      -webkit-backdrop-filter: blur(20px) !important;
      border-bottom: 1px solid rgba(0, 0, 0, 0.05) !important;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03) !important;
      height: 60px !important;
    }

    header.menu-active {
      background: rgba(255, 255, 255, 0.98) !important;
      backdrop-filter: blur(20px) !important;
      -webkit-backdrop-filter: blur(20px) !important;
      border-bottom: 1px solid rgba(0, 0, 0, 0.05) !important;
    }
    
    .nav-logo img {
      height: 36px !important;
    }
    
    .menu-toggle {
      display: flex !important;
      width: 48px !important;
      height: 48px !important;
      align-items: center;
      justify-content: center;
      padding: 0 !important;
      margin-right: -8px;
    }
    
    /* Quando o menu mobile for aberto pelo JS */
    .nav-links {
      top: 70px !important;
      transition: top 0.4s ease !important;
      max-height: calc(100vh - 70px) !important;
      overflow-y: auto !important;
      box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08) !important;
      padding: 24px !important;
      gap: 16px !important;
    }
    
    header.scrolled .nav-links {
      top: 60px !important;
      max-height: calc(100vh - 60px) !important;
    }
    
    .nav-links li {
      width: 100%;
    }
    
    .nav-links a {
      display: block !important;
      padding: 14px 16px !important;
      font-size: 14px !important;
      text-align: center;
      width: 100%;
      border-radius: 8px;
      transition: background 0.2s;
    }
    
    .nav-links a:hover {
      background: rgba(168, 129, 60, 0.05);
    }
    

    
    /* 3. SECTIONS COMMON */
    section {
      padding: 60px 20px !important;
    }
    
    .section-tag {
      font-size: 11px !important;
      letter-spacing: 3px !important;
      margin-bottom: 12px !important;
    }
    
    .section-title {
      font-size: 28px !important;
      line-height: 1.25 !important;
      margin-bottom: 16px !important;
    }
    
    .gold-line {
      margin-bottom: 28px !important;
      width: 60px !important;
    }
    
    /* 4. STATS SECTION */
    #stats {
      padding: 40px 20px !important;
    }
    
    .stats-grid {
      grid-template-columns: 1fr !important;
      gap: 28px !important;
    }
    
    .stat-item .numero {
      font-size: 40px !important;
      margin-bottom: 6px !important;
    }
    
    .stat-item .legenda {
      font-size: 12px !important;
      letter-spacing: 1.5px !important;
    }
    
    /* 5. SOBRE NÓS */
    #sobre {
      gap: 36px !important;
    }
    
    .sobre-img-wrap {
      padding-right: 12px !important;
      padding-bottom: 12px !important;
      margin-bottom: 16px !important;
    }
    
    .sobre-img-accent {
      right: -10px !important;
      bottom: -10px !important;
      border-radius: 12px !important;
    }
    
    .sobre-img {
      border-radius: 12px !important;
    }
    
    .sobre-badge {
      top: 16px !important;
      left: 16px !important;
      padding: 10px 18px !important;
      font-size: 12px !important;
      border-radius: 20px !important;
    }
    
    .sobre-text p {
      font-size: 15px !important;
      line-height: 1.7 !important;
      margin-bottom: 16px !important;
    }
    
    /* 6. SERVIÇOS */
    .servicos-header {
      margin-bottom: 40px !important;
    }
    
    .servicos-grid {
      grid-template-columns: 1fr !important;
      gap: 24px !important;
    }
    
    .servico-card {
      aspect-ratio: auto !important;
      border-radius: 12px !important;
    }
    
    .servico-card img {
      height: 180px !important;
    }
    
    .servico-info {
      padding: 20px 24px !important;
    }
    
    .servico-nome {
      font-size: 20px !important;
    }
    
    .servico-desc {
      font-size: 13px !important;
    }
    
    /* 7. PORTFOLIO GRID & IMAGES */
    .portfolio-header {
      margin-bottom: 30px !important;
      gap: 16px !important;
    }
    
    .portfolio-grid {
      gap: 16px !important;
    }
    
    .p-item {
      border-radius: 12px !important;
    }
    
    /* 8. BASTIDORES & VIDEOS */
    .bastidores-grid {
      grid-template-columns: 1fr !important;
      gap: 24px !important;
    }
    
    .video-card {
      border-radius: 12px !important;
    }
    
    .video-wrap {
      aspect-ratio: 16/10 !important;
    }
    
    .video-info {
      padding: 20px 24px !important;
    }
    
    .video-title {
      font-size: 18px !important;
    }
    
    .video-desc {
      font-size: 13.5px !important;
    }
    
    /* 9. PROCESSO DE CRIAÇÃO */
    .processo-header {
      margin-bottom: 40px !important;
    }
    
    .processo-steps {
      grid-template-columns: 1fr !important;
      gap: 32px !important;
    }
    
    .step-num {
      width: 54px !important;
      height: 54px !important;
      font-size: 18px !important;
      margin-bottom: 16px !important;
    }
    
    .step h3 {
      font-size: 17px !important;
      margin-bottom: 8px !important;
    }
    
    .step p {
      font-size: 13.5px !important;
    }
    
    /* 10. DEPOIMENTOS */
    .dep-header {
      margin-bottom: 40px !important;
    }
    
    .dep-grid {
      grid-template-columns: 1fr !important;
      gap: 20px !important;
    }
    
    .dep-card {
      padding: 24px !important;
      border-radius: 12px !important;
    }
    
    .dep-quote {
      font-size: 36px !important;
      margin-bottom: 12px !important;
    }
    
    .dep-text {
      font-size: 13.5px !important;
      margin-bottom: 16px !important;
    }
    
    /* 11. FORM & ORÇAMENTO */
    #cta-section {
      padding: 60px 20px !important;
    }
    
    .cta-content p {
      margin-bottom: 32px !important;
      font-size: 15px !important;
      line-height: 1.7 !important;
    }
    
    .lead-form {
      padding: 24px 16px !important;
      border-radius: 12px !important;
      gap: 16px !important;
    }
    
    .lead-form .field-row {
      grid-template-columns: 1fr !important;
      gap: 16px !important;
    }
    
    .lead-form input,
    .lead-form textarea {
      padding: 14px 16px !important;
      font-size: 14px !important;
      border-radius: 8px !important;
    }
    
    .lead-form button {
      width: 100% !important;
      padding: 16px 24px !important;
      font-size: 13px !important;
      border-radius: 30px !important;
    }
    
    .form-alt {
      margin-top: 12px !important;
    }
    
    /* 12. FOOTER & SOCIALS */
    footer {
      padding: 60px 20px 30px !important;
    }
    
    .footer-grid {
      grid-template-columns: 1fr !important;
      gap: 32px !important;
      margin-bottom: 40px !important;
    }
    
    .footer-brand p {
      font-size: 13.5px !important;
      line-height: 1.7 !important;
    }
    
    .footer-col h4 {
      font-size: 15px !important;
      margin-bottom: 12px !important;
    }
    
    .footer-col ul li {
      margin-bottom: 8px !important;
    }
    
    .footer-col ul li a {
      padding: 8px 0 !important;
      display: inline-block;
      width: 100%;
      font-size: 13.5px !important;
    }
    
    .social-links {
      margin-top: 16px !important;
    }
    
    .social-link {
      width: 44px !important;
      height: 44px !important;
    }
    
    .footer-bottom {
      padding-top: 24px !important;
      gap: 12px !important;
    }
    
    .footer-bottom p,
    .footer-bottom span {
      font-size: 12px !important;
    }
    
    /* 13. WHATSAPP FLOAT BUTTON */
    .whatsapp-float {
      bottom: 20px !important;
      right: 20px !important;
      padding: 14px !important;
      width: 52px !important;
      height: 52px !important;
      display: flex !important;
      align-items: center !important;
      justify-content: center !important;
      border-radius: 50% !important;
    }
    
    .whatsapp-float span {
      display: none !important;
    }
    
    .whatsapp-float svg {
      width: 24px !important;
      height: 24px !important;
    }
    
    /* 14. VIDEO GRID SECTIONS (ORBITAIS) */
    .video-grid {
      gap: 16px !important;
    }
    .pieza-video {
      border-radius: 12px !important;
    }
  }

  /* ============ REFORMA 2026 — seções novas + overrides ============ */

  /* NAV: mais itens no menu sem quebrar linha */
  @media (max-width: 1400px) { .nav-links { gap: 24px; } }
  @media (max-width: 1150px) and (min-width: 769px) {
    .nav-links { gap: 15px; }
    .nav-links a { font-size: 11.5px; letter-spacing: 1.1px; }
  }

  /* ── COMO FUNCIONA ── */
  #como-funciona { background: var(--bg-gray); }
  .cf-inner { max-width: 1200px; margin: 0 auto; }
  .cf-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    position: relative;
  }
  .cf-steps::before {
    content: '';
    position: absolute;
    top: 32px;
    left: 14%;
    right: 14%;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--gold-light), transparent);
  }
  .cf-step { text-align: center; position: relative; padding: 0 10px; }
  .cf-step h3 {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-weight: 700;
    color: #16161a;
    margin-bottom: 12px;
  }
  .cf-step p { font-size: 14.5px; color: #55555c; line-height: 1.7; max-width: 320px; margin: 0 auto; }
  .cf-strip {
    margin: 64px auto 0;
    max-width: 1200px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-medium);
  }
  .cf-strip img {
    width: 100%;
    height: clamp(140px, 22vw, 240px);
    object-fit: cover;
    object-position: center 60%;
    display: block;
  }

  /* ── QUEM SOU ── */
  #quem-sou { background: var(--bg-light); }
  .qs-inner {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 70px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
  }
  .qs-media { width: 100%; }
  .qs-foto-main {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
    display: block;
    border-radius: 20px;
    box-shadow: 0 30px 70px rgba(176, 138, 69, 0.12);
    border: 1px solid rgba(0, 0, 0, 0.03);
  }
  .qs-text p {
    color: #444448;
    line-height: 1.85;
    font-size: clamp(15px, 1.3vw, 17px);
    margin-bottom: 28px;
  }
  .qs-fotos-mini { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
  .qs-fotos-mini img {
    width: 100%;
    aspect-ratio: 4/5;
    object-fit: cover;
    display: block;
    border-radius: 14px;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(0, 0, 0, 0.03);
  }

  /* ── GALERIA: bento de 9 fotos reais ── */
  .portfolio-grid .p-item:nth-child(1) { grid-column: span 7; aspect-ratio: 4/3; }
  .portfolio-grid .p-item:nth-child(2) { grid-column: span 5; aspect-ratio: 1/1; }
  .portfolio-grid .p-item:nth-child(3) { grid-column: span 5; aspect-ratio: 4/3; }
  .portfolio-grid .p-item:nth-child(4) { grid-column: span 7; aspect-ratio: 16/9; }
  .portfolio-grid .p-item:nth-child(5) { grid-column: span 4; aspect-ratio: 1/1; }
  .portfolio-grid .p-item:nth-child(6) { grid-column: span 4; aspect-ratio: 1/1; }
  .portfolio-grid .p-item:nth-child(7) { grid-column: span 4; aspect-ratio: 1/1; }
  .portfolio-grid .p-item:nth-child(8) { grid-column: span 5; aspect-ratio: 4/3; }
  .portfolio-grid .p-item:nth-child(9) { grid-column: span 7; aspect-ratio: 16/9; }
  .portfolio-grid .p-item:nth-child(10) { grid-column: span 5; aspect-ratio: 4/3; }
  .p-cap {
    position: absolute;
    left: 14px;
    bottom: 14px;
    background: rgba(17, 17, 17, 0.72);
    color: #fff;
    font-size: 12px;
    letter-spacing: 0.04em;
    padding: 8px 14px;
    border-radius: 30px;
    pointer-events: none;
    z-index: 2;
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
  }

  /* ── VÍDEOS: padding movido do style inline ── */
  #videos { padding: 100px 8% 70px; text-align: center; }

  /* ── RESPONSIVO DAS SEÇÕES NOVAS ── */
  @media (max-width: 1024px) {
    .cf-steps { gap: 24px; }
    .qs-inner { grid-template-columns: 1fr; gap: 44px; }
    .qs-media { max-width: 560px; margin: 0 auto; }
    .portfolio-grid .p-item:nth-child(n) { grid-column: span 6; aspect-ratio: 4/3; }
  }
  @media (max-width: 768px) {
    #videos { padding: 80px 24px; }
    .cf-steps { grid-template-columns: 1fr; gap: 36px; }
    .cf-steps::before { display: none; }
    .cf-step p { max-width: 420px; }
    .cf-strip { margin-top: 44px; border-radius: 14px; }
    .qs-fotos-mini { gap: 14px; }
    .portfolio-grid .p-item:nth-child(n) { grid-column: span 12; aspect-ratio: 4/3; }
    .portfolio-grid .p-item:nth-child(2) { aspect-ratio: 3/4; }
  }
  @media (max-width: 480px) {
    #videos { padding: 60px 16px !important; } /* vence o section{!important} do bloco 480 antigo */
    .cf-step h3 { font-size: clamp(17px, 4.5vw, 20px); }
    .cf-step p { font-size: 13.5px; }
    .cf-strip img { height: 120px; }
    .qs-inner { gap: 32px; }
    .qs-text p { font-size: 14.5px; }
    .qs-fotos-mini { gap: 12px; }
    .qs-fotos-mini img { border-radius: 10px; }
    .p-cap { font-size: 11px; padding: 6px 10px; left: 10px; bottom: 10px; }
  }

/* ============ REFORMA — CARDS DE LINHA VIRARAM LINKS ============ */
a.servico-card { text-decoration: none; color: inherit; }

/* ============ REFORMA — NAV SUBMENU "LINHAS" ============ */
.nav-links li.has-submenu { position: relative; }
.nav-links .submenu {
  list-style: none;
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translate(-50%, 8px);
  background: var(--white);
  min-width: 230px;
  padding: 10px;
  border-radius: 14px;
  box-shadow: var(--shadow-medium);
  border: 1px solid rgba(0,0,0,0.04);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s cubic-bezier(0.16, 1, 0.3, 1), transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 1200;
}
.nav-links li.has-submenu:hover .submenu,
.nav-links li.has-submenu:focus-within .submenu {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}
.nav-links .submenu a {
  display: block;
  color: var(--gray-dark) !important;
  text-transform: none !important;
  font-weight: 500 !important;
  font-size: 13.5px !important;
  letter-spacing: 0 !important;
  padding: 10px 14px;
  border-radius: 9px;
  transition: background 0.25s, color 0.25s;
}
.nav-links .submenu a::after { display: none; }
.nav-links .submenu a:hover { background: rgba(168, 129, 60, 0.08); color: var(--gold-dark) !important; }

@media (max-width: 768px) {
  .nav-links .submenu {
    position: static;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    box-shadow: none;
    border: none;
    background: rgba(0,0,0,0.02);
    margin-top: 8px;
    padding: 6px;
  }
  .nav-links .submenu a { text-align: center; }
}

/* ============ REFORMA — PÁGINAS DE LINHA (linhas/*.html) ============ */
.linha-hero {
  position: relative;
  min-height: 62vh;
  display: flex;
  align-items: flex-end;
  padding: 160px 8% 90px;
  overflow: hidden;
  background: linear-gradient(135deg, #0b0907 0%, #15120f 100%);
}
.linha-hero video,
.linha-hero img.linha-hero-fallback {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.55;
}
.linha-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11,9,7,0.35) 0%, rgba(11,9,7,0.92) 100%);
}
.linha-hero-content { position: relative; z-index: 2; width: 100%; max-width: 720px; }
.linha-hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 20px;
}
.linha-hero-tag::before { content: ''; width: 24px; height: 2px; background: var(--gold-light); }
.linha-hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px, 5vw, 58px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 20px;
}
.linha-hero-title em { font-style: italic; font-weight: 400; color: var(--resin-light); }
.linha-hero-pitch {
  font-size: clamp(15px, 1.5vw, 18px);
  color: rgba(255,255,255,0.78);
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 560px;
}

.linha-destaque { background: var(--white); }
.linha-destaque-inner {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 70px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}
.linha-destaque-media { width: 100%; }
.linha-destaque-media video,
.linha-destaque-media img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  display: block;
  border-radius: 20px;
  box-shadow: 0 30px 70px rgba(168, 129, 60, 0.1);
  border: 1px solid rgba(0,0,0,0.03);
}
.linha-destaque-text p { color: #444448; font-size: 16px; line-height: 1.85; margin-bottom: 22px; }

.linha-outras { background: var(--bg-light); }
.linha-outras-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}
.linha-outra-card {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: 0 15px 40px rgba(0,0,0,0.04);
  border: 1px solid rgba(0,0,0,0.03);
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.linha-outra-card img,
.linha-outra-card video {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.linha-outra-card:hover { transform: translateY(-6px); box-shadow: 0 25px 55px rgba(168,129,60,0.1); border-color: var(--border-light); }
.linha-outra-card:hover img { transform: scale(1.06); }
.linha-outra-cap {
  position: absolute; left: 14px; bottom: 14px;
  background: rgba(17,17,17,0.72); color: #fff; font-size: 12px;
  padding: 7px 14px; border-radius: 30px; backdrop-filter: blur(4px);
}

.linha-veja-tambem { background: var(--white); }
.veja-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}
.veja-card {
  display: block;
  text-decoration: none;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.04);
  box-shadow: 0 10px 30px rgba(0,0,0,0.03);
  transition: all 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}
.veja-card img { width: 100%; aspect-ratio: 4/3; object-fit: cover; display: block; transition: transform 0.6s ease; }
.veja-card-label {
  padding: 14px 16px;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 14.5px;
  color: #16161a;
  text-align: center;
}
.veja-card:hover { transform: translateY(-5px); box-shadow: 0 20px 45px rgba(168,129,60,0.12); border-color: var(--border-light); }
.veja-card:hover img { transform: scale(1.08); }

.linha-cta-final {
  background: var(--bg-gray);
  text-align: center;
  padding: 110px 8%;
}
.linha-cta-final .section-title { max-width: 700px; margin-left: auto; margin-right: auto; }
.linha-cta-final-btns { display: flex; gap: 18px; justify-content: center; margin-top: 36px; flex-wrap: wrap; }
.linha-voltar { color: var(--gray); font-size: 14px; text-decoration: none; font-weight: 600; margin-top: 22px; display: inline-block; }
.linha-voltar:hover { color: var(--gold); }

@media (max-width: 1024px) {
  .linha-hero { padding: 140px 6% 70px; min-height: 54vh; }
  .linha-destaque-inner { grid-template-columns: 1fr; gap: 40px; }
  .linha-outras-grid { grid-template-columns: 1fr 1fr; }
  .veja-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
  .linha-hero { padding: 120px 24px 56px; min-height: 48vh; }
  .linha-destaque, .linha-outras, .linha-veja-tambem { padding: 80px 24px; }
  .linha-outras-grid { grid-template-columns: 1fr; }
  .veja-grid { grid-template-columns: repeat(2, 1fr); }
  .linha-cta-final { padding: 80px 24px; }
}
@media (max-width: 480px) {
  .linha-hero { padding: 110px 16px 44px; min-height: 46vh; }
  .linha-hero-title { font-size: 30px; }
  .veja-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .veja-card-label { font-size: 13px; padding: 10px 12px; }
  .linha-cta-final { padding: 60px 16px; }
  .linha-cta-final-btns { flex-direction: column; align-items: stretch; }
}

/* ============================================================
   CORREÇÃO 07/07 — proporção & ritmo (menos rolagem, sem paredões)
   ============================================================ */
/* 1. Ritmo vertical: cortar a rolagem infinita */
section { padding-top: 84px !important; padding-bottom: 84px !important; }
#hero { padding: 0 !important; }
#stats, .stats-section { padding-top: 60px !important; padding-bottom: 60px !important; }

/* 2. Hero: parede um pouco menor que 100vh */
#hero { height: 92vh !important; min-height: 560px !important; }

/* 3. Fotos-retrato não podem virar paredão em telas grandes */
.qs-inner { align-items: center; }
.qs-media { max-width: 420px; margin: 0 auto; }
.qs-foto-main { max-height: 500px; }
.qs-fotos-mini img { max-height: 220px; }
.sobre-img-wrap { max-width: 470px; }
.sobre-img { max-height: 540px; }

/* 4. Faixa da mesa (cf-strip): slim, deixa de ser gratuita */
.cf-strip { margin-top: 40px; }
.cf-strip img { height: clamp(110px, 13vw, 150px) !important; }

/* 5. Galeria: itens 7,8,9 não tinham proporção definida (só 1–6) -> viravam nativos/altos */
.portfolio-grid .p-item { aspect-ratio: 4/3; }
.portfolio-grid .p-item:nth-child(7) { grid-column: span 4; aspect-ratio: 1/1; }
.portfolio-grid .p-item:nth-child(8) { grid-column: span 4; aspect-ratio: 1/1; }
.portfolio-grid .p-item:nth-child(9) { grid-column: span 4; aspect-ratio: 1/1; }

/* 6. Segurança: nenhuma imagem solta passa da caixa */
.p-item img, .servico-card img, .video-wrap img, .qs-foto-main, .sobre-img { max-width: 100%; }

/* ============================================================
   RESPONSIVO — endurecimento mobile + tablet (correção 07/07)
   ============================================================ */
html, body { max-width: 100%; overflow-x: hidden; }
img, video { max-width: 100%; height: auto; }

/* Faixa TABLET + MOBILE (<=1024) — fechar o gap do 769–1024 */
@media (max-width: 1024px) {
  .hero-content { max-width: 100% !important; }
  .hero-title { font-size: clamp(30px, 6.4vw, 52px) !important; }
  .hero-subtitle { font-size: clamp(15px, 2.2vw, 18px) !important; }
  .hero-btns { flex-wrap: wrap !important; gap: 14px !important; }
  .hero-btns > a { flex: 1 1 auto; text-align: center; }
  .stats-grid { grid-template-columns: repeat(2, 1fr) !important; }
  .servicos-grid { grid-template-columns: repeat(2, 1fr) !important; }
  .bastidores-grid, .video-grid { grid-template-columns: repeat(2, 1fr) !important; }
  .veja-grid { grid-template-columns: repeat(3, 1fr) !important; }
}

/* MOBILE (<=560) — 1 coluna, tipografia e botões cabendo */
@media (max-width: 560px) {
  section { padding-left: 22px !important; padding-right: 22px !important; }
  .hero-content { padding-left: 22px !important; padding-right: 22px !important; }
  .hero-title { font-size: clamp(27px, 8.4vw, 34px) !important; line-height: 1.18 !important; }
  .hero-subtitle { font-size: 15px !important; }
  .hero-btns { flex-direction: column !important; align-items: stretch !important; }
  .hero-btns > a { width: 100% !important; }
  .stats-grid { grid-template-columns: 1fr 1fr !important; gap: 24px !important; }
  .stat-item .numero { font-size: clamp(30px, 9vw, 40px) !important; }
  .stat-item .legenda { font-size: 11px !important; letter-spacing: 1px !important; }
  .servicos-grid, .bastidores-grid, .video-grid,
  .portfolio-grid, .veja-grid { grid-template-columns: 1fr !important; }
  .portfolio-grid .p-item { grid-column: auto !important; aspect-ratio: 4/3 !important; }
  .section-title { font-size: clamp(26px, 8vw, 34px) !important; }
  .qs-fotos-mini { grid-template-columns: 1fr 1fr !important; }
}
