:root {
      --gold-accent: #FFD700;
      --bg-dark: #001F3F;
      --card-dark: #6C757D;
      --font-heading: 'Cinzel', serif;
      --font-body: 'Plus Jakarta Sans', sans-serif;
    }
    * { margin: 0; padding: 0; box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    body { background-color: var(--bg-dark); color: #FFFFFF; font-family: var(--font-body); overflow-x: hidden; width: 100%; }
    @keyframes site-fade-up { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: translateY(0); } }
    .site-fade-up { animation: site-fade-up 0.7s ease both; }
    .hero-left-content > * { animation: site-fade-up 0.8s ease both; }
    .hero-left-content > *:nth-child(2) { animation-delay: 0.1s; }
    .hero-left-content > *:nth-child(3) { animation-delay: 0.2s; }
    .hero-left-content > *:nth-child(4) { animation-delay: 0.3s; }
    .hero-left-content > *:nth-child(5) { animation-delay: 0.4s; }
    .hero-right-lawyer-box { animation: site-fade-up 0.9s ease 0.2s both; }
    .btn-whatsapp-gold { transition: transform 0.3s ease, box-shadow 0.3s ease; }
    .btn-whatsapp-gold:hover { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(197, 160, 89, 0.45); }
    body > section, body > div, body > footer { animation: site-fade-up 0.7s ease both; }

    /* Floating WhatsApp Button */
    .floating-wa-btn {
      position: fixed;
      bottom: 25px;
      right: 25px;
      width: 60px;
      height: 60px;
      background-color: #25D366;
      color: #FFFFFF;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
      z-index: 9999;
      text-decoration: none;
      transition: all 0.3s ease;
    }
    .floating-wa-btn:hover {
      transform: scale(1.1);
      box-shadow: 0 15px 35px rgba(37, 211, 102, 0.6);
    }
    .floating-wa-icon {
      width: 32px;
      height: 32px;
      fill: currentColor;
    }

    
/* SECTION CSS: hero-06-camara-braga-leadform */

    :root {
      --gold-accent: #C5A059;
      --gold-button: linear-gradient(135deg, #E6C875 0%, #C5A059 100%);
      --bg-dark: #0B0C10;
      --font-serif: 'Cinzel', serif;
      --font-sans: 'Plus Jakarta Sans', sans-serif;
    }
    * { margin: 0; padding: 0; box-sizing: border-box; }
    html, body { background-color: var(--bg-dark); color: #FFFFFF; font-family: var(--font-sans); overflow-x: hidden; width: 100%; }

    .camara-hero {
      position: relative;
      width: 100%;
      min-height: 100vh;
      background: var(--bg-dark);
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      overflow: hidden;
    }

    .camara-main-grid {
      position: relative;
      z-index: 5;
      width: 100%;
      max-width: 1600px;
      margin: 0 auto;
      padding: 3rem 4rem 8rem 4rem;
      display: grid;
      grid-template-columns: 1.1fr 0.9fr;
      gap: 3rem;
      align-items: center;
      flex-grow: 1;
    }

    .hero-left-content {
      display: flex;
      flex-direction: column;
      gap: 1.4rem;
      max-width: 620px;
    }
    .brand-crest-box {
      display: flex;
      align-items: center;
      gap: 0.8rem;
    }
    .crest-icon-svg {
      width: 40px;
      height: 40px;
      stroke: var(--gold-accent);
      fill: none;
      stroke-width: 1.8;
    }
    .brand-title-text {
      font-size: 1.1rem;
      font-weight: 800;
      letter-spacing: 2px;
      color: #FFFFFF;
    }

    .hero-h1-cinzel {
      font-family: var(--font-serif);
      font-size: clamp(2.5rem, 4.5vw, 3.8rem);
      font-weight: 700;
      line-height: 1.12;
      color: #FFFFFF;
    }
    .hero-gold-sub {
      font-size: 1.1rem;
      font-weight: 700;
      color: var(--gold-accent);
    }
    .hero-p-desc {
      font-size: 0.92rem;
      line-height: 1.7;
      color: #9CA3AF;
    }

    .btn-whatsapp-gold {
      align-self: flex-start;
      margin-top: 0.5rem;
      background: var(--gold-button);
      color: #000000;
      font-weight: 800;
      font-size: 0.85rem;
      letter-spacing: 1.5px;
      padding: 0.9rem 2.2rem;
      border-radius: 50px;
      text-decoration: none;
      display: flex;
      align-items: center;
      gap: 0.8rem;
      transition: all 0.3s ease;
      box-shadow: 0 4px 20px rgba(197, 160, 89, 0.3);
    }
    .btn-whatsapp-gold:hover { transform: translateY(-2px); }

    /* Right Lawyer Cutout Photo */
    .hero-right-lawyer-box {
      display: flex;
      justify-content: center;
      align-items: flex-end;
      position: relative;
    }
    .lawyer-cutout-img {
      width: 100%;
      max-width: 480px;
      height: auto;
      max-height: 580px;
      object-fit: contain;
      filter: drop-shadow(0 20px 40px rgba(0,0,0,0.6));
    }

    /* Floating Bottom Form Bar */
    .floating-form-bar {
      position: absolute;
      bottom: 1.5rem;
      left: 50%;
      transform: translateX(-50%);
      width: 90%;
      max-width: 1400px;
      background: rgba(18, 20, 28, 0.95);
      border: 1px solid rgba(255, 255, 255, 0.12);
      backdrop-filter: blur(10px);
      border-radius: 16px;
      padding: 1.5rem 2.5rem;
      display: flex;
      flex-direction: column;
      gap: 1rem;
      z-index: 20;
      box-shadow: 0 20px 50px rgba(0,0,0,0.8);
    }
    .form-bar-title {
      font-family: var(--font-serif);
      font-size: 1rem;
      font-weight: 700;
      color: #FFFFFF;
      letter-spacing: 1px;
    }
    .form-inputs-row {
      display: grid;
      grid-template-columns: 1fr 1fr 1fr 0.6fr;
      gap: 1rem;
    }
    .input-pill-dark {
      background: rgba(255, 255, 255, 0.05);
      border: 1px solid rgba(255, 255, 255, 0.2);
      border-radius: 50px;
      padding: 0.8rem 1.4rem;
      color: #FFFFFF;
      font-size: 0.85rem;
      outline: none;
    }
    .btn-submit-bar {
      background: var(--gold-button);
      color: #000000;
      font-weight: 800;
      font-size: 0.8rem;
      letter-spacing: 2px;
      border: none;
      border-radius: 50px;
      cursor: pointer;
      text-transform: uppercase;
      transition: all 0.3s ease;
    }

    @media (max-width: 900px) {
      .camara-main-grid { grid-template-columns: 1fr; padding-bottom: 12rem; }
      .floating-form-bar { width: 94%; padding: 1.2rem; }
      .form-inputs-row { grid-template-columns: 1fr; }
    }
  

/* SECTION CSS: Sobre-02-legal-representation */

    :root {
      --gold-accent: #D1A658;
      --gold-hover: #E0B769;
      --bg-dark: #0F131C;
      --card-dark: #161B26;
      --font-main: 'Plus Jakarta Sans', sans-serif;
    }
    * { margin: 0; padding: 0; box-sizing: border-box; }
    html, body { background-color: var(--bg-dark); color: #FFFFFF; font-family: var(--font-main); overflow-x: hidden; width: 100%; }

    .Sobre-representation-section {
      width: 100%;
      padding: 4rem 4rem;
      max-width: 1600px;
      margin: 0 auto;
      display: flex;
      flex-direction: column;
      gap: 3.5rem;
    }

    .Sobre-header-block {
      display: flex;
      flex-direction: column;
      gap: 1.2rem;
      max-width: 100%;
    }
    .badge-pill-outline {
      align-self: flex-start;
      border: 1px solid rgba(255, 255, 255, 0.18);
      background: rgba(255, 255, 255, 0.03);
      font-size: 0.75rem;
      letter-spacing: 1.5px;
      color: #9CA3AF;
      padding: 0.4rem 1.1rem;
      border-radius: 50px;
      font-weight: 700;
      text-transform: uppercase;
      display: flex;
      align-items: center;
      gap: 0.5rem;
    }
    .Sobre-main-h2 {
      font-size: clamp(2rem, 3.8vw, 3.2rem);
      font-weight: 800;
      line-height: 1.25;
      color: #FFFFFF;
      letter-spacing: -0.5px;
      text-transform: uppercase;
    }
    .gold-highlight-text {
      color: var(--gold-accent);
      font-weight: 900;
    }

    .Sobre-main-grid {
      display: grid;
      grid-template-columns: 1.25fr 0.75fr;
      gap: 2.5rem;
      align-items: start;
    }

    .left-composite-column {
      display: flex;
      flex-direction: column;
      gap: 2rem;
    }

    .top-composite-row {
      display: grid;
      grid-template-columns: 0.95fr 1.05fr;
      gap: 2rem;
      align-items: center;
    }
    .lawyer-photo-card {
      width: 100%;
      height: 240px;
      object-fit: cover;
      border-radius: 20px;
      box-shadow: 0 15px 35px rgba(0,0,0,0.3);
      border: 1px solid rgba(255,255,255,0.08);
    }

    .checklist-card {
      display: flex;
      flex-direction: column;
      gap: 1.2rem;
    }
    .checklist-ul {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 0.85rem;
    }
    .checklist-li {
      display: flex;
      align-items: center;
      gap: 0.8rem;
      font-size: 0.88rem;
      color: #D1D5DB;
      font-weight: 500;
    }
    .check-box-icon {
      width: 20px;
      height: 20px;
      border-radius: 4px;
      border: 1px solid var(--gold-accent);
      background: rgba(209, 166, 88, 0.1);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--gold-accent);
      flex-shrink: 0;
    }

    .btn-know-Sobre {
      align-self: flex-start;
      margin-top: 0.5rem;
      background: transparent;
      border: 1px solid rgba(209, 166, 88, 0.5);
      color: var(--gold-accent);
      font-weight: 700;
      font-size: 0.82rem;
      padding: 0.75rem 1.6rem;
      border-radius: 8px;
      text-decoration: none;
      display: flex;
      align-items: center;
      gap: 0.5rem;
      transition: all 0.3s ease;
    }
    .btn-know-Sobre:hover {
      background: var(--gold-accent);
      color: #000;
    }

    .stats-bottom-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 2rem;
      border-top: 1px solid rgba(255, 255, 255, 0.08);
      padding-top: 2rem;
    }
    .stat-metric-card {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1rem;
    }
    .stat-num {
      font-size: 2.2rem;
      font-weight: 800;
      color: #FFFFFF;
      line-height: 1;
    }
    .stat-label-text {
      font-size: 0.78rem;
      color: #9CA3AF;
      margin-top: 0.3rem;
      line-height: 1.3;
    }
    .stat-icon-svg {
      width: 36px;
      height: 36px;
      stroke: var(--gold-accent);
      fill: none;
      stroke-width: 1.5;
      flex-shrink: 0;
    }

    .right-portrait-frame {
      width: 100%;
      height: 100%;
      max-height: 440px;
      border-radius: 26px;
      overflow: hidden;
      box-shadow: 0 20px 45px rgba(0,0,0,0.4);
      border: 1px solid rgba(255,255,255,0.08);
    }
    .right-portrait-img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
    }

    @media (max-width: 768px) {
      .Sobre-representation-section {
        padding: 3rem 1.2rem;
        gap: 2.5rem;
      }
      .Sobre-main-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
      }
      .top-composite-row {
        grid-template-columns: 1fr;
        gap: 1.8rem;
      }
      .lawyer-photo-card {
        height: 220px;
      }
      .stats-bottom-row {
        grid-template-columns: 1fr;
        gap: 1.5rem;
      }
      .right-portrait-frame {
        min-height: 320px;
      }
      .btn-know-Sobre {
        width: 100%;
        justify-content: center;
      }
    }
  

