
      :root {
        --fonte-corpo: "Roboto", system-ui, Arial, sans-serif;
        --fonte-titulo: "Raleway", sans-serif;
        --fonte-menu: "Ubuntu", sans-serif;
        --cor-fundo: #ffffff;
        --cor-texto: #444444;
        --cor-titulo: #5f687b;
        --cor-destaque: #1662a5;
        --cor-destaque-fundo: rgba(6, 31, 62, 1);
        --cor-superficie: #ffffff;
        --cor-contraste: #ffffff;
        --menu-link2: #ffff;
        --menu-link-hover: #d9b36a;
        --menu-text-item: #fef1cc;
        --menu-mobile-fundo: rgba(6, 31, 62, 1);
        --deep-navy: #061f3e;
        --gold: #fef1cc;
      }
      .page-title-hero {
        background: linear-gradient(
          135deg,
          var(--deep-navy) 0%,
          #1a3a6b 60%,
          #1662a5 100%
        );
        padding: 120px 0 60px;
        position: relative;
        overflow: hidden;
      }
      .page-title-hero::before {
        content: "";
        position: absolute;
        inset: 0;
        background: url("assets/img/sofa.png") center/cover no-repeat;
        opacity: 0.35;
      }
      .page-title-hero::after {
        content: "";
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: linear-gradient(
          90deg,
          var(--deep-navy),
          var(--menu-link-hover),
          var(--deep-navy)
        );
      }
      .page-title-hero .container {
        position: relative;
        z-index: 1;
      }
      .page-title-hero h1 {
        font-family: var(--fonte-titulo);
        font-size: clamp(2rem, 4vw, 3rem);
        font-weight: 800;
        color: var(--gold);
        margin: 0 0 8px;
      }
      .breadcrumb-nav ol {
        list-style: none;
        display: flex;
        align-items: center;
        gap: 8px;
        padding: 0;
        margin: 0;
      }
      .breadcrumb-nav ol li {
        font-size: 14px;
        color: rgba(255, 255, 255, 0.6);
      }
      .breadcrumb-nav ol li a {
        color: var(--menu-link-hover);
        text-decoration: none;
      }
      .breadcrumb-nav ol li + li::before {
        content: "›";
        margin-right: 8px;
      }
      .breadcrumb-nav ol li.current {
        color: rgba(255, 255, 255, 0.85);
      }

      .sec-legal {
        padding: 80px 0;
        background: #f4f6f9;
      }
      .legal-card {
        background: #fff;
        border-radius: 14px;
        box-shadow: 0 4px 32px rgba(6, 31, 62, 0.08);
        padding: 56px 60px;
      }
      @media (max-width: 767px) {
        .legal-card {
          padding: 32px 24px;
        }
      }
      @media (max-width: 575px) {
        .legal-card {
          padding: 24px 16px;
        }
      }

      .legal-meta {
        display: flex;
        align-items: center;
        gap: 20px;
        flex-wrap: wrap;
        margin-bottom: 40px;
        padding-bottom: 24px;
        border-bottom: 2px solid #e5e9f0;
      }
      .legal-badge {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        background: color-mix(in srgb, var(--cor-destaque), transparent 92%);
        color: var(--cor-destaque);
        font-size: 12px;
        font-weight: 700;
        letter-spacing: 1px;
        text-transform: uppercase;
        padding: 6px 14px;
        border-radius: 20px;
      }
      .legal-date {
        font-size: 13px;
        color: color-mix(in srgb, var(--cor-texto), transparent 40%);
      }
      .legal-date strong {
        color: var(--cor-texto);
      }
      .legal-intro {
        font-size: 16px;
        color: var(--cor-texto);
        line-height: 1.85;
        margin-bottom: 40px;
        padding: 20px 24px;
        background: color-mix(in srgb, var(--cor-destaque), transparent 94%);
        border-left: 4px solid var(--menu-link-hover);
        border-radius: 0 8px 8px 0;
      }

      .legal-section {
        margin-bottom: 40px;
      }
      .legal-section h2 {
        font-family: var(--fonte-titulo);
        font-size: 20px;
        font-weight: 700;
        color: var(--deep-navy);
        margin-bottom: 14px;
        display: flex;
        align-items: center;
        gap: 10px;
      }
      .legal-section h2 .sec-num {
        width: 32px;
        height: 32px;
        border-radius: 50%;
        background: linear-gradient(135deg, var(--cor-destaque), #2277c0);
        color: #fff;
        font-size: 13px;
        font-weight: 800;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
      }
      .legal-section p {
        font-size: 15px;
        color: var(--cor-texto);
        line-height: 1.85;
        margin-bottom: 12px;
      }
      .legal-section ul {
        padding-left: 0;
        list-style: none;
        margin-bottom: 12px;
      }
      .legal-section ul li {
        font-size: 15px;
        color: var(--cor-texto);
        line-height: 1.75;
        padding: 6px 0 6px 24px;
        position: relative;
      }
      .legal-section ul li::before {
        content: "›";
        position: absolute;
        left: 6px;
        color: var(--menu-link-hover);
        font-weight: 700;
        font-size: 16px;
      }
      .legal-divider {
        height: 1px;
        background: #e5e9f0;
        margin: 32px 0;
      }

      /* Direitos cards */
      .rights-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 14px;
        margin: 20px 0;
      }
      .right-card {
        padding: 18px;
        background: #f4f6f9;
        border-radius: 10px;
        border-top: 3px solid var(--menu-link-hover);
      }
      .right-card i {
        font-size: 26px;
        color: var(--cor-destaque);
        display: block;
        margin-bottom: 10px;
      }
      .right-card strong {
        display: block;
        font-size: 14px;
        font-weight: 700;
        color: var(--deep-navy);
        margin-bottom: 6px;
      }
      .right-card span {
        font-size: 13px;
        color: var(--cor-texto);
        line-height: 1.5;
      }

      .legal-contact-box {
        background: linear-gradient(135deg, var(--deep-navy) 0%, #1662a5 100%);
        border-radius: 12px;
        padding: 28px 32px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 20px;
        flex-wrap: wrap;
        margin-top: 48px;
      }
      .legal-contact-box h4 {
        font-family: var(--fonte-titulo);
        font-size: 18px;
        font-weight: 700;
        color: var(--gold);
        margin: 0 0 6px;
      }
      .legal-contact-box p {
        font-size: 14px;
        color: rgba(255, 255, 255, 0.8);
        margin: 0;
      }
      .legal-contact-box a.btn-contact {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        padding: 12px 24px;
        border-radius: 50px;
        background: linear-gradient(135deg, #25d366, #128c50);
        color: #fff;
        font-family: var(--fonte-titulo);
        font-size: 14px;
        font-weight: 700;
        text-decoration: none;
        white-space: nowrap;
        box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
        transition:
          transform 0.2s,
          box-shadow 0.2s;
      }
      .legal-contact-box a.btn-contact:hover {
        color: #fff;
        transform: translateY(-2px);
        box-shadow: 0 8px 24px rgba(37, 211, 102, 0.5);
      }

      .legal-sidebar {
        position: sticky;
        top: 100px;
      }
      .legal-nav-box {
        background: #fff;
        border-radius: 12px;
        box-shadow: 0 4px 24px rgba(6, 31, 62, 0.08);
        padding: 24px;
        margin-bottom: 20px;
      }
      .legal-nav-box h5 {
        font-family: var(--fonte-titulo);
        font-size: 14px;
        font-weight: 700;
        color: var(--deep-navy);
        text-transform: uppercase;
        letter-spacing: 1px;
        margin-bottom: 16px;
        padding-bottom: 10px;
        border-bottom: 2px solid var(--menu-link-hover);
      }
      .legal-nav-links {
        display: flex;
        flex-direction: column;
        gap: 4px;
      }
      .legal-nav-links a {
        font-size: 13px;
        color: var(--cor-texto);
        text-decoration: none;
        padding: 8px 12px;
        border-radius: 6px;
        transition: all 0.2s;
        border-left: 3px solid transparent;
        display: flex;
        align-items: center;
        gap: 8px;
      }
      .legal-nav-links a i {
        font-size: 14px;
        color: var(--cor-destaque);
        flex-shrink: 0;
      }
      .legal-nav-links a:hover,
      .legal-nav-links a.active {
        background: #f4f6f9;
        color: var(--cor-destaque);
        border-left-color: var(--menu-link-hover);
      }
      .other-docs-box {
        background: #fff;
        border-radius: 12px;
        box-shadow: 0 4px 24px rgba(6, 31, 62, 0.08);
        padding: 24px;
      }
      .other-docs-box h5 {
        font-family: var(--fonte-titulo);
        font-size: 14px;
        font-weight: 700;
        color: var(--deep-navy);
        text-transform: uppercase;
        letter-spacing: 1px;
        margin-bottom: 16px;
        padding-bottom: 10px;
        border-bottom: 2px solid var(--menu-link-hover);
      }
      .doc-link {
        display: flex;
        align-items: center;
        gap: 12px;
        padding: 12px;
        border-radius: 8px;
        background: #f4f6f9;
        text-decoration: none;
        margin-bottom: 8px;
        transition: all 0.2s;
        border: 1px solid transparent;
      }
      .doc-link:last-child {
        margin-bottom: 0;
      }
      .doc-link i {
        font-size: 22px;
        color: var(--cor-destaque);
        flex-shrink: 0;
      }
      .doc-link span {
        font-size: 13px;
        font-weight: 600;
        color: var(--cor-titulo);
        line-height: 1.4;
      }
      .doc-link:hover {
        background: var(--deep-navy);
        border-color: var(--menu-link-hover);
      }
      .doc-link:hover i,
      .doc-link:hover span {
        color: var(--gold);
      }

      @media (max-width: 991px) {
        .legal-sidebar {
          position: static;
        }
        .page-title-hero {
          padding: 100px 0 50px;
        }
      }
      @media (max-width: 767px) {
        .legal-contact-box {
          flex-direction: column;
          text-align: center;
        }
        .legal-contact-box a.btn-contact {
          width: 100%;
          justify-content: center;
        }
        .rights-grid {
          grid-template-columns: 1fr;
        }
      }
