/* ===============================================================
   TANDA v2 — landing-extra.css
   Hoja de overrides para la landing publica (subdominio www).
   Carga DESPUES de neumorphism.css y landing.css.
   Contiene:
     - Clases que reemplazan los style="..." inline del HTML original
     - Ajustes para el patron "logo cuadrado + nombre al lado"
     - Modificadores menores de spacing / typo
   =============================================================== */


/* ---------------------------------------------------------------
   1. Suffix del precio en cards de planes
       Ej. "$500 / sem" — el "/ sem" en gris pequeno
   --------------------------------------------------------------- */

.plan .price-suffix {
    font-size: 1rem;
    color: var(--text-muted);
    font-weight: var(--fw-medium);
}


/* ---------------------------------------------------------------
   2. Phone storytelling (story-aside): mockups con clases en lugar de inline
   --------------------------------------------------------------- */

.phone-screen .ps-when    { font-size: .6rem; color: var(--text-muted); }
.phone-screen .num-accent { color: var(--accent); }
.phone-screen .ps-center  { text-align: center; display: block; }
.phone-screen .ps-dl      { margin: 0; }


/* ---------------------------------------------------------------
   3. Barras animadas del mockup (alturas predefinidas)
       Reemplaza style="--h:60%" inline por clases
   --------------------------------------------------------------- */

.ps-bars i.bar-h-50 { --h: 50%; }
.ps-bars i.bar-h-60 { --h: 60%; }
.ps-bars i.bar-h-65 { --h: 65%; }
.ps-bars i.bar-h-72 { --h: 72%; }
.ps-bars i.bar-h-75 { --h: 75%; }
.ps-bars i.bar-h-80 { --h: 80%; }
.ps-bars i.bar-h-90 { --h: 90%; }


/* ---------------------------------------------------------------
   4. Marquee de opiniones: separacion entre filas
   --------------------------------------------------------------- */

.opiniones-marquee--row2 { margin-top: 1rem; }


/* ---------------------------------------------------------------
   5. Brand: logo cuadrado uniforme + nombre al lado
       Override del .brand img heredado de landing.css (era rectangular).
       Aplica al header y footer.
   --------------------------------------------------------------- */

.brand {
    display: inline-flex;
    align-items: center;
    gap: .65rem;
    text-decoration: none;
}
.brand img {
    width: 36px;
    height: 36px;
    object-fit: contain;
}
.brand .brand-name {
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--text);
    line-height: 1.1;
}

/* En el footer el nombre puede ir un poco mas grande */
.footer-brand .brand-name { font-size: 1.1rem; }

/* ============================================================
   Páginas legales (/privacidad, /terminos)
   Layout simple, columna de texto centrada, máximo legible.
   ============================================================ */
.legal-page {
    padding: 3rem 0 4rem;
    min-height: 60vh;
}
.legal-article {
    max-width: 760px;
    background: var(--surface, #e8ecf3);
    border-radius: 18px;
    padding: 2.5rem 2rem;
    box-shadow: 0 8px 24px rgba(29, 33, 56, 0.06);
}
.legal-head {
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(29, 33, 56, 0.08);
}
.legal-head h1 {
    margin: 0 0 .35rem;
    font-size: 1.8rem;
    font-weight: 700;
    color: #1d2138;
}
.legal-sub {
    color: #777;
    font-size: .9rem;
    margin: 0;
}
.legal-lead {
    font-size: 1rem;
    line-height: 1.6;
    color: #333;
    margin-bottom: 1.5rem;
}
.legal-article h2 {
    margin: 2rem 0 .6rem;
    font-size: 1.2rem;
    font-weight: 600;
    color: #1d2138;
}
.legal-article h3 {
    margin: 1.4rem 0 .4rem;
    font-size: 1rem;
    font-weight: 600;
    color: #333;
}
.legal-article p,
.legal-article ul,
.legal-article ol {
    color: #333;
    line-height: 1.65;
    font-size: .95rem;
    margin: 0 0 1rem;
}
.legal-article ul,
.legal-article ol {
    padding-left: 1.4rem;
}
.legal-article li { margin-bottom: .35rem; }
.legal-article a { color: var(--accent, #e85c5c); text-decoration: underline; }
.legal-article strong { color: #1d2138; }
.legal-foot {
    margin-top: 2rem;
    padding-top: 1.2rem;
    border-top: 1px solid rgba(29, 33, 56, 0.08);
    text-align: center;
    color: #666;
    font-size: .92rem;
}

@media (max-width: 640px) {
    .legal-page { padding: 1.5rem 0 2rem; }
    .legal-article { padding: 1.5rem 1.2rem; border-radius: 14px; }
    .legal-head h1 { font-size: 1.4rem; }
}
