

    :root {
      --red:        #C8102E;
      --red-dark:   #9B0B21;
      --red-light:  #E8294A;
      --white:      #FFFFFF;
      --off-white:  #FAFAFA;
      --cream:      #F7F5F2;
      --gray-light: #EBEBEB;
      --gray-mid:   #C0C0C0;
      --gray-dark:  #444444;
      --black:      #111111;
      --charcoal:   #2A2A2A;
    }

    * { margin: 0; padding: 0; box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    body {
      font-family: 'Barlow', sans-serif;
      background: var(--white);
      color: var(--black);
      overflow-x: hidden;
    }

    /* ============================================================
       NAVEGAÇÃO
    ============================================================ */
    nav {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 1000;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 64px;
      height: 76px;
      background: rgba(255, 255, 255, 0.98);
      border-bottom: 1px solid var(--gray-light);
      backdrop-filter: blur(16px) saturate(1.2);
      box-shadow: 0 1px 40px rgba(26, 22, 20, 0.08);
    }

    .nav-logo {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 22px;
      letter-spacing: 4px;
      color: var(--black);
      text-decoration: none;
      display: flex;
      align-items: center;
      gap: 6px;
    }
    .nav-logo span { color: var(--red); }

    .nav-links { display: flex; gap: 44px; list-style: none; align-items: center; }
    .nav-links a {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 2px;
      text-transform: uppercase;
      text-decoration: none;
      color: var(--gray-dark);
      transition: color 0.25s;
      position: relative;
    }
    .nav-links a::after {
      content: '';
      position: absolute;
      bottom: -5px; left: 0; right: 0;
      height: 1px;
      background: var(--red);
      transform: scaleX(0);
      transform-origin: left;
      transition: transform 0.35s ease;
    }
    .nav-links a:hover { color: var(--black); }
    .nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }
    .nav-links a.active { color: var(--red); }

    .nav-cta {
      background: var(--red) !important;
      color: #fff !important;
      padding: 10px 22px !important;
      font-family: 'Barlow Condensed', sans-serif !important;
      font-size: 10px !important;
      font-weight: 700 !important;
      letter-spacing: 2.5px !important;
      transition: background 0.25s, transform 0.2s !important;
    }
    .nav-cta:hover { background: var(--red-dark) !important; transform: translateY(-1px) !important; }
    .nav-cta::after { display: none !important; }

    /* ============================================================
       HERO INTERNO
    ============================================================ */
    #hero-interno {
      margin-top: 76px;
      padding: 80px 80px 60px;
      background: linear-gradient(135deg, var(--cream) 0%, var(--off-white) 100%);
      border-bottom: 4px solid var(--red);
      position: relative;
      overflow: hidden;
    }

    #hero-interno::before {
      content: '';
      position: absolute;
      top: -100px; right: -100px;
      width: 400px; height: 400px;
      background: radial-gradient(circle, rgba(200, 16, 46, 0.05) 0%, transparent 70%);
      pointer-events: none;
    }

    .hero-interno-content {
      max-width: 900px;
      position: relative;
      z-index: 1;
    }

    .hero-interno-tag {
      display: inline-block;
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 4px;
      text-transform: uppercase;
      color: var(--red);
      border: 1px solid var(--red);
      padding: 6px 16px;
      margin-bottom: 24px;
    }

    .hero-interno-title {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(48px, 6vw, 72px);
      line-height: 1;
      color: var(--black);
      letter-spacing: 2px;
      margin-bottom: 20px;
    }

    .hero-interno-subtitle {
      font-size: 20px;
      line-height: 1.6;
      color: var(--gray-dark);
      font-weight: 400;
      max-width: 700px;
    }

    /* ============================================================
       SECÇÃO HISTÓRIA
    ============================================================ */
    #historia {
      padding: 120px 80px;
      background: var(--white);
    }

    .historia-intro {
      max-width: 900px;
      margin: 0 auto 80px;
      text-align: center;
    }

    .section-tag {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 4px;
      text-transform: uppercase;
      color: var(--red);
      display: flex;
      align-items: center;
      gap: 12px;
      margin-bottom: 16px;
      justify-content: center;
    }
    .section-tag::before { content: ''; width: 32px; height: 2px; background: var(--red); flex-shrink: 0; }
    .section-tag::after { content: ''; width: 32px; height: 2px; background: var(--red); flex-shrink: 0; }

    .section-title {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(42px, 5vw, 64px);
      letter-spacing: 2px;
      line-height: 1.1;
      color: var(--black);
      margin-bottom: 28px;
    }

    .historia-intro-text {
      font-size: 19px;
      line-height: 1.8;
      color: var(--black);
      font-weight: 400;
    }

    /* Grid de conteúdo */
    .historia-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      align-items: start;
      max-width: 1400px;
      margin: 0 auto 80px;
    }

    .historia-visual {
      position: relative;
    }

    .historia-img {
      width: 100%;
      aspect-ratio: 4/3;
      background: var(--gray-light);
      border: 1px solid var(--gray-light);
      position: relative;
      overflow: hidden;
    }

    .historia-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .historia-img-overlay {
      position: absolute;
      bottom: 0; left: 0; right: 0;
      background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 100%);
      padding: 24px;
      color: white;
    }

    .historia-img-caption {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 13px;
      font-weight: 600;
      letter-spacing: 2px;
      text-transform: uppercase;
      opacity: 0.9;
    }

    .historia-deco {
      position: absolute;
      top: -16px; right: -16px;
      width: 80px; height: 80px;
      border-top: 3px solid var(--red);
      border-right: 3px solid var(--red);
      z-index: -1;
    }
