/**
 * ConlineWeb — Trust bar + CTAs del hero.
 */

.hero-cta-stack {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
    max-width: 100%;
    margin-bottom: 1.35rem;
}

.hero-trust {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem 1rem;
    width: 100%;
    max-width: 100%;
    margin: 0 0 1rem;
    padding: 1rem 1.2rem;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.03);
}

.hero-trust__item {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    flex: 1 1 auto;
    min-width: 0;
}

.hero-trust__icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 243, 255, 0.08);
    color: #00f3ff;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.hero-trust__icon--google {
    background: rgba(66, 133, 244, 0.12);
    color: #4285f4;
}

.hero-trust__copy {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
    gap: 0.1rem;
}

.hero-trust__copy strong {
    font-size: clamp(1.05rem, 1.1vw, 1.15rem);
    color: rgba(255, 255, 255, 0.96);
}

.hero-trust__copy span {
    font-size: clamp(0.72rem, 0.85vw, 0.82rem);
    color: rgba(255, 255, 255, 0.52);
}

.hero-trust__sep {
    width: 1px;
    height: 32px;
    background: rgba(255, 255, 255, 0.1);
    flex-shrink: 0;
}

/* Botones principales: 50% / 50% */
.hero-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    width: 100%;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    padding: 0.9rem 1rem;
    border-radius: 999px;
    font-size: clamp(0.88rem, 0.95vw, 0.98rem);
    font-weight: 700;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
    text-align: center;
    line-height: 1.25;
}

.hero-btn--primary {
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: #fff;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.28);
}

.hero-btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(37, 211, 102, 0.38);
}

.hero-btn--secondary {
    background: rgba(255, 255, 255, 0.04);
    color: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.14);
}

.hero-btn--secondary:hover {
    border-color: rgba(0, 243, 255, 0.4);
    color: #00f3ff;
    transform: translateY(-1px);
}

.hero-proof-note {
    margin: 0.2rem 0 0;
    font-size: clamp(0.82rem, 0.9vw, 0.92rem);
    color: rgba(255, 255, 255, 0.55);
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    line-height: 1.5;
    max-width: 42ch;
}

.hero-proof-note i {
    color: #00ff9d;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

/* Demos: único CTA al 100% */
.hero-showcase-cta {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.9rem;
    width: 100%;
    margin: 0;
    padding: 1.05rem 1.3rem;
    border-radius: 16px;
    text-decoration: none;
    color: #fff;
    background: linear-gradient(135deg, rgba(0, 243, 255, 0.18), rgba(185, 103, 255, 0.22));
    border: 1px solid rgba(0, 243, 255, 0.45);
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.06) inset,
        0 12px 36px rgba(0, 243, 255, 0.18),
        0 0 48px rgba(185, 103, 255, 0.12);
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.hero-showcase-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg, transparent 35%, rgba(255, 255, 255, 0.12) 50%, transparent 65%);
    transform: translateX(-120%);
    transition: transform 0.65s ease;
    pointer-events: none;
}

.hero-showcase-cta:hover::before {
    transform: translateX(120%);
}

.hero-showcase-cta:hover {
    transform: translateY(-2px);
    border-color: rgba(0, 243, 255, 0.75);
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.08) inset,
        0 16px 44px rgba(0, 243, 255, 0.28),
        0 0 64px rgba(185, 103, 255, 0.2);
}

.hero-showcase-cta__icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    background: linear-gradient(135deg, #00f3ff, #b967ff);
    color: #0a0a0f;
    box-shadow: 0 6px 18px rgba(0, 243, 255, 0.35);
}

.hero-showcase-cta__copy {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    line-height: 1.3;
}

.hero-showcase-cta__copy strong {
    font-size: clamp(0.95rem, 1.05vw, 1.08rem);
    letter-spacing: 0.01em;
}

.hero-showcase-cta__copy span {
    font-size: clamp(0.78rem, 0.88vw, 0.88rem);
    color: rgba(255, 255, 255, 0.74);
}

