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

  :root {
    --navy: #1F242B;
    --navy-mid: #424A54;
    --gold: #D1AF2B;
    --gold-bright: #D1AF2B;
    --white: #ffffff;
    --off-white: #F5F4F0;
    --light-gray: #EBEBEB;
    --text-body: #3a3a3a;
  }

  html { scroll-behavior: smooth; }

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

  /* ─── HEADER ─── */
  header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    background: var(--navy);
    height: 70px;
    transition: box-shadow .3s;
    padding: 0;
  }
  header.scrolled { box-shadow: 0 2px 24px rgba(0,0,0,.35); }

  .header-inner {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 48px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .logo img { height: 22px; display: block; }
  .logo-fallback { display: none; font-size: 19px; font-weight: 900; color: #fff; letter-spacing: .06em; }
  .logo-fallback span { color: var(--gold); }

  /* NAV LINKS */
  .nav-links { display: flex; align-items: stretch; height: 70px; gap: 0; }
  .nav-item { position: static; display: flex; align-items: center; }
  .nav-btn {
    background: none; border: none; cursor: pointer;
    color: rgba(255,255,255,.78); font-size: 13px; font-weight: 700;
    padding: 0 15px; height: 70px;
    display: flex; align-items: center; gap: 5px;
    transition: color .15s; font-family: 'Lato', sans-serif;
    white-space: nowrap; letter-spacing: .015em; position: relative;
  }
  .nav-btn::after {
    content: ''; position: absolute; bottom: 0; left: 15px; right: 15px;
    height: 2px; background: var(--gold);
    transform: scaleX(0); transition: transform .2s;
  }
  .nav-item:hover .nav-btn { color: #fff; }
  .nav-item:hover .nav-btn::after { transform: scaleX(1); }
  .nav-btn svg { width: 9px; height: 9px; transition: transform .2s; opacity: .55; }
  .nav-item:hover .nav-btn svg { transform: rotate(180deg); }

  /* NAV RIGHT */
  .nav-right { display: flex; align-items: center; gap: 3px; }
  .lang-btn {
    background: none; border: none; cursor: pointer;
    color: rgba(255,255,255,.5); font-size: 11px; font-weight: 700;
    padding: 4px 7px; border-radius: 3px;
    transition: all .15s; font-family: 'Lato', sans-serif; letter-spacing: .06em;
  }
  .lang-btn:hover { color: #fff; }
  .lang-btn.curr { color: var(--gold); border: 0.5px solid rgba(209,175,43,.45); }
  .lang-sep { color: rgba(255,255,255,.15); font-size: 10px; }
  .search-btn {
    background: none; border: 0.5px solid rgba(255,255,255,.18); cursor: pointer;
    color: rgba(255,255,255,.6); padding: 7px; border-radius: 4px;
    display: flex; align-items: center; margin-left: 8px; transition: all .15s;
  }
  .search-btn:hover { color: var(--gold); border-color: rgba(209,175,43,.4); }

  /* MEGA MENU */
  .mega-wrap {
    position: fixed;
    top: 70px; left: 0; right: 0;
    background: var(--navy);
    border-top: 2px solid var(--gold);
    z-index: 999; overflow: hidden;
    /* CSS-only animation — no GSAP dependency */
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity .2s ease, transform .2s ease, visibility .2s;
    pointer-events: none;
  }
  .nav-item:hover .mega-wrap {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
  }

  .mega-inner {
    max-width: 1280px; margin: 0 auto;
    padding: 32px 48px 36px;
    display: flex; gap: 0;
  }
  .mega-accent {
    width: 260px; flex-shrink: 0;
    padding-right: 36px;
    border-right: 0.5px solid rgba(255,255,255,.08);
    margin-right: 44px;
  }
  .mega-thumb {
    width: 100%; height: 148px;
    border-radius: 8px; overflow: hidden;
    margin-bottom: 18px; position: relative;
    background: #2a3040;
  }
  .mega-thumb img {
    width: 100%; height: 100%;
    object-fit: cover; display: block;
    transition: transform .4s ease;
    filter: brightness(.82);
  }
  .nav-item:hover .mega-thumb img { transform: scale(1.05); }
  .mega-thumb-label {
    position: absolute; bottom: 0; left: 0; right: 0;
    padding: 22px 12px 10px;
    background: linear-gradient(to top, rgba(0,0,0,.7) 0%, transparent 100%);
    font-size: 10px; font-weight: 700; color: rgba(255,255,255,.55);
    letter-spacing: .08em; text-transform: uppercase;
  }
  .mega-accent-title { font-size: 15px; font-weight: 700; color: #fff; line-height: 1.35; margin-bottom: 8px; }
  .mega-accent-sub { font-size: 11.5px; color: rgba(255,255,255,.38); line-height: 1.65; margin-bottom: 18px; }
  .mega-cta {
    display: inline-flex; align-items: center; gap: 6px;
    font-size: 12px; font-weight: 700; color: var(--gold);
    text-decoration: none; letter-spacing: .03em;
    cursor: pointer; border: none; background: none;
    font-family: 'Lato', sans-serif; padding: 0; transition: gap .15s;
  }
  .mega-cta:hover { gap: 10px; }
  .mega-cta svg { width: 12px; height: 12px; }

  .mega-cols { display: flex; gap: 44px; flex: 1; }
  .mega-col-title {
    font-size: 10px; font-weight: 700; color: var(--gold);
    letter-spacing: .1em; text-transform: uppercase; margin-bottom: 14px;
  }
  .mega-link {
    display: flex; align-items: flex-start; gap: 11px;
    padding: 9px 0; cursor: pointer; border: none; background: none;
    text-align: left; font-family: 'Lato', sans-serif;
    transition: transform .15s; width: 100%;
  }
  .mega-link:hover { transform: translateX(4px); }
  .mega-link:hover .ml-label { color: var(--gold); }
  .ml-icon {
    width: 33px; height: 33px; border-radius: 6px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0; background: rgba(255,255,255,.06);
  }
  .ml-icon svg { width: 16px; height: 16px; }
  .ml-label { font-size: 13px; font-weight: 700; color: rgba(255,255,255,.85); line-height: 1; margin-bottom: 3px; transition: color .15s; }
  .ml-desc { font-size: 11px; color: rgba(255,255,255,.33); line-height: 1.4; }

  .mega-brands { display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; flex: 1; }
  .brand-card {
    background: rgba(255,255,255,.04); border: 0.5px solid rgba(255,255,255,.08);
    border-radius: 8px; padding: 14px 16px; cursor: pointer;
    transition: all .15s; display: flex; flex-direction: column; gap: 5px;
  }
  .brand-card:hover { background: rgba(209,175,43,.08); border-color: rgba(209,175,43,.3); }
  .brand-logo { height: 26px; width: auto; max-width: 130px; opacity: .9; margin-bottom: 2px; display: block; }
  .brand-logo.is-bigger { height: 36px; max-width: 150px; }
  .brand-name { font-size: 13px; font-weight: 700; color: rgba(255,255,255,.9); }
  .brand-desc { font-size: 11px; color: rgba(255,255,255,.33); line-height: 1.4; }
  .brand-tag { font-size: 10px; color: var(--gold); font-weight: 700; letter-spacing: .05em; margin-top: auto; padding-top: 6px; }

  /* ─── HERO ─── */
  .hero {
    position: relative;
    height: 100vh; min-height: 640px;
    background: var(--navy);
    display: flex; align-items: center; justify-content: center;
    overflow: hidden;
  }
  .hero-video-bg {
    position: absolute; inset: 0;
    overflow: hidden;
  }
  .hero-slide {
    position: absolute; inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
  }
  .hero-slide.active { opacity: 1; }
  .hero-slide::after {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(160deg, rgba(13,17,23,.75) 0%, rgba(31,36,43,.6) 50%, rgba(15,28,15,.65) 100%);
  }
  .hero-slide:nth-child(1) { background-image: url('../images/slide-04.jpg'); background-position: center center; }
  .hero-slide:nth-child(2) { background-image: url('../images/slide-02.jpg'); background-position: center center; }
  .hero-slide:nth-child(3) { background-image: url('../images/slide-03.jpg'); background-position: center top; }
  .hero-overlay {
    position: absolute; inset: 0; z-index: 2;
    background: linear-gradient(to right, rgba(0,0,0,.55) 0%, rgba(0,0,0,.1) 60%, transparent 100%);
  }
  .hero-lines {
    position: absolute; right: 0; top: 0; bottom: 0; width: 55%;
    overflow: hidden; opacity: .08; z-index: 3;
  }
  .hero-lines svg { width: 100%; height: 100%; }

  .hero-content {
    position: relative; z-index: 4;
    max-width: 1200px; width: 100%; padding: 0 48px;
    margin-top: 70px;
  }
  .hero-tag {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 11px; font-weight: 700; color: var(--gold);
    letter-spacing: .14em; text-transform: uppercase; margin-bottom: 28px;
  }
  .hero-tag::before {
    content: ''; display: block; width: 28px; height: 1.5px; background: var(--gold);
  }
  .hero-h1 {
    font-size: clamp(36px, 5.5vw, 72px); font-weight: 900;
    color: #fff; line-height: 1.03; letter-spacing: -.02em;
    max-width: 760px; margin-bottom: 24px;
  }
  .hero-h1 em { color: var(--gold); font-style: normal; }
  .hero-sub {
    font-size: clamp(15px, 1.6vw, 18px); font-weight: 300;
    color: rgba(255,255,255,.65); max-width: 520px;
    line-height: 1.65; margin-bottom: 44px;
  }
  .hero-cta {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 16px 36px; font-size: 13px; font-weight: 700;
    letter-spacing: .06em; text-transform: uppercase;
    border: 1.5px solid rgba(255,255,255,.6); color: #fff;
    background: transparent; cursor: pointer; border-radius: 2px;
    font-family: 'Lato', sans-serif;
    transition: all .25s;
  }
  .hero-cta:hover { background: var(--gold); border-color: var(--gold); color: var(--navy); }
  .hero-cta svg { width: 14px; height: 14px; transition: transform .25s; }
  .hero-cta:hover svg { transform: translateX(4px); }

  .hero-stats-wrap {
    position: absolute; bottom: 48px; left: 0; right: 0;
    z-index: 4;
    padding: 0 48px;
  }
  .hero-stats {
    max-width: 1200px;
    margin: 0 auto;
    display: flex; gap: 0;
    border-top: 0.5px solid rgba(255,255,255,.12);
    padding-top: 28px;
  }
  .hero-stat {
    flex: 1; padding: 0 32px 0 0;
  }
  .hero-stat:first-child { padding-left: 0; }
  .hero-stat:last-child { padding-right: 0; }
  .stat-num { font-size: clamp(24px, 3vw, 38px); font-weight: 900; color: var(--gold); line-height: 1; margin-bottom: 5px; }
  .stat-label { font-size: 11px; font-weight: 400; color: rgba(255,255,255,.45); letter-spacing: .04em; }

  .scroll-hint {
    position: absolute; bottom: 48px; right: 48px;
    display: flex; flex-direction: column; align-items: center; gap: 6px;
    color: rgba(255,255,255,.25); font-size: 10px; letter-spacing: .1em;
  }
  .scroll-line { width: 1px; height: 40px; background: rgba(255,255,255,.2); animation: scrollLine 2s ease-in-out infinite; }
  @keyframes scrollLine {
    0%,100% { transform: scaleY(1); opacity: .4; }
    50% { transform: scaleY(.4); opacity: .15; }
  }

  /* ─── SECTION BASE ─── */
  section { position: relative; }
  .section-tag {
    font-size: 11px; font-weight: 700; color: var(--gold);
    letter-spacing: .14em; text-transform: uppercase;
    display: flex; align-items: center; gap: 10px; margin-bottom: 16px;
  }
  .section-tag::before { content: ''; display: block; width: 24px; height: 1.5px; background: var(--gold); }
  .section-h2 {
    font-size: clamp(28px, 3.5vw, 48px); font-weight: 900;
    color: var(--navy); line-height: 1.08; letter-spacing: -.02em;
    margin-bottom: 20px;
  }
  .section-body {
    font-size: 15px; font-weight: 300; color: #666;
    line-height: 1.75; max-width: 560px;
  }

  .btn-outline {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 13px 28px; font-size: 12px; font-weight: 700;
    letter-spacing: .07em; text-transform: uppercase;
    border: 1.5px solid var(--navy); color: var(--navy);
    background: transparent; cursor: pointer; border-radius: 2px;
    font-family: 'Lato', sans-serif; white-space: nowrap;
    transition: all .2s; text-decoration: none;
  }
  .btn-outline:hover { background: var(--navy); color: #fff; }
  .btn-outline svg { width: 12px; height: 12px; }

  /* ─── MARCAS ESTÁTICA ─── */
  .marcas-section { background: #ffffff; padding: 100px 48px; border-radius: 24px 24px 0 0; position: relative; z-index: 2; margin-top: -24px; }
  .marcas-inner { max-width: 1200px; margin: 0 auto; }
  .marcas-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 60px; }
  .marcas-header .section-body { margin-bottom: 0; }
  .logos-marquee {
    position: relative; overflow: hidden;
    border: 0.5px solid #e0e0e0;
    -webkit-mask-image: linear-gradient(to right, transparent 0, #000 80px, #000 calc(100% - 80px), transparent 100%);
            mask-image: linear-gradient(to right, transparent 0, #000 80px, #000 calc(100% - 80px), transparent 100%);
  }
  .logos-track {
    display: flex; width: max-content;
    animation: logosScroll 32s linear infinite;
  }
  .logos-marquee:hover .logos-track { animation-play-state: paused; }
  .logo-cell {
    flex: 0 0 240px; height: 140px;
    border-right: 0.5px solid #e0e0e0; padding: 0;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer; overflow: hidden; background: #fff;
  }
  .logo-cell:hover .brand-logo-img { transform: scale(1.06); }
  .brand-logo-img {
    width: 100%; height: 100%; object-fit: contain;
    padding: 28px 36px; display: block; transition: transform .3s ease;
  }
  @keyframes logosScroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
  }

  /* ─── INOVAÇÃO ─── */
  .inov-section { display: grid; grid-template-columns: 1fr 1fr; min-height: 580px; border-radius: 24px 24px 0 0; overflow: hidden; position: relative; z-index: 3; margin-top: -24px; }
  .inov-image {
    position: relative; overflow: hidden;
    background: #1F242B;
  }
  .inov-slide {
    position: absolute; inset: 0;
    background-size: cover; background-position: center center; background-repeat: no-repeat;
    opacity: 0; transition: opacity 1.2s ease-in-out;
  }
  .inov-slide.is-active { opacity: 1; }
  .inov-image-inner {
    position: absolute; inset: 0; z-index: 2;
    background: linear-gradient(to right, rgba(10,20,10,.3) 0%, rgba(10,20,10,.1) 100%);
    pointer-events: none;
  }
  .plant-icon {
    position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
    opacity: .08;
  }
  .inov-text {
    background: #1F242B;
    padding: 80px 64px;
    display: flex; flex-direction: column; justify-content: center;
  }
  .inov-text .section-tag { color: var(--gold-bright); }
  .inov-text .section-tag::before { background: var(--gold-bright); }
  .inov-text .section-h2 { color: #fff; }
  .inov-text .section-body { color: rgba(255,255,255,.55); max-width: 440px; margin-bottom: 16px; }
  .inov-numbers {
    display: grid; grid-template-columns: 1fr 1fr; gap: 20px;
    margin: 32px 0;
  }
  .inov-num-item {}
  .inov-num-val { font-size: 28px; font-weight: 900; color: var(--gold); line-height: 1; margin-bottom: 4px; }
  .inov-num-label { font-size: 11px; color: rgba(255,255,255,.38); line-height: 1.4; }
  .btn-gold {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 14px 32px; font-size: 12px; font-weight: 700;
    letter-spacing: .07em; text-transform: uppercase;
    border: none; background: var(--gold); color: var(--navy);
    cursor: pointer; border-radius: 2px; font-family: 'Lato', sans-serif;
    transition: all .2s; align-self: flex-start; text-decoration: none;
  }
  .btn-gold:hover { background: var(--navy); color: #fff; }

  /* ─── ESG ─── */
  .esg-section {
    position: relative; min-height: 560px;
    background: url('https://images.unsplash.com/photo-1500382017468-9049fed747ef?w=1800&q=80&fit=crop') center center / cover no-repeat;
    display: flex; align-items: center; justify-content: center;
    overflow: hidden;
    border-radius: 24px 24px 0 0;
    z-index: 4; margin-top: -24px;
  }
  .esg-bg {
    position: absolute; inset: 0;
    background: linear-gradient(160deg, rgba(8,22,8,.82) 0%, rgba(15,35,15,.75) 50%, rgba(5,18,5,.88) 100%);
  }
  .esg-content {
    position: relative; z-index: 2;
    text-align: center; padding: 100px 48px;
    max-width: 800px;
  }
  .esg-content .section-tag { justify-content: center; }
  .esg-content .section-tag::before { display: none; }
  .esg-content .section-h2 { color: #fff; margin-bottom: 24px; }
  .esg-content .section-body { color: rgba(255,255,255,.55); margin: 0 auto 16px; }
  .esg-badges {
    display: flex; align-items: center; justify-content: center;
    gap: 16px; margin: 44px 0 40px;
  }
  .esg-badge {
    background: rgba(255,255,255,.06); border: 0.5px solid rgba(255,255,255,.15);
    border-radius: 8px; padding: 16px 24px;
    display: flex; flex-direction: column; align-items: center; gap: 6px;
    min-width: 120px;
  }
  .esg-badge-name { font-size: 14px; font-weight: 700; color: #fff; }
  .esg-badge-sub { font-size: 10px; color: rgba(255,255,255,.4); letter-spacing: .04em; }
  .esg-badge.gold { border-color: rgba(209,175,43,.4); background: rgba(209,175,43,.07); }
  .esg-badge.gold .esg-badge-name { color: var(--gold); }
  .btn-outline-white {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 14px 32px; font-size: 12px; font-weight: 700;
    letter-spacing: .07em; text-transform: uppercase;
    border: 1.5px solid rgba(255,255,255,.4); color: #fff;
    background: transparent; cursor: pointer; border-radius: 2px;
    font-family: 'Lato', sans-serif; transition: all .2s; text-decoration: none;
  }
  .btn-outline-white:hover { background: rgba(255,255,255,.1); border-color: #fff; }

  /* ─── NEWSROOM ─── */
  .news-section { background: var(--white); padding: 100px 48px; border-radius: 24px 24px 0 0; position: relative; z-index: 5; margin-top: -24px; }
  .news-inner { max-width: 1200px; margin: 0 auto; }
  .news-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 52px; }
  .news-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; align-items: start; }
  .news-card {
    background: var(--white); border: 0.5px solid var(--light-gray);
    border-radius: 12px; overflow: hidden; cursor: pointer;
    transition: transform .2s, box-shadow .2s;
    display: flex; flex-direction: column;
  }
  .news-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,0,0,.08); }
  .news-img {
    height: 200px; width: 100%; overflow: hidden;
    position: relative; flex-shrink: 0;
  }
  .news-img-inner {
    position: absolute; inset: 0;
    display: flex; align-items: center; justify-content: center;
    font-size: 11px; font-weight: 700; letter-spacing: .1em;
    text-transform: uppercase; color: rgba(255,255,255,.25);
  }
  .news-cat {
    display: inline-block; width: fit-content; padding: 4px 10px;
    font-size: 9.5px; font-weight: 700; letter-spacing: .08em;
    text-transform: uppercase; color: var(--gold);
    background: rgba(209,175,43,.12);
    border-radius: 999px;
    line-height: 1.4;
    margin-bottom: 10px;
  }
  .news-body { padding: 24px; display: flex; flex-direction: column; flex: 1; }
  .news-date { font-size: 11px; color: #aaa; margin-bottom: 8px; }
  .news-title { font-size: 15px; font-weight: 700; color: var(--navy); line-height: 1.4; margin-bottom: 12px; flex: 1; }
  .news-link {
    font-size: 12px; font-weight: 700; color: var(--gold);
    letter-spacing: .04em; display: flex; align-items: center; gap: 5px;
    cursor: pointer; background: none; border: none;
    font-family: 'Lato', sans-serif; padding: 0; transition: gap .15s;
  }
  .news-link:hover { gap: 9px; }
  .news-link svg { width: 11px; height: 11px; }

  /* ─── FOOTER ─── */
  footer {
    background: var(--navy);
    padding: 72px 48px 0;
    border-radius: 24px 24px 0 0;
    position: relative; z-index: 6; margin-top: -24px;
  }
  .footer-inner { max-width: 1200px; margin: 0 auto; }
  .footer-top {
    display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr;
    gap: 48px; padding-bottom: 56px;
    border-bottom: 0.5px solid rgba(255,255,255,.1);
  }
  .footer-brand-col img { height: 28px; margin-bottom: 20px; }
  .footer-brand-col .logo-fallback { margin-bottom: 20px; font-size: 17px; }
  .footer-tagline { font-size: 13px; color: rgba(255,255,255,.38); line-height: 1.7; max-width: 260px; }
  .footer-socials { display: flex; gap: 10px; margin-top: 28px; }
  .social-btn {
    width: 34px; height: 34px; border-radius: 4px;
    border: 0.5px solid rgba(255,255,255,.15);
    display: flex; align-items: center; justify-content: center;
    cursor: pointer; transition: all .15s; background: none;
    color: rgba(255,255,255,.45);
  }
  .social-btn:hover { border-color: var(--gold); color: var(--gold); }
  .footer-col-title {
    font-size: 11px; font-weight: 700; color: rgba(255,255,255,.9);
    letter-spacing: .1em; text-transform: uppercase; margin-bottom: 20px;
  }
  .footer-links { display: flex; flex-direction: column; gap: 10px; }
  .footer-link {
    font-size: 13px; color: rgba(255,255,255,.38);
    cursor: pointer; transition: color .15s; background: none;
    border: none; font-family: 'Lato', sans-serif; text-align: left;
    padding: 0;
  }
  .footer-link:hover { color: rgba(255,255,255,.8); }
  .footer-bottom {
    padding: 24px 0;
    display: flex; justify-content: space-between; align-items: center;
  }
  .footer-copy { font-size: 11px; color: rgba(255,255,255,.22); }

  /* ─── ELEMENTO GRÁFICO LATERAL COGNY ─── */
  .brand-element {
    position: absolute;
    pointer-events: none;
    overflow: hidden;
  }
  /* Hero: canto superior direito + inferior esquerdo */
  .brand-el-hero-tr {
    top: 0; right: 0px;
    width: auto; height: 900px;
    opacity: .9;
    z-index: 3;
  }
  /* Inovação: borda direita do painel escuro */
  .inov-text { position: relative; overflow: hidden; }
  /* Footer: canto superior direito */
  footer { overflow: hidden; }
  .brand-el-footer {
    top: -80px; right: -30px;
    width: 100px; height: 400px;
    opacity: .1;
    transform: rotate(180deg) scaleX(-1);
    z-index: 0;
  }
  .brand-element svg, .brand-element img { height: 100%; width: auto; display: block; }
  .reveal { opacity: 1; transform: none; }

  /* ─── HORIZONTAL BRANDS SCROLL ─── */
  .mob-menu-btn {
    display: none; background: none; border: none; cursor: pointer;
    flex-direction: column; gap: 5px; padding: 6px; z-index: 1100;
  }
  .mob-menu-btn span {
    display: block; width: 22px; height: 1.5px;
    background: rgba(255,255,255,.85); border-radius: 2px; transition: all .25s;
  }
  .mob-menu-btn.open span:nth-child(1) { transform: rotate(45deg) translate(4.5px, 4.5px); }
  .mob-menu-btn.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
  .mob-menu-btn.open span:nth-child(3) { transform: rotate(-45deg) translate(4.5px, -4.5px); }

  /* ─── MOBILE DRAWER ─── */
  .mob-drawer {
    position: fixed; top: 0; left: 0; bottom: 0;
    width: 80%; max-width: 320px;
    background: var(--navy); z-index: 1050;
    transform: translateX(-100%);
    transition: transform .3s ease;
    box-shadow: 4px 0 24px rgba(0,0,0,.4);
    display: flex; flex-direction: column;
    visibility: hidden;
  }
  .mob-drawer.open { transform: translateX(0); visibility: visible; }
  .mob-drawer-logo {
    padding: 20px 24px 16px;
    border-bottom: 0.5px solid rgba(255,255,255,.08);
    flex-shrink: 0;
  }
  .mob-drawer-logo img { height: 20px; display: block; }
  .mob-drawer-logo span { font-size: 15px; font-weight: 900; color: #fff; letter-spacing: .06em; }
  .mob-drawer-logo span em { color: var(--gold); font-style: normal; }
  .mob-drawer-nav { flex: 1; overflow-y: auto; padding-top: 8px; }
  .mob-drawer-footer { flex-shrink: 0; border-top: 0.5px solid rgba(255,255,255,.08); }
  .mob-overlay {
    position: fixed; inset: 0; background: rgba(0,0,0,.5);
    z-index: 1040; opacity: 0; transition: opacity .3s;
    visibility: hidden;
  }
  .mob-overlay.open { opacity: 1; visibility: visible; }
  .mob-nav-item { border-bottom: 0.5px solid rgba(255,255,255,.07); }
  .mob-nav-btn {
    display: flex; justify-content: space-between; align-items: center;
    width: 100%; padding: 17px 24px; background: none; border: none;
    color: rgba(255,255,255,.82); font-size: 16px; font-weight: 700;
    font-family: 'Lato', sans-serif; cursor: pointer; letter-spacing: .01em;
  }
  .mob-nav-btn svg { width: 10px; height: 10px; transition: transform .2s; opacity: .5; flex-shrink: 0; }
  .mob-nav-btn.open svg { transform: rotate(180deg); }
  .mob-sub { max-height: 0; overflow: hidden; transition: max-height .25s ease; background: rgba(0,0,0,.2); }
  .mob-sub.open { max-height: 300px; }
  .mob-sub-link {
    display: block; padding: 11px 24px 11px 36px;
    font-size: 13px; color: rgba(255,255,255,.5);
    background: none; border: none; width: 100%; text-align: left;
    font-family: 'Lato', sans-serif; cursor: pointer; transition: color .15s;
  }
  .mob-sub-link:hover { color: var(--gold); }
  .mob-langs {
    display: flex; gap: 16px; padding: 16px 24px;
    border-bottom: 0.5px solid rgba(255,255,255,.07);
  }
  .mob-lang-btn {
    font-size: 12px; font-weight: 700; color: rgba(255,255,255,.4);
    background: none; border: none; cursor: pointer;
    font-family: 'Lato', sans-serif; letter-spacing: .06em;
  }
  .mob-lang-btn.curr { color: var(--gold); }
  .mob-socials {
    display: flex; gap: 10px; padding: 18px 24px;
  }
  .mob-social-btn {
    width: 34px; height: 34px; border-radius: 4px;
    border: 0.5px solid rgba(255,255,255,.15);
    display: flex; align-items: center; justify-content: center;
    cursor: pointer; background: none; color: rgba(255,255,255,.45);
    transition: all .15s;
  }
  .mob-social-btn:hover { border-color: var(--gold); color: var(--gold); }

  /* ─── RESPONSIVE ─── */
  @media (max-width: 1024px) {
    .nav-links { display: none; }
    .nav-right { display: none; }
    .mob-menu-btn { display: flex; }
    .mob-drawer { display: block; }
    .mob-overlay { display: block; }
    .header-inner { padding: 0 24px; }
  }

  @media (max-width: 768px) {
    /* Hero */
    .hero-content { padding: 0 24px; }
    .brand-el-hero-tr { top: 0; right: 0px; width: auto; height: 550px; opacity: .9; z-index: 3; }
    .hero-stats-wrap { padding: 0 24px; bottom: 32px; }
    .hero-stats {
      display: grid; grid-template-columns: 1fr 1fr;
      gap: 20px; border-top: 0.5px solid rgba(255,255,255,.12);
      padding-top: 20px; padding-bottom: 40px;
    }
    .hero-stat { border-right: none; padding: 0; }
    .scroll-hint { display: none; }

    /* Marcas — stack vertically */
    .marcas-section { padding: 60px 24px; }
    .marcas-header {
      flex-direction: column; align-items: flex-start;
      gap: 24px; margin-bottom: 32px;
    }
    .marcas-header .section-body { margin-bottom: 0; }

    /* Logos marquee — cells menores no mobile */
    .logo-cell { flex: 0 0 180px; height: 110px; }
    .brand-logo-img { padding: 20px 28px; }

    /* Inovação */
    .inov-section { grid-template-columns: 1fr; }
    .inov-image { min-height: 260px; }
    .inov-text { padding: 48px 24px; }
    .inov-numbers { grid-template-columns: 1fr 1fr; }

    /* ESG */
    .esg-content { padding: 64px 24px; }
    .esg-badges { flex-wrap: wrap; gap: 12px; }
    .esg-badge { min-width: calc(50% - 6px); flex: 1; }

    /* Newsroom */
    .news-section { padding: 60px 24px 80px; }
    .news-header { flex-direction: column; align-items: flex-start; gap: 20px; margin-bottom: 32px; }
    .news-grid { grid-template-columns: 1fr; }
    .news-card { margin-bottom: 0; }

    /* Footer */
    footer { padding: 48px 24px 0; }
    .footer-top { grid-template-columns: 1fr; gap: 36px; }
    .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  }

  .footer-addresses { display: flex; flex-direction: column; gap: 8px; padding: 20px 0 0; border-top: 0.5px solid rgba(255,255,255,.08); margin-top: 4px; }
  .footer-address-item { display: flex; align-items: flex-start; gap: 8px; font-size: 11px; color: rgba(255,255,255,.28); line-height: 1.5; }
  .footer-address-item svg { flex-shrink: 0; margin-top: 1px; }
  .footer-address-item strong { color: rgba(255,255,255,.45); font-weight: 700; }
  .footer-copy-lang { font-size: 11px; color: rgba(255,255,255,.22); }
