/* ==========================================================================
   COMPONENT: pricing-display
   --------------------------------------------------------------------------
   Big monetary statement: currency + amount + period + terms. Sits centered
   on a dark surface for the home page; accepts a light surface override.

   Markup contract:
     <div class="e-pricing">
         <div class="e-pricing__price">
             <span class="e-pricing__currency">R$</span>
             <span class="e-pricing__amount">997</span>
         </div>
         <span class="e-pricing__period">por mês</span>
         <p class="e-pricing__terms">...</p>
     </div>
   ========================================================================== */

/* Mirror of legacy `.pricing-statement-inner/-price-wrap/-currency/-amount/
   -period/-terms` (components.css 1816-1913). The dark-surface gradient on
   the amount uses pure white→cyan; period is 0.2em letter-spacing (NOT
   --e-tracking-wider 0.1em). Terms is 0.05em letter-spacing. */

.e-pricing {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0;
}

.e-pricing__price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 10px;
    line-height: 1;
}

.e-pricing__currency {
    font-size: 32px;
    font-weight: var(--e-font-weight-medium);
    color: rgba(255, 255, 255, 0.35);
    align-self: flex-start;
    padding-top: 25px;
}

.e-pricing__amount {
    font-size: 8rem;
    font-weight: var(--e-font-weight-bold);
    background: linear-gradient(135deg, #ffffff 0%, var(--e-color-secondary) 100%);
    -webkit-background-clip: text;
            background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.03em;
    line-height: 0.85;
}

.e-pricing__period {
    display: block;
    color: rgba(255, 255, 255, 0.25);
    font-weight: var(--e-font-weight-normal);
    letter-spacing: 0.2em;
    text-transform: lowercase;
    font-size: 14px;
    margin-top: 25px;
}

.e-pricing__terms {
    color: rgba(255, 255, 255, 0.2);
    font-weight: var(--e-font-weight-normal);
    letter-spacing: 0.05em;
    margin-top: 50px;
}


/* LIGHT SURFACE OVERRIDE */

.e-section--light .e-pricing__currency,
.e-section--soft  .e-pricing__currency,
.e-section--blue  .e-pricing__currency {
    color: var(--e-color-muted-soft);
}

.e-section--light .e-pricing__amount,
.e-section--soft  .e-pricing__amount,
.e-section--blue  .e-pricing__amount {
    background: linear-gradient(135deg, var(--e-color-primary) 0%, var(--e-color-secondary) 100%);
    -webkit-background-clip: text;
            background-clip: text;
    -webkit-text-fill-color: transparent;
}

.e-section--light .e-pricing__period,
.e-section--soft  .e-pricing__period,
.e-section--blue  .e-pricing__period {
    color: var(--e-color-muted);
}

.e-section--light .e-pricing__terms,
.e-section--soft  .e-pricing__terms,
.e-section--blue  .e-pricing__terms {
    color: var(--e-color-muted);
}