.hero-showcase-cta__arrow {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    font-size: 0.88rem;
    transition: transform 0.2s ease, background 0.2s ease;
}

.hero-showcase-cta:hover .hero-showcase-cta__arrow {
    transform: translateX(3px);
    background: rgba(0, 243, 255, 0.2);
}

@media (min-width: 969px) {
    .hero-cta-stack {
        gap: 1.15rem;
        margin-bottom: 1.55rem;
    }

    .hero-actions {
        gap: 0.85rem;
    }

    .hero-trust {
        margin-top: 0.15rem;
        margin-bottom: 1.1rem;
        padding: 1.05rem 1.25rem;
    }

    .hero-proof-note {
        margin-top: 0.25rem;
    }
}

@media (max-width: 968px) {
    .hero-cta-stack {
        gap: 0.85rem;
        margin-bottom: 1rem;
    }

    .hero-trust__sep {
        display: none;
    }

    .hero-trust {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        align-items: stretch;
        gap: 0.5rem;
        width: 100%;
        max-width: 100%;
        margin: 0.15rem 0 0.95rem;
        padding: 0;
        border: none;
        background: transparent;
        border-radius: 0;
    }

    .hero-trust__item {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        gap: 0.45rem;
        width: 100%;
        min-width: 0;
        height: 100%;
        padding: 0.8rem 0.4rem;
        border-radius: 12px;
        border: 1px solid rgba(255, 255, 255, 0.08);
        background: rgba(255, 255, 255, 0.035);
        box-sizing: border-box;
    }

    .hero-trust__icon {
        width: 36px;
        height: 36px;
        font-size: 0.88rem;
        border-radius: 10px;
    }

    .hero-trust__copy {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 100%;
        min-width: 0;
        gap: 0.12rem;
    }

    .hero-trust__copy strong {
        font-size: clamp(0.95rem, 3.6vw, 1.08rem);
        line-height: 1.15;
    }

    .hero-trust__copy span {
        font-size: clamp(0.62rem, 2.35vw, 0.72rem);
        line-height: 1.3;
        display: block;
        max-width: 11ch;
        margin: 0 auto;
        hyphens: auto;
    }

    .hero-proof-note {
        margin-top: 0.15rem;
    }
}

@media (max-width: 640px) {
    .hero-cta-stack {
        gap: 0.78rem;
        margin-bottom: 0.95rem;
    }

    .hero-actions {
        grid-template-columns: 1fr 1fr;
        gap: 0.55rem;
    }

    .hero-btn {
        padding: 0.82rem 0.55rem;
        font-size: 0.78rem;
    }

    .hero-showcase-cta {
        padding: 0.9rem 0.95rem;
        gap: 0.7rem;
    }

    .hero-showcase-cta__icon {
        width: 42px;
        height: 42px;
        font-size: 1.05rem;
    }

    .hero-trust {
        gap: 0.45rem;
        margin-top: 0.1rem;
        margin-bottom: 0.85rem;
    }

    .hero-trust__item {
        padding: 0.72rem 0.3rem;
        gap: 0.38rem;
        border-radius: 11px;
    }

    .hero-trust__icon {
        width: 34px;
        height: 34px;
        font-size: 0.82rem;
    }

    .hero-trust__copy strong {
        font-size: clamp(0.9rem, 4.2vw, 1rem);
    }

    .hero-trust__copy span {
        font-size: clamp(0.58rem, 2.6vw, 0.66rem);
        max-width: 10ch;
    }

    .hero-proof-note {
        max-width: none;
        font-size: 0.8rem;
        line-height: 1.45;
        gap: 0.45rem;
        margin-top: 0.12rem;
    }
}

@media (max-width: 400px) {
    .hero-showcase-cta__arrow {
        display: none;
    }

    .hero-btn {
        font-size: 0.72rem;
        padding: 0.76rem 0.45rem;
    }

    .hero-trust {
        gap: 0.32rem;
    }

    .hero-trust__item {
        padding: 0.65rem 0.22rem;
    }

    .hero-trust__copy span {
        max-width: 9.5ch;
    }
}