.historia-content-reveal{
      font-size: 18px;
      line-height: 1.8;
      color: var(--black);
      font-weight: 400;
      margin-top: 110px;
    }
    .historia-content p {
      font-size: 18px;
      line-height: 1.8;
      color: var(--black);
      font-weight: 400;
      margin-bottom: 24px;
    }

    .historia-content p:last-child {
      margin-bottom: 0;
    }

    /* ============================================================
       PILARES
    ============================================================ */
    #pilares {
      padding: 100px 80px;
      background: var(--cream);
    }

    .pilares-header {
      text-align: center;
      max-width: 800px;
      margin: 0 auto 64px;
    }

    .pilares-header .section-title {
      margin-bottom: 20px;
    }

    .pilares-header p {
      font-size: 18px;
      line-height: 1.7;
      color: var(--black);
      font-weight: 400;
    }

    .pilares-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 32px;
      max-width: 1200px;
      margin: 0 auto;
    }

    .pilar-card {
      background: var(--white);
      padding: 48px 40px;
      border: 1px solid var(--gray-light);
      border-top: 4px solid var(--red);
      text-align: center;
      transition: all .3s;
    }

    .pilar-card:hover {
      box-shadow: 0 12px 48px rgba(0,0,0,0.08);
      transform: translateY(-4px);
    }

    .pilar-icon {
      width: 72px;
      height: 72px;
      background: rgba(200, 16, 46, 0.08);
      border: 2px solid rgba(200, 16, 46, 0.2);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 28px;
      transition: all .3s;
    }

    .pilar-card:hover .pilar-icon {
      background: var(--red);
      border-color: var(--red);
    }

    .pilar-icon svg {
      width: 32px;
      height: 32px;
      fill: none;
      stroke: var(--red);
      stroke-width: 2;
      transition: stroke .3s;
    }

    .pilar-card:hover .pilar-icon svg {
      stroke: #fff;
    }

    .pilar-title {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 28px;
      letter-spacing: 2px;
      color: var(--black);
      margin-bottom: 16px;
    }

    .pilar-desc {
      font-size: 16px;
      line-height: 1.7;
      color: var(--black);
      font-weight: 400;
    }

    /* ============================================================
       EVOLUÇÃO E VISÃO
    ============================================================ */
    #evolucao {
      padding: 120px 80px;
      background: var(--white);
    }

    .evolucao-content {
      max-width: 1100px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: center;
    }

    .evolucao-text h3 {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 42px;
      letter-spacing: 2px;
      color: var(--black);
      margin-bottom: 24px;
      line-height: 1.1;
    }

    .evolucao-text p {
      font-size: 18px;
      line-height: 1.8;
      color: var(--black);
      font-weight: 400;
      margin-bottom: 20px;
    }

    .evolucao-highlight {
      background: var(--cream);
      border-left: 4px solid var(--red);
      padding: 32px 36px;
      margin-top: 32px;
    }

    .evolucao-highlight-text {
      font-size: 20px;
      line-height: 1.7;
      color: var(--black);
      font-weight: 500;
      font-style: italic;
    }

    /* ============================================================
       PRESENTE E FUTURO
    ============================================================ */
    #presente {
      padding: 100px 80px;
      background: var(--charcoal);
      color: white;
      position: relative;
      overflow: hidden;
    }

    #presente::before {
      content: '';
      position: absolute;
      top: 0; left: 0;
      width: 100%; height: 100%;
      background: linear-gradient(135deg, rgba(200, 16, 46, 0.05) 0%, transparent 50%);
      pointer-events: none;
    }

    .presente-content {
      max-width: 1000px;
      margin: 0 auto;
      text-align: center;
      position: relative;
      z-index: 1;
    }

    .presente-content .section-tag {
      color: var(--red);
    }
    .presente-content .section-tag::before,
    .presente-content .section-tag::after {
      background: var(--red);
    }

    .presente-content .section-title {
      color: white;
      margin-bottom: 32px;
    }

    .presente-text {
      font-size: 19px;
      line-height: 1.8;
      color: rgba(255, 255, 255, 0.85);
      font-weight: 400;
      margin-bottom: 28px;
    }

    .presente-final {
      font-size: 24px;
      line-height: 1.6;
      color: white;
      font-weight: 600;
      margin-top: 48px;
      padding-top: 48px;
      border-top: 1px solid rgba(255, 255, 255, 0.15);
    }

    .presente-final span {
      color: var(--red);
      display: block;
      margin-top: 12px;
    }

    /* ============================================================
       CTA FINAL
    ============================================================ */
    #cta-sobre {
      padding: 80px 80px;
      background: var(--cream);
      text-align: center;
    }

    .cta-sobre-content {
      max-width: 700px;
      margin: 0 auto;
    }

    .cta-sobre-title {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 48px;
      letter-spacing: 2px;
      color: var(--black);
      margin-bottom: 24px;
    }

    .cta-sobre-text {
      font-size: 17px;
      line-height: 1.7;
      color: var(--black);
      font-weight: 400;
      margin-bottom: 36px;
    }

    .btn-primary {
      background: var(--red);
      color: #fff;
      padding: 18px 48px;
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 14px;
      font-weight: 700;
      letter-spacing: 2px;
      text-transform: uppercase;
      text-decoration: none;
      border: 2px solid var(--red);
      transition: all .25s;
      display: inline-block;
    }
    .btn-primary:hover { background: var(--red-dark); border-color: var(--red-dark); transform: translateY(-2px); }

    /* ============================================================
       FOOTER
    ============================================================ */
    footer { background: var(--charcoal); padding: 64px 80px 32px; }

    .footer-grid {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1fr;
      gap: 48px;
      margin-bottom: 48px;
      padding-bottom: 48px;
      border-bottom: 1px solid rgba(255,255,255,0.08);
    }

    .footer-brand-name { font-family: 'Bebas Neue', sans-serif; font-size: 32px; letter-spacing: 3px; color: #fff; margin-bottom: 16px; }
    .footer-brand-name span { color: var(--red); }
    .footer-brand-desc { font-size: 13px; line-height: 1.7; color: rgba(255,255,255,0.4); font-weight: 300; max-width: 260px; margin-bottom: 28px; }

    .footer-socials { display: flex; gap: 10px; }
    .social-btn {
      width: 36px; height: 36px;
      border: 1px solid rgba(255,255,255,0.15);
      display: flex; align-items: center; justify-content: center;
      transition: all .2s; cursor: pointer;
    }
    .social-btn:hover { border-color: var(--red); background: var(--red); }
    .social-btn svg { width: 16px; height: 16px; fill: rgba(255,255,255,0.5); transition: fill .2s; }
    .social-btn:hover svg { fill: #fff; }

    .footer-col-title { font-family: 'Barlow Condensed', sans-serif; font-size: 13px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: #fff; margin-bottom: 20px; }
    .footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
    .footer-links a { font-size: 13px; color: rgba(255,255,255,0.45); text-decoration: none; transition: color .2s; font-weight: 300; }
    .footer-links a:hover { color: var(--red); }

    .footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
    .footer-copy { font-size: 12px; color: rgba(255,255,255,0.3); font-weight: 300; }
    .footer-cert { display: flex; gap: 12px; align-items: center; }
    .cert-badge {
      border: 1px solid rgba(255,255,255,0.15);
      padding: 6px 14px;
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 10px; font-weight: 700; letter-spacing: 2px;
      text-transform: uppercase; color: rgba(255,255,255,0.35);
    }

    .reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
    .reveal.visible { opacity: 1; transform: translateY(0); }

    @keyframes fadeUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }

    @media (max-width: 1024px) {
      nav { padding: 0 32px; }
      .nav-links { display: none; }
      #hero-interno, #historia, #pilares, #evolucao, #presente, #cta-sobre { padding: 60px 32px; }
      .historia-grid, .evolucao-content { grid-template-columns: 1fr; gap: 40px; }
      .pilares-grid { grid-template-columns: 1fr; }
      footer { padding: 48px 32px 24px; }
      .footer-grid { grid-template-columns: 1fr 1fr; }
    }
 .nav-logo {
      max-width: 230px;
      max-height: 100px;
      object-fit: contain;
      display: block;
      text-decoration: none;
    }
  