/*
=========================================================
ARCHIVO: landing_servicios.css
UBICACIÓN: static/css/
FUNCIÓN: estilos exclusivos del Template 2
USO: landing de servicios orientada a autoridad, claridad y contacto
=========================================================
*/

/* =========================================================
   IDENTIDAD GENERAL DEL TEMPLATE 2
   - Editorial
   - Profesional
   - Menos cajas tipo producto
   - Más jerarquía, líneas y composición institucional
========================================================= */
.t2-page {
    --max-width: 1280px;
}

/* =========================================================
   CONTENEDOR PRINCIPAL
========================================================= */
.t2-main {
    padding-top: 34px;
    padding-bottom: 72px;
}

.t2-stack {
    display: grid;
    gap: 64px;
}

/* =========================================================
   TOPBAR
========================================================= */
.t2-topbar {
    background:
        linear-gradient(90deg, rgba(17, 24, 39, 0.96), rgba(31, 41, 55, 0.96));
    color: rgba(255, 255, 255, 0.92);
    font-size: 13px;
    letter-spacing: 0.01em;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.t2-topbar-inner {
    width: min(var(--max-width), calc(100% - 40px));
    margin: 0 auto;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.t2-topbar-left,
.t2-topbar-right {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 14px;
}

.t2-topbar-left span,
.t2-topbar-right a {
    color: rgba(255, 255, 255, 0.92);
}

.t2-topbar-right a:hover {
    color: #ffffff;
}

/* =========================================================
   HEADER
========================================================= */
.t2-header {
    position: sticky;
    top: 0;
    z-index: 30;
    backdrop-filter: blur(14px);
    background: rgba(255, 255, 255, 0.92);
    border-bottom: 1px solid rgba(15, 23, 42, 0.07);
}

.t2-header-inner {
    width: min(var(--max-width), calc(100% - 40px));
    margin: 0 auto;
    min-height: 88px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.t2-brand {
    display: flex;
    align-items: center;
    gap: 16px;
    min-width: 0;
}

.t2-brand-logo {
    width: 58px;
    height: 58px;
    object-fit: cover;
    border-radius: 18px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    background: #ffffff;
    box-shadow: 0 10px 22px rgba(15, 23, 42, 0.06);
}

.t2-brand-logo-placeholder {
    background:
        linear-gradient(135deg, rgba(99, 102, 241, 0.10), rgba(14, 165, 233, 0.08));
}

.t2-brand-text {
    min-width: 0;
}

.t2-brand-title {
    margin: 0;
    font-size: 20px;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: var(--brand-primary);
}

.t2-brand-description {
    margin: 6px 0 0;
    max-width: 560px;
    color: #667085;
    font-size: 14px;
    line-height: 1.7;
}

.t2-nav {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
}

.t2-nav a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 14px;
    border-radius: 12px;
    color: #344054;
    font-weight: 700;
    font-size: 14px;
    transition: all 0.22s ease;
}

.t2-nav a:hover {
    background: rgba(15, 23, 42, 0.04);
    color: var(--brand-primary);
}

.t2-nav .t2-btn {
    margin-left: 6px;
}

/* =========================================================
   SHELLS Y SECCIONES
========================================================= */
.t2-section,
.t2-hero-shell,
.t2-benefits-shell,
.t2-authority-shell,
.t2-contact-shell,
.t2-services-block,
.t2-process-flow,
.t2-testimonials-editorial {
    position: relative;
}

.t2-section,
.t2-hero-shell,
.t2-benefits-shell,
.t2-authority-shell,
.t2-contact-shell,
.t2-cta-final {
    overflow: hidden;
    border-radius: 28px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    background:
        linear-gradient(180deg, rgba(255,255,255,0.99), rgba(248,250,252,0.98));
    box-shadow: 0 20px 46px rgba(15, 23, 42, 0.05);
    padding: 54px;
}

.t2-section::before,
.t2-hero-shell::before,
.t2-benefits-shell::before,
.t2-authority-shell::before,
.t2-contact-shell::before,
.t2-cta-final::before {
    content: "";
    position: absolute;
    top: -40px;
    right: -40px;
    width: 220px;
    height: 220px;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.05), transparent 72%);
    pointer-events: none;
}

