  :root {
    --red-main: #b22d30;
    --red-dark: #8f2426;
    --black: #000000;
    --gray: #a9abae;
    --gray-light: #e9e9e9;
    --white: #ffffff;
    --bg-cream: #f5f3f0;
    --bg-dark: #111111;
    --text-dark: #333333;
    --text-mid: #555555;
    --text-light: #f5f3f0;
    --text-muted: #777;
    --border: #ddd;
    --shadow: 0 2px 24px rgba(0,0,0,0.07);
    --shadow-lg: 0 12px 48px rgba(0,0,0,0.12);
    --radius: 10px;
  }

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

  html { scroll-behavior: smooth; }

  body {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
  }

  /* ===== ANIMATIONS ===== */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
  }
  @keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
  }
  @keyframes slideRight {
    from { opacity: 0; transform: translateX(-40px); }
    to { opacity: 1; transform: translateX(0); }
  }
  @keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(37,211,102,0.5); }
    50% { box-shadow: 0 0 0 14px rgba(37,211,102,0); }
  }
  @keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
  }
  .reveal {
    animation: fadeUp 0.7s ease-out both;
  }
  .reveal-d1 { animation-delay: 0.1s; }
  .reveal-d2 { animation-delay: 0.2s; }
  .reveal-d3 { animation-delay: 0.3s; }
  .reveal-d4 { animation-delay: 0.4s; }
  .reveal-d5 { animation-delay: 0.5s; }

  @media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    .reveal { animation: none; }
    *, *::before, *::after {
      transition-duration: 0.01ms !important;
      animation-duration: 0.01ms !important;
      animation-iteration-count: 1 !important;
    }
  }

  /* ===== TOP BAR ===== */
  .top-bar {
    background: var(--black);
    color: var(--gray-light);
    font-size: 13px;
    font-weight: 500;
    padding: 9px 20px;
    text-align: center;
    letter-spacing: 0.3px;
  }
  .top-bar strong { color: var(--red-main); }

  /* ===== HEADER ===== */
  header {
    background: var(--white);
    padding: 0 40px;
    height: 72px;
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid var(--gray-light);
    box-shadow: 0 1px 12px rgba(0,0,0,0.04);
  }
  .header-inner {
    max-width: 1140px;
    height: 100%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .header-logo img {
    height: 36px;
    display: block;
  }
  nav {
    display: flex;
    gap: 32px;
    align-items: center;
  }
  nav a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.2px;
    transition: color 0.2s;
    position: relative;
  }
  nav a:hover { color: var(--red-main); }
  nav a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--red-main);
    transition: width 0.3s;
  }
  nav a:hover::after { width: 100%; }
  .nav-cta {
    background: var(--red-main);
    color: var(--white) !important;
    padding: 11px 24px;
    border-radius: 6px;
    font-weight: 700;
    transition: all 0.25s;
    box-shadow: 0 3px 12px rgba(237,50,55,0.25);
  }
  .nav-cta::after { display: none; }
  .nav-cta:hover {
    background: var(--red-dark);
    transform: translateY(-1px);
    box-shadow: 0 5px 20px rgba(237,50,55,0.35);
  }
  .menu-toggle {
    display: none;
    width: 44px; height: 44px;
    background: none;
    border: 0;
    cursor: pointer;
    padding: 0;
    position: relative;
  }
  .menu-toggle span {
    display: block;
    position: absolute;
    left: 10px;
    width: 24px;
    height: 2px;
    background: var(--text-dark);
    border-radius: 1px;
    transition: transform 0.3s ease, opacity 0.2s ease, top 0.3s ease;
  }
  .menu-toggle span:nth-child(1) { top: 15px; }
  .menu-toggle span:nth-child(2) { top: 21px; }
  .menu-toggle span:nth-child(3) { top: 27px; }
  .menu-toggle[aria-expanded="true"] span:nth-child(1) { top: 21px; transform: rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .menu-toggle[aria-expanded="true"] span:nth-child(3) { top: 21px; transform: rotate(-45deg); }

  /* ===== HERO ===== */
  .hero {
    position: relative;
    background: var(--bg-dark);
    padding: 80px 40px 100px;
    overflow: hidden;
  }
  .hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background:
      radial-gradient(ellipse at 20% 50%, rgba(178,45,48,0.12) 0%, transparent 60%),
      radial-gradient(ellipse at 80% 80%, rgba(237,50,55,0.06) 0%, transparent 50%);
  }
  .hero::after {
    content: '';
    position: absolute;
    top: 0; right: 0; bottom: 0;
    width: 60%;
    background: repeating-linear-gradient(
      -55deg,
      transparent,
      transparent 50px,
      rgba(255,255,255,0.008) 50px,
      rgba(255,255,255,0.008) 100px
    );
  }
  .hero-inner {
    max-width: 1140px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 0.78fr 1.22fr;
    gap: 42px;
    align-items: center;
    position: relative;
    z-index: 2;
  }
  .hero-text { color: var(--text-light); }
  .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(237,50,55,0.12);
    border: 1px solid rgba(237,50,55,0.3);
    color: var(--red-main);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 7px 16px;
    border-radius: 50px;
    margin-bottom: 24px;
  }
  .hero h1 {
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    font-size: 56px;
    line-height: 1.05;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
  }
  .hero h1 em {
    font-style: normal;
    color: var(--red-main);
  }
  .hero-sub {
    font-size: 18px;
    color: rgba(245,243,240,0.75);
    line-height: 1.65;
    margin-bottom: 36px;
    max-width: 520px;
    font-weight: 500;
  }
  .hero-metrics {
    display: flex;
    gap: 36px;
    margin-bottom: 40px;
  }
  .hero-metric {
    position: relative;
    padding-left: 16px;
  }
  .hero-metric::before {
    content: '';
    position: absolute;
    left: 0;
    top: 4px;
    bottom: 4px;
    width: 3px;
    background: var(--red-main);
    border-radius: 2px;
  }
  .hero-metric-value {
    font-family: 'Oswald', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: var(--white);
    line-height: 1;
    white-space: nowrap;
  }
  .hero-metric-label {
    font-size: 12px;
    color: rgba(245,243,240,0.5);
    font-weight: 500;
    margin-top: 4px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
  }
  .hero-ctas {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
  }
  .btn-hero {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    font-weight: 700;
    padding: 16px 32px;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
  }
  .btn-hero-primary {
    background: var(--red-main);
    color: var(--white);
    box-shadow: 0 6px 24px rgba(237,50,55,0.35);
  }
  .btn-hero-primary:hover {
    background: var(--red-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(237,50,55,0.45);
  }
  .btn-hero-secondary {
    background: rgba(255,255,255,0.06);
    color: var(--text-light);
    border: 2px solid rgba(255,255,255,0.15);
  }
  .btn-hero-secondary:hover {
    border-color: rgba(255,255,255,0.35);
    background: rgba(255,255,255,0.1);
  }
  .hero-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .hero-video-wrapper {
    width: 100%;
    aspect-ratio: 16/9;
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 12px 48px rgba(0,0,0,0.4);
    border: 2px solid rgba(225,177,74,0.38);
    background: #1a1a1a url('imagens/banner-home.jpg') center / cover no-repeat;
  }
  .hero-video-wrapper iframe {
    width: 112%;
    height: 112%;
    display: block;
    border: 0;
    transform: translate(-5.35%, -5.35%);
    transform-origin: center;
  }
  .hero-video-wrapper .hero-video-card { height: 100%; aspect-ratio: auto; border: 0; border-radius: 0; box-shadow: none; }
  .hero-video-wrapper .hero-video-card img { object-position: center; }
  .video-embed {
    border-radius: 12px;
    overflow: hidden;
  }
  .video-embed iframe {
    width: 100%;
    height: 100%;
    display: block;
  }
  .hero-selo {
    position: absolute;
    bottom: -48px;
    right: -34px;
    width: 188px;
    height: 188px;
    animation: float 3s ease-in-out infinite;
    filter: drop-shadow(0 12px 28px rgba(0,0,0,0.6));
  }
  .hero-selo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }

  /* ===== PROOF BAR ===== */
  .proof-bar {
    background: var(--white);
    border-bottom: 1px solid var(--gray-light);
    padding: 30px 40px;
  }
  .proof-bar-inner {
    max-width: 1140px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .proof-item { text-align: center; flex: 1; }
  .proof-number {
    font-family: 'Oswald', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: var(--red-dark);
  }
  .proof-label {
    font-size: 12px;
    color: var(--text-muted);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 2px;
  }
  .proof-sep {
    width: 1px;
    height: 44px;
    background: var(--gray-light);
  }

  /* ===== SECTION DEFAULTS ===== */
  section { padding: 80px 40px; position: relative; }
  .container { max-width: 1140px; margin: 0 auto; }
  .section-eyebrow {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--red-main);
    margin-bottom: 14px;
  }
  .section-title {
    font-family: 'Oswald', sans-serif;
    font-size: 42px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 14px;
    color: var(--text-dark);
    letter-spacing: -0.3px;
  }
  .section-desc {
    font-size: 16px;
    font-weight: 500;
    color: var(--text-mid);
    line-height: 1.65;
    max-width: 580px;
    margin-bottom: 48px;
  }

  /* ===== PRODUCTS ===== */
  .products { background: var(--bg-cream); }
  .product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
  @media (max-width: 1024px) {
    .product-grid { grid-template-columns: 1fr 1fr; }
  }
  .product-card {
    background: var(--white);
    border-radius: 14px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.35s, box-shadow 0.35s;
    border: 1px solid rgba(0,0,0,0.04);
  }
  .product-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
  }
  .product-img {
    height: 220px;
    background: linear-gradient(135deg, #f0ece6 0%, #e6e2dc 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 14px;
    font-weight: 600;
    border-bottom: 3px solid var(--red-main);
    position: relative;
    overflow: hidden;
    text-decoration: none;
  }
  a.product-img { cursor: pointer; }
  a.product-img:hover { text-decoration: none; }
  .product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
  }
  .product-card:hover .product-img img { transform: scale(1.05); }
  .product-img::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(180deg, transparent 60%, rgba(0,0,0,0.03) 100%);
    pointer-events: none;
  }
  .product-body { padding: 28px; }
  .product-body h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 4px;
    color: var(--text-dark);
  }
  .product-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: var(--red-main);
    text-transform: uppercase;
    letter-spacing: 0.6px;
    margin-bottom: 14px;
  }
  .product-img-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: linear-gradient(135deg, #f0ece6 0%, #e6e2dc 100%);
    color: var(--text-muted);
    font-size: 13px;
    font-weight: 600;
    text-align: center;
    padding: 20px;
  }
  .product-img-placeholder svg {
    width: 42px;
    height: 42px;
    stroke: var(--gray);
    stroke-width: 1.5;
    fill: none;
  }
  .product-body p {
    font-size: 16px;
    font-weight: 500;
    line-height: 1.65;
    color: var(--text-mid);
    margin-bottom: 20px;
  }
  .product-benefits {
    list-style: none;
    margin-bottom: 28px;
  }
  .product-benefits li {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-dark);
    padding: 7px 0 7px 28px;
    position: relative;
  }
  .product-benefits li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 12px;
    width: 16px;
    height: 16px;
    background: var(--red-main);
    border-radius: 50%;
    opacity: 0.15;
  }
  .product-benefits li::after {
    content: '✓';
    position: absolute;
    left: 3px;
    top: 7px;
    color: var(--red-main);
    font-weight: 700;
    font-size: 12px;
  }
  .btn-product {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--red-main);
    color: var(--white);
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 700;
    padding: 13px 26px;
    border-radius: 7px;
    text-decoration: none;
    transition: all 0.25s;
    box-shadow: 0 3px 12px rgba(237,50,55,0.2);
  }
  .btn-product:hover {
    background: var(--red-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 18px rgba(237,50,55,0.3);
  }

  /* ===== FINAME ===== */
  .finame {
    background: linear-gradient(135deg, rgba(10,38,71,0.88) 0%, rgba(7,27,52,0.92) 100%), url('imagens/banner-bnds.jpg') center/cover no-repeat;
    padding: 52px 40px;
    position: relative;
    overflow: hidden;
  }
  .finame::before {
    content: '';
    position: absolute;
    top: -100px; right: -60px;
    width: 350px; height: 350px;
    background: radial-gradient(circle, rgba(178,45,48,0.14) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
  }
  .finame-inner {
    max-width: 1140px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    position: relative;
    z-index: 2;
  }
  .finame h2 {
    font-family: 'Oswald', sans-serif;
    font-size: 34px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 6px;
  }
  .finame p {
    font-size: 16px;
    font-weight: 500;
    color: rgba(255,255,255,0.85);
    line-height: 1.55;
    max-width: 520px;
  }
  .btn-finame {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--white);
    color: var(--text-dark);
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    font-weight: 700;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    white-space: nowrap;
    transition: all 0.25s;
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
  }
  .btn-finame:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(0,0,0,0.2);
  }

  /* ===== BENEFITS ===== */
  .benefits { background: var(--white); }
  .benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
  }
  .benefit-card {
    padding: 30px 26px;
    background: var(--bg-cream);
    border-radius: 12px;
    border: 1px solid rgba(0,0,0,0.04);
    transition: transform 0.3s, box-shadow 0.3s;
  }
  .benefit-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 28px rgba(0,0,0,0.06);
  }
  .benefit-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--red-main) 0%, var(--red-dark) 100%);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--white);
    box-shadow: 0 6px 16px rgba(178,45,48,0.28), inset 0 1px 0 rgba(255,255,255,0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  .benefit-icon svg {
    width: 28px;
    height: 28px;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    fill: none;
  }
  .benefit-card:hover .benefit-icon {
    transform: scale(1.06) rotate(-3deg);
    box-shadow: 0 8px 22px rgba(178,45,48,0.36), inset 0 1px 0 rgba(255,255,255,0.2);
  }
  .benefit-card h4 {
    font-family: 'Oswald', sans-serif;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-dark);
  }
  .benefit-card p {
    font-size: 16px;
    font-weight: 500;
    line-height: 1.6;
    color: var(--text-mid);
  }

  /* ===== SPECS ===== */
  .specs {
    background: linear-gradient(rgba(245,243,240,0.82), rgba(245,243,240,0.88)), url('imagens/bck.webp') center/cover no-repeat;
    background-attachment: fixed;
    position: relative;
  }
  .specs-tabs {
    display: flex;
    gap: 8px;
    margin-bottom: 24px;
    flex-wrap: wrap;
  }
  .spec-tab {
    padding: 10px 22px;
    border-radius: 6px;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    border: 2px solid var(--gray-light);
    background: var(--white);
    color: var(--text-mid);
    transition: all 0.2s;
  }
  .spec-tab:hover { border-color: var(--gray); }
  .spec-tab.active {
    background: var(--red-main);
    color: var(--white);
    border-color: var(--red-main);
  }
  .spec-table {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid rgba(0,0,0,0.04);
  }
  .spec-table table {
    width: 100%;
    border-collapse: collapse;
  }
  .spec-table th {
    background: var(--black);
    color: var(--white);
    font-family: 'Oswald', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 16px 24px;
    text-align: left;
  }
  .spec-table td {
    padding: 15px 24px;
    font-size: 14px;
    font-weight: 500;
    border-bottom: 1px solid var(--gray-light);
    color: var(--text-dark);
  }
  .spec-table tr:last-child td { border-bottom: none; }
  .spec-table tr:hover td { background: rgba(237,50,55,0.02); }
  .spec-table .val-highlight {
    color: var(--red-dark);
    font-weight: 700;
  }
  .spec-panel { display: none; animation: fadeIn 0.4s ease-out; }
  .spec-panel.active { display: block; }
  .specs-note {
    margin-top: 18px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-mid);
    font-style: italic;
    line-height: 1.6;
    padding: 0 4px;
  }

  /* ===== VIDEOS ===== */
  .videos {
    background: var(--bg-dark);
    color: var(--text-light);
  }
  .videos .section-eyebrow { color: var(--red-main); }
  .videos .section-title { color: var(--white); }
  .videos .section-desc { color: rgba(245,243,240,0.55); }
  .video-showcase {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
  }
  .video-card { position: relative; width: 100%; aspect-ratio: 16 / 9; overflow: hidden; border: 1px solid rgba(255,255,255,0.12); border-radius: 16px; background: #171717; padding: 0; color: #fff; }
  .video-card { cursor: pointer; text-align: left; box-shadow: 0 18px 48px rgba(0,0,0,0.28); }
  .video-card img { width: 100%; height: 100%; display: block; object-fit: cover; transition: transform .5s ease; }
  .video-card:hover img { transform: scale(1.035); }
  .video-play { position: absolute; z-index: 2; top: 50%; left: 50%; display: grid; place-items: center; width: 58px; height: 58px; border-radius: 50%; background: var(--red-main); box-shadow: 0 10px 28px rgba(0,0,0,.35); transform: translate(-50%,-50%) !important; font-size: 19px; padding-left: 4px; pointer-events: none; transition: transform .25s ease, background .25s ease; }
  .video-card:hover .video-play { transform: translate(-50%,-50%) scale(1.08); background: #d71920; }
  .youtube-channel-wrap { display: flex; justify-content: center; margin-top: 34px; }
  .youtube-channel-btn { display: inline-flex; align-items: center; gap: 9px; padding: 13px 20px; border: 1px solid rgba(255,255,255,.18); border-radius: 9px; color: rgba(255,255,255,.86); font-size: 14px; font-weight: 700; text-decoration: none; transition: background .25s ease, border-color .25s ease; }
  .youtube-channel-btn:hover { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.35); }
  .modal-open { overflow: hidden; }
  .video-modal[hidden] { display: none; }
  .video-modal { position: fixed; inset: 0; z-index: 10000; display: grid; place-items: center; padding: 24px; }
  .video-modal-backdrop { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; background: rgba(0,0,0,.86); cursor: default; }
  .video-modal-panel { position: relative; width: min(1040px, 92vw); z-index: 1; }
  .video-modal-player { width: 100%; aspect-ratio: 16 / 9; overflow: hidden; border-radius: 16px; background: #000; box-shadow: 0 28px 80px rgba(0,0,0,.65); }
  .video-modal-player iframe { width: 100%; height: 100%; border: 0; display: block; }
  .video-modal-close { position: absolute; top: -48px; right: 0; width: 40px; height: 40px; border: 1px solid rgba(255,255,255,.35); border-radius: 50%; background: rgba(15,15,15,.8); color: #fff; font-size: 28px; line-height: 1; cursor: pointer; }

  /* ===== PRODUCT VIDEOS ===== */
  .product-videos { padding: 86px 40px; background: var(--bg-dark); color: var(--text-light); text-align: center; }
  .product-videos .section-eyebrow { color: var(--red-main); }
  .product-videos .section-title { color: var(--white); }
  .product-videos .section-desc { margin: 0 auto 48px; color: rgba(245,243,240,0.7); }
  .product-video-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin-top: 38px; text-align: left; }
  .product-video-grid-single { grid-template-columns: minmax(0, 560px); justify-content: center; }
  .product-video-card { overflow: hidden; border: 1px solid rgba(255,255,255,0.12); border-radius: 12px; background: #111; box-shadow: 0 14px 32px rgba(0,0,0,0.2); }
  .product-video-card .video-embed { aspect-ratio: 16 / 9; border-radius: 0; }

  /* ===== EMPRESA ===== */
  .empresa { background: var(--white); }
  .empresa-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
  }
  .empresa-text h2 {
    font-family: 'Oswald', sans-serif;
    font-size: 38px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 16px;
    line-height: 1.1;
  }
  .empresa-text p {
    font-size: 16px;
    font-weight: 500;
    line-height: 1.7;
    color: var(--text-mid);
    margin-bottom: 14px;
  }
  .empresa-text strong { color: var(--text-dark); }
  .empresa-highlight {
    background: rgba(237,50,55,0.06);
    border-left: 4px solid var(--red-main);
    padding: 16px 20px;
    border-radius: 0 8px 8px 0;
    margin-top: 20px;
    font-size: 15px;
    font-weight: 600;
    color: var(--red-dark);
    line-height: 1.55;
  }
  .btn-company {
    display: inline-flex;
    align-items: center;
    margin-top: 22px;
    padding: 14px 24px;
    border-radius: 7px;
    background: var(--red-main);
    color: var(--white);
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 5px 18px rgba(237,50,55,0.24);
    transition: transform 0.25s, background 0.25s, box-shadow 0.25s;
  }
  .btn-company:hover { color: var(--white); background: var(--red-dark); transform: translateY(-2px); box-shadow: 0 8px 22px rgba(178,45,48,0.3); }
  .empresa-visual {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .empresa-selo {
    width: 100%;
    max-width: 560px;
    aspect-ratio: 4/3;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 20px 48px rgba(0,0,0,0.14);
    border: 1px solid rgba(0,0,0,0.04);
  }

  /* ===== CTA FINAL ===== */
  .cta-final {
    background:
      linear-gradient(112deg, rgba(6,6,6,0.93) 0%, rgba(18,18,18,0.88) 52%, rgba(92,23,26,0.90) 100%),
      url('imagens/tratormat-imagem-fundo.webp') center / cover no-repeat;
    text-align: center;
    padding: 80px 40px;
    position: relative;
    overflow: hidden;
    isolation: isolate;
  }
  .cta-final::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: -1;
    opacity: 0.42;
    background:
      repeating-linear-gradient(90deg, transparent 0 64px, rgba(255,255,255,0.045) 64px 65px),
      repeating-linear-gradient(0deg, transparent 0 64px, rgba(255,255,255,0.045) 64px 65px);
  }
  .cta-final h2 {
    font-family: 'Oswald', sans-serif;
    font-size: 46px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 12px;
    position: relative;
    z-index: 2;
  }
  .cta-final > p {
    font-size: 16px;
    color: rgba(255,255,255,0.6);
    margin-bottom: 40px;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    position: relative;
    z-index: 2;
  }
  .cta-final .address-line {
    position: relative;
    z-index: 2;
    margin-top: 26px;
    color: rgba(255,255,255,0.88);
    font-size: 15px;
    font-weight: 600;
    line-height: 1.55;
    letter-spacing: 0.1px;
  }
  .vendor-cards {
    display: flex;
    gap: 18px;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
  }
  .vendor-card {
    background: rgba(255,255,255,0.06);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 14px;
    padding: 24px 28px;
    text-align: left;
    min-width: 250px;
    transition: transform 0.3s, border-color 0.3s;
  }
  .vendor-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255,255,255,0.2);
  }
  .vendor-name {
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    color: var(--white);
    font-size: 18px;
    margin-bottom: 3px;
  }
  .vendor-role {
    font-size: 12px;
    color: rgba(255,255,255,0.4);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 14px;
  }
  .btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #25D366;
    color: var(--white);
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 700;
    padding: 11px 22px;
    border-radius: 7px;
    text-decoration: none;
    transition: all 0.25s;
    box-shadow: 0 3px 12px rgba(37,211,102,0.25);
  }
  .btn-whatsapp:hover {
    background: #1EBE57;
    transform: translateY(-1px);
  }

  /* ===== FOOTER ===== */
  footer {
    background: var(--black);
    padding: 36px 40px;
    text-align: center;
  }
  .footer-logo { height: 28px; margin-bottom: 14px; filter: brightness(10); }
  footer p {
    font-size: 12px;
    color: rgba(255,255,255,0.35);
    line-height: 1.7;
  }
  footer a {
    color: rgba(255,255,255,0.5);
    text-decoration: none;
  }
  footer a:hover { color: var(--red-main); }

  /* ===== WHATSAPP FLOAT ===== */
  .wpp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 999;
    width: 62px;
    height: 62px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37,211,102,0.4);
    cursor: pointer;
    transition: transform 0.3s;
    animation: pulse 2s infinite;
    text-decoration: none;
  }
  .wpp-float:hover { transform: scale(1.1); }
  .wpp-float svg { width: 32px; height: 32px; fill: white; }

  /* ===== RESPONSIVE ===== */
  @media (max-width: 900px) {
    .top-bar {
      padding: 8px 16px;
      font-size: 12px;
      line-height: 1.35;
      white-space: normal;
    }
    header {
      padding: 0 20px;
      overflow: visible;
      isolation: isolate;
    }
    .header-inner { position: relative; z-index: 2; }
    .header-logo, .menu-toggle { position: relative; z-index: 3; }
    .menu-toggle { display: block; }
    nav {
      position: absolute;
      top: 100%;
      left: -20px;
      right: -20px;
      background: var(--white);
      flex-direction: column;
      align-items: stretch;
      gap: 0;
      padding: 12px 20px 24px;
      box-shadow: 0 12px 32px rgba(0,0,0,0.08);
      border-top: 1px solid var(--gray-light);
      transform: translateY(-120%);
      transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
      max-height: calc(100vh - 72px);
      overflow-y: auto;
      visibility: hidden;
      pointer-events: none;
      z-index: 1;
    }
    nav.open {
      transform: translateY(0);
      visibility: visible;
      pointer-events: auto;
    }
    nav a {
      padding: 14px 8px;
      font-size: 16px;
      border-bottom: 1px solid var(--gray-light);
    }
    nav a::after { display: none; }
    nav .nav-cta {
      margin-top: 12px;
      text-align: center;
      border-bottom: 0;
      padding: 14px 24px;
    }
    .hero { padding: 50px 20px 60px; }
    .hero-inner { grid-template-columns: 1fr; gap: 28px; }
    .hero-text { display: contents; }
    .hero-badge { order: 1; justify-self: start; margin-bottom: -8px; }
    .hero h1 { order: 2; }
    .hero-sub { order: 3; margin-bottom: 2px; }
    .hero-ctas { order: 4; }
    .hero-visual { order: 5; margin: 4px 0 18px; }
    .hero-metrics { order: 6; margin-bottom: 0; }
    .hero-video-wrapper iframe { width: 106%; height: 106%; transform: translate(-2.85%, -2.85%); }
    .hero h1 { font-size: 38px; }
    .hero-metrics { gap: 20px; flex-wrap: wrap; }
    .hero-metric-value { font-size: 30px; }
    .hero-selo { width: 128px; height: 128px; bottom: -30px; right: -12px; }
    .proof-bar-inner { flex-wrap: wrap; gap: 16px; }
    .proof-sep { display: none; }
    .proof-item { min-width: 42%; }
    section { padding: 56px 20px; }
    .section-title { font-size: 32px; }
    .product-grid { grid-template-columns: 1fr; }
    .benefits-grid { grid-template-columns: 1fr; }
    .finame-inner { flex-direction: column; text-align: center; }
    .finame p { max-width: 100%; }
    .video-showcase { grid-template-columns: 1fr; gap: 16px; }
    .video-modal { padding: 16px; }
    .video-modal-panel { width: 100%; }
    .product-videos { padding: 58px 20px; }
    .product-video-grid { grid-template-columns: 1fr; }
    .empresa-grid { grid-template-columns: 1fr; gap: 30px; }
    .empresa-selo { max-width: 100%; }
    .vendor-cards { flex-direction: column; align-items: center; }
    .cta-final h2 { font-size: 34px; }
  }

  /* =====================================================
     PRODUCT PAGE — layout for niveladora.html / rocadeira.html / rollotron.html
     ===================================================== */
  .product-hero {
    background: linear-gradient(135deg, var(--bg-dark) 0%, #1a1a1a 60%, var(--red-dark) 130%);
    color: var(--text-light);
    padding: 50px 40px 70px;
    position: relative;
    overflow: hidden;
  }
  .product-hero::before {
    content: '';
    position: absolute;
    top: -200px; right: -100px;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(178,45,48,0.25) 0%, transparent 60%);
    border-radius: 50%;
    pointer-events: none;
  }
  .product-hero-inner {
    max-width: 1140px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
  }
  .breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 500;
    color: rgba(255,255,255,0.55);
    margin-bottom: 28px;
    flex-wrap: wrap;
  }
  .breadcrumb a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: color 0.2s;
  }
  .breadcrumb a:hover { color: var(--white); }
  .breadcrumb span[aria-current] { color: var(--white); font-weight: 600; }
  .breadcrumb .sep { color: rgba(255,255,255,0.3); }
  .product-hero .section-eyebrow {
    color: var(--red-main);
    display: inline-block;
    margin-bottom: 14px;
    font-weight: 700;
    letter-spacing: 1.5px;
  }
  .product-hero h1 {
    font-family: 'Oswald', sans-serif;
    font-size: 56px;
    font-weight: 700;
    color: var(--white);
    line-height: 1.05;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
  }
  .product-hero .tagline {
    font-size: 20px;
    color: rgba(255,255,255,0.8);
    font-weight: 500;
    max-width: 720px;
    line-height: 1.5;
    margin-bottom: 32px;
  }
  .product-hero-ctas {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
  }
  .product-hero .btn-hero { font-size: 15px; }

  /* Description + Benefits split section */
  .product-detail {
    background: var(--white);
    padding: 80px 40px;
  }
  .product-detail-inner {
    max-width: 1140px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.08fr 0.92fr;
    gap: 44px 60px;
    align-items: start;
  }
  .product-description h2,
  .product-benefits-block h2,
  .product-feature-block h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 18px;
    line-height: 1.2;
  }
  .product-description p {
    font-size: 17px;
    line-height: 1.75;
    color: var(--text-mid);
    font-weight: 500;
    margin-bottom: 16px;
  }
  .product-detail-photo {
    align-self: stretch;
    min-height: 100%;
  }
  .product-detail-photo img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 360px;
    max-height: 520px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
  }
  .product-benefits-block {
    grid-column: 1 / -1;
    background: var(--bg-cream);
    border-radius: 16px;
    padding: 32px;
    border-left: 4px solid var(--red-main);
  }
  .product-benefits-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 32px;
  }
  .product-benefits-list li {
    padding: 12px 0 12px 34px;
    font-size: 15px;
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1.5;
    border-bottom: 1px solid rgba(0,0,0,0.06);
    position: relative;
  }
  .product-benefits-list li:last-child { border-bottom: none; }
  .product-benefits-list li::before {
    content: '';
    position: absolute;
    left: 0; top: 15px;
    width: 22px; height: 22px;
    background: var(--red-main) url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>") center/14px no-repeat;
    border-radius: 50%;
  }

  /* Features — Como funciona / Ideal para */
  .product-features {
    background: linear-gradient(rgba(245,243,240,0.85), rgba(245,243,240,0.9)), url('imagens/bck.webp') center/cover no-repeat;
    padding: 70px 40px;
  }
  .product-features-inner {
    max-width: 1140px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  .product-feature-block {
    background: var(--white);
    padding: 32px 30px;
    border-radius: 14px;
    box-shadow: var(--shadow);
    border: 1px solid rgba(0,0,0,0.04);
  }
  .product-feature-block h3 {
    font-size: 24px;
    margin-bottom: 12px;
  }
  .product-feature-block p {
    font-size: 16px;
    font-weight: 500;
    line-height: 1.7;
    color: var(--text-mid);
  }
  .product-feature-block .feature-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--red-main) 0%, var(--red-dark) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    color: var(--white);
    box-shadow: 0 6px 16px rgba(178,45,48,0.24);
  }
  .product-feature-block .feature-icon svg {
    width: 24px; height: 24px;
    stroke: currentColor; stroke-width: 2;
    stroke-linecap: round; stroke-linejoin: round;
    fill: none;
  }

  /* Assembly guidance on product pages */
  .assembly-guidance {
    background: var(--white);
    padding: 70px 40px;
    text-align: center;
  }
  .assembly-guidance .container { max-width: 1140px; }
  .assembly-guidance .section-desc { margin: 0 auto 28px; }
  .assembly-diagram {
    display: block;
    position: relative;
    overflow: hidden;
    max-width: 1000px;
    margin: 0 auto;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }
  .assembly-diagram img { display: block; width: 100%; height: auto; }

  /* Specs on product page */
  .product-specs {
    background: var(--white);
    padding: 70px 40px;
  }
  .product-specs .container { max-width: 1140px; }

  /* Product page rhythm: alternate light surfaces, with videos always dark. */
  .product-features + .assembly-guidance { background: var(--white); }
  .assembly-guidance + .product-specs { background: var(--bg-cream); }
  .product-videos + .product-faq,
  .assembly-guidance + .product-specs + .product-faq { background: var(--white); }

  /* Related products */
  .related-products {
    background: var(--white);
    padding: 70px 40px;
  }
  .related-products .container { max-width: 1140px; }
  .product-videos + .product-faq + .related-products,
  .assembly-guidance + .product-specs + .product-faq + .related-products { background: var(--bg-cream); }
  .related-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 32px;
  }

  @media (max-width: 900px) {
    .product-hero { padding: 40px 20px 50px; }
    .assembly-guidance { padding: 56px 20px; }
    .product-hero h1 { font-size: 40px; }
    .product-hero .tagline { font-size: 17px; }
    .product-detail { padding: 60px 20px; }
    .product-detail-inner { grid-template-columns: 1fr; gap: 40px; }
    .product-detail-photo img { min-height: 250px; height: auto; }
    .product-benefits-list { grid-template-columns: 1fr; }
    .product-features { padding: 60px 20px; }
    .product-features-inner { grid-template-columns: 1fr; }
    .product-specs { padding: 60px 20px; }
    .related-products { padding: 60px 20px; }
    .related-grid { grid-template-columns: 1fr; }
  }

  /* =====================================================
     NAV DROPDOWN — Produtos com submenu
     ===================================================== */
  .nav-dropdown { position: relative; }
  .nav-dropdown-toggle {
    background: none;
    border: 0;
    padding: 0;
    cursor: pointer;
    color: var(--text-dark);
    font-family: inherit;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.2px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: color 0.2s;
    position: relative;
  }
  .nav-dropdown-toggle::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--red-main);
    transition: width 0.3s;
  }
  .nav-dropdown-toggle:hover { color: var(--red-main); }
  .nav-dropdown-toggle:hover::after { width: 100%; }
  .nav-dropdown-toggle .chevron {
    width: 11px;
    height: 11px;
    stroke: currentColor;
    stroke-width: 2.5;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: transform 0.25s;
  }
  .nav-dropdown-menu {
    position: absolute;
    top: calc(100% + 14px);
    left: 50%;
    transform: translateX(-50%) translateY(-6px);
    min-width: 260px;
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 14px 40px rgba(0,0,0,0.14);
    padding: 8px 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s, visibility 0.2s, transform 0.2s;
    border: 1px solid rgba(0,0,0,0.06);
    z-index: 200;
  }
  .nav-dropdown-menu::before {
    content: '';
    position: absolute;
    top: -6px;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    width: 12px;
    height: 12px;
    background: var(--white);
    border-top: 1px solid rgba(0,0,0,0.06);
    border-left: 1px solid rgba(0,0,0,0.06);
  }
  .nav-dropdown-menu a {
    display: block;
    padding: 12px 22px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
    text-decoration: none;
    transition: color 0.15s, background 0.15s, padding-left 0.2s;
    border-bottom: none;
    position: relative;
  }
  .nav-dropdown-menu a::after { display: none; }
  .nav-dropdown-menu a:hover {
    color: var(--red-main);
    background: var(--bg-cream);
    padding-left: 26px;
  }
  .nav-dropdown[data-open="true"] .nav-dropdown-toggle .chevron { transform: rotate(180deg); }
  .nav-dropdown[data-open="true"] .nav-dropdown-toggle { color: var(--red-main); }
  .nav-dropdown[data-open="true"] .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
  }
  @media (hover: hover) and (min-width: 901px) {
    .nav-dropdown:hover .nav-dropdown-menu {
      opacity: 1;
      visibility: visible;
      transform: translateX(-50%) translateY(0);
    }
    .nav-dropdown:hover .nav-dropdown-toggle .chevron { transform: rotate(180deg); }
    .nav-dropdown:hover .nav-dropdown-toggle { color: var(--red-main); }
  }

  /* Mobile submenu */
  @media (max-width: 900px) {
    .nav-dropdown { width: 100%; }
    .nav-dropdown-toggle {
      width: 100%;
      padding: 14px 8px;
      justify-content: space-between;
      border-bottom: 1px solid var(--gray-light);
      font-size: 16px;
    }
    .nav-dropdown-toggle::after { display: none; }
    .nav-dropdown-menu {
      position: static;
      opacity: 1;
      visibility: visible;
      transform: none;
      box-shadow: none;
      border: 0;
      padding: 0;
      min-width: 0;
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.3s ease;
      border-radius: 0;
    }
    .nav-dropdown-menu::before { display: none; }
    .nav-dropdown[data-open="true"] .nav-dropdown-menu {
      display: block;
      max-height: none;
      opacity: 1;
      visibility: visible;
      transform: none;
    }
    nav .nav-dropdown-menu a {
      display: block;
      padding: 12px 20px 12px 32px;
      border-bottom: 1px solid var(--gray-light);
      background: var(--bg-cream);
      font-size: 15px;
      color: var(--text-dark);
      line-height: 1.4;
    }
  .nav-dropdown-menu a:hover { padding-left: 32px; }

    /* O seletor do submenu aberto no desktop centraliza o menu com translateX.
       No celular ele deve ocupar toda a largura do painel, sem deslocamento. */
    nav .nav-dropdown-menu {
      top: auto;
      left: auto;
      width: 100%;
      min-width: 100%;
    }
    nav .nav-dropdown[data-open="true"] .nav-dropdown-menu {
      transform: none;
    }
  }

  /* Tabelas de especificações: preserva todas as colunas em telas pequenas. */
  @media (max-width: 700px) {
    .spec-table {
      overflow-x: auto;
      overflow-y: hidden;
      -webkit-overflow-scrolling: touch;
    }
    .spec-table table { min-width: 650px; }
    .spec-table th,
    .spec-table td { white-space: nowrap; padding: 14px 18px; }
  }

  /* =====================================================
     PRIVACY POLICY
     ===================================================== */
  .legal-hero {
    padding: 72px 40px;
    background:
      radial-gradient(circle at 85% 20%, rgba(178,45,48,0.22), transparent 34%),
      var(--bg-dark);
    color: var(--white);
  }
  .legal-hero h1 {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(42px, 6vw, 68px);
    line-height: 1.05;
    margin-bottom: 12px;
  }
  .legal-hero p {
    color: rgba(255,255,255,0.72);
    font-size: 18px;
  }
  .legal-updated {
    display: inline-block;
    margin-top: 24px;
    padding: 8px 13px;
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 6px;
    color: rgba(255,255,255,0.72);
    font-size: 12px;
  }
  .legal-section {
    padding: 72px 40px 96px;
    background: var(--bg-cream);
  }
  .legal-layout {
    display: grid;
    grid-template-columns: 250px minmax(0, 1fr);
    gap: 54px;
    align-items: start;
  }
  .legal-nav {
    position: sticky;
    top: 96px;
    display: flex;
    flex-direction: column;
    max-height: calc(100vh - 120px);
    overflow-y: auto;
    padding: 22px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: var(--shadow);
  }
  .legal-nav strong {
    margin-bottom: 10px;
    font-family: 'Oswald', sans-serif;
    font-size: 18px;
  }
  .legal-nav a {
    padding: 7px 0;
    color: var(--text-mid);
    font-size: 12px;
    line-height: 1.35;
    text-decoration: none;
  }
  .legal-nav a:hover,
  .legal-nav a:focus-visible {
    color: var(--red-main);
  }
  .legal-content {
    padding: 46px clamp(24px, 5vw, 64px);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: var(--shadow);
  }
  .legal-content section {
    padding: 0 0 38px;
    margin-bottom: 38px;
    border-bottom: 1px solid var(--gray-light);
    scroll-margin-top: 100px;
  }
  .legal-content section:last-child {
    padding-bottom: 0;
    margin-bottom: 0;
    border-bottom: 0;
  }
  .legal-content h2 {
    margin-bottom: 18px;
    color: var(--text-dark);
    font-family: 'Oswald', sans-serif;
    font-size: 30px;
    line-height: 1.2;
  }
  .legal-content p,
  .legal-content li {
    color: var(--text-mid);
    font-size: 15px;
    line-height: 1.8;
  }
  .legal-content p + p { margin-top: 16px; }
  .legal-content ul {
    margin: 16px 0 18px;
    padding-left: 24px;
  }
  .legal-content li { margin-bottom: 8px; }
  .legal-content li::marker { color: var(--red-main); }
  .legal-content a {
    color: var(--red-main);
    font-weight: 700;
  }
  .legal-contact {
    padding: 28px !important;
    border: 1px solid rgba(178,45,48,0.25) !important;
    border-radius: var(--radius);
    background: rgba(178,45,48,0.04);
  }
  .footer-links { margin-top: 8px; }
  .footer-links a {
    color: rgba(255,255,255,0.78);
    font-size: 12px;
  }
  .footer-links a:hover,
  .footer-links a:focus-visible { color: var(--white); }
  .footer-social {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin-top: 10px;
  }
  .footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border: 1px solid rgba(255,255,255,0.22);
    border-radius: 50%;
    color: rgba(255,255,255,0.82);
    font-size: 16px;
    transition: color 0.2s, background 0.2s, border-color 0.2s, transform 0.2s;
  }
  .footer-social a:hover,
  .footer-social a:focus-visible {
    color: var(--white);
    background: var(--red-main);
    border-color: var(--red-main);
    transform: translateY(-2px);
  }

  /* =====================================================
     CONTACT PAGE
     ===================================================== */
  .contact-hero {
    padding: 54px 40px 84px;
    background:
      linear-gradient(112deg, rgba(6,6,6,0.92), rgba(24,24,24,0.85) 54%, rgba(92,23,26,0.88)),
      url('imagens/tratormat-imagem-fundo.webp') center / cover no-repeat;
    color: var(--white);
  }
  .contact-hero .breadcrumb { margin-bottom: 34px; }
  .contact-hero .section-eyebrow { color: #e95b5f; }
  .contact-hero h1 { max-width: 780px; margin: 10px 0 16px; font-family: 'Oswald', sans-serif; font-size: clamp(46px, 6vw, 68px); line-height: 1.04; }
  .contact-hero p { max-width: 700px; color: rgba(255,255,255,0.77); font-size: 18px; line-height: 1.7; }
  .contact-details { padding: 84px 40px; background: var(--white); }
  .contact-intro { margin-bottom: 34px; }
  .contact-intro h2 { margin-top: 8px; color: var(--text-dark); font-family: 'Oswald', sans-serif; font-size: 42px; line-height: 1.1; }
  .contact-grid { display: grid; grid-template-columns: 1.2fr 0.9fr 0.9fr; gap: 22px; }
  .contact-card { min-height: 250px; padding: 30px; border-radius: 14px; border-top: 4px solid var(--red-main); background: var(--bg-cream); }
  .contact-card--address { background: var(--bg-dark); color: var(--white); }
  .contact-label, .contact-person > span { display: block; color: var(--red-main); font-size: 12px; font-weight: 700; letter-spacing: 1.4px; text-transform: uppercase; }
  .contact-card h3 { margin: 12px 0 18px; color: inherit; font-family: 'Oswald', sans-serif; font-size: 29px; line-height: 1.1; }
  .contact-card:not(.contact-card--address) h3 { color: var(--text-dark); }
  .contact-card address { color: rgba(255,255,255,0.72); font-size: 15px; font-style: normal; line-height: 1.75; }
  .contact-link { display: block; margin: 8px 0; color: var(--text-dark); font-size: 16px; font-weight: 700; text-decoration: none; word-break: break-word; }
  .contact-link:hover { color: var(--red-main); }
  .contact-team { padding: 84px 40px; background: var(--bg-cream); text-align: center; }
  .contact-team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 38px; text-align: left; }
  .contact-person { padding: 30px; border-radius: 14px; background: var(--white); box-shadow: var(--shadow); }
  .contact-person h3 { margin: 11px 0 22px; color: var(--text-dark); font-family: 'Oswald', sans-serif; font-size: 29px; line-height: 1.1; }
  .contact-person a { display: flex; justify-content: space-between; align-items: center; color: var(--red-main); font-size: 15px; font-weight: 700; text-decoration: none; }
  .contact-person a b { font-size: 22px; line-height: 1; }
  .contact-social { padding: 84px 40px; background: var(--white); text-align: center; }
  .contact-social-links { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; margin-top: 34px; }
  .contact-social-links a { min-width: 190px; padding: 18px 22px; border: 1px solid var(--border); border-radius: 8px; color: var(--text-dark); font-weight: 700; text-decoration: none; transition: all 0.2s; }
  .contact-social-links a:hover { border-color: var(--red-main); background: var(--red-main); color: var(--white); transform: translateY(-2px); }
  .contact-social-links span { margin-left: 10px; }

  /* =====================================================
     COMPANY PAGE
     ===================================================== */
  .company-hero {
    padding: 46px 40px 76px;
    background: linear-gradient(135deg, var(--bg-dark) 0%, #181818 60%, var(--red-dark) 160%);
    color: var(--white);
  }
  .company-hero-inner { max-width: 1140px; margin: 0 auto; }
  .company-hero-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 64px;
    align-items: center;
  }
  .company-hero h1 {
    margin: 0 0 18px;
    font-family: 'Oswald', sans-serif;
    font-size: clamp(44px, 5vw, 64px);
    line-height: 1.04;
  }
  .company-hero p {
    max-width: 590px;
    margin: 0 0 32px;
    color: rgba(255,255,255,0.76);
    font-size: 18px;
    line-height: 1.65;
  }
  .company-hero img {
    width: 100%;
    min-height: 340px;
    object-fit: cover;
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 16px;
    box-shadow: 0 20px 48px rgba(0,0,0,0.32);
  }
  .company-story { padding: 86px 40px; background: var(--white); }
  .company-story-grid {
    display: grid;
    grid-template-columns: 1.3fr 0.7fr;
    gap: 72px;
    align-items: center;
  }
  .company-story-copy h2 {
    margin-bottom: 20px;
    color: var(--text-dark);
    font-family: 'Oswald', sans-serif;
    font-size: 40px;
    line-height: 1.12;
  }
  .company-story-copy p {
    margin-bottom: 16px;
    color: var(--text-mid);
    font-size: 17px;
    line-height: 1.75;
  }
  .company-principle {
    padding: 34px;
    border-left: 4px solid var(--red-main);
    border-radius: 0 14px 14px 0;
    background: var(--bg-cream);
  }
  .company-principle span { color: var(--red-main); font-size: 12px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; }
  .company-principle p { margin: 14px 0 0; color: var(--text-dark); font-family: 'Oswald', sans-serif; font-size: 27px; font-weight: 600; line-height: 1.25; }
  .company-numbers { padding: 78px 40px; background: var(--bg-cream); text-align: center; }
  .company-numbers-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: 38px; }
  .company-numbers-grid div { padding: 25px 16px; border-radius: 12px; background: var(--white); box-shadow: var(--shadow); }
  .company-numbers-grid strong { display: block; color: var(--red-dark); font-family: 'Oswald', sans-serif; font-size: 42px; line-height: 1; }
  .company-numbers-grid span { display: block; margin-top: 8px; color: var(--text-muted); font-size: 12px; font-weight: 700; letter-spacing: 0.5px; text-transform: uppercase; }
  .company-difference { padding: 86px 40px; background: var(--white); text-align: center; }
  .company-difference-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 38px; text-align: left; }
  .company-difference-grid article { padding: 30px; border-radius: 14px; border-top: 4px solid var(--red-main); background: var(--bg-cream); }
  .company-difference-grid h3 { margin-bottom: 12px; color: var(--text-dark); font-family: 'Oswald', sans-serif; font-size: 26px; }
  .company-difference-grid p { color: var(--text-mid); font-size: 15px; line-height: 1.7; }

  @media (max-width: 900px) {
    .company-hero { padding: 40px 20px 56px; }
    .company-hero-grid, .company-story-grid { grid-template-columns: 1fr; gap: 34px; }
    .company-hero img { min-height: 250px; }
    .company-story, .company-numbers, .company-difference { padding: 58px 20px; }
    .company-story-copy h2 { font-size: 34px; }
    .company-numbers-grid, .company-difference-grid { grid-template-columns: 1fr; }
  }

  /* =====================================================
     APPLICATIONS PAGE
     ===================================================== */
  .applications-hero { padding: 46px 40px 76px; background: linear-gradient(135deg, var(--bg-dark) 0%, #181818 60%, var(--red-dark) 160%); color: var(--white); }
  .applications-hero-inner { max-width: 1140px; margin: 0 auto; }
  .applications-hero-grid { display: grid; grid-template-columns: 1.08fr 0.92fr; gap: 62px; align-items: center; }
  .applications-hero h1 { margin: 0 0 16px; font-family: 'Oswald', sans-serif; font-size: clamp(42px, 5vw, 62px); line-height: 1.05; }
  .applications-hero p { max-width: 630px; color: rgba(255,255,255,0.76); font-size: 16px; line-height: 1.7; }
  .applications-hero .applications-lead { color: var(--white); font-size: 21px; font-weight: 600; line-height: 1.4; }
  .applications-hero img { width: 100%; min-height: 350px; object-fit: cover; border: 1px solid rgba(255,255,255,0.12); border-radius: 16px; box-shadow: 0 20px 48px rgba(0,0,0,0.3); }
  .applications-intro { padding: 52px 40px; background: var(--white); }
  .applications-intro-content { max-width: 880px; text-align: center; }
  .applications-intro p { color: var(--text-mid); font-size: 18px; line-height: 1.75; }
  .applications-intro p + p { margin-top: 16px; }
  .application-feature { padding: 86px 40px; background: var(--white); }
  .application-feature--cream { background: var(--bg-cream); }
  .application-feature-grid { display: grid; grid-template-columns: 0.92fr 1.08fr; gap: 64px; align-items: center; }
  .application-feature-grid--reverse img { order: 2; }
  .application-feature-grid img { width: 100%; min-height: 430px; object-fit: cover; border-radius: 16px; box-shadow: var(--shadow-lg); }
  #pastagens .application-feature-grid img { filter: brightness(1.06) contrast(1.08) saturate(1.24); }
  .application-feature h2 { margin-bottom: 18px; color: var(--text-dark); font-family: 'Oswald', sans-serif; font-size: 42px; line-height: 1.1; }
  .application-feature p { margin-bottom: 16px; color: var(--text-mid); font-size: 16px; line-height: 1.75; }
  .application-lists { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 26px; }
  .application-lists > div { padding: 22px; border-radius: 12px; background: var(--white); box-shadow: var(--shadow); }
  .application-lists h3 { margin-bottom: 12px; color: var(--text-dark); font-family: 'Oswald', sans-serif; font-size: 21px; }
  .application-lists ul, .applications-card-grid ul { margin: 0; padding-left: 20px; }
  .application-lists li, .applications-card-grid li { margin-bottom: 7px; color: var(--text-mid); font-size: 14px; line-height: 1.5; }
  .application-lists li::marker, .applications-card-grid li::marker { color: var(--red-main); }
  .btn-application { display: inline-flex; margin-top: 28px; padding: 13px 20px; border-radius: 7px; background: var(--red-main); color: var(--white); font-size: 14px; font-weight: 700; text-decoration: none; }
  .btn-application:hover { background: var(--red-dark); }
  .applications-grid-section { padding: 86px 40px; background: var(--white); text-align: center; }
  .applications-card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 38px; text-align: left; }
  .applications-card-grid article { padding: 30px; border-top: 4px solid var(--red-main); border-radius: 14px; background: var(--bg-cream); }
  .applications-card-grid h3 { margin-bottom: 13px; color: var(--text-dark); font-family: 'Oswald', sans-serif; font-size: 25px; line-height: 1.15; }
  .applications-card-grid p { margin-bottom: 14px; color: var(--text-mid); font-size: 15px; line-height: 1.7; }
  .applications-table-section { padding: 82px 40px; background: var(--bg-cream); text-align: center; }
  .applications-table-wrap { margin-top: 34px; overflow-x: auto; border-radius: 12px; background: var(--white); box-shadow: var(--shadow); }
  .applications-table-wrap table { width: 100%; border-collapse: collapse; min-width: 600px; text-align: left; }
  .applications-table-wrap th { padding: 17px 22px; background: var(--bg-dark); color: var(--white); font-size: 13px; text-transform: uppercase; letter-spacing: 0.5px; }
  .applications-table-wrap td { padding: 16px 22px; border-bottom: 1px solid var(--gray-light); color: var(--text-mid); font-size: 15px; }
  .applications-table-wrap tr:last-child td { border-bottom: 0; }
  .applications-table-wrap a { color: var(--red-main); font-weight: 700; text-decoration: none; }
  .applications-faq { padding: 86px 40px; background: var(--white); text-align: center; }
  .product-faq { background: var(--bg-cream); }
  .product-faq .applications-faq-grid article { background: var(--white); box-shadow: var(--shadow); }
  .applications-faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 38px; text-align: left; }
  .applications-faq-grid article { padding: 28px; border: 1px solid var(--gray-light); border-radius: 12px; }
  .applications-faq-grid h3 { margin-bottom: 12px; color: var(--text-dark); font-family: 'Oswald', sans-serif; font-size: 23px; line-height: 1.2; }
  .applications-faq-grid p { color: var(--text-mid); font-size: 15px; line-height: 1.7; }
  @media (max-width: 900px) {
    .applications-hero, .applications-intro, .application-feature, .applications-grid-section, .applications-table-section, .applications-faq { padding: 56px 20px; }
    .applications-hero-grid, .application-feature-grid { grid-template-columns: 1fr; gap: 32px; }
    .application-feature-grid--reverse img { order: 0; }
    .applications-hero img, .application-feature-grid img { min-height: 250px; }
    .application-feature h2 { font-size: 34px; }
    .application-lists, .applications-card-grid, .applications-faq-grid { grid-template-columns: 1fr; }
  }

  @media (max-width: 900px) {
    .legal-hero { padding: 52px 20px; }
    .legal-section { padding: 44px 20px 70px; }
    .legal-layout { grid-template-columns: 1fr; gap: 24px; }
    .legal-nav { display: none; }
    .legal-content { padding: 32px 22px; }
    .legal-content h2 { font-size: 26px; }
    .legal-contact { padding: 22px !important; }
    .contact-hero, .contact-details, .contact-team, .contact-social { padding: 56px 20px; }
    .contact-hero h1 { font-size: 44px; }
    .contact-hero p { font-size: 16px; }
    .contact-grid, .contact-team-grid { grid-template-columns: 1fr; }
    .contact-card { min-height: auto; }
    .contact-intro h2 { font-size: 34px; }
    .contact-social-links { display: grid; grid-template-columns: 1fr; }
    .contact-social-links a { min-width: 0; }
  }
