:root {
      --primary:        #D47A7A;
      --primary-2:      #B05A5A;
      --pink:           #F2C6C2;
      --cream:          #F7E9DC;
      --sage:           #A8B5A2;
      --taupe:          #8E7D6D;
      --accent:         #A8B5A2;
      --bg:             #FDF5EE;
      --surface:        #FFFCF9;
      --text-main:      #5A4A42;
      --text-soft:      #8E7D6D;
      --text-faint:     #b6a698;
      --whatsapp:       #25D366;
      --whatsapp-hover: #20bd5a;
      --border:         rgba(212, 122, 122, 0.22);
      --shadow:         0 12px 40px rgba(90, 74, 66, 0.13);
      --radius-card:    24px;
      --radius-btn:     50px;
      --radius-sm:      12px;
      --transition:     0.2s cubic-bezier(0.16, 1, 0.3, 1);
      --bar-h:          42px;
    }

    *, *::before, *::after {
      margin: 0; padding: 0;
      box-sizing: border-box;
      -webkit-tap-highlight-color: transparent;
    }

    html {
      overflow-x: hidden;
      -webkit-text-size-adjust: 100%;
      margin-top: 0 !important;
      padding-top: 0 !important;
    }

    body {
      font-family: 'Poppins', sans-serif;
      background-color: var(--bg);
      background-image: radial-gradient(rgba(212, 122, 122, 0.10) 1px, transparent 1px);
      background-size: 22px 22px;
      color: var(--text-main);
      line-height: 1.6;
      min-height: 100vh;
      margin-top: 0 !important;
      padding-top: var(--bar-h) !important;
      padding-left: 16px;
      padding-right: 16px;
      padding-bottom: 60px;
      -webkit-font-smoothing: antialiased;
      overflow-x: hidden;
    }

    img { display: block; max-width: 100%; height: auto; }

    .urgency-bar {
      position: fixed;
      top: 0; left: 0; right: 0;
      height: var(--bar-h);
      background: linear-gradient(135deg, var(--primary) 0%, #9C4B4B 100%);
      color: #fff;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      font-size: 11.5px;
      font-weight: 800;
      letter-spacing: 0.07em;
      text-transform: uppercase;
      z-index: 1001;
      box-shadow: 0 3px 14px rgba(90, 74, 66, 0.22);
    }
    .urgency-bar i { color: var(--pink); }
    .pulse-icon { animation: iconPulse 1.4s ease-in-out infinite; }
    @keyframes iconPulse { 0%,100%{transform:scale(1)} 50%{transform:scale(1.22)} }

    .container {
      max-width: 420px;
      width: 100%;
      margin: 18px auto 0;
      background: var(--surface);
      border-radius: var(--radius-card);
      box-shadow: var(--shadow);
      overflow: hidden;
      text-align: center;
      padding: 18px 24px 24px;
      border: 1px solid var(--border);
      position: relative;
    }

    .container::before {
      content: '';
      position: absolute;
      top: -50px; right: -50px;
      width: 180px; height: 180px;
      border-radius: 50%;
      background: rgba(242, 198, 194, 0.30);
      pointer-events: none;
    }

    .logo-wrap {
      width: 110px;
      height: 110px;
      margin: 0 auto 16px;
      border-radius: 50%;
      padding: 3px;
      background: linear-gradient(135deg, var(--primary), var(--pink), var(--sage));
      position: relative;
    }
    .logo-inner {
      width: 100%; height: 100%;
      border-radius: 50%;
      overflow: hidden;
      border: 3px solid #fff;
      background: var(--bg);
    }
    .logo {
      width: 100%; height: 100%;
      object-fit: cover;
      object-position: center;
      border-radius: 50%;
      display: block;
    }
    .logo-badge {
      position: absolute;
      bottom: 4px; right: 4px;
      width: 26px; height: 26px;
      border-radius: 50%;
      background: var(--primary-2);
      border: 2px solid #fff;
      display: flex; align-items: center; justify-content: center;
      color: #fff;
      font-size: 10px;
    }

    .group-badge {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      background: rgba(242, 198, 194, 0.45);
      color: var(--primary-2);
      border: 1px solid rgba(212, 122, 122, 0.32);
      border-radius: 50px;
      font-size: 11px;
      font-weight: 800;
      letter-spacing: 0.07em;
      text-transform: uppercase;
      padding: 4px 13px;
      margin-bottom: 14px;
    }

    h1 {
      font-family: 'Playfair Display', Georgia, serif;
      font-size: clamp(22px, 6vw, 28px);
      line-height: 1.22;
      font-weight: 700;
      color: var(--text-main);
      margin-bottom: 12px;
    }
    .highlight { color: var(--primary-2); font-style: italic; }

    .subtitle {
      font-size: 14px;
      color: var(--text-soft);
      margin-bottom: 18px;
      line-height: 1.6;
      padding: 0 4px;
    }
    .subtitle strong { color: var(--primary-2); font-weight: 800; }

    .cta-box { margin: 4px 0 4px; }

    .cta-button {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      background: var(--whatsapp);
      color: #fff;
      text-decoration: none;
      padding: 17px 20px;
      border-radius: var(--radius-btn);
      font-family: 'Poppins', sans-serif;
      font-size: 15px;
      font-weight: 800;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      box-shadow: 0 8px 24px rgba(37, 211, 102, 0.38);
      transition: transform var(--transition), background var(--transition);
      width: 100%;
      border: none;
      cursor: pointer;
      position: relative;
      overflow: hidden;
      min-height: 54px;
    }
    .cta-button::after {
      content: "";
      position: absolute;
      top: -50%; left: -60%;
      width: 200%; height: 200%;
      background: rgba(255,255,255,0.20);
      transform: rotate(30deg) translateX(-100%);
      animation: shine 3.5s infinite;
    }
    @keyframes shine {
      0%   { transform: rotate(30deg) translateX(-100%); }
      18%  { transform: rotate(30deg) translateX(120%); }
      100% { transform: rotate(30deg) translateX(120%); }
    }
    .cta-button:hover { transform: translateY(-2px); background: var(--whatsapp-hover); }
    .cta-button:active { transform: translateY(0); }
    .cta-button.is-loading { pointer-events: none; opacity: 0.82; }
    .cta-button i { font-size: 22px; }

    .social-proof {
      font-size: 12px;
      color: var(--primary-2);
      font-weight: 700;
      margin-top: 10px;
      margin-bottom: 16px;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 6px;
    }

    .progress-card {
      background: rgba(247, 233, 220, 0.75);
      border: 1px solid rgba(212, 122, 122, 0.24);
      border-radius: var(--radius-sm);
      padding: 14px 16px;
      margin: 0 0 20px;
      text-align: left;
    }
    .progress-header {
      display: flex;
      justify-content: space-between;
      font-size: 13px;
      font-weight: 800;
      color: var(--text-main);
      margin-bottom: 9px;
    }
    .percent-text { color: var(--primary-2); }
    .progress-track {
      width: 100%; height: 10px;
      background: #efdcd2;
      border-radius: 20px;
      overflow: hidden;
      margin-bottom: 10px;
    }
    .progress-fill {
      height: 100%; width: 85%;
      background: linear-gradient(90deg, #9C4B4B 0%, var(--primary) 100%);
      border-radius: 20px;
      transition: width 1s ease-out;
    }
    .spots-left {
      text-align: right;
      font-size: 12.5px;
      color: var(--text-soft);
      font-weight: 700;
    }
    .spots-left strong { color: var(--text-main); font-weight: 800; }

    .section-title {
      font-size: 11.5px;
      font-weight: 800;
      color: var(--primary-2);
      text-transform: uppercase;
      letter-spacing: 0.08em;
      margin-bottom: 14px;
      text-align: center;
    }
    .benefits-section { text-align: left; margin-bottom: 20px; }
    .benefit-item {
      display: flex;
      align-items: flex-start;
      gap: 13px;
      margin-bottom: 10px;
      background: var(--bg);
      padding: 13px 14px;
      border-radius: var(--radius-sm);
      border: 1px solid rgba(212, 122, 122, 0.14);
      box-shadow: 0 2px 6px rgba(90, 74, 66, 0.05);
    }
    .benefit-item:last-child { margin-bottom: 0; }
    .benefit-icon {
      min-width: 36px; height: 36px;
      border-radius: 10px;
      background: rgba(212, 122, 122, 0.16);
      display: flex; align-items: center; justify-content: center;
      color: var(--primary-2);
      font-size: 16px;
      flex-shrink: 0;
    }
    .benefit-item:nth-child(even) .benefit-icon {
      background: rgba(168, 181, 162, 0.28);
      color: #6E7F68;
    }
    .benefit-text h3 {
      font-size: 12.5px;
      font-weight: 800;
      color: var(--text-main);
      text-transform: uppercase;
      letter-spacing: 0.04em;
      margin-bottom: 3px;
    }
    .benefit-text p {
      font-size: 12.5px;
      color: var(--text-soft);
      line-height: 1.45;
    }

    .testimonial {
      background: var(--bg);
      border-left: 3px solid var(--primary);
      border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
      padding: 13px 15px;
      margin-bottom: 20px;
      text-align: left;
    }
    .testimonial blockquote {
      font-family: 'Playfair Display', serif;
      font-style: italic;
      font-size: 13.5px;
      color: var(--text-main);
      line-height: 1.55;
      margin-bottom: 6px;
    }
    .testimonial cite {
      font-size: 11.5px;
      color: var(--text-faint);
      font-style: normal;
      font-weight: 700;
    }

    .footer {
      margin-top: 18px;
      border-top: 1px solid rgba(212, 122, 122, 0.22);
      padding-top: 16px;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 12px;
    }
    .footer-links { font-size: 11px; }
    .footer-links a { color: var(--text-soft); text-decoration: none; font-weight: 700; }
    .footer-links a:hover { color: var(--primary-2); }

    .toast {
      position: fixed;
      bottom: 20px; left: 50%;
      transform: translateX(-50%) translateY(120px);
      background: var(--surface);
      padding: 12px 16px;
      border-radius: var(--radius-sm);
      box-shadow: 0 8px 24px rgba(0,0,0,0.14);
      display: flex;
      align-items: center;
      gap: 12px;
      opacity: 0;
      z-index: 1000;
      max-width: 360px;
      width: calc(100% - 32px);
      border: 1px solid rgba(212, 122, 122, 0.30);
      pointer-events: none;
    }
    .toast.show { animation: toastIn 0.35s ease forwards, toastOut 0.35s ease 2.7s forwards; }
    @keyframes toastIn  { to { transform: translateX(-50%) translateY(0); opacity: 1; } }
    @keyframes toastOut { to { transform: translateX(-50%) translateY(120px); opacity: 0; } }
    .toast-icon {
      width: 38px; height: 38px;
      background: var(--primary);
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      color: #fff;
      font-size: 16px;
      flex-shrink: 0;
    }
    .toast-text { font-size: 13px; color: var(--text-main); line-height: 1.3; font-weight: 700; }
    .toast-text strong { color: var(--primary-2); font-weight: 800; }

    .loading-overlay {
      display: none;
      position: fixed; inset: 0;
      background: rgba(255,252,249,0.97);
      z-index: 2000;
      justify-content: center;
      align-items: center;
      flex-direction: column;
      gap: 14px;
      text-align: center;
      padding: 24px;
    }
    .spinner {
      width: 42px; height: 42px;
      border: 3px solid rgba(212, 122, 122, 0.20);
      border-top: 3px solid var(--whatsapp);
      border-radius: 50%;
      animation: spin 0.85s linear infinite;
    }
    @keyframes spin { 100% { transform: rotate(360deg); } }
    .loading-text { font-family: 'Playfair Display', serif; font-size: 17px; font-weight: 700; color: var(--text-main); }

    @media (prefers-reduced-motion: reduce) {
      *, *::before, *::after { animation: none !important; transition-duration: 0.01ms !important; }
    }
  
    a:focus-visible { outline: 3px solid var(--primary-2); outline-offset: 4px; }
    .cta-button::after { pointer-events: none; }
    @media (max-width: 380px) {
      .container { padding-inline: 16px; }
      .cta-button { font-size: 12px; padding-inline: 12px; gap: 7px; }
      .social-proof { font-size: 10px; }
      .urgency-bar { font-size: 10px; letter-spacing: .04em; }
    }
