*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    :root {
      --ink: #0e1117;
      --cream: #f5f0e8;
      --gold: #b8964e;
      --gold-light: #d4b06a;
      --rust: #c0392b;
      --muted: #7a7267;
      --white: #fffef9;
      --border: #ddd5c3;
    }

    html { scroll-behavior: smooth; }

    body {
      font-family: 'DM Sans', sans-serif;
      background: var(--cream);
      color: var(--ink);
      overflow-x: hidden;
    }

    /* ── NOISE TEXTURE ── */
    body::before {
      content: '';
      position: fixed; inset: 0;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
      pointer-events: none; z-index: 999;
    }

    /* ── NAV ── */
    nav {
      position: fixed; top: 0; left: 0; right: 0; z-index: 100;
      display: flex; align-items: center; justify-content: space-between;
      padding: 1.2rem 4rem;
      background: rgba(245,240,232,0.88);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid var(--border);
    }

    .nav-logo {
      font-family: 'Playfair Display', serif;
      font-size: 1.2rem;
      font-weight: 700;
      letter-spacing: 0.02em;
      color: var(--ink);
      text-decoration: none;
    }
    .nav-logo span { color: var(--gold); }

    .nav-links { display: flex; gap: 2rem; list-style: none; }
    .nav-links a {
      text-decoration: none; color: var(--muted);
      font-size: 0.85rem; font-weight: 500; letter-spacing: 0.06em;
      text-transform: uppercase; transition: color 0.2s;
    }
    .nav-links a:hover { color: var(--gold); }

    .nav-cta {
      background: var(--ink); color: var(--cream) !important;
      padding: 0.5rem 1.4rem; border-radius: 2px;
    }
    .nav-cta:hover { background: var(--gold); color: var(--ink) !important; }

    .hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
    .hamburger span { width: 24px; height: 2px; background: var(--ink); display: block; transition: 0.3s; }

    /* ── HERO ── */
    #hero {
      min-height: 100vh;
      display: grid; grid-template-columns: 1fr 1fr;
      align-items: center;
      padding: 8rem 4rem 4rem;
      gap: 4rem;
      position: relative; overflow: hidden;
    }

    #hero::after {
      content: '';
      position: absolute; right: -10%; top: 10%; bottom: 10%;
      width: 55%;
      background: linear-gradient(135deg, var(--gold) 0%, #8a6830 100%);
      clip-path: polygon(8% 0%, 100% 0%, 100% 100%, 0% 100%);
      z-index: 0;
      opacity: 0.08;
    }

    .hero-content { position: relative; z-index: 1; }

    .hero-badge {
      display: inline-flex; align-items: center; gap: 0.5rem;
      font-size: 0.72rem; font-weight: 500; letter-spacing: 0.12em;
      text-transform: uppercase; color: var(--gold);
      border: 1px solid var(--gold); border-radius: 2px;
      padding: 0.35rem 0.8rem; margin-bottom: 2rem;
      animation: fadeUp 0.6s ease both;
    }

    .hero-title {
      font-family: 'Playfair Display', serif;
      font-size: clamp(3rem, 5vw, 5rem);
      font-weight: 900; line-height: 1.05;
      margin-bottom: 1.5rem;
      animation: fadeUp 0.6s 0.1s ease both;
    }
    .hero-title em { font-style: italic; color: var(--gold); }

    .hero-sub {
      font-size: 1.05rem; color: var(--muted); line-height: 1.7;
      max-width: 480px; margin-bottom: 2.5rem;
      animation: fadeUp 0.6s 0.2s ease both;
    }

    .hero-actions {
      display: flex; gap: 1rem; flex-wrap: wrap;
      animation: fadeUp 0.6s 0.3s ease both;
    }

    .btn-primary {
      background: var(--ink); color: var(--cream);
      padding: 0.9rem 2rem; border: none; border-radius: 2px;
      font-family: 'DM Sans', sans-serif; font-size: 0.9rem;
      font-weight: 500; letter-spacing: 0.04em; cursor: pointer;
      text-decoration: none; display: inline-block;
      transition: background 0.25s, transform 0.2s;
    }
    .btn-primary:hover { background: var(--gold); transform: translateY(-2px); }

    .btn-outline {
      background: transparent; color: var(--ink);
      padding: 0.9rem 2rem; border: 1.5px solid var(--ink); border-radius: 2px;
      font-family: 'DM Sans', sans-serif; font-size: 0.9rem;
      font-weight: 500; letter-spacing: 0.04em; cursor: pointer;
      text-decoration: none; display: inline-block;
      transition: background 0.25s, color 0.25s, transform 0.2s;
    }
    .btn-outline:hover { background: var(--ink); color: var(--cream); transform: translateY(-2px); }

    .hero-stats {
      display: flex; gap: 2.5rem; margin-top: 3rem;
      animation: fadeUp 0.6s 0.4s ease both;
    }
    .stat-item { display: flex; flex-direction: column; }
    .stat-number {
      font-family: 'Playfair Display', serif;
      font-size: 2rem; font-weight: 700; color: var(--ink);
    }
    .stat-label { font-size: 0.78rem; color: var(--muted); letter-spacing: 0.05em; text-transform: uppercase; }

    .hero-visual {
      position: relative; z-index: 1;
      display: flex; align-items: center; justify-content: center;
      animation: fadeUp 0.6s 0.2s ease both;
    }

    .hero-card {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: 4px;
      padding: 2.5rem;
      width: 100%; max-width: 400px;
      box-shadow: 0 20px 60px rgba(14,17,23,0.08);
      position: relative;
    }

    .hero-card::before {
      content: '';
      position: absolute; top: -1px; left: 2rem; right: 2rem; height: 3px;
      background: linear-gradient(90deg, var(--gold), var(--gold-light));
    }

    .card-icon { font-size: 2rem; margin-bottom: 1rem; }
    .card-title {
      font-family: 'Playfair Display', serif;
      font-size: 1.3rem; margin-bottom: 0.5rem;
    }
    .card-text { font-size: 0.88rem; color: var(--muted); margin-bottom: 1.5rem; line-height: 1.6; }

    .checklist { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
    .checklist li {
      display: flex; align-items: center; gap: 0.6rem;
      font-size: 0.85rem; color: var(--ink);
    }
    .checklist li::before {
      content: '✓'; color: var(--gold); font-weight: 700; font-size: 0.9rem;
    }

    /* ── SECTION SHARED ── */
    section { padding: 6rem 4rem; }
    .section-tag {
      font-size: 0.72rem; font-weight: 500; letter-spacing: 0.14em;
      text-transform: uppercase; color: var(--gold);
      margin-bottom: 0.8rem; display: block;
    }
    .section-title {
      font-family: 'Playfair Display', serif;
      font-size: clamp(2rem, 3.5vw, 3rem);
      font-weight: 800; line-height: 1.15;
      margin-bottom: 1.2rem;
    }
    .section-sub { font-size: 1rem; color: var(--muted); max-width: 560px; line-height: 1.7; }

    .section-header { margin-bottom: 4rem; }
    .section-header.centered { text-align: center; }
    .section-header.centered .section-sub { margin: 0 auto; }

    /* ── DIVIDER ── */
    .divider {
      height: 1px; background: var(--border);
      margin: 0 4rem;
    }

    /* ── SERVICES ── */
    #servicos { background: var(--white); }

    .services-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
      gap: 1.5px;
      background: var(--border);
      border: 1px solid var(--border);
    }

    .service-card {
      background: var(--white);
      padding: 2.2rem 2rem;
      cursor: default;
      transition: background 0.25s;
      position: relative; overflow: hidden;
    }

    .service-card::after {
      content: '';
      position: absolute; bottom: 0; left: 0; right: 0; height: 0;
      background: linear-gradient(135deg, var(--gold), var(--gold-light));
      opacity: 0.06;
      transition: height 0.3s;
    }

    .service-card:hover { background: #fdf9f2; }
    .service-card:hover::after { height: 100%; }

    .service-icon {
      font-size: 1.8rem; margin-bottom: 1rem;
      display: block;
    }
    .service-name {
      font-family: 'Playfair Display', serif;
      font-size: 1.1rem; font-weight: 700;
      margin-bottom: 0.6rem; color: var(--ink);
    }
    .service-desc {
      font-size: 0.84rem; color: var(--muted);
      line-height: 1.65;
    }
    .service-tag {
      display: inline-block; margin-top: 1rem;
      font-size: 0.7rem; letter-spacing: 0.08em; text-transform: uppercase;
      padding: 0.25rem 0.6rem; border-radius: 2px;
      font-weight: 500;
    }
    .tag-pf { background: #e8f4ee; color: #2e7d52; }
    .tag-pj { background: #e8edf8; color: #2952a3; }
    .tag-both { background: #f4eee8; color: #8a5a1e; }

    /* ── ABOUT ── */
    #sobre {
      display: grid; grid-template-columns: 1fr 1fr;
      gap: 5rem; align-items: center;
    }

    .about-visual {
      position: relative;
    }

    .about-image-frame {
      background: var(--ink);
      border-radius: 4px;
      height: 420px;
      display: flex; align-items: center; justify-content: center;
      position: relative; overflow: hidden;
    }

    .about-image-frame::before {
      content: '';
      position: absolute; inset: 0;
      background: linear-gradient(135deg, #1a2040 0%, var(--ink) 100%);
    }

    .about-initials {
      position: relative; z-index: 1;
      font-family: 'Playfair Display', serif;
      font-size: 8rem; font-weight: 900;
      color: rgba(255,255,255,0.06);
      letter-spacing: -0.05em;
      user-select: none;
    }

    .about-monogram {
      position: absolute; z-index: 2;
      font-family: 'Playfair Display', serif;
      font-size: 5rem; font-weight: 900; font-style: italic;
      color: var(--gold); opacity: 0.9;
    }

    .about-badge-float {
      position: absolute; bottom: -1.5rem; right: -1.5rem;
      background: var(--gold);
      color: var(--ink); border-radius: 4px;
      padding: 1.2rem 1.5rem; text-align: center;
      box-shadow: 0 8px 30px rgba(184,150,78,0.4);
    }
    .badge-number {
      font-family: 'Playfair Display', serif;
      font-size: 2.2rem; font-weight: 900; display: block; line-height: 1;
    }
    .badge-text { font-size: 0.72rem; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; }

    .about-content { position: relative; }
    .about-quote {
      font-family: 'Playfair Display', serif;
      font-size: 1.5rem; font-style: italic;
      color: var(--gold); margin-bottom: 1.5rem;
      border-left: 3px solid var(--gold); padding-left: 1.2rem;
    }

    .credentials { margin-top: 2.5rem; display: flex; flex-direction: column; gap: 0.8rem; }
    .credential {
      display: flex; align-items: center; gap: 0.8rem;
      font-size: 0.88rem; color: var(--muted);
    }
    .credential-dot {
      width: 6px; height: 6px; border-radius: 50%;
      background: var(--gold); flex-shrink: 0;
    }

    /* ── PROCESS ── */
    #processo { background: var(--ink); color: var(--cream); }
    #processo .section-title { color: var(--cream); }
    #processo .section-sub { color: rgba(245,240,232,0.6); }

    .steps {
      display: grid; grid-template-columns: repeat(4, 1fr);
      gap: 2px; background: rgba(255,255,255,0.06);
      margin-top: 0;
    }

    .step {
      background: var(--ink);
      padding: 2.5rem 2rem;
      position: relative; overflow: hidden;
      transition: background 0.3s;
    }
    .step:hover { background: #1a1e2a; }

    .step-number {
      font-family: 'Playfair Display', serif;
      font-size: 4rem; font-weight: 900;
      color: rgba(255,255,255,0.05);
      line-height: 1; margin-bottom: 1rem;
      display: block;
    }
    .step-icon { font-size: 1.6rem; margin-bottom: 0.8rem; display: block; }
    .step-title {
      font-family: 'Playfair Display', serif;
      font-size: 1.05rem; color: var(--cream);
      margin-bottom: 0.5rem; font-weight: 700;
    }
    .step-desc { font-size: 0.83rem; color: rgba(245,240,232,0.55); line-height: 1.6; }

    /* ── TESTIMONIALS ── */
    #depoimentos { background: var(--cream); }

    .testimonials-grid {
      display: grid; grid-template-columns: repeat(3, 1fr);
      gap: 1.5rem;
    }

    .testimonial-card {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: 4px; padding: 2rem;
      position: relative;
    }

    .testimonial-card::before {
      content: '"';
      font-family: 'Playfair Display', serif;
      font-size: 5rem; color: var(--gold); opacity: 0.15;
      position: absolute; top: -0.5rem; left: 1rem;
      line-height: 1;
    }

    .test-text {
      font-size: 0.9rem; color: var(--muted); line-height: 1.7;
      margin-bottom: 1.5rem; position: relative; z-index: 1;
    }
    .test-author { display: flex; align-items: center; gap: 0.8rem; }
    .test-avatar {
      width: 40px; height: 40px; border-radius: 50%;
      background: linear-gradient(135deg, var(--gold), #8a6830);
      display: flex; align-items: center; justify-content: center;
      font-family: 'Playfair Display', serif; font-weight: 700;
      color: var(--cream); font-size: 0.9rem;
    }
    .test-name { font-weight: 500; font-size: 0.9rem; }
    .test-role { font-size: 0.78rem; color: var(--muted); }

    .stars { color: var(--gold); font-size: 0.8rem; letter-spacing: 0.05em; margin-bottom: 1rem; }

    /* ── PRECOS ── */
    #precos { background: var(--white); }

    .pricing-grid {
      display: grid; grid-template-columns: repeat(3, 1fr);
      gap: 2rem; align-items: start;
    }

    .price-card {
      border: 1.5px solid var(--border);
      border-radius: 4px; padding: 2.5rem 2rem;
      background: var(--white); position: relative;
      transition: transform 0.25s, box-shadow 0.25s;
    }
    .price-card:hover { transform: translateY(-4px); box-shadow: 0 20px 50px rgba(14,17,23,0.1); }
    .price-card.featured {
      border-color: var(--gold); background: var(--ink);
      color: var(--cream);
    }
    .price-card.featured .price-amount,
    .price-card.featured .price-name { color: var(--cream); }
    .price-card.featured .price-desc { color: rgba(245,240,232,0.6); }
    .price-card.featured .price-feature { color: rgba(245,240,232,0.7); border-bottom-color: rgba(255,255,255,0.08); }
    .price-card.featured .feature-check { color: var(--gold); }

    .price-badge {
      display: inline-block; background: var(--gold); color: var(--ink);
      font-size: 0.68rem; font-weight: 600; letter-spacing: 0.1em;
      text-transform: uppercase; padding: 0.25rem 0.7rem;
      border-radius: 2px; margin-bottom: 1rem;
    }
    .price-name {
      font-family: 'Playfair Display', serif;
      font-size: 1.3rem; font-weight: 700; margin-bottom: 0.4rem;
    }
    .price-desc { font-size: 0.83rem; color: var(--muted); margin-bottom: 1.5rem; line-height: 1.5; }
    .price-amount {
      font-family: 'Playfair Display', serif;
      font-size: 2.8rem; font-weight: 900; line-height: 1;
      margin-bottom: 0.3rem;
    }
    .price-amount small { font-size: 1rem; font-weight: 400; }
    .price-period { font-size: 0.78rem; color: var(--muted); margin-bottom: 2rem; }

    .price-features { list-style: none; margin-bottom: 2rem; display: flex; flex-direction: column; gap: 0.7rem; }
    .price-feature {
      display: flex; align-items: flex-start; gap: 0.6rem;
      font-size: 0.85rem; color: var(--muted);
      border-bottom: 1px solid var(--border); padding-bottom: 0.7rem;
    }
    .feature-check { color: var(--gold); font-weight: 700; flex-shrink: 0; }
    .price-cta {
      width: 100%; padding: 0.9rem;
      font-family: 'DM Sans', sans-serif; font-size: 0.88rem;
      font-weight: 500; letter-spacing: 0.04em; cursor: pointer;
      border-radius: 2px; transition: 0.25s;
    }
    .cta-dark { background: var(--ink); color: var(--cream); border: none; }
    .cta-dark:hover { background: var(--gold); }
    .cta-gold { background: var(--gold); color: var(--ink); border: none; }
    .cta-gold:hover { background: var(--gold-light); }
    .cta-outline { background: transparent; color: var(--ink); border: 1.5px solid var(--border); }
    .cta-outline:hover { border-color: var(--ink); background: var(--cream); }

    /* ── FAQ ── */
    #faq { background: var(--cream); }
    .faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; max-width: 860px; }

    .faq-item {
      border: 1px solid var(--border); border-radius: 4px;
      background: var(--white); overflow: hidden;
    }
    .faq-q {
      padding: 1.2rem 1.5rem;
      display: flex; justify-content: space-between; align-items: center;
      cursor: pointer; font-size: 0.9rem; font-weight: 500;
      transition: background 0.2s;
    }
    .faq-q:hover { background: #f9f6f0; }
    .faq-arrow {
      color: var(--gold); font-size: 1rem;
      transition: transform 0.25s; flex-shrink: 0;
    }
    .faq-item.open .faq-arrow { transform: rotate(45deg); }
    .faq-a {
      max-height: 0; overflow: hidden;
      transition: max-height 0.3s ease, padding 0.3s;
      font-size: 0.84rem; color: var(--muted); line-height: 1.7;
      padding: 0 1.5rem;
    }
    .faq-item.open .faq-a { max-height: 200px; padding: 0 1.5rem 1.2rem; }

    /* ── CONTATO ── */
    #contato { background: var(--ink); color: var(--cream); }
    #contato .section-title { color: var(--cream); }
    #contato .section-sub { color: rgba(245,240,232,0.6); }

    .contact-grid {
      display: grid; grid-template-columns: 1fr 1.3fr;
      gap: 5rem; align-items: start;
    }

    .contact-info { display: flex; flex-direction: column; gap: 2rem; }
    .contact-method {
      display: flex; align-items: flex-start; gap: 1rem;
    }
    .contact-method-icon {
      width: 44px; height: 44px; border-radius: 2px;
      background: rgba(184,150,78,0.15); border: 1px solid rgba(184,150,78,0.3);
      display: flex; align-items: center; justify-content: center;
      font-size: 1.2rem; flex-shrink: 0;
    }
    .contact-method-label { font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.2rem; }
    .contact-method-value { font-size: 0.92rem; color: var(--cream); }

    /* FORM */
    .contact-form { display: flex; flex-direction: column; gap: 1rem; }
    .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
    .field { display: flex; flex-direction: column; gap: 0.4rem; }
    .field label { font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(245,240,232,0.5); }
    .field input, .field select, .field textarea {
      background: rgba(255,255,255,0.05);
      border: 1px solid rgba(255,255,255,0.12);
      border-radius: 2px; padding: 0.8rem 1rem;
      font-family: 'DM Sans', sans-serif; font-size: 0.9rem;
      color: var(--cream); outline: none;
      transition: border-color 0.2s;
    }
    .field input::placeholder, .field textarea::placeholder { color: rgba(245,240,232,0.3); }
    .field input:focus, .field select:focus, .field textarea:focus { border-color: var(--gold); }
    .field select option { background: var(--ink); }
    .field textarea { resize: vertical; min-height: 110px; }

    .form-submit {
      background: var(--gold); color: var(--ink);
      border: none; padding: 1rem 2rem; border-radius: 2px;
      font-family: 'DM Sans', sans-serif; font-size: 0.92rem;
      font-weight: 600; cursor: pointer; letter-spacing: 0.04em;
      transition: background 0.25s, transform 0.2s;
      align-self: flex-start;
    }
    .form-submit:hover { background: var(--gold-light); transform: translateY(-2px); }

    .form-success {
      display: none; background: rgba(46,125,82,0.15); border: 1px solid rgba(46,125,82,0.4);
      border-radius: 2px; padding: 1rem 1.5rem;
      font-size: 0.88rem; color: #7ec89e; line-height: 1.5;
    }

    /* ── FOOTER ── */
    footer {
      background: #07090d; color: rgba(245,240,232,0.4);
      padding: 2.5rem 4rem;
      display: flex; justify-content: space-between; align-items: center;
      font-size: 0.8rem;
    }
    .footer-logo {
      font-family: 'Playfair Display', serif;
      font-size: 1rem; color: rgba(245,240,232,0.7);
    }
    .footer-logo span { color: var(--gold); }
    .footer-links { display: flex; gap: 1.5rem; }
    .footer-links a { color: rgba(245,240,232,0.4); text-decoration: none; transition: color 0.2s; }
    .footer-links a:hover { color: var(--gold); }

    /* ── ANIMATIONS ── */
    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(24px); }
      to   { opacity: 1; transform: translateY(0); }
    }

    .reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease, transform 0.6s ease; }
    .reveal.visible { opacity: 1; transform: translateY(0); }

    /* ── WHATSAPP FLOAT ── */
    .whatsapp-float {
      position: fixed; bottom: 2rem; right: 2rem; z-index: 200;
      width: 56px; height: 56px; border-radius: 50%;
      background: #25d366; display: flex; align-items: center; justify-content: center;
      box-shadow: 0 6px 24px rgba(37,211,102,0.4);
      text-decoration: none; font-size: 1.6rem;
      transition: transform 0.25s, box-shadow 0.25s;
      animation: pulse 2s infinite;
    }
    .whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 10px 35px rgba(37,211,102,0.5); }
    @keyframes pulse {
      0%, 100% { box-shadow: 0 6px 24px rgba(37,211,102,0.4); }
      50% { box-shadow: 0 6px 35px rgba(37,211,102,0.6); }
    }

    /* ── RESPONSIVE ── */
    @media (max-width: 1024px) {
      #hero { grid-template-columns: 1fr; padding-top: 7rem; }
      #hero::after { display: none; }
      .hero-visual { display: none; }
      #sobre { grid-template-columns: 1fr; }
      .about-visual { display: none; }
      .steps { grid-template-columns: repeat(2, 1fr); }
      .testimonials-grid { grid-template-columns: 1fr 1fr; }
      .pricing-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
      .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
      .faq-grid { grid-template-columns: 1fr; }
    }

    @media (max-width: 768px) {
      nav { padding: 1rem 1.5rem; }
      .nav-links { display: none; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: var(--cream); border-top: 1px solid var(--border); padding: 1.5rem; gap: 1.2rem; }
      .nav-links.open { display: flex; }
      .hamburger { display: flex; }
      section, #hero, #sobre { padding: 4rem 1.5rem; }
      footer { flex-direction: column; gap: 1rem; text-align: center; padding: 2rem 1.5rem; }
      .hero-stats { gap: 1.5rem; }
      .steps { grid-template-columns: 1fr; }
      .testimonials-grid { grid-template-columns: 1fr; }
      .form-row { grid-template-columns: 1fr; }
      .divider { margin: 0 1.5rem; }
    }

    .contact-method-link {
      text-decoration: none;
      cursor: pointer;
      transition: background 0.2s, transform 0.2s;
      border-radius: 4px;
      margin: 0 -0.5rem;
      padding: 0.5rem;
    }
    .contact-method-link:hover {
      background: rgba(184,150,78,0.08);
      transform: translateX(4px);
    }
    .contact-method-link .contact-method-label { color: var(--gold); }
    .contact-method-link .contact-method-value { color: var(--cream); }
    .contact-method-link:hover .contact-method-value { color: var(--gold-light); }

    .contact-icon-whatsapp { color: #25d366; background: rgba(37,211,102,0.12) !important; border-color: rgba(37,211,102,0.25) !important; }
    .contact-icon-email    { color: var(--gold); background: rgba(184,150,78,0.12) !important; border-color: rgba(184,150,78,0.25) !important; }
    .contact-icon-clock    { color: rgba(245,240,232,0.5); }

    .contact-arrow {
      margin-left: auto;
      font-size: 1rem;
      color: rgba(245,240,232,0.25);
      transition: color 0.2s, transform 0.2s;
      flex-shrink: 0;
    }
    .contact-method-link:hover .contact-arrow {
      color: var(--gold);
      transform: translate(2px, -2px);
    }

    /* ── CHATBOT ── */
    .chat-trigger {
      position: fixed; bottom: 5.5rem; right: 2rem; z-index: 200;
      width: 56px; height: 56px; border-radius: 50%;
      background: var(--ink); border: 2px solid var(--gold);
      display: flex; align-items: center; justify-content: center;
      cursor: pointer; font-size: 1.5rem;
      box-shadow: 0 6px 24px rgba(14,17,23,0.35);
      transition: transform 0.25s, box-shadow 0.25s;
    }
    .chat-trigger:hover { transform: scale(1.1); box-shadow: 0 10px 35px rgba(14,17,23,0.45); }
    .chat-trigger .chat-dot {
      position: absolute; top: 2px; right: 2px;
      width: 12px; height: 12px; border-radius: 50%;
      background: var(--gold); border: 2px solid var(--ink);
      animation: blink 2s infinite;
    }
    @keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.4} }

    #chatbox {
      position: fixed; bottom: 10rem; right: 2rem; z-index: 201;
      width: 340px; border-radius: 8px; overflow: hidden;
      background: var(--white); border: 1px solid var(--border);
      box-shadow: 0 20px 60px rgba(14,17,23,0.2);
      display: flex; flex-direction: column;
      transform: scale(0.92) translateY(16px);
      opacity: 0; pointer-events: none;
      transition: transform 0.28s cubic-bezier(.34,1.56,.64,1), opacity 0.22s ease;
      transform-origin: bottom right;
    }
    #chatbox.open { transform: scale(1) translateY(0); opacity: 1; pointer-events: all; }

    .chat-header {
      background: var(--ink); color: var(--cream);
      padding: 1rem 1.2rem;
      display: flex; align-items: center; gap: 0.8rem;
    }
    .chat-avatar {
      width: 36px; height: 36px; border-radius: 50%;
      background: linear-gradient(135deg, var(--gold), #8a6830);
      display: flex; align-items: center; justify-content: center;
      font-family: 'Playfair Display', serif; font-weight: 700;
      font-size: 0.9rem; color: var(--ink); flex-shrink: 0;
    }
    .chat-header-info { flex: 1; }
    .chat-header-name { font-size: 0.9rem; font-weight: 600; }
    .chat-header-status { font-size: 0.72rem; color: rgba(245,240,232,0.6); display: flex; align-items: center; gap: 0.3rem; }
    .chat-header-status::before { content:''; width:6px; height:6px; border-radius:50%; background:#4caf82; display:inline-block; }
    .chat-close { background:none; border:none; color:rgba(245,240,232,0.5); cursor:pointer; font-size:1.2rem; padding:0; transition:color 0.2s; }
    .chat-close:hover { color:var(--cream); }

    #chatMessages {
      flex: 1; overflow-y: auto; padding: 1rem;
      display: flex; flex-direction: column; gap: 0.7rem;
      max-height: 320px; min-height: 200px;
      background: #faf7f2;
    }
    #chatMessages::-webkit-scrollbar { width: 4px; }
    #chatMessages::-webkit-scrollbar-track { background: transparent; }
    #chatMessages::-webkit-scrollbar-thumb { background: var(--border); border-radius: 4px; }

    .msg {
      max-width: 85%; padding: 0.65rem 0.9rem;
      border-radius: 12px; font-size: 0.84rem; line-height: 1.55;
      animation: msgIn 0.2s ease;
    }
    @keyframes msgIn { from{opacity:0;transform:translateY(8px)} to{opacity:1;transform:translateY(0)} }

    .msg.bot {
      background: var(--white); color: var(--ink);
      border: 1px solid var(--border);
      border-bottom-left-radius: 3px; align-self: flex-start;
    }
    .msg.user {
      background: var(--ink); color: var(--cream);
      border-bottom-right-radius: 3px; align-self: flex-end;
    }

    .msg-typing {
      display: flex; gap: 5px; align-items: center;
      padding: 0.65rem 0.9rem;
      background: var(--white); border: 1px solid var(--border);
      border-radius: 12px; border-bottom-left-radius: 3px;
      width: fit-content; align-self: flex-start;
    }
    .msg-typing span {
      width: 7px; height: 7px; border-radius: 50%; background: var(--muted);
      animation: bounce 1.2s infinite;
    }
    .msg-typing span:nth-child(2) { animation-delay: 0.2s; }
    .msg-typing span:nth-child(3) { animation-delay: 0.4s; }
    @keyframes bounce { 0%,60%,100%{transform:translateY(0)} 30%{transform:translateY(-6px)} }

    #quickQuestions {
      padding: 0.6rem 1rem 0.2rem;
      display: flex; flex-wrap: wrap; gap: 0.4rem;
      background: #faf7f2; border-top: 1px solid var(--border);
    }
    .quick-btn {
      background: var(--white); border: 1px solid var(--border);
      border-radius: 20px; padding: 0.3rem 0.75rem;
      font-size: 0.75rem; cursor: pointer; color: var(--ink);
      transition: background 0.2s, border-color 0.2s;
      font-family: 'DM Sans', sans-serif;
    }
    .quick-btn:hover { background: var(--cream); border-color: var(--gold); }

    .chat-input-area {
      display: flex; gap: 0.5rem; padding: 0.8rem 1rem;
      border-top: 1px solid var(--border); background: var(--white);
    }
    #chatInput {
      flex: 1; border: 1px solid var(--border); border-radius: 20px;
      padding: 0.5rem 0.9rem; font-size: 0.84rem;
      font-family: 'DM Sans', sans-serif; color: var(--ink);
      background: #faf7f2; outline: none; transition: border-color 0.2s;
    }
    #chatInput:focus { border-color: var(--gold); }
    #chatInput::placeholder { color: var(--muted); }
    .chat-send-btn {
      width: 36px; height: 36px; border-radius: 50%; flex-shrink: 0;
      background: var(--gold); border: none; cursor: pointer;
      display: flex; align-items: center; justify-content: center;
      font-size: 1rem; transition: background 0.2s, transform 0.2s;
    }
    .chat-send-btn:hover { background: var(--gold-light); transform: scale(1.1); }

    @media (max-width: 480px) {
      #chatbox { width: calc(100vw - 2rem); right: 1rem; bottom: 9rem; }
      .chat-trigger { right: 1rem; }
    }