  :root{
    /* Paleta (ajuste conforme necessário) */
    --formp-teal:#12BAB9;
    --formp-teal-2:#10b7b0;
    --formp-purple:#6000BC;
    --formp-purple-2:#4f25bd;
    --formp-cyan:#2ef0d6;
    --formp-ink:#0e0d2b;
    --formp-white:#ffffff;

    --formp-maxw: 1120px;
    --formp-radius: 14px;
    --formp-shadow: 0 12px 28px rgba(0,0,0,.18);
    --formp-softshadow: 0 10px 22px rgba(0,0,0,.12);
    --formp-gap: clamp(18px, 3.4vw, 36px);
  }

  /* ===== Secção ===== */
  .formp-section{
    position:relative;
    padding: clamp(26px, 5vw, 56px) 0 64px;
    background: linear-gradient(180deg, var(--formp-teal) 0%, var(--formp-teal-2) 100%);
  }

  .formp-section::after{ /* barra/triângulo roxo no canto inferior direito */
    content:"";
    position:absolute;
    left:0;
    top:-36px;
    width:49%;
    height:75px;
    background: var(--formp-teal);
    pointer-events:none;
  }

  .formp-wrap{ max-width:var(--formp-maxw); margin:0 auto; padding:0 20px; position:relative; z-index:1; }

  /* ===== Título ===== */
  .formp-head{ margin-bottom: 18px; }
  .formp-underscore{
    width: 68px; height: 6px; border-radius: 6px; background: var(--formp-cyan);
    margin-bottom: 10px;
  }
  .formp-title{
    margin:0;
    font-size: clamp(28px, 5vw, 48px);
    font-weight: 900;
    color: var(--formp-white);
    text-transform: uppercase;
    letter-spacing: .5px;
  }

  /* ===== Intro ===== */
  .formp-intro{
    max-width: 760px;
    background: rgba(255,255,255,.16);
    color: #effcff;
    border: 2px solid rgba(255,255,255,.5);
    border-radius: var(--formp-radius);
    box-shadow: var(--formp-softshadow);
    padding: 16px 18px;
    backdrop-filter: blur(1px);
  }
  .formp-intro p{ margin: .3rem 0; line-height: 1.55; }

  /* ===== Cards ===== */
  .formp-grid{
    display:grid;
    grid-template-columns: repeat(2, minmax(280px, 1fr));
    gap: var(--formp-gap);
    margin-top: 24px;
  }
  @media (max-width: 860px){ .formp-grid{ grid-template-columns: 1fr; } }

  .formp-card{
    position:relative;
    padding: 58px 18px 18px; 
    color: #6000BC;
    background-color: #EDEAFF;
    text-align: center;
  }
  /* faixa roxa "pílula" centrada no topo do card */
  .formp-card::before{
    content: attr(data-badge);
    position:absolute; left:50%; top:-18px; transform:translateX(-50%);
    background:  var(--formp-purple);
    color: #fff; font-weight: 800; font-size: 1rem;
    padding: 10px 18px; 
    white-space: nowrap;
    font-size: 32px;
  }
  .formp-card p{ margin: 0; line-height: 1.55; }

  /* ===== Rodapé com link ===== */
  .formp-foot{
    margin-top: 22px; color: #e9fffe; font-size: 1.02rem;
  }
  .formp-foot a{
    color: var(--formp-purple);
    font-weight: 800;
    text-decoration: none;
    border-bottom: 2px solid var(--formp-purple);
  }
  .formp-foot a:hover{ filter: brightness(1.05); }

  .formp-bg-img {
   position: absolute; 
   right: 0;
   bottom: 0;
   height: 100%;
  }