.t2-section::after,
.t2-hero-shell::after,
.t2-benefits-shell::after,
.t2-authority-shell::after,
.t2-contact-shell::after,
.t2-cta-final::after {
    content: "";
    position: absolute;
    left: -80px;
    bottom: -80px;
    width: 220px;
    height: 220px;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(14, 165, 233, 0.04), transparent 72%);
    pointer-events: none;
}

/* =========================================================
   TIPOGRAFÍA
========================================================= */
.t2-section-title,
.t2-hero-title,
.t2-contact-title,
.t2-service-title,
.t2-flow-title {
    color: var(--brand-primary);
}

.t2-section-title {
    margin: 0 0 20px;
    max-width: 1020px;
    font-size: clamp(34px, 4vw, 58px);
    line-height: 1.06;
    letter-spacing: -0.04em;
}

.t2-section-text {
    margin: 0;
    max-width: 920px;
    color: #667085;
    font-size: 17px;
    line-height: 1.9;
}

/* =========================================================
   BADGES
========================================================= */
.t2-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 18px;
}

.t2-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 34px;
    padding: 0 14px;
    border-radius: 999px;
    background: rgba(99, 102, 241, 0.08);
    border: 1px solid rgba(99, 102, 241, 0.14);
    color: #4f46e5;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.01em;
}

/* =========================================================
   HERO
========================================================= */
.t2-hero {
    display: grid;
    grid-template-columns: 1.08fr 0.92fr;
    gap: 50px;
    align-items: center;
}

.t2-hero-content {
    position: relative;
    z-index: 1;
}

.t2-hero-title {
    margin: 0 0 20px;
    max-width: 840px;
    font-size: clamp(40px, 5vw, 72px);
    line-height: 1.02;
    letter-spacing: -0.05em;
}

.t2-hero-text {
    margin: 0 0 28px;
    max-width: 760px;
    color: #5b6575;
    font-size: 18px;
    line-height: 1.88;
}

.t2-hero-points {
    display: grid;
    gap: 16px;
    margin-bottom: 28px;
}

.t2-hero-point {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    font-size: 16px;
    line-height: 1.75;
    color: var(--brand-text);
}

.t2-hero-check,
.t2-list-check {
    width: 28px;
    height: 28px;
    flex: 0 0 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: rgba(16, 185, 129, 0.10);
    color: #047857;
    font-size: 15px;
    font-weight: 900;
}

.t2-hero-actions,
.t2-cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.t2-hero-media,
.t2-about-media {
    min-height: 100%;
    overflow: hidden;
    border-radius: 26px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    background:
        linear-gradient(180deg, rgba(255,255,255,0.98), rgba(246,248,251,0.99));
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.7);
}

.t2-hero-media img,
.t2-about-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.t2-placeholder {
    min-height: 360px;
    display: grid;
    place-items: center;
    text-align: center;
    padding: 30px;
    border-radius: 26px;
    border: 1px dashed rgba(15, 23, 42, 0.12);
    background:
        linear-gradient(180deg, rgba(255,255,255,0.96), rgba(247,248,251,0.98));
    color: #667085;
    line-height: 1.85;
}

/* =========================================================
   BANDA DE CONFIANZA
========================================================= */
.t2-trust-band {
    display: grid;
    gap: 28px;
    padding: 4px 8px 0;
}

.t2-trust-head {
    display: grid;
    gap: 12px;
}

.t2-trust-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
}

