.purchase-guarantee {
    padding: 80px 20px;
    background-color: #f8fafc;
}

.guarantee-card {
    max-width: 950px;
    margin: 0 auto;
    background: #ffffff;
    border-radius: 20px;
    padding: 50px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.03);
}

.guarantee-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    align-items: center;
}

.status-badge {
    display: inline-block;
    background: #dcfce7;
    color: #166534;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.guarantee-info h3 {
    font-size: 26px;
    color: #0f172a;
    line-height: 1.3;
    margin-bottom: 15px;
}

.guarantee-info p {
    color: #64748b;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 25px;
}

.guarantee-features {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.guarantee-features span {
    font-size: 14px;
    color: #475569;
    font-weight: 600;
}

.guarantee-features i {
    color: #2563eb;
    margin-right: 8px;
}

/* Columna de Contacto */
.contact-label {
    font-size: 14px;
    color: #94a3b8;
    margin-bottom: 15px;
    font-weight: 600;
}

.btn-contact {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 14px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
    margin-bottom: 12px;
    transition: all 0.2s;
}

.btn-contact.fb {
    background: #1877f2;
    color: white;
}

.btn-contact.mail {
    background: #f1f5f9;
    color: #1e293b;
    border: 1px solid #e2e8f0;
}

.btn-contact:hover {
    transform: translateY(-2px);
    filter: brightness(1.1);
}

.btn-contact img, .btn-contact i {
    height: 18px;
    width: 18px;
    margin-right: 12px;
}

.response-tag {
    display: block;
    text-align: center;
    font-size: 12px;
    color: #94a3b8;
    margin-top: 10px;
}

/* Responsivo */
@media (max-width: 850px) {
    .guarantee-card {
        padding: 40px 20px;
        margin: 0 15px; /* Centra la tarjeta en la pantalla */
        text-align: center;
    }

    .guarantee-grid {
        display: flex;
        flex-direction: column;
        align-items: center; /* Centra todo el bloque de contenido */
        gap: 20px;
    }

    /* Centrado de los Checks Azules */
    .guarantee-features {
        display: inline-flex; /* Cambiamos a inline-flex para poder centrarlo */
        flex-direction: column;
        align-items: flex-start; /* Mantiene el check al lado del texto */
        margin: 0 auto 20px auto;
        text-align: left; /* El texto se alinea al check, pero el bloque va al centro */
    }

    /* Ajuste de Botones */
    .guarantee-contact {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

.btn-contact {
        width: 100% !important; /* Ocupa el ancho del padre */
        max-width: 100%;       /* Pero no más que la pantalla */
        box-sizing: border-box; /* IMPORTANTE: incluye padding y borde en el ancho */
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding: 12px 10px;    /* Reducimos un poco el padding lateral */
        font-size: 14px;       /* Achicamos la letra para que el texto no lo estire */
        overflow: hidden;      /* Corta cualquier desborde */
        text-overflow: ellipsis; 
        white-space: nowrap;   /* Evita que el email se divida en dos líneas y lo deforme */
    }
    
    /* Forzar que el texto de arriba no tenga márgenes raros */
    .guarantee-info h3, .guarantee-info p {
        margin-left: 0;
        margin-right: 0;
        text-align: center;
    }
}