/* SECTION CSS: practice-03-areas-atendimento */

    :root {
      --gold-accent: #B59A5B;
      --gold-light: #F7F4EC;
      --text-dark: #1F2937;
      --text-muted: #6B7280;
      --border-light: #E5E7EB;
      --font-main: 'Plus Jakarta Sans', sans-serif;
    }
    * { margin: 0; padding: 0; box-sizing: border-box; }
    html, body { background-color: #FFFFFF; color: var(--text-dark); font-family: var(--font-main); overflow-x: hidden; width: 100%; }

    .areas-section {
      width: 100%;
      padding: 4rem 4rem;
      max-width: 1600px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1.15fr 0.85fr;
      gap: 1.5rem;
      align-items: center;
    }

    .left-areas-block {
      display: flex;
      flex-direction: column;
      gap: 2.2rem;
    }

    .title-box {
      display: flex;
      flex-direction: column;
      gap: 0.4rem;
    }
    .sub-title-gold {
      font-size: 1.1rem;
      font-weight: 700;
      color: var(--gold-accent);
      letter-spacing: 0.5px;
    }
    .main-title-h2 {
      font-size: clamp(2.4rem, 4.5vw, 3.6rem);
      font-weight: 800;
      line-height: 1.1;
      color: var(--text-dark);
      letter-spacing: -0.5px;
    }
    .main-title-gold {
      color: var(--gold-accent);
      display: block;
      font-weight: 800;
    }

    .areas-list {
      display: flex;
      flex-direction: column;
      gap: 0;
    }

    .area-item {
      display: flex;
      align-items: center;
      gap: 1.4rem;
      padding: 1.25rem 0;
      border-bottom: 1px solid var(--border-light);
      text-decoration: none;
      color: var(--text-dark);
      transition: all 0.3s ease;
    }
    .area-item:last-child {
      border-bottom: none;
    }
    .area-item:hover {
      padding-left: 0.5rem;
    }
    .area-icon-circle {
      width: 44px;
      height: 44px;
      border-radius: 50%;
      border: 1px solid rgba(181, 154, 91, 0.4);
      background: var(--gold-light);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--gold-accent);
      flex-shrink: 0;
      transition: transform 0.3s ease, background-color 0.3s ease;
    }
    .area-item:hover .area-icon-circle {
      background: var(--gold-accent);
      color: #FFFFFF;
      transform: scale(1.08);
    }

    .area-text-title {
      font-size: 1.1rem;
      font-weight: 700;
      color: var(--text-dark);
    }

    .right-statue-block {
      display: flex;
      justify-content: flex-start;
      align-items: center;
      position: relative;
      margin-left: -1rem;
    }
    .hardcoded-statue-img {
      width: 100%;
      max-width: 580px;
      height: auto;
      max-height: 720px;
      object-fit: contain;
      filter: drop-shadow(0 20px 40px rgba(0,0,0,0.1));
      transform: scale(1.08);
      transform-origin: left center;
    }

    @media (max-width: 768px) {
      .areas-section {
        grid-template-columns: 1fr;
        padding: 3rem 1.2rem;
        gap: 3rem;
      }
      .area-item {
        padding: 1.1rem 0;
      }
      .area-text-title {
        font-size: 1rem;
      }
      .hardcoded-statue-img {
        max-width: 320px;
        max-height: 420px;
      }
    }
  