.t2-trust-item {
    padding: 0 0 20px;
    border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

.t2-trust-label {
    margin-bottom: 12px;
    font-size: 18px;
    font-weight: 800;
    line-height: 1.25;
    color: var(--brand-primary);
}

.t2-trust-text {
    margin: 0;
    color: #667085;
    font-size: 15px;
    line-height: 1.85;
}

/* =========================================================
   SERVICIOS DESTACADOS
========================================================= */
.t2-services-block {
    display: grid;
    gap: 32px;
    padding: 8px 8px 0;
}

.t2-services-head {
    display: grid;
    gap: 12px;
}

.t2-service-list {
    display: grid;
    gap: 18px;
}

.t2-service-row {
    display: grid;
    grid-template-columns: 92px 1.18fr 0.92fr auto;
    gap: 24px;
    align-items: center;
    padding: 28px 0;
    border-top: 1px solid rgba(15, 23, 42, 0.08);
}

.t2-service-row:last-child {
    border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

.t2-service-index {
    font-size: 34px;
    font-weight: 900;
    line-height: 1;
    letter-spacing: -0.05em;
    color: rgba(99, 102, 241, 0.40);
}

.t2-service-title {
    margin: 0 0 10px;
    font-size: 30px;
    line-height: 1.08;
    letter-spacing: -0.03em;
}

.t2-service-text,
.t2-service-benefit p {
    margin: 0;
    color: #667085;
    font-size: 16px;
    line-height: 1.85;
}

.t2-service-benefit {
    padding-left: 20px;
    border-left: 1px solid rgba(15, 23, 42, 0.08);
}

.t2-service-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: flex-end;
}

/* =========================================================
   BENEFICIOS / ABOUT
========================================================= */
.t2-about {
    display: grid;
    grid-template-columns: 1.02fr 0.98fr;
    gap: 42px;
    align-items: center;
}

.t2-list {
    display: grid;
    gap: 18px;
    margin-top: 28px;
}

.t2-list-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    font-size: 16px;
    line-height: 1.8;
}

/* =========================================================
   PROCESO
========================================================= */
.t2-process-flow {
    display: grid;
    gap: 28px;
    padding: 22px 8px 0;
}

.t2-process-head {
    display: grid;
    gap: 12px;
}

.t2-flow-line {
    display: grid;
    gap: 28px;
    position: relative;
    padding-top: 8px;
}

.t2-flow-line::before {
    content: "";
    position: absolute;
    top: 28px;
    left: 40px;
    right: 40px;
    height: 1px;
    background: rgba(15, 23, 42, 0.10);
    z-index: 0;
}

.t2-flow-step {
    position: relative;
    z-index: 1;
    padding-right: 8px;
}

.t2-flow-dot {
    width: 44px;
    height: 44px;
    margin-bottom: 18px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--brand-primary), rgba(99, 102, 241, 0.82));
    color: #ffffff;
    font-size: 20px;
    font-weight: 900;
    box-shadow: 0 14px 28px rgba(99, 102, 241, 0.18);
}

.t2-flow-title {
    margin: 0 0 12px;
    font-size: 23px;
    line-height: 1.18;
    letter-spacing: -0.02em;
}

.t2-flow-text {
    margin: 0;
    color: #667085;
    font-size: 16px;
    line-height: 1.85;
}

/* =========================================================
   AUTORIDAD / RESPALDO
========================================================= */
.t2-split {
    display: grid;
    grid-template-columns: 0.96fr 1.04fr;
    gap: 42px;
    align-items: center;
}

/* =========================================================
   TESTIMONIOS
========================================================= */
.t2-testimonials-editorial {
    display: grid;
    gap: 28px;
    padding: 8px 8px 0;
}

.t2-testimonials-head {
    display: grid;
    gap: 12px;
}

.t2-testimonials-grid {
    display: grid;
    grid-template-columns: 1fr 1.12fr 1fr;
    gap: 22px;
    align-items: stretch;
}

.t2-quote-card {
    position: relative;
    padding: 28px 26px 24px;
    border-radius: 24px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    background:
        linear-gradient(180deg, rgba(255,255,255,0.99), rgba(247,248,252,0.98));
}

.t2-quote-card::before {
    content: "“";
    position: absolute;
    top: 10px;
    left: 18px;
    font-size: 44px;
    line-height: 1;
    color: rgba(99, 102, 241, 0.14);
    font-weight: 900;
}

.t2-quote-card-featured {
    border-color: rgba(99, 102, 241, 0.14);
    background:
        linear-gradient(180deg, rgba(255,255,255,0.99), rgba(244,246,252,0.99));
    box-shadow: 0 18px 34px rgba(99, 102, 241, 0.06);
}

.t2-quote-text {
    margin: 0;
    position: relative;
    z-index: 1;
    color: #5f6b7a;
    font-size: 17px;
    line-height: 1.95;
}

.t2-quote-author {
    margin: 22px 0 0;
    color: #667085;
    font-size: 15px;
}

/* =========================================================
   CONTACTO
========================================================= */
.t2-contact-shell {
    display: grid;
    gap: 28px;
}

