
    /* ====== ROOT ====== */
    :root {
      --gold: #d9a066;
      --gold-light: #fefaf0;
      --gold-dark: #b5834a;
      --cream: #fefaf0;
      ;
      --deep-green: #1f3320;
      --soft-green: #3a5a3a;
      --shadow: 0 12px 40px rgba(0, 0, 0, 0.06);
      --shadow-hover: 0 20px 60px rgba(0, 0, 0, 0.10);
    }

    /* ====== GLOBAL ====== */


    /* ====== TYPOGRAPHY ====== */

    .display-4 {
      font-weight: 800;
      letter-spacing: -0.03em;
    }

    .display-5 {
      font-weight: 700;
      letter-spacing: -0.02em;
    }

    .lead {
      font-weight: 400;
      font-size: 1.25rem;
    }

    /* ====== COLOR UTILITIES ====== */
    .text-gold {
      color: var(--gold-dark);
    }

    .bg-gold-soft {
      background: var(--gold-light);
    }

    .bg-cream {
      background: var(--cream);
    }

    .bg-deep {
      background: var(--deep-green);
      color: white;
    }

    .border-gold {
      border-color: var(--gold) !important;
    }

    /* ====== BUTTONS ====== */
    .btn-primary-custom {
      background: linear-gradient(145deg, var(--gold), var(--gold-dark));
      border: none;
      color: #1a2a1a;
      font-weight: 700;
      padding: 14px 36px;
      border-radius: 60px;
      transition: all 0.3s ease;
      box-shadow: 0 4px 16px rgba(217, 160, 102, 0.35);
      letter-spacing: 0.3px;
    }

    .btn-primary-custom:hover {
      transform: translateY(-3px);
      box-shadow: 0 8px 28px rgba(217, 160, 102, 0.45);
      color: #0f1f0f;
      background: linear-gradient(145deg, #e0ad70, var(--gold-dark));
    }

    .btn-outline-custom {
      border: 2px solid var(--gold);
      color: var(--deep-green);
      font-weight: 600;
      padding: 12px 30px;
      border-radius: 60px;
      transition: all 0.3s ease;
      background: transparent;
    }

    .btn-outline-custom:hover {
      background: var(--gold);
      color: #1a2a1a;
      transform: translateY(-2px);
      box-shadow: 0 6px 20px rgba(217, 160, 102, 0.25);
    }





    /* ====== CARDS ====== */
    .card-modern {
      background: white;
      border: none;
      border-radius: 12px;
      padding: 28px 24px;
      box-shadow: var(--shadow);
      transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
      height: 100%;
      border: 1px solid rgba(217, 160, 102, 0.12);
    }

    .card-modern:hover {
      transform: translateY(-8px);
      box-shadow: var(--shadow-hover);
      border-color: rgba(217, 160, 102, 0.30);
    }

    .card-modern .card-icon {
      font-size: 2.6rem;
      color: var(--gold-dark);
      display: inline-block;
    }

    /* ====== SECTION PADDING ====== */
    .section-pad {
      padding: 4.5rem 0;
    }

    .section-pad-sm {
      padding: 3rem 0;
    }

    /* ====== DIVIDER ====== */
    .divider-gold {
      width: 72px;
      height: 4px;
      background: linear-gradient(90deg, var(--gold), var(--gold-dark), var(--gold));
      border-radius: 6px;
      margin: 0 auto 1.8rem;
    }

    .divider-gold-left {
      margin-left: 0;
    }

    /* ====== IMAGE PLACEHOLDER ====== */
    .img-placeholder {
      background: linear-gradient(145deg, #f5ede4, #e8ddd0);
      border-radius: 32px;
      padding: 2.8rem 1.8rem;
      text-align: center;
      border: 2px dashed rgba(217, 160, 102, 0.35);
      transition: all 0.3s ease;
      min-height: 260px;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
    }

    .img-placeholder i {
      font-size: 4.2rem;
      color: var(--gold-dark);
      opacity: 0.5;
      margin-bottom: 12px;
    }

    .img-placeholder .placeholder-text {
      color: #7a6a5a;
      font-weight: 500;
      font-size: 0.95rem;
      letter-spacing: 0.5px;
    }

    .img-placeholder img {
      border-radius: 10px;
      max-width: 100%;
      height: auto;
    }

    .img-placeholder:has(img) {
      border: none;
      background: transparent;
      padding: 0;
    }

    /* ====== STICKY WHATSAPP ====== */
    .sticky-wa {
      position: fixed;
      bottom: 28px;
      right: 28px;
      z-index: 999;
    }

    .sticky-wa a {
      display: flex;
      align-items: center;
      gap: 12px;
      background: #25D366;
      color: white;
      padding: 4px 10px;
      border-radius: 60px;
      font-weight: 700;
      text-decoration: none;
      box-shadow: 0 12px 32px rgba(37, 211, 102, 0.35);
      transition: all 0.3s ease;
      font-size: 1.05rem;
    }

    .sticky-wa a:hover {
      transform: scale(1.05);
      box-shadow: 0 16px 44px rgba(37, 211, 102, 0.45);
      color: white;
    }

    .sticky-wa a i {
      font-size: 1.5rem;
    }

    /* ====== ACCORDION ====== */
    .accordion-modern .accordion-item {
      border: none;
      border-bottom: 1px solid rgba(217, 160, 102, 0.15);
      background: transparent;
    }

    .accordion-modern .accordion-button {
      background: transparent;
      font-weight: 700;
      color: var(--deep-green);
      padding: 18px 0;
      font-size: 1.05rem;
      box-shadow: none;
    }

    .accordion-modern .accordion-button:focus {
      box-shadow: none;
      border-color: transparent;
    }

    .accordion-modern .accordion-button:not(.collapsed) {
      color: var(--gold-dark);
      background: transparent;
    }

    .accordion-modern .accordion-body {
      padding: 0 0 20px 0;
      color: #3a4a3a;
    }

    /* ====== BADGE ====== */
    .badge-soft-gold {
      background: rgba(217, 160, 102, 0.15);
      color: var(--gold-dark);
      padding: 8px 18px;
      border-radius: 60px;
      font-weight: 600;
    }

    /* ====== RESPONSIVE ====== */
    @media (max-width: 768px) {
      .section-pad {
        padding: 3rem 0;
      }

      .display-4 {
        font-size: 2.4rem;
      }

      .display-5 {
        font-size: 1.8rem;
      }

      .sticky-wa {
        bottom: 16px;
        right: 16px;
      }

      .sticky-wa a {
        padding: 10px 18px;
        font-size: 0.9rem;
      }

      .sticky-wa a i {
        font-size: 1.5rem;
      }

      .img-placeholder {
        min-height: 180px;
        padding: 1.8rem;
      }
    }

    @media (max-width: 576px) {

      .btn-primary-custom,
      .btn-outline-custom {
        width: 100%;
        text-align: center;
        justify-content: center;
      }
    }
  