/* SECTION CSS: testimonials-01-client-reviews */

    :root {
      --gold-accent: #B59A5B;
      --gold-hover: #C5B084;
      --text-dark: #1F2937;
      --text-muted: #6B7280;
      --font-main: 'Plus Jakarta Sans', sans-serif;
    }
    * { margin: 0; padding: 0; box-sizing: border-box; }
    html, body { background-color: #FFFFFF; color: var(--text-dark); font-family: var(--font-main); overflow-x: hidden; width: 100%; }

    .testimonials-section {
      width: 100%;
      padding: 5rem 4rem;
      max-width: 1600px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1.15fr;
      gap: 4rem;
      align-items: center;
    }

    /* Left Block */
    .left-testimonial-title-block {
      display: flex;
      flex-direction: column;
      gap: 1.8rem;
    }
    .quote-icon-svg {
      width: 68px;
      height: 68px;
      fill: #E5E7EB;
      opacity: 0.85;
    }
    .testimonial-main-h2 {
      font-size: clamp(2.5rem, 4.8vw, 3.8rem);
      font-weight: 800;
      line-height: 1.1;
      color: var(--text-dark);
      letter-spacing: -0.5px;
    }
    .testimonial-gold-text {
      color: var(--gold-accent);
      font-weight: 800;
    }

    /* Right Block */
    .right-testimonial-card-block {
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      gap: 1.5rem;
    }

    .avatars-selector-row {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 1rem;
    }
    .avatar-btn {
      border: none;
      background: transparent;
      padding: 0;
      cursor: pointer;
      border-radius: 50%;
      transition: all 0.3s ease;
      position: relative;
    }
    .avatar-btn-small {
      width: 48px;
      height: 48px;
      opacity: 0.65;
    }
    .avatar-btn-small:hover {
      opacity: 1;
      transform: scale(1.08);
    }
    .avatar-btn-large {
      width: 82px;
      height: 82px;
      opacity: 1;
      transform: scale(1.08);
      box-shadow: 0 10px 25px rgba(0,0,0,0.12);
    }
    .avatar-img {
      width: 100%;
      height: 100%;
      border-radius: 50%;
      object-fit: cover;
      object-position: center;
      border: 2px solid #FFFFFF;
      box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    }
    .avatar-btn-large .avatar-img {
      border: 3px solid var(--gold-accent);
    }

    .client-meta-box {
      display: flex;
      flex-direction: column;
      gap: 0.2rem;
    }
    .client-name-text {
      font-size: 1.25rem;
      font-weight: 800;
      color: var(--text-dark);
    }
    .client-role-text {
      font-size: 0.85rem;
      color: #9CA3AF;
      font-weight: 500;
    }

    .stars-row {
      display: flex;
      align-items: center;
      gap: 0.3rem;
      color: #EAB308;
      font-size: 1.2rem;
    }

    .quote-paragraph-text {
      font-size: 0.98rem;
      line-height: 1.7;
      color: #4B5563;
      max-width: 540px;
      font-weight: 500;
      min-height: 80px;
      transition: opacity 0.3s ease;
    }

    @media (max-width: 768px) {
      .testimonials-section {
        grid-template-columns: 1fr;
        padding: 3rem 1.2rem;
        gap: 2.5rem;
      }
      .left-testimonial-title-block {
        gap: 1.2rem;
      }
      .quote-icon-svg {
        width: 52px;
        height: 52px;
      }
      .avatars-selector-row {
        gap: 0.6rem;
      }
      .avatar-btn-small {
        width: 40px;
        height: 40px;
      }
      .avatar-btn-large {
        width: 68px;
        height: 68px;
      }
      .quote-paragraph-text {
        font-size: 0.92rem;
      }
    }
  

/* SECTION CSS: Contato-01-gold-bar-form */

    :root {
      --gold-main: #D5B066;
      --gold-gradient: linear-gradient(135deg, #E6C875 0%, #FFF5BD 30%, #D5B066 60%, #916E24 100%);
      --bg-dark: #050505;
      --card-dark: #111318;
      --border-dark: rgba(255, 255, 255, 0.1);
      --font-heading: 'Cinzel', serif;
      --font-body: 'Plus Jakarta Sans', sans-serif;
    }
    * { margin: 0; padding: 0; box-sizing: border-box; }
    html, body { background-color: var(--bg-dark); color: #FFFFFF; font-family: var(--font-body); overflow-x: hidden; width: 100%; }

    .Contato-section-container {
      width: 100%;
      padding: 4rem 4rem;
      max-width: 1600px;
      margin: 0 auto;
      display: flex;
      flex-direction: column;
      gap: 3.5rem;
    }

    /* Top Metallic Gold Banner */
    .gold-banner-bar {
      width: 100%;
      background: var(--gold-gradient);
      border-radius: 12px;
      padding: 1.4rem 2.5rem;
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.5rem;
      box-shadow: 0 10px 30px rgba(213, 176, 102, 0.25);
    }
    .banner-item {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 0.9rem;
      color: #000000;
      text-decoration: none;
      font-weight: 700;
      font-size: 0.9rem;
    }
    .banner-icon {
      width: 26px;
      height: 26px;
      stroke: #000000;
      fill: none;
      stroke-width: 2;
      flex-shrink: 0;
    }

    /* Main Contato Block */
    .Contato-main-block {
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      gap: 1.2rem;
      max-width: 820px;
      margin: 0 auto;
    }
    .Contato-sub-tag {
      font-size: 0.78rem;
      letter-spacing: 3px;
      color: var(--gold-main);
      font-weight: 700;
      text-transform: uppercase;
    }
    .Contato-h2-title {
      font-family: var(--font-heading);
      font-size: clamp(2.4rem, 4.5vw, 3.5rem);
      font-weight: 700;
      color: #FFFFFF;
      line-height: 1.15;
    }
    .Contato-p-desc {
      font-size: 0.95rem;
      color: #9CA3AF;
      line-height: 1.7;
      max-width: 620px;
    }

    /* Form Container */
    .Contato-form-wrapper {
      width: 100%;
      max-width: 900px;
      margin: 0 auto;
      display: flex;
      flex-direction: column;
      gap: 1.2rem;
    }
    .form-grid-2col {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1.2rem;
    }
    .form-input-field, .form-textarea-field {
      width: 100%;
      background: var(--card-dark);
      border: 1px solid var(--border-dark);
      border-bottom: 2px solid var(--gold-main);
      border-radius: 8px;
      padding: 1.1rem 1.4rem;
      color: #FFFFFF;
      font-family: inherit;
      font-size: 0.9rem;
      outline: none;
      transition: all 0.3s ease;
    }
    .form-input-field::placeholder, .form-textarea-field::placeholder {
      color: #6B7280;
    }
    .form-input-field:focus, .form-textarea-field:focus {
      border-color: var(--gold-main);
      box-shadow: 0 0 15px rgba(213, 176, 102, 0.2);
    }
    .form-textarea-field {
      min-height: 140px;
      resize: vertical;
    }

    .btn-submit-gold {
      align-self: center;
      margin-top: 1rem;
      background: var(--gold-gradient);
      color: #000000;
      font-weight: 800;
      font-size: 0.88rem;
      letter-spacing: 2px;
      padding: 1.1rem 3.5rem;
      border: none;
      border-radius: 50px;
      cursor: pointer;
      text-transform: uppercase;
      transition: all 0.3s ease;
      box-shadow: 0 6px 20px rgba(0,0,0,0.4);
    }
    .btn-submit-gold:hover {
      transform: translateY(-2px);
      box-shadow: 0 10px 30px rgba(213, 176, 102, 0.4);
    }

    @media (max-width: 768px) {
      .Contato-section-container {
        padding: 3rem 1.2rem;
        gap: 2.5rem;
      }
      .gold-banner-bar {
        grid-template-columns: 1fr;
        padding: 1.2rem 1.5rem;
        gap: 1rem;
      }
      .banner-item {
        justify-content: flex-start;
      }
      .form-grid-2col {
        grid-template-columns: 1fr;
      }
      .btn-submit-gold {
        width: 100%;
      }
    }
  

/* SECTION CSS: footer-01-advmarc-corporate */

    :root {
      --bg-footer: #26272B;
      --gold-accent: #B59A5B;
      --gold-hover: #C5B084;
      --text-light: #E5E7EB;
      --text-muted: #9CA3AF;
      --font-main: 'Plus Jakarta Sans', sans-serif;
    }
    * { margin: 0; padding: 0; box-sizing: border-box; }
    html, body { background-color: var(--bg-footer); color: var(--text-light); font-family: var(--font-main); overflow-x: hidden; width: 100%; }

    .advmarc-footer {
      width: 100%;
      background-color: var(--bg-footer);
      padding: 4rem 4rem 2rem 4rem;
      max-width: 1600px;
      margin: 0 auto;
      display: flex;
      flex-direction: column;
      gap: 3rem;
    }

    .footer-top-grid {
      display: grid;
      grid-template-columns: 1.2fr 0.8fr 0.8fr 0.8fr;
      gap: 3rem;
      align-items: flex-start;
    }

    .brand-column {
      display: flex;
      flex-direction: column;
      gap: 1.2rem;
    }
    .brand-logo-box {
      display: flex;
      flex-direction: column;
      gap: 0.4rem;
    }
    .logo-pillar-svg {
      width: 48px;
      height: 48px;
      fill: none;
      stroke: var(--gold-accent);
      stroke-width: 1.8;
    }
    .brand-title {
      font-size: 1.15rem;
      font-weight: 800;
      color: #FFFFFF;
      letter-spacing: 1px;
    }
    .brand-sub {
      font-size: 0.65rem;
      color: var(--gold-accent);
      letter-spacing: 2px;
      font-weight: 700;
      text-transform: uppercase;
    }

    .brand-phone {
      font-size: 1.6rem;
      font-weight: 800;
      color: #FFFFFF;
      letter-spacing: 0.5px;
      text-decoration: none;
    }
    .brand-address {
      font-size: 0.85rem;
      color: var(--text-muted);
      line-height: 1.6;
      max-width: 320px;
    }

    .links-column {
      display: flex;
      flex-direction: column;
      gap: 1.2rem;
    }
    .col-title {
      font-size: 0.95rem;
      font-weight: 700;
      color: #FFFFFF;
    }
    .links-list {
      display: flex;
      flex-direction: column;
      gap: 0.8rem;
      list-style: none;
    }
    .links-list a {
      color: var(--text-muted);
      text-decoration: none;
      font-size: 0.88rem;
      transition: color 0.3s ease;
    }
    .links-list a:hover {
      color: var(--gold-accent);
    }

    .footer-bottom-bar {
      border-top: 1px solid rgba(255, 255, 255, 0.08);
      padding-top: 1.8rem;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1.5rem;
    }
    .copyright-text {
      font-size: 0.82rem;
      color: var(--text-muted);
    }

    .social-icons-row {
      display: flex;
      align-items: center;
      gap: 0.8rem;
    }
    .social-circle-btn {
      width: 34px;
      height: 34px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.08);
      color: var(--text-light);
      display: flex;
      align-items: center;
      justify-content: center;
      text-decoration: none;
      transition: all 0.3s ease;
    }
    .social-circle-btn:hover {
      background: var(--gold-accent);
      color: #000000;
      transform: scale(1.08);
    }

    @media (max-width: 768px) {
      .advmarc-footer {
        padding: 3rem 1.2rem 1.8rem 1.2rem;
        gap: 2.5rem;
      }
      .footer-top-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
      }
      .footer-bottom-bar {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.2rem;
      }
    }