.t2-contact-head {
    display: grid;
    gap: 12px;
}

.t2-contact-layout {
    display: grid;
    grid-template-columns: 0.92fr 1.08fr;
    gap: 30px;
    align-items: stretch;
}

.t2-contact-panel {
    padding: 34px 30px;
    border-radius: 24px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    background:
        linear-gradient(180deg, rgba(255,255,255,0.99), rgba(247,248,252,0.98));
}

.t2-contact-panel-action {
    background:
        linear-gradient(135deg, rgba(99, 102, 241, 0.05), rgba(255,255,255,0.99) 56%, rgba(14, 165, 233, 0.05));
}

.t2-contact-kicker {
    margin-bottom: 10px;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #4f46e5;
}

.t2-contact-title {
    margin: 0 0 16px;
    max-width: 720px;
    font-size: clamp(28px, 3vw, 42px);
    line-height: 1.1;
    letter-spacing: -0.03em;
}

.t2-contact-info {
    display: grid;
    gap: 14px;
    color: #475467;
    font-size: 16px;
    line-height: 1.85;
}

/* =========================================================
   CTA FINAL
========================================================= */
.t2-cta-final {
    background:
        linear-gradient(135deg, rgba(99, 102, 241, 0.08), rgba(255, 255, 255, 0.98) 60%, rgba(14, 165, 233, 0.08));
    border-color: rgba(99, 102, 241, 0.10);
}

.t2-cta-final .t2-section-title {
    max-width: 980px;
}

.t2-cta-final .t2-section-text {
    max-width: 860px;
}

/* =========================================================
   BOTONES T2
========================================================= */
.btn-t2 {
    appearance: none;
    border: 1px solid transparent;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 48px;
    padding: 0 18px;
    border-radius: 14px;
    font-weight: 800;
    font-size: 14px;
    line-height: 1;
    transition:
        transform 0.22s ease,
        box-shadow 0.22s ease,
        background-color 0.22s ease,
        border-color 0.22s ease,
        color 0.22s ease;
}

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

.btn-t2.btn-primary,
.t2-btn.t2-btn-primary {
    background: linear-gradient(135deg, var(--brand-primary), rgba(99, 102, 241, 0.90));
    color: #ffffff;
    box-shadow: 0 14px 28px rgba(99, 102, 241, 0.18);
}

.btn-t2.btn-primary:hover,
.t2-btn.t2-btn-primary:hover {
    box-shadow: 0 18px 34px rgba(99, 102, 241, 0.22);
}

.btn-t2.btn-secondary,
.t2-btn.t2-btn-secondary {
    background: #ffffff;
    color: var(--brand-primary);
    border-color: rgba(99, 102, 241, 0.16);
    box-shadow: 0 10px 22px rgba(99, 102, 241, 0.06);
}

.btn-t2.btn-secondary:hover,
.t2-btn.t2-btn-secondary:hover {
    background: rgba(99, 102, 241, 0.03);
}

.btn-t2.btn-light,
.t2-btn.t2-btn-light {
    background: rgba(15, 23, 42, 0.04);
    color: #344054;
    border-color: rgba(15, 23, 42, 0.06);
}

.btn-t2.btn-light:hover,
.t2-btn.t2-btn-light:hover {
    background: rgba(15, 23, 42, 0.07);
}

/* =========================================================
   FOOTER
========================================================= */
.t2-footer {
    margin-top: 8px;
    padding-top: 26px;
    border-top: 1px solid rgba(15, 23, 42, 0.08);
}

.t2-footer-inner {
    width: min(var(--max-width), calc(100% - 40px));
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr 1fr;
    gap: 30px;
    padding: 0 0 22px;
}

.t2-footer-title {
    margin: 0 0 14px;
    font-size: 18px;
    line-height: 1.2;
    color: var(--brand-primary);
}

.t2-footer-text,
.t2-footer-links {
    display: grid;
    gap: 12px;
    color: #667085;
    font-size: 15px;
    line-height: 1.8;
}

.t2-footer-links a {
    color: #667085;
    transition: color 0.2s ease;
}

.t2-footer-links a:hover {
    color: var(--brand-primary);
}

