*,
  *::before,
  *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }

  #html-bw4,
  #html-bw4 *,
  #modal-captacaoBW4,
  #modal-captacaoBW4 * {
    font-family: 'Quicksand', sans-serif;
  }

  #html-bw4 {
    color: #fff;
    background: #141414;
    overflow-x: hidden;
    width: 100%;
  }

  #html-bw4 img {
    display: block;
    max-width: 100%;
  }

  #html-bw4 a {
    text-decoration: none;
  }

  #html-bw4 ul {
    list-style: none;
  }

  :root {
    --g: #76E425;
    --g2: #5ec41a;
    --dark: #141414;
    --card: #222;
    --card2: #2a2a2a;
    --max: 1440px;
    --px: 80px;
  }

  @keyframes bounce {

    0%,
    100% {
      transform: translateY(0);
    }

    50% {
      transform: translateY(12px);
    }
  }

  @keyframes fadeUp {
    from {
      opacity: 0;
      transform: translateY(24px);
    }

    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  #html-bw4 {
    scroll-behavior: smooth;
  }

  /* ══ HERO ══════════════════════════════════════════════════ */
  #html-bw4 .dobra-1 {
    position: relative;
    min-height: 100vh;
    background: #0a0a0a;
    display: flex;
    align-items: stretch;
    overflow: hidden;
  }

  #html-bw4 .hero-left {
    position: relative;
    z-index: 2;
    width: 46%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 120px var(--px) 80px 80px;
    background: linear-gradient(108deg, #080808 55%, transparent 100%);
  }

  #html-bw4 .hero-right {
    flex: 1;
    position: relative;
    overflow: hidden;
  }

  #html-bw4 .hero-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
  }

  #html-bw4 .hero-right::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, #080808 0%, transparent 32%);
    z-index: 1;
    pointer-events: none;
  }

  /* Linha de acento verde no topo */
  #html-bw4 .hero-acento {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--g);
    z-index: 10;
  }

  #html-bw4 .hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    border: 1px solid var(--g);
    color: var(--g);
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 2px;
    margin-bottom: 32px;
    width: fit-content;
  }

  #html-bw4 .hero-modelo {
    font-size: clamp(5.5rem, 9vw, 9.5rem);
    font-weight: 700;
    line-height: .85;
    color: #fff;
    letter-spacing: -4px;
    margin-bottom: 8px;
  }

  #html-bw4 .hero-modelo .verde {
    color: var(--g);
  }

  #html-bw4 .hero-subtipo {
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: #444;
    margin-bottom: 36px;
  }

  #html-bw4 .hero-slogan {
    font-size: clamp(1rem, 1.6vw, 1.5rem);
    font-weight: 600;
    color: #aaa;
    line-height: 1.65;
    margin-bottom: 48px;
    max-width: 440px;
  }

  #html-bw4 .hero-slogan strong {
    color: #fff;
  }

  #html-bw4 .btn-hero {
    display: inline-block;
    background: var(--g);
    color: #111;
    font-size: .85rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 18px 44px;
    border-radius: 3px;
    transition: background .2s, transform .2s;
    margin-bottom: 52px;
    width: fit-content;
  }

  #html-bw4 .btn-hero:hover {
    background: var(--g2);
    transform: translateY(-2px);
  }

  #html-bw4 .scroll-helper {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #333;
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: color .2s;
    width: fit-content;
  }

  #html-bw4 .scroll-helper:hover {
    color: var(--g);
  }

  #html-bw4 .scroll-helper svg {
    animation: bounce 1.8s infinite ease-in-out;
  }

  #html-bw4 .selo-dobra {
    position: absolute;
    top: 40px;
    right: var(--px);
    width: clamp(90px, 8vw, 140px);
    z-index: 3;
  }

  /* ══ SPECS STRIP ════════════════════════════════════════════ */
  #html-bw4 .dobra-specs {
    background: var(--g);
  }

  #html-bw4 .dobra-specs .inner {
    max-width: var(--max);
    margin: 0 auto;
    padding: 0 var(--px);
    display: flex;
    align-items: stretch;
  }

  #html-bw4 .dobra-specs .spec-item {
    flex: 1;
    text-align: center;
    padding: 28px 12px;
    border-right: 1px solid rgba(0, 0, 0, .13);
  }

  #html-bw4 .dobra-specs .spec-item:last-child {
    border-right: none;
  }

  #html-bw4 .dobra-specs .sv {
    font-size: clamp(1.4rem, 2vw, 2rem);
    font-weight: 700;
    color: #111;
    line-height: 1;
  }

  #html-bw4 .dobra-specs .sl {
    font-size: .64rem;
    font-weight: 700;
    color: rgba(0, 0, 0, .55);
    text-transform: uppercase;
    letter-spacing: 1.2px;
    margin-top: 5px;
  }

  /* ══ INTRO ══════════════════════════════════════════════════ */
  #html-bw4 .dobra-2 {
    background: #0f0f0f;
    padding: 104px 0;
  }

  #html-bw4 .dobra-2 .inner {
    max-width: var(--max);
    margin: 0 auto;
    padding: 0 var(--px);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
  }

  #html-bw4 .dobra-2 .d2-titulo {
    font-size: clamp(1.8rem, 3vw, 3rem);
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
  }

  #html-bw4 .dobra-2 .d2-titulo em {
    color: var(--g);
    font-style: normal;
  }

  #html-bw4 .dobra-2 .d2-texto {
    font-size: clamp(.92rem, 1.1vw, 1.05rem);
    font-weight: 500;
    color: #777;
    line-height: 1.9;
  }

  #html-bw4 .dobra-2 .d2-texto p+p {
    margin-top: 16px;
  }

  /* ══ TEST RIDE BAR ══════════════════════════════════════════ */
  #html-bw4 .dobra-3 {
    background: var(--g);
    padding: 52px 0;
  }

  #html-bw4 .dobra-3 .inner {
    max-width: var(--max);
    margin: 0 auto;
    padding: 0 var(--px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    flex-wrap: wrap;
  }

  #html-bw4 .dobra-3 .d3-titulo {
    font-size: clamp(1.1rem, 1.8vw, 1.85rem);
    font-weight: 700;
    color: #111;
    line-height: 1.3;
  }

  #html-bw4 .dobra-3 .d3-cta {
    font-size: clamp(.95rem, 1.4vw, 1.4rem);
    font-weight: 700;
    color: #111;
    white-space: nowrap;
  }

  #html-bw4 .dobra-3 .d3-cta a {
    color: #fff;
    background: #111;
    padding: 8px 22px;
    border-radius: 3px;
    transition: background .2s;
  }

  #html-bw4 .dobra-3 .d3-cta a:hover {
    background: #333;
  }

  /* ══ PRODUTO ════════════════════════════════════════════════ */
  #html-bw4 .dobra-4 {
    background: #141414;
    padding: 104px 0 0;
  }

  #html-bw4 .dobra-4 .inner {
    max-width: var(--max);
    margin: 0 auto;
    padding: 0 var(--px);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center;
  }

  #html-bw4 .dobra-4 .produto-img {
    width: 100%;
    max-height: 600px;
    object-fit: contain;
    filter: drop-shadow(0 48px 96px rgba(0, 0, 0, .8));
    transition: transform .45s ease;
  }

  #html-bw4 .dobra-4 .produto-img:hover {
    transform: scale(1.02);
  }

  #html-bw4 .dobra-4 .d4-titulo {
    font-size: clamp(1.7rem, 2.8vw, 2.8rem);
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 20px;
  }

  #html-bw4 .dobra-4 .d4-titulo span {
    color: var(--g);
  }

  #html-bw4 .dobra-4 .d4-texto {
    font-size: clamp(.88rem, 1vw, 1rem);
    font-weight: 500;
    color: #777;
    line-height: 1.9;
    margin-bottom: 32px;
  }

  #html-bw4 .dobra-4 .lista-dif {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 36px;
  }

  #html-bw4 .dobra-4 .lista-dif li {
    display: flex;
    align-items: flex-start;
    gap: 13px;
    font-size: .9rem;
    font-weight: 600;
    color: #ccc;
    line-height: 1.45;
  }

  #html-bw4 .dobra-4 .lista-dif li .dot {
    display: block;
    width: 8px;
    height: 8px;
    min-width: 8px;
    border-radius: 50%;
    background: var(--g);
    margin-top: 5px;
    flex-shrink: 0;
  }

  #html-bw4 .dobra-4 .specs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    border: 1px solid #2a2a2a;
    border-radius: 8px;
    overflow: hidden;
  }

  #html-bw4 .dobra-4 .spec-box {
    padding: 18px 20px;
    border-right: 1px solid #2a2a2a;
    border-bottom: 1px solid #2a2a2a;
  }

  #html-bw4 .dobra-4 .spec-box:nth-child(3n) {
    border-right: none;
  }

  #html-bw4 .dobra-4 .spec-box:nth-last-child(-n+3) {
    border-bottom: none;
  }

  #html-bw4 .dobra-4 .spec-box .sb-label {
    font-size: .62rem;
    font-weight: 700;
    color: #444;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 4px;
  }

  #html-bw4 .dobra-4 .spec-box .sb-val {
    font-size: .9rem;
    font-weight: 700;
    color: #ccc;
  }

  #html-bw4 .dobra-4 .cor-bar {
    background: #0a0a0a;
    padding: 32px var(--px);
    margin-top: 80px;
  }

  #html-bw4 .dobra-4 .cor-bar .inner-cor {
    max-width: var(--max);
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 20px;
  }

  #html-bw4 .dobra-4 .cor-label {
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #444;
  }

  #html-bw4 .dobra-4 .cor-circulo {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    cursor: pointer;
    transition: transform .2s;
    border: 3px solid var(--g);
  }

  #html-bw4 .dobra-4 .cor-nome {
    font-size: .75rem;
    font-weight: 600;
    color: #666;
    letter-spacing: 1px;
  }

  /* ══ VIDEO ══════════════════════════════════════════════════ */
  #html-bw4 .dobra-video {
    background: #0a0a0a;
    padding: 104px 0;
  }

  #html-bw4 .dobra-video .inner {
    max-width: var(--max);
    margin: 0 auto;
    padding: 0 var(--px);
  }

  #html-bw4 .dobra-video .sec-label {
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--g);
    margin-bottom: 16px;
  }

  #html-bw4 .dobra-video .sec-titulo {
    font-size: clamp(1.8rem, 3.5vw, 3.5rem);
    font-weight: 700;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 48px;
    letter-spacing: -1px;
  }

  #html-bw4 .dobra-video .sec-titulo span {
    color: var(--g);
  }

  #html-bw4 .dobra-video .video-wrap {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    background: #000;
    box-shadow: 0 40px 100px rgba(0, 0, 0, .7);
  }

  /* Borda verde sutil ao redor do vídeo */
  #html-bw4 .dobra-video .video-wrap::before {
    content: '';
    position: absolute;
    inset: -1px;
    border: 1px solid rgba(118, 228, 37, .25);
    border-radius: 17px;
    z-index: 2;
    pointer-events: none;
  }

  #html-bw4 .dobra-video video {
    width: 100%;
    display: block;
    border-radius: 16px;
    max-height: 720px;
    object-fit: cover;
  }

  /* ══ CONHECA MAIS ════════════════════════════════════════════ */
  #html-bw4 .dobra-conheca {
    background: #141414;
    padding: 104px 0;
  }

  #html-bw4 .dobra-conheca .inner {
    max-width: var(--max);
    margin: 0 auto;
    padding: 0 var(--px);
  }

  #html-bw4 .sec-label {
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--g);
    margin-bottom: 12px;
  }

  #html-bw4 .sec-titulo {
    font-size: clamp(2rem, 4vw, 4rem);
    font-weight: 700;
    color: #fff;
    line-height: 1;
    margin-bottom: 64px;
    letter-spacing: -1px;
  }

  #html-bw4 .sec-titulo span {
    color: var(--g);
  }

  #html-bw4 .dobra-conheca .conheca-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
  }

  #html-bw4 .dobra-conheca .conheca-img-wrap {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
  }

  #html-bw4 .dobra-conheca .conheca-img-wrap img {
    width: 100%;
    height: 580px;
    object-fit: cover;
    border-radius: 14px;
    filter: brightness(.9);
  }

  #html-bw4 .dobra-conheca .badge-zero {
    position: absolute;
    bottom: 24px;
    right: 24px;
    background: rgba(0, 0, 0, .82);
    backdrop-filter: blur(8px);
    border: 1px solid #2a2a2a;
    border-radius: 10px;
    padding: 16px 20px;
    text-align: center;
  }

  #html-bw4 .dobra-conheca .badge-zero .bz-title {
    font-size: .6rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--g);
    margin-bottom: 4px;
  }

  #html-bw4 .dobra-conheca .badge-zero .bz-val {
    font-size: 1.4rem;
    font-weight: 700;
    color: #fff;
    line-height: 1;
  }

  #html-bw4 .dobra-conheca .badge-zero .bz-sub {
    font-size: .62rem;
    color: #666;
    margin-top: 2px;
  }

  #html-bw4 .dobra-conheca .items-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }

  #html-bw4 .dobra-conheca .item-card {
    background: var(--card);
    border-radius: 10px;
    padding: 22px 20px;
    border-left: 3px solid var(--g);
    transition: background .2s, transform .2s;
  }

  #html-bw4 .dobra-conheca .item-card:hover {
    background: #2a2a2a;
    transform: translateX(4px);
  }

  #html-bw4 .dobra-conheca .item-icon {
    font-size: 1.3rem;
    margin-bottom: 10px;
    line-height: 1;
  }

  #html-bw4 .dobra-conheca .item-titulo {
    font-size: .9rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 6px;
    line-height: 1.3;
  }

  #html-bw4 .dobra-conheca .item-texto {
    font-size: .76rem;
    font-weight: 500;
    color: #666;
    line-height: 1.6;
  }

  /* ══ CARROSSEL ══════════════════════════════════════════════ */
  #html-bw4 .dobra-carousel {
    background: #0f0f0f;
    padding: 104px 0;
  }

  #html-bw4 .dobra-carousel .inner {
    max-width: var(--max);
    margin: 0 auto;
    padding: 0 var(--px);
  }

  #html-bw4 .dobra-carousel .sec-label {
    margin-bottom: 40px;
  }

  #html-bw4 .car-indicators {
    display: flex;
    gap: 8px;
    margin-bottom: 36px;
  }

  #html-bw4 .car-indicators button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: none;
    background: #2a2a2a;
    cursor: pointer;
    padding: 0;
    transition: background .25s, transform .25s;
  }

  #html-bw4 .car-indicators button.active {
    background: var(--g);
    transform: scale(1.5);
  }

  #html-bw4 .car-inner {
    border-radius: 16px;
    overflow: hidden;
  }

  #html-bw4 .car-item {
    display: none;
    background: var(--card);
    border-radius: 16px;
    padding: 72px 64px;
    flex-direction: row;
    align-items: center;
    gap: 72px;
    min-height: 500px;
  }

  #html-bw4 .car-item.active {
    display: flex;
  }

  #html-bw4 .car-item .car-texto {
    flex: 1;
    min-width: 0;
  }

  #html-bw4 .car-item .car-linha {
    width: 56px;
    height: 4px;
    background: var(--g);
    border-radius: 2px;
    margin-bottom: 24px;
  }

  #html-bw4 .car-item .car-titulo {
    font-size: clamp(1.5rem, 2.4vw, 2.5rem);
    font-weight: 700;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 20px;
  }

  #html-bw4 .car-item .car-desc {
    font-size: clamp(.9rem, 1.05vw, 1rem);
    font-weight: 500;
    color: #888;
    line-height: 1.9;
  }

  #html-bw4 .car-item .car-desc strong {
    color: #fff;
  }

  #html-bw4 .car-item .car-img {
    flex: 1;
    min-width: 0;
  }

  #html-bw4 .car-item .car-img img {
    width: 100%;
    height: 340px;
    object-fit: cover;
    border-radius: 10px;
  }

  #html-bw4 .car-controls {
    display: flex;
    gap: 12px;
    margin-top: 28px;
  }

  #html-bw4 .car-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    background: var(--g);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: background .2s, transform .2s;
  }

  #html-bw4 .car-btn:hover {
    background: var(--g2);
    transform: scale(1.08);
  }

  #html-bw4 .car-btn svg {
    width: 20px;
    height: 20px;
    fill: #111;
  }

  /* ══ GALERIA ════════════════════════════════════════════════ */
  #html-bw4 .dobra-galeria {
    background: #0a0a0a;
    padding: 104px 0;
  }

  #html-bw4 .dobra-galeria .inner {
    max-width: var(--max);
    margin: 0 auto;
    padding: 0 var(--px);
  }

  #html-bw4 .dobra-galeria .sec-label {
    margin-bottom: 40px;
  }

  #html-bw4 .dobra-galeria .grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: 460px 300px;
    gap: 14px;
  }

  #html-bw4 .dobra-galeria .grid .g-dest {
    grid-column: span 2;
  }

  #html-bw4 .dobra-galeria .grid img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    filter: brightness(.82);
    transition: filter .35s, transform .35s;
    cursor: zoom-in;
  }

  #html-bw4 .dobra-galeria .grid img:hover {
    filter: brightness(1);
    transform: scale(1.015);
  }

  /* ══ ECONOMIA ════════════════════════════════════════════════ */
  #html-bw4 .dobra-eco {
    background: #0d0d0d;
    padding: 104px 0;
  }

  #html-bw4 .dobra-eco .inner {
    max-width: var(--max);
    margin: 0 auto;
    padding: 0 var(--px);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 96px;
    align-items: center;
  }

  #html-bw4 .dobra-eco .eco-left .sec-label {
    margin-bottom: 16px;
  }

  #html-bw4 .dobra-eco .eco-titulo {
    font-size: clamp(1.8rem, 3vw, 3.2rem);
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 48px;
  }

  #html-bw4 .dobra-eco .eco-titulo em {
    color: var(--g);
    font-style: normal;
  }

  #html-bw4 .dobra-eco .cards-eco {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  #html-bw4 .dobra-eco .eco-card {
    background: var(--card);
    border-radius: 12px;
    padding: 32px 24px;
    border-bottom: 3px solid var(--g);
    transition: transform .25s;
  }

  #html-bw4 .dobra-eco .eco-card:hover {
    transform: translateY(-4px);
  }

  #html-bw4 .dobra-eco .eco-card .ec-label {
    font-size: .62rem;
    font-weight: 700;
    color: #444;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 10px;
  }

  #html-bw4 .dobra-eco .eco-card .ec-val {
    font-size: clamp(1.6rem, 2.2vw, 2.4rem);
    font-weight: 700;
    color: var(--g);
    line-height: 1;
    margin-bottom: 6px;
  }

  #html-bw4 .dobra-eco .eco-card .ec-sub {
    font-size: .78rem;
    font-weight: 500;
    color: #555;
  }

  #html-bw4 .dobra-eco .eco-img {
    border-radius: 16px;
    overflow: hidden;
  }

  #html-bw4 .dobra-eco .eco-img img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    border-radius: 16px;
  }

  /* ══ GARANTIA ════════════════════════════════════════════════ */
  #html-bw4 .dobra-garantia {
    background: #141414;
    padding: 104px 0;
  }

  #html-bw4 .dobra-garantia .inner {
    max-width: var(--max);
    margin: 0 auto;
    padding: 0 var(--px);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 96px;
    align-items: center;
  }

  #html-bw4 .dobra-garantia .gar-img img {
    width: 100%;
    border-radius: 16px;
    object-fit: cover;
    max-height: 520px;
  }

  #html-bw4 .dobra-garantia .gar-linha {
    width: 56px;
    height: 4px;
    background: var(--g);
    border-radius: 2px;
    margin-bottom: 32px;
  }

  #html-bw4 .dobra-garantia .gar-titulo {
    font-size: clamp(2rem, 3.5vw, 3.5rem);
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
  }

  #html-bw4 .dobra-garantia .gar-sub {
    font-size: 1rem;
    font-weight: 600;
    color: var(--g);
    margin-bottom: 28px;
  }

  #html-bw4 .dobra-garantia .gar-texto {
    font-size: .95rem;
    font-weight: 500;
    color: #777;
    line-height: 1.9;
    margin-bottom: 14px;
  }

  #html-bw4 .dobra-garantia .gar-badge {
    display: flex;
    align-items: center;
    gap: 16px;
    background: var(--card);
    border-radius: 10px;
    padding: 20px 24px;
    margin-top: 20px;
    border-left: 4px solid var(--g);
  }

  #html-bw4 .dobra-garantia .gar-badge .gb-val {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--g);
    white-space: nowrap;
  }

  #html-bw4 .dobra-garantia .gar-badge .gb-desc {
    font-size: .85rem;
    font-weight: 500;
    color: #999;
    line-height: 1.4;
  }

  /* ══ CTA FINAL ══════════════════════════════════════════════ */
  #html-bw4 .dobra-cta {
    background: #080808;
    padding: 96px var(--px);
    text-align: center;
  }

  #html-bw4 .dobra-cta .cta-link {
    display: inline-block;
    font-size: clamp(.85rem, 1.5vw, 1.3rem);
    font-weight: 700;
    color: var(--g);
    text-transform: uppercase;
    letter-spacing: 4px;
    padding: 28px 72px;
    border: 2px solid var(--g);
    border-radius: 4px;
    transition: background .25s, color .25s, transform .2s;
  }

  #html-bw4 .dobra-cta .cta-link:hover {
    background: var(--g);
    color: #111;
    transform: translateY(-2px);
  }

  /* ══ Modal Captação — estilo de produção (W-Trail) ══════════════ */
  #modal-captacaoBW4 .modal-content {
    background: #E2E1E5;
    padding-bottom: 15px;
  }
  #modal-captacaoBW4 .conteudo-texto {
    display: flex;
    align-items: center;
    flex-direction: column;
  }
  #modal-captacaoBW4 .titulo-1 {
    line-height: 1;
    font-size: 40px;
    color: #4B9A13;
    letter-spacing: -1px;
    font-weight: 700;
    text-align: center;
    max-width: 600px;
    margin: 0 auto 15px;
  }
  #modal-captacaoBW4 .sub-titulo {
    line-height: 1;
    font-size: 28px;
    color: #404040;
    font-weight: 700;
    text-align: center;
    margin: 0 auto 25px;
  }
  #modal-captacaoBW4 label {
    color: black;
    font-weight: 500;
    font-size: 17px;
    padding-top: 15px;
  }
  #modal-captacaoBW4 .conteudo {
    padding: 0 30px;
  }
  #modal-captacaoBW4 .conteudo-1 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
  #modal-captacaoBW4 .bloco-3 {
    width: 100%;
  }
  #modal-captacaoBW4 .form-control {
    max-width: 100%;
  }
  #modal-captacaoBW4 .btn-cadastrar {
    display: block;
    max-width: 135px;
    margin: 5px 15px 0 auto;
    font-size: 18px;
    border-radius: 10px;
    font-weight: 700;
    color: white;
    background: #76E425;
  }
  #modal-captacaoBW4 .invalid-feedback {
    font-size: 15px;
    font-weight: 500;
  }
  #modal-captacaoBW4 .bloco-4 {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  #modal-captacaoBW4 #col-checkboxInfo {
    display: grid;
    grid-template-columns: 30px auto;
  }
  #modal-captacaoBW4 .bloco-4 .bloco-privacidade p {
    color: #000;
  }
  #modal-captacaoBW4 .bloco-4 .bloco-privacidade p a {
    color: #4B9A13;
  }
  #modal-captacaoBW4 .bloco-4 #col-checkboxInfo label {
    padding: 0;
  }
  @media only screen and (min-width: 576px) {
    #modal-captacaoBW4 .modal-dialog {
      max-width: 690px;
    }
  }
  @media only screen and (max-width: 480px) {
    #modal-captacaoBW4 .conteudo-1 {
      grid-template-columns: 1fr;
      gap: 0;
    }
    #modal-captacaoBW4 .titulo-1 {
      font-size: 30px;
    }
    #modal-captacaoBW4 .conteudo {
      padding: 0 12px;
    }
  }

  /* ══ TABLET ≤1024px ══════════════════════════════════════════ */
  @media(max-width:1024px) {
    :root {
      --px: 40px;
    }

    #html-bw4 .hero-left {
      width: 52%;
      padding: 100px 40px 60px;
    }

    #html-bw4 .dobra-2 .inner {
      grid-template-columns: 1fr;
      gap: 36px;
    }

    #html-bw4 .dobra-4 .inner {
      grid-template-columns: 1fr;
      gap: 48px;
    }

    #html-bw4 .dobra-4 .produto-img {
      max-height: 420px;
    }

    #html-bw4 .dobra-conheca .conheca-layout {
      grid-template-columns: 1fr;
      gap: 48px;
    }

    #html-bw4 .dobra-conheca .conheca-img-wrap img {
      height: 420px;
    }

    #html-bw4 .car-item {
      padding: 48px 40px;
      gap: 48px;
    }

    #html-bw4 .dobra-galeria .grid {
      grid-template-columns: repeat(2, 1fr);
      grid-template-rows: auto;
    }

    #html-bw4 .dobra-galeria .grid .g-dest {
      grid-column: span 2;
      height: 360px;
    }

    #html-bw4 .dobra-galeria .grid img {
      height: 260px;
    }

    #html-bw4 .dobra-eco .inner {
      grid-template-columns: 1fr;
      gap: 48px;
    }

    #html-bw4 .dobra-eco .eco-img img {
      height: 380px;
    }

    #html-bw4 .dobra-garantia .inner {
      grid-template-columns: 1fr;
      gap: 48px;
    }

    #html-bw4 .dobra-specs .inner {
      flex-wrap: wrap;
    }

    #html-bw4 .dobra-specs .spec-item {
      flex: 1 1 28%;
    }

    #html-bw4 .dobra-4 .specs-grid {
      grid-template-columns: 1fr 1fr;
    }

    #html-bw4 .dobra-4 .specs-grid .spec-box:nth-child(2n) {
      border-right: none;
    }
  }

  /* ══ MOBILE ≤768px ═══════════════════════════════════════════ */
  @media(max-width:768px) {
    :root {
      --px: 20px;
    }

    #html-bw4 .dobra-1 {
      flex-direction: column;
      min-height: 100svh;
    }

    #html-bw4 .hero-right {
      height: 55vw;
      width: 100%;
    }

    #html-bw4 .hero-right::before {
      background: linear-gradient(to bottom, transparent 40%, #080808 100%);
    }

    #html-bw4 .hero-left {
      width: 100%;
      padding: 32px var(--px) 52px;
      background: #080808;
    }

    #html-bw4 .hero-modelo {
      font-size: clamp(4rem, 20vw, 6.5rem);
      letter-spacing: -2px;
    }

    #html-bw4 .hero-slogan {
      font-size: .95rem;
      margin-bottom: 32px;
    }

    #html-bw4 .btn-hero {
      padding: 15px 28px;
      font-size: .8rem;
      margin-bottom: 36px;
    }

    #html-bw4 .selo-dobra {
      top: 12px;
      right: var(--px);
      width: 72px;
    }

    #html-bw4 .dobra-specs .inner {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      padding: 0;
    }

    #html-bw4 .dobra-specs .spec-item {
      padding: 18px 10px;
      border-right: 1px solid rgba(0, 0, 0, .13);
      border-bottom: 1px solid rgba(0, 0, 0, .13);
    }

    #html-bw4 .dobra-specs .spec-item:nth-child(even) {
      border-right: none;
    }

    #html-bw4 .dobra-specs .spec-item:nth-last-child(-n+2) {
      border-bottom: none;
    }

    #html-bw4 .dobra-specs .sv {
      font-size: 1.3rem;
    }

    #html-bw4 .dobra-2 {
      padding: 64px 0;
    }

    #html-bw4 .dobra-3 .inner {
      flex-direction: column;
      align-items: flex-start;
      gap: 16px;
    }

    #html-bw4 .dobra-3 .d3-cta {
      white-space: normal;
    }

    #html-bw4 .dobra-4 {
      padding: 64px 0 0;
    }

    #html-bw4 .dobra-4 .produto-img {
      max-height: 280px;
    }

    #html-bw4 .dobra-4 .specs-grid {
      grid-template-columns: 1fr 1fr;
    }

    #html-bw4 .dobra-4 .cor-bar {
      padding: 28px var(--px);
    }

    #html-bw4 .dobra-video {
      padding: 64px 0;
    }

    #html-bw4 .dobra-video .sec-titulo {
      margin-bottom: 32px;
    }

    #html-bw4 .dobra-conheca {
      padding: 64px 0;
    }

    #html-bw4 .dobra-conheca .sec-titulo {
      margin-bottom: 40px;
    }

    #html-bw4 .dobra-conheca .items-grid {
      grid-template-columns: 1fr;
    }

    #html-bw4 .dobra-conheca .conheca-img-wrap img {
      height: 280px;
    }

    #html-bw4 .dobra-carousel {
      padding: 64px 0;
    }

    #html-bw4 .car-item {
      flex-direction: column;
      padding: 32px 22px;
      min-height: auto;
      gap: 24px;
    }

    #html-bw4 .car-item .car-img img {
      height: 220px;
    }

    #html-bw4 .dobra-galeria {
      padding: 64px 0;
    }

    #html-bw4 .dobra-galeria .grid {
      grid-template-columns: 1fr;
      grid-template-rows: auto;
    }

    #html-bw4 .dobra-galeria .grid .g-dest {
      grid-column: 1;
    }

    #html-bw4 .dobra-galeria .grid img,
    #html-bw4 .dobra-galeria .grid .g-dest {
      height: 220px;
    }

    #html-bw4 .dobra-eco {
      padding: 64px 0;
    }

    #html-bw4 .dobra-eco .cards-eco {
      grid-template-columns: 1fr 1fr;
    }

    #html-bw4 .dobra-eco .eco-img {
      display: none;
    }

    #html-bw4 .dobra-garantia {
      padding: 64px 0;
    }

    #html-bw4 .dobra-garantia .gar-img {
      display: none;
    }

    #html-bw4 .dobra-cta {
      padding: 64px var(--px);
    }

    #html-bw4 .dobra-cta .cta-link {
      font-size: .75rem;
      padding: 22px 24px;
      letter-spacing: 2px;
      display: block;
    }

  }

  @media(max-width:480px) {
    #html-bw4 .dobra-eco .cards-eco {
      grid-template-columns: 1fr;
    }

    #html-bw4 .dobra-4 .specs-grid {
      grid-template-columns: 1fr;
    }

    #html-bw4 .dobra-4 .specs-grid .spec-box {
      border-right: none;
    }
  }
