/* ── TOKENS ── */
    :root {
      --gold:        rgba(198, 173, 143, 1);
      --gold-light:  #E2C97E;
      --gold-dim:    rgba(201,168,76,0.18);
      --dark:        rgba(0, 0, 0, 1);
      --cream:       #F8F5EE;
      --footer-bg:   #202016;
      --footer-line: rgba(201,168,76,0.22);
    }

    /* ── BASE ── */
    *, *::before, *::after { box-sizing: border-box; }
    html { scroll-behavior: smooth; }

    body {
      font-family: 'Montserrat';
      font-weight: 400;
      font-size: 18px;
      line-height: 38px;
      text-align: center;
      vertical-align: middle;
      background: var(--cream);
      color: var(--dark);
      overflow-x: hidden;
      scroll-behavior: smooth;
    }

    .o-wrapper {
      max-width: 1620px;
      padding: 0 1rem;
    }

    /* ── NAVBAR ── */
    
    .header-section {
      padding: 30px 1rem;
      height: auto;
      position: relative;
      z-index: 100;
      width: 100%;
      /* background-color: #fff; */
      background-color: rgba(255,255,255,0.97);
      backdrop-filter: blur(8px);
      -webkit-backdrop-filter: blur(8px);
      border-bottom: 1px solid rgba(201,168,76,0.12);
      transition: all .4s ease-in-out;
      scroll-behavior: smooth;
    }

    .header-section.sticky {
      position: fixed;
      top: 0;
      padding: 20px 1rem;
      transition: all .4s ease-in-out;
      scroll-behavior: smooth;
    }

    .header-section.sticky .site-logo {
      max-width: 280px;
      width: 100%;
    }

    .header-section .site-logo {
      max-width: 335px;
      width: 100%;
    }

    .navbar-livaria {
      position: relative;
    }

    /* ── HERO ── */
    .hero {
      position: relative;
      width: 100%;
      height: auto;
      /* height: calc(100vh - 138px);
      min-height: 500px; */
      overflow: hidden;
    }

    .hero-video {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
      z-index: 1;
    }

    .hero-fallback {
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, #252016 0%, #3d3520 55%, #19190f 100%);
      z-index: 0;
    }

    .hero-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(
        to bottom,
        rgba(0,0,0,0.06) 0%,
        rgba(0,0,0,0.04) 55%,
        rgba(0,0,0,0.30) 100%
      );
      pointer-events: none;
      z-index: 2;
    }

    /* ── ABOUT ── */
    .section-about {
      background: var(--cream);
      padding: 100px 0 80px;
      position: relative;
      overflow: hidden;
    }

    .section-about::before {
      content: '';
      position: absolute;
      inset: 0;
      background-image: url(../img/banner-bg.png);
      pointer-events: none;
      background-position: top center;
      background-repeat: no-repeat;
      background-size: cover;
    }

    .gold-rule {
      width: 52px;
      height: 1px;
      background: var(--gold);
      margin: 0 auto 36px;
    }

    .about-heading {
      font-family: 'Montserrat';
      font-weight: 400;
      font-size: 50px;
      line-height: 63px;
      text-align: center;
      vertical-align: middle;
      text-transform: uppercase;
      color: var(--dark);
    }

    .about-body {
      font-family: 'Montserrat';
      font-weight: 400;
      font-size: 18px;
      line-height: 38px;
      text-align: center;
      vertical-align: middle;
      color: var(--dark);
      max-width: 1400px;
      width: 100%;
      margin: 0 auto;
    }

    /* ── LEAD FORM ── */
    .section-lead {
      background: #fff;
      padding: 100px 0;
      border-top: 1px solid rgba(201,168,76,0.14);
      border-bottom: 1px solid rgba(201,168,76,0.14);
    }

    .section-lead .o-wrapper {
      max-width: 1500px;
    }

    .lead-heading {
      font-family: 'Montserrat';
      font-weight: 400;
      font-size: 50px;
      line-height: 63px;
      text-align: center;
      vertical-align: middle;
      text-transform: uppercase;
      margin-bottom: 50px;
      color: var(--dark);
    }

    .form-control-livaria {
      border: 1px solid rgba(122, 76, 43, 1);
      border-radius: 0;
      background-color: rgba(255, 255, 255, 0.6);
      font-family: 'Montserrat';
      font-weight: 400;
      font-size: 18px;
      line-height: 24px;
      text-align: left;
      vertical-align: middle;
      color: var(--dark);
      padding: 14px 20px;
      height: auto;
      transition: border-color 0.25s, background 0.25s;
    }

    .form-control-livaria::placeholder {
      color: rgba(0, 0, 0, .8);
    }

    .form-control-livaria:focus {
      border-color: var(--gold);
      box-shadow: none;
      outline: none;
    }

    .btn-livaria:focus,
    .btn-livaria {
      background: rgba(77, 77, 53, 1);
      color: #fff;
      border: none;
      border-radius: 0;
      font-family: 'Montserrat';
      font-weight: 500;
      font-size: 20px;
      line-height: 24px;
      text-align: center;
      vertical-align: middle;
      padding: 14px 28px;
      transition: background 0.25s, color 0.25s;
      white-space: nowrap;
      box-shadow: none;
    }

    .btn-check:checked+.btn, .btn.active, .btn.show, .btn:first-child:active, :not(.btn-check)+.btn:active,
    .btn-livaria:focus-visible,
    .btn-livaria:hover,
    .btn-livaria:active {
      background: var(--gold);
      color: rgba(77, 77, 53, 1);
    }

    .btn-livaria:disabled {
      background: var(--gold);
      color: rgba(77, 77, 53, 1);
      opacity: 1;
    }

    /* ── FOOTER ── */
    footer {
      background-image: url(../img/footer-bg.png);
      background-position: top center;
      background-repeat: no-repeat;
      background-size: cover;
      padding: 100px 0 30px;
      position: relative;
    }

    .footer-logo {
      max-width: 405px;
      width: 100%;
      margin: 0 auto 50px;
      display: inline-block;
    }

    .contact-info-box .contact-card {
      display: flex;
      align-items: center;
      gap: 16px;
      background-color: transparent;
      padding: 18px 22px;
      border-right: 1px solid rgba(255, 255, 255, 0.3);
      height: 100%;
      transition: border-color 0.25s;
      text-decoration: none;
      color: inherit;
    }

    .contact-info-box .row .col:last-child .contact-card {
      border-right: 0;
    }

    .contact-icon-wrap {
      width: 88px;
      height: 90px;
      border-radius: 18px;
      background: rgba(255, 255, 255, .08);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      font-size: 34px;
      color: rgba(255, 255, 255, 1);
    }

    .contact-label {
      font-family: 'Montserrat';
      font-weight: 400;
      font-size: 35.73px;
      line-height: 47.41px;
      color: rgba(255, 255, 255, 1);
      text-align: left;
      display: block;
      white-space: normal;
      word-break: break-word;
    }

    .social-link {
      width: 58px;
      height: 58px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 1);
      border: 1px solid rgba(255,255,255,0.1);
      display: inline-flex;
      align-items: center;
      justify-content: center;
      text-decoration: none;
      transition: background 0.2s, border-color 0.2s, color 0.2s;
    }

    .social-link:hover {
      border-color: var(--gold);
    }

    .footer-divider {
      border-color: rgba(255, 255, 255, 0.3);
      opacity: 1;
    }

    a.footer-copy,
    .footer-copy,
    .footer-copy a {
      font-family: 'Montserrat';
      font-weight: 400;
      font-size: 18px;
      line-height: 28px;
      text-align: center;
      vertical-align: middle;
      color: rgba(255, 255, 255, 1);
      text-decoration: none;
      transition: color 0.2s;
    }

    .footer-copy a {
      text-decoration: underline;
    }

    a.footer-copy:hover,
    .footer-copy a:hover { color: var(--gold); }

    /* ── SCROLL REVEAL ── */
    .reveal {
      opacity: 0;
      transform: translateY(26px);
      transition: opacity 0.85s ease, transform 0.85s ease;
    }

    .reveal.visible {
      opacity: 1;
      transform: translateY(0);
    }

    .reveal-d1 { transition-delay: 0.10s; }
    .reveal-d2 { transition-delay: 0.22s; }
    .reveal-d3 { transition-delay: 0.34s; }
    .reveal-d4 { transition-delay: 0.46s; }

    /* ── TOAST ── */
    #successToast {
      position: fixed;
      bottom: 28px;
      right: 28px;
      z-index: 9999;
      background: var(--dark);
      color: #fff;
      border-left: 3px solid var(--gold);
      border-radius: 0;
      font-size: 0.75rem;
      letter-spacing: 0.05em;
      min-width: 240px;
    }

    /* ── MOBILE TWEAKS ── */
    @media (max-width: 991px) {
      .section-about     { padding: 72px 0 56px; }
      .section-lead      { padding: 60px 0; }
      footer             { padding: 56px 0 28px; }
    }