/* ========================================
   RASTI - Guarantee Badge (Landing Page)
   ======================================== */

.guarantee-trust-strip {
    display: flex;
    justify-content: center;
    margin-top: -4rem;
    padding: 0 0 1rem;
    position: relative;
    z-index: 5;
}

.guarantee-trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.5rem 1rem;
    border-radius: 999px;
    background: rgba(42, 157, 143, 0.09);
    border: 1px solid rgba(42, 157, 143, 0.18);
    color: #2A9D8F;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    cursor: pointer;
}

.guarantee-trust-badge:hover {
    background: #2A9D8F;
    color: #fff;
    border-color: #2A9D8F;
    transform: translateY(-1px);
    box-shadow: 0 4px 14px rgba(42, 157, 143, 0.22);
}

.guarantee-trust-badge svg {
    flex-shrink: 0;
}

.guarantee-trust-badge:hover svg {
    stroke: #fff;
}

/* Tooltip */
.guarantee-trust-badge::after {
    content: "Si no te convence, te devolvemos tu dinero";
    position: absolute;
    bottom: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%) translateY(4px);
    white-space: nowrap;
    padding: 0.45rem 0.8rem;
    border-radius: 8px;
    background: var(--gray-900, #111827);
    color: #fff;
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.25s ease, transform 0.25s ease;
    z-index: 10;
}

.guarantee-trust-badge:hover::after {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

@media (max-width: 768px) {
    .guarantee-trust-strip {
        padding: 0.75rem 1rem 0;
    }

    .guarantee-trust-badge::after {
        display: none;
    }
}