.t2-footer-bottom {
    width: min(var(--max-width), calc(100% - 40px));
    margin: 0 auto;
    padding: 18px 0 34px;
    border-top: 1px solid rgba(15, 23, 42, 0.08);
    color: #98a2b3;
    font-size: 14px;
    line-height: 1.6;
}

/* =========================================================
   RESPONSIVE
========================================================= */
@media (max-width: 1180px) {
    .t2-header-inner,
    .t2-topbar-inner,
    .t2-footer-inner,
    .t2-footer-bottom {
        width: min(var(--max-width), calc(100% - 28px));
    }

    .t2-header-inner {
        min-height: auto;
        padding: 16px 0;
        flex-direction: column;
        align-items: stretch;
    }

    .t2-nav {
        justify-content: flex-start;
    }

    .t2-hero,
    .t2-about,
    .t2-split,
    .t2-contact-layout {
        grid-template-columns: 1fr;
    }

    .t2-service-row {
        grid-template-columns: 70px 1fr;
    }

    .t2-service-benefit,
    .t2-service-actions {
        grid-column: 2;
    }

    .t2-service-actions {
        justify-content: flex-start;
    }

    .t2-trust-grid,
    .t2-testimonials-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .t2-flow-line {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }

    .t2-flow-line::before {
        display: none;
    }

    .t2-footer-inner {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .t2-main {
        padding-top: 22px;
        padding-bottom: 42px;
    }

    .t2-stack {
        gap: 36px;
    }

    .t2-section,
    .t2-hero-shell,
    .t2-benefits-shell,
    .t2-authority-shell,
    .t2-contact-shell,
    .t2-cta-final {
        padding: 28px 24px;
        border-radius: 22px;
    }

    .t2-topbar-inner {
        min-height: auto;
        padding: 10px 0;
        flex-direction: column;
        align-items: flex-start;
    }

    .t2-topbar-left,
    .t2-topbar-right {
        gap: 10px;
    }

    .t2-brand {
        align-items: flex-start;
    }

    .t2-nav {
        gap: 8px;
    }

    .t2-nav .t2-btn {
        margin-left: 0;
    }

    .t2-section-title {
        font-size: 30px;
        line-height: 1.14;
        margin-bottom: 18px;
    }

    .t2-hero-title {
        font-size: 34px;
        line-height: 1.06;
    }

    .t2-section-text,
    .t2-hero-text,
    .t2-service-text,
    .t2-service-benefit p,
    .t2-flow-text,
    .t2-quote-text,
    .t2-contact-info {
        font-size: 16px;
    }

    .t2-trust-grid,
    .t2-testimonials-grid,
    .t2-flow-line {
        grid-template-columns: 1fr !important;
    }

    .t2-service-row {
        grid-template-columns: 1fr;
        gap: 14px;
        padding: 24px 0;
    }

    .t2-service-index,
    .t2-service-benefit,
    .t2-service-actions {
        grid-column: auto;
    }

    .t2-service-benefit {
        padding-left: 0;
        border-left: 0;
    }

    .t2-service-actions {
        justify-content: flex-start;
    }

    .t2-service-title {
        font-size: 24px;
    }

    .t2-placeholder {
        min-height: 240px;
    }

    .t2-footer-inner {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .t2-contact-panel {
        padding: 26px 22px;
    }
}

/* =========================================================
   Aliases y estabilizacion Fase 6.5
   Clases publicas presentes en templates T2.
========================================================= */

.t2-trust-shell,
.t2-offer-shell,
.t2-process-shell,
.t2-proof-shell {
    position: relative;
    min-width: 0;
}

.t2-trust-shell {
    display: grid;
    gap: 26px;
}

.t2-offer-shell,
.t2-process-shell,
.t2-proof-shell {
    display: grid;
    gap: 28px;
}

.t2-section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
    color: #4f46e5;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.t2-service-meta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 14px;
    color: var(--brand-primary);
    font-size: 14px;
    font-weight: 700;
}

.t2-service-meta::before {
    content: "";
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: var(--brand-accent);
    display: inline-block;
}

.t2-card-featured {
    border-color: rgba(99, 102, 241, 0.14);
    background:
        linear-gradient(180deg, rgba(255,255,255,0.99), rgba(244,246,252,0.99));
    box-shadow: 0 18px 34px rgba(99, 102, 241, 0.06);
}

.t2-highlight-band {
    background: linear-gradient(135deg, var(--brand-primary), var(--brand-accent));
    color: #ffffff;
    border-radius: 28px;
    padding: 46px;
}

.t2-highlight-band p,
.t2-highlight-band h2,
.t2-highlight-band h3 {
    color: inherit;
}

.t2-contact-copy,
.t2-contact-data {
    min-width: 0;
}

.t2-contact-copy {
    display: grid;
    align-content: start;
    gap: 14px;
}

.t2-contact-data {
    display: grid;
    gap: 14px;
    color: #475467;
    font-size: 16px;
    line-height: 1.85;
}

/* =========================================================
   Etapa 1A - Premiumizacion generica multicliente
   Senales visuales neutras, sin testimonios inventados.
========================================================= */

.t2-service-row,
.t2-trust-item,
.t2-signal-card {
    position: relative;
}

.t2-service-row::before {
    content: "";
    position: absolute;
    left: 0;
    top: 26px;
    bottom: 26px;
    width: 3px;
    border-radius: 999px;
    background: linear-gradient(180deg, var(--brand-primary), var(--brand-accent));
    opacity: 0.42;
}

.t2-service-row {
    padding-left: 18px;
}

.t2-signal-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background:
        radial-gradient(circle at top left, rgba(99, 102, 241, 0.10), transparent 34%),
        linear-gradient(180deg, rgba(255,255,255,0.96), rgba(247,248,252,0.98));
    pointer-events: none;
}

