 :root {
          --bg: #f7f4ef;
      --bg-soft: #6b6c6c;
      --card: rgba(255,255,255,0.52);
      --text: #6b6c6c;
      --muted: #6a5f57;
      --gold: #c79a3b;
      --gold-dark: #9e7321;
      --shadow: 0 20px 60px rgba(37, 24, 8, 0.14);
      --radius: 28px;
      --max: 520px;
    }

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

    html {
      scroll-behavior: smooth;
    }

    body {
      min-height: 100vh;
      font-family: "Georgia", "Times New Roman", serif;
      color: var(--text);
      background:
        radial-gradient(circle at top left, rgba(200,100,200,0.12), transparent 28%),
        linear-gradient(180deg, #f9f4e2 0%, #f6efe6 100%);
      overflow-x: hidden;
      position: relative;
      display: flex;
      justify-content: center;
      align-items: center;
      padding: 32px 18px;
    }

    body::before {
      content: "";
      position: fixed;
      inset: 0;
      pointer-events: none;
      background:
        radial-gradient(circle at 20% 15%, rgba(199,154,59,0.08), transparent 18%),
        radial-gradient(circle at 80% 30%, rgba(199,154,59,0.07), transparent 22%),
        radial-gradient(circle at 50% 85%, rgba(199,154,59,0.06), transparent 20%);
      z-index: -2;
    }

    .glow,
    .ring,
    .ring-2 {
      position: fixed;
      border-radius: 999px;
      pointer-events: none;
      z-index: -1;
      transition: transform 0.15s linear;
      will-change: transform;
    }

    .glow {
      width: 420px;
      height: 420px;
      right: -100px;
      top: -80px;
      background: radial-gradient(circle, rgba(199,154,59,0.18) 0%, rgba(199,154,59,0.06) 38%, transparent 72%);
      filter: blur(10px);
    }

    .ring {
      width: 420px;
      height: 420px;
      right: -120px;
      top: 40px;
      border: 1px solid rgba(199,154,59,0.24);
    }

    .ring-2 {
      width: 260px;
      height: 260px;
      left: -90px;
      bottom: 20px;
      border: 1px solid rgba(199,154,59,0.18);
    }

    .page {
      width: 100%;
      max-width: var(--max);
    }

    .card {
      background: var(--card);
      border: 1px solid rgba(255,255,255,0.72);
      backdrop-filter: blur(18px);
      box-shadow: var(--shadow);
      border-radius: 34px;
      overflow: hidden;
      position: relative;
    }

    .top {
      padding: 30px 28px 24px;
      text-align: center;
      position: relative;
    }

    .logo-wrap {
      display: flex;
      justify-content: center;
      margin-bottom: 18px;
    }

    .logo-top {
      max-width: 170px !important;
      width: 100%;
      height: auto;
      position: absolute;
      left: 5%;
      top: 10%;
      display: block;
      filter: drop-shadow(0 10px 22px rgba(37,24,8,0.12));
      transition: transform 0.25s ease;
    }

    .logo-top:hover {
      transform: scale(1.03);
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      font-family: Arial, Helvetica, sans-serif;
      text-transform: uppercase;
      letter-spacing: 0.18em;
      font-size: 0.75rem;
      color: var(--gold-dark);
      margin-bottom: 18px;
    }

    .eyebrow::before,
    .eyebrow::after {
      content: "";
      width: 28px;
      height: 1px;
      background: linear-gradient(90deg, var(--gold), transparent);
    }

    .avatar-wrap {
      width: 128px;
      height: 128px;
      margin: 0 auto 18px;
      padding: 6px;
      border-radius: 50%;
      background: linear-gradient(135deg, rgba(199,154,59,0.28), rgba(255,255,255,0.65));
      box-shadow: 0 18px 40px rgba(37,24,8,0.14);
      margin-top: 20px;
      border: 6px solid #fff;
    }

    .avatar {
      width: 100%;
      height: 150%;
      border-radius: 50%;
      background: url('../imagens/drapamela.png') center top/cover no-repeat;
      margin-top: -45px !important;
    }

    h1 {
      font-size: clamp(2rem, 5vw, 3rem);
      line-height: 0.95;
      letter-spacing: -0.04em;
      margin-bottom: 12px;
      font-weight: bold;
    }

    .subtitle {
      font-family: Arial, Helvetica, sans-serif;
      color: var(--muted);
      font-size: 1rem;
      line-height: 1.4;
      max-width: 34ch;
      margin: 0 auto;
    }

    .links {
      padding: 0;
      display: grid;
      gap: 14px;
      margin-top: -30px;
    }

    .link-btn {
      position: relative;
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      justify-content: flex-start;
      gap: 16px;
      text-decoration: none;
      padding: 40px;
      text-align: left;
      border-radius: 24px;
      background: linear-gradient(135deg, #ffffff 0%, rgba(255,255,255,0.72) 100%);
      border: 1px solid rgba(199,154,59,0.18);
      box-shadow: 0 14px 34px rgba(37,24,8,0.10);
      transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
      overflow: hidden;
      width: 100%;
    }

    .link-btn:hover {
      transform: translateY(-4px) scale(1.01);
      box-shadow: 0 24px 48px rgba(37,24,8,0.14);
    }

    .link-btn::before {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(90deg, rgba(199,154,59,0.08), transparent 40%, rgba(153,0,153,0.05));
      opacity: 0;
      transition: opacity 0.25s ease;
    }

    .link-btn:hover::before {
      opacity: 1;
    }

    .link-btn h2 {
      font-size: clamp(1.8rem, 5vw, 2.6rem);
      line-height: 40px;
      letter-spacing: -0.04em;
      margin: 0;
      font-weight: bold;
      color: var(--text);
      position: relative;
      z-index: 1;
    }

    .lead {
      width: 100%;
      position: relative;
      z-index: 1;
    }

    .lead p {
      font-family: Arial, Helvetica, sans-serif;
      color: var(--muted);
      font-size: 0.98rem;
      line-height: 1.4;
      margin: 0 0 14px 0;
    }

    .lead p:last-child {
      margin-bottom: 0;
    }

    .gallery-preview {
      width: 100%;
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 10px;
      margin: 8px 0 4px;
      position: relative;
      z-index: 1;
    }

    .gallery-preview img {
      width: 100%;
      height: 95px;
      object-fit: cover;
      border-radius: 16px;
      cursor: pointer;
      transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
      box-shadow: 0 12px 22px rgba(37,24,8,0.10);
      display: block;
    }

    .gallery-preview img:hover {
      transform: translateY(-4px) scale(1.04);
      box-shadow: 0 20px 36px rgba(37,24,8,0.18);
      filter: brightness(1.03);
    }

    .cta-row {
      width: 100%;
      display: flex;
      margin-top: 6px;
      position: relative;
      z-index: 1;
    }

    .btn {
      appearance: none;
      border: 0;
      text-decoration: none;
      cursor: pointer;
      font-family: Arial, Helvetica, sans-serif;
      font-size: 0.95rem;
      padding: 16px 22px;
      border-radius: 999px;
      transition: transform 0.25s ease, box-shadow 0.25s ease;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      float: right;
    }

    .btn:hover {
      transform: translateY(-2px);
    }

    .btn-primary {
      color: #fff;
      background: #d3af37;
      box-shadow: 0 16px 34px rgba(153, 0, 153, 0.22);
    }

    .footer {
      padding: 0 28px 28px;
      text-align: center;
    }

    .footer p {
      font-family: Arial, Helvetica, sans-serif;
      color: var(--muted);
      font-size: 0.88rem;
      line-height: 1.6;
    }

    .social-row {
      display: flex;
      justify-content: center;
      gap: 12px;
      margin-top: 18px;
    }

    .social {
      width: 46px;
      height: 46px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      text-decoration: none;
      background: rgba(255,255,255,0.65);
      border: 1px solid rgba(199,154,59,0.18);
      box-shadow: 0 12px 24px rgba(37,24,8,0.08);
      transition: transform 0.25s ease, box-shadow 0.25s ease;
      color: var(--text);
    }

    .social:hover {
      transform: translateY(-3px);
      box-shadow: 0 18px 30px rgba(37,24,8,0.12);
    }

    .social svg {
      width: 20px;
      height: 20px;
    }

    .whatsapp-float {
      position: fixed;
      right: 18px;
      bottom: 20px;
      z-index: 1000;
      display: inline-flex;
      align-items: center;
      gap: 12px;
      padding: 14px 18px;
      border-radius: 999px;
      background: linear-gradient(135deg, #25D366 0%, #1ebe5b 100%);
      color: #fff;
      text-decoration: none;
      font-family: Arial, Helvetica, sans-serif;
      font-size: 0.95rem;
      font-weight: 700;
      box-shadow: 0 18px 45px rgba(37, 211, 102, 0.32);
      transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
    }

    .whatsapp-float:hover {
      transform: translateY(-4px) scale(1.03);
      box-shadow: 0 24px 60px rgba(37, 211, 102, 0.4);
      filter: brightness(1.03);
    }

    .whatsapp-float svg {
      width: 22px;
      height: 22px;
      flex: 0 0 22px;
    }

    .modal-galeria {
      display: none;
      position: fixed;
      inset: 0;
      z-index: 99999;
      background: rgba(0, 0, 0, 0.9);
      justify-content: center;
      align-items: center;
      padding: 24px;
      animation: fadeIn 0.25s ease;
    }

    .modal-galeria.ativo {
      display: flex;
    }

    .modal-galeria img {
      max-width: 92vw;
      max-height: 86vh;
      width: auto;
      height: auto;
      border-radius: 22px;
      box-shadow: 0 40px 100px rgba(0,0,0,0.6);
      animation: zoomIn 0.25s ease;
      display: block;
    }

    .fechar {
      position: absolute;
      top: 18px;
      right: 24px;
      width: 48px;
      height: 48px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 34px;
      line-height: 1;
      color: #fff;
      background: rgba(255,255,255,0.12);
      cursor: pointer;
      transition: transform 0.2s ease, background 0.2s ease;
      user-select: none;
    }

    .fechar:hover {
      transform: scale(1.08);
      background: rgba(255,255,255,0.2);
    }

    @keyframes fadeIn {
      from { opacity: 0; }
      to { opacity: 1; }
    }

    @keyframes zoomIn {
      from {
        opacity: 0;
        transform: scale(0.94);
      }
      to {
        opacity: 1;
        transform: scale(1);
      }
    }

    @media (max-width: 640px) {
      body {
        padding: 18px 14px 90px;
      }

      .top {
        padding: 24px 20px 22px;
      }

      .logo-top {
    max-width: 120px;
    width: 25%;
    height: auto;
    position: absolute;
    left: 5%;
    top: 19%;
    display: block;
    filter: drop-shadow(0 10px 22px rgba(37, 24, 8, 0.12));
    transition: transform 0.25s ease;
}

.lead {
    width: 100%;
    position: relative;
    z-index: 1;
    padding: 20px !important;
}

 .links {
    padding: 0;
    display: grid;
    gap: 14px;
    margin-top: -30px;
    padding: 20px !important;
}
      .footer {
        padding: 0 18px 22px;
      }

      .avatar {
    width: 100%;
    height: 150%;
    border-radius: 50%;
    background: url(../imagens/drapamela.png) center top / cover no-repeat;
    margin-top: -40px !important;
}

.link-btn h2 {
    font-size: 35px;
    line-height: 35px;
    letter-spacing: -0.04em;
    margin: 0;
padding:20px;
padding-bottom:0px;
    font-weight: bold;
    color: var(--text);
    position: relative;
    z-index: 1;
}
      .link-btn {
        padding: 18px 16px;
        border-radius: 22px;
      }

      .gallery-preview img {
        height: 82px;
        border-radius: 14px;
      }

      .whatsapp-float {
        right: 12px;
        bottom: 14px;
        padding: 13px 15px;
      }

      .fechar {
        top: 14px;
        right: 14px;
      }
    }