.t2-signal-card > * {
    position: relative;
    z-index: 1;
}

.t2-signal-icon {
    width: 44px;
    height: 44px;
    display: inline-grid;
    place-items: center;
    margin-bottom: 18px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--brand-primary), rgba(99, 102, 241, 0.86));
    color: #ffffff;
    font-weight: 900;
    font-size: 13px;
    box-shadow: 0 14px 28px rgba(99, 102, 241, 0.16);
}

.t2-signal-card h3 {
    margin: 0 0 12px;
    color: var(--brand-primary);
    font-size: 22px;
    line-height: 1.18;
}

.t2-placeholder {
    background:
        radial-gradient(circle at top left, rgba(99, 102, 241, 0.10), transparent 36%),
        linear-gradient(180deg, rgba(255,255,255,0.97), rgba(247,248,251,0.98));
}

@media (max-width: 768px) {
    .t2-service-row {
        padding-left: 14px;
    }

    .t2-service-row::before {
        top: 22px;
        bottom: 22px;
    }
}

/* =========================================================
   Etapa 1B - Premiumizacion visual fuerte multicliente
   Hero institucional, cards, pasos y CTA con mayor presencia.
========================================================= */

.t2-hero-premium-shell {
    background:
        radial-gradient(circle at 14% 10%, rgba(14, 165, 233, 0.16), transparent 28%),
        radial-gradient(circle at 88% 18%, rgba(99, 102, 241, 0.18), transparent 30%),
        linear-gradient(135deg, rgba(255,255,255,1), rgba(243,246,255,0.98) 52%, rgba(248,250,252,0.99));
    border-color: rgba(99, 102, 241, 0.16);
    box-shadow:
        0 28px 76px rgba(15, 23, 42, 0.11),
        inset 0 1px 0 rgba(255,255,255,0.88);
}

.t2-hero-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 48px;
    align-items: center;
    width: 100%;
}

.t2-hero-premium-shell .t2-hero-title {
    max-width: 880px;
    text-wrap: balance;
}

.t2-hero-premium-shell .t2-badge {
    background: rgba(255,255,255,0.86);
    box-shadow: 0 10px 24px rgba(99, 102, 241, 0.10);
}

.t2-hero-premium-shell .t2-hero-media {
    position: relative;
    min-height: 460px;
    border-radius: 34px;
    border-color: rgba(99, 102, 241, 0.18);
    box-shadow:
        0 30px 70px rgba(15, 23, 42, 0.14),
        inset 0 1px 0 rgba(255,255,255,0.84);
}

.t2-hero-premium-shell .t2-hero-media::after {
    content: "";
    position: absolute;
    inset: 18px;
    border-radius: 25px;
    border: 1px solid rgba(255,255,255,0.46);
    pointer-events: none;
}

.t2-hero-premium-shell .t2-cta-actions {
    padding: 14px;
    border-radius: 22px;
    background: rgba(255,255,255,0.72);
    border: 1px solid rgba(15, 23, 42, 0.06);
    box-shadow: 0 18px 36px rgba(15, 23, 42, 0.07);
}

.t2-hero-premium-shell .btn-t2 {
    min-height: 54px;
    padding-inline: 24px;
    border-radius: 16px;
}

.t2-premium-strip {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    margin-top: -36px;
    padding: 0 18px;
    position: relative;
    z-index: 3;
}

.t2-premium-strip-item {
    min-width: 0;
    padding: 26px;
    border-radius: 26px;
    border: 1px solid rgba(99, 102, 241, 0.16);
    background:
        radial-gradient(circle at top left, rgba(99, 102, 241, 0.16), transparent 34%),
        rgba(255,255,255,0.95);
    box-shadow: 0 22px 50px rgba(15, 23, 42, 0.10);
}

.t2-premium-strip-item span {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 12px;
    margin-bottom: 14px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--brand-primary), rgba(14, 165, 233, 0.84));
    color: #ffffff;
    font-size: 12px;
    font-weight: 900;
}

.t2-premium-strip-item strong {
    display: block;
    color: var(--brand-primary);
    font-size: 20px;
    line-height: 1.18;
}

.t2-premium-strip-item p {
    margin: 10px 0 0;
    color: #667085;
    line-height: 1.72;
}

.t2-grid-3,
.t2-grid-4 {
    display: grid;
    gap: 18px;
}

.t2-grid-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.t2-grid-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.t2-card {
    position: relative;
    overflow: hidden;
    min-width: 0;
    border-radius: 24px;
    border: 1px solid rgba(99, 102, 241, 0.12);
    background:
        radial-gradient(circle at top left, rgba(99, 102, 241, 0.08), transparent 34%),
        #ffffff;
    box-shadow: 0 18px 38px rgba(15, 23, 42, 0.07);
}

.t2-card::before {
    content: "";
    display: block;
    height: 4px;
    background: linear-gradient(90deg, var(--brand-primary), var(--brand-accent));
    opacity: 0.72;
}

.t2-card-body {
    display: grid;
    gap: 12px;
    padding: 24px;
}

.t2-card-title {
    margin: 0;
    color: var(--brand-primary);
    font-size: 20px;
    line-height: 1.18;
    letter-spacing: -0.02em;
}

.t2-card-text {
    margin: 0;
    color: #667085;
    line-height: 1.78;
}

.t2-card-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 4px;
}

.t2-process-flow {
    border-radius: 28px;
    padding: 34px;
    background:
        radial-gradient(circle at top right, rgba(14, 165, 233, 0.10), transparent 34%),
        linear-gradient(180deg, rgba(255,255,255,0.99), rgba(245,247,252,0.98));
    border: 1px solid rgba(99, 102, 241, 0.10);
}

.t2-flow-step {
    padding: 22px;
    border-radius: 22px;
    background: rgba(255,255,255,0.88);
    border: 1px solid rgba(15, 23, 42, 0.06);
    box-shadow: 0 16px 32px rgba(15, 23, 42, 0.06);
}

.t2-cta-final {
    box-shadow: 0 28px 72px rgba(99, 102, 241, 0.12);
}

@media (max-width: 1180px) {
    .t2-hero-grid,
    .t2-grid-3,
    .t2-grid-4 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .t2-premium-strip {
        margin-top: 0;
        padding: 0;
    }
}

@media (max-width: 768px) {
    .t2-hero-grid,
    .t2-grid-3,
    .t2-grid-4,
    .t2-premium-strip {
        grid-template-columns: 1fr;
    }

    .t2-hero-premium-shell {
        padding: 30px 22px;
    }

    .t2-hero-premium-shell .t2-hero-media,
    .t2-hero-premium-shell .t2-placeholder {
        min-height: 280px;
    }

    .t2-hero-premium-shell .t2-cta-actions {
        padding: 10px;
    }

    .t2-premium-strip-item,
    .t2-card-body,
    .t2-process-flow {
        padding: 20px;
